:root {
  --black: #000000;
  --white: #ffffff;
  --off-black: #404041;
  --blue: #4c98e6;
  --baby-blue: #79b5ec;
  --gray: #e6e8e8;
  --mid-gray: #7c7c7c;
  --yellow: #f4e442;
  --mustard: #b9ab47;
  --bg: var(--black);
  --base: #050505;
  --section: #060606;
  --panel: #0b0b0b;
  --text: var(--white);
  --body: rgba(255, 255, 255, 0.82);
  --muted: rgba(255, 255, 255, 0.62);
  --border: rgba(255, 255, 255, 0.18);
  --border-soft: rgba(255, 255, 255, 0.1);
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --font-display: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 10%, rgba(76, 152, 230, 0.13), transparent 28%),
    radial-gradient(circle at 12% 18%, rgba(244, 228, 66, 0.08), transparent 24%),
    linear-gradient(180deg, #000 0%, #070707 46%, #000 100%);
}
a { color: inherit; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(24px, 5vw, 72px);
  background: rgba(0, 0, 0, 0.82);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(20px);
}
.brand,
.nav a,
.eyebrow,
.meta,
.kicker,
.next-link {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.brand {
  font-family: var(--font-display);
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.22em;
}
.brand span { color: var(--yellow); }
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 30px;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
}
.nav-links a:hover { color: var(--yellow); }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.hero {
  min-height: 92svh;
  display: grid;
  align-items: center;
  padding: 138px 0 84px;
  border-bottom: 1px solid var(--border-soft);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: end;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--blue);
}
h1 {
  max-width: 920px;
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero-copy {
  max-width: 720px;
  margin-top: 30px;
  color: var(--body);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}
.hero-panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  padding: clamp(24px, 4vw, 34px);
}
.meta-list {
  display: grid;
  gap: 20px;
}
.meta {
  color: var(--muted);
}
.meta strong {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.section {
  padding: clamp(78px, 10vw, 126px) 0;
  border-bottom: 1px solid var(--border-soft);
}
.section.alt { background: var(--section); }
.section-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}
.kicker {
  color: var(--blue);
}
h2 {
  max-width: 760px;
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.lead {
  margin-top: 22px;
  max-width: 760px;
  color: var(--body);
  font-size: 18px;
  line-height: 1.7;
}
.content-stack {
  display: grid;
  gap: 18px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card,
.flow-step,
.quote-card {
  border: 1px solid var(--border-soft);
  background: var(--panel);
  padding: clamp(22px, 3vw, 32px);
}
.card h3,
.flow-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}
.card p,
.flow-step p {
  margin-top: 14px;
  color: var(--body);
  line-height: 1.7;
}
.accent {
  width: 42px;
  height: 3px;
  margin-top: 28px;
  background: var(--yellow);
}
.card:nth-child(2) .accent { background: var(--blue); }
.card:nth-child(3) .accent { background: var(--baby-blue); }

.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.flow-step {
  min-height: 220px;
}
.step-num {
  margin-bottom: 32px;
  color: var(--yellow);
}
.quote-card {
  background: var(--white);
  color: var(--black);
}
.quote-card p {
  color: var(--off-black);
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.22;
  text-transform: uppercase;
}
.results-list {
  display: grid;
  gap: 14px;
}
.result {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid var(--border-soft);
  background: var(--panel);
  padding: 18px;
}
.result-num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-soft);
  color: var(--yellow);
  font-size: 12px;
}
.result strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-weight: 800;
}
.result span {
  color: var(--body);
}

.next {
  padding: 46px clamp(24px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.next-link {
  color: var(--yellow);
  text-decoration: none;
}
.next-link:hover { color: var(--blue); }

@media (max-width: 900px) {
  .hero-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .flow {
    grid-template-columns: 1fr;
  }
  .nav {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .nav {
    position: static;
  }
  .hero {
    padding-top: 72px;
    min-height: auto;
  }
  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }
}
