@font-face {
  font-family: "Newsreader";
  src: url("../fonts/Newsreader.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #0d0f11;
  --color-bg-deep: #08090b;
  --color-surface: #171a1e;
  --color-surface-2: #20242a;
  --color-light: #eef0f2;
  --color-light-2: #d9dde1;
  --color-text: #f3f4f5;
  --color-text-dark: #15181b;
  --color-text-muted: #a7adb4;
  --color-text-muted-dark: #666d75;
  --color-primary: #cfd3d8;
  --color-accent: #f3f5f7;
  --color-line: rgba(255, 255, 255, .12);
  --color-line-dark: rgba(11, 14, 17, .13);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 112px;
  --text-display: clamp(3.2rem, 7vw, 7.3rem);
  --text-h1: clamp(2.7rem, 6vw, 6.4rem);
  --text-h2: clamp(2.45rem, 4.6vw, 5.1rem);
  --text-h3: clamp(1.25rem, 2vw, 1.65rem);
  --text-body: clamp(1rem, 1.2vw, 1.1rem);
  --text-small: .84rem;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Space Grotesk", sans-serif;
  font-size: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.wrap {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(88px, 10vw, 150px) 0;
}

.section-small {
  padding: 72px 0;
}

.section-light {
  background: var(--color-light);
  color: var(--color-text-dark);
}

.section-graphite {
  background: #111417;
}

.site-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid var(--color-line);
  background: rgba(13, 15, 17, .92);
  backdrop-filter: blur(18px);
}

.header-notice {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .7rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #b8bec5;
  border-bottom: 1px solid var(--color-line);
}

.nav-shell {
  height: 78px;
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  font-size: .88rem;
  color: #b8bec5;
  transition: .25s ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .23);
  background: #cfd3d8;
  color: #0d0f11;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  transition: .25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid var(--color-line);
  background: transparent;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  padding: 86px 0 100px;
  min-height: 900px;
  overflow: hidden;
  background: radial-gradient(circle at 78% 17%, rgba(255, 255, 255, .08), transparent 27%), linear-gradient(180deg, #0d0f11, #0a0c0e);
}

#neuralCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .35;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, #000 10%, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.23fr .77fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.section-index {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 600;
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(230, 233, 236, .55);
  animation: pulse 2.3s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(230, 233, 236, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 233, 236, 0);
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Newsreader", serif;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

h1 {
  font-size: var(--text-h1);
  margin: 26px 0 30px;
  max-width: 950px;
}

h1 em,
h2 em {
  font-style: italic;
  color: #b8bec5;
}

.hero-lead {
  color: #bbc1c7;
  max-width: 720px;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--color-primary);
  color: #0b0d0f;
}

.btn-primary:hover {
  background: #fff;
}

.btn-dark {
  background: #0c0e10;
  color: #fff;
}

.btn-ghost {
  border-color: var(--color-line);
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #c5c9cd;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  padding-bottom: 3px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
}

.ai-stage {
  position: relative;
  height: 450px;
  perspective: 1100px;
  transform-style: preserve-3d;
  transition: transform .25s ease-out;
}

.orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #eef0f2;
  box-shadow: 0 0 18px rgba(255, 255, 255, .55);
  top: -5px;
  left: 50%;
}

.orbit-a {
  width: 390px;
  height: 390px;
  margin: -195px;
  transform: rotateX(69deg) rotateZ(18deg);
  animation: orbitA 14s linear infinite;
}

.orbit-b {
  width: 310px;
  height: 310px;
  margin: -155px;
  transform: rotateY(69deg) rotateZ(26deg);
  animation: orbitB 18s linear infinite reverse;
}

.orbit-c {
  width: 230px;
  height: 230px;
  margin: -115px;
  transform: rotateX(36deg) rotateY(58deg);
  animation: orbitC 11s linear infinite;
}

@keyframes orbitA {
  to {
    transform: rotateX(69deg) rotateZ(378deg);
  }
}

@keyframes orbitB {
  to {
    transform: rotateY(69deg) rotateZ(386deg);
  }
}

@keyframes orbitC {
  to {
    transform: rotateX(36deg) rotateY(58deg) rotateZ(360deg);
  }
}

.core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  margin: -66px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f2f4f6, #8d949b);
  color: #101214;
  display: grid;
  place-items: center;
  align-content: center;
  box-shadow: 0 0 80px rgba(255, 255, 255, .2), inset 0 1px 0 #fff;
  z-index: 3;
}

.core span {
  font-family: "Newsreader", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.core small {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .58rem;
  margin-top: 6px;
}

.node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  background: rgba(17, 20, 23, .86);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: .76rem;
  color: #c8cdd1;
  z-index: 5;
  box-shadow: var(--shadow);
}

.node-1 {
  left: 4%;
  top: 20%;
  animation: float 6s ease-in-out infinite;
}

.node-2 {
  right: 0;
  top: 34%;
  animation: float 7s ease-in-out infinite reverse;
}

.node-3 {
  left: 18%;
  bottom: 14%;
  animation: float 6.5s ease-in-out infinite .8s;
}

@keyframes float {
  50% {
    transform: translateY(-12px);
  }
}

.scan-line {
  position: absolute;
  inset: 6% 10%;
  border-radius: 50%;
  background: linear-gradient(transparent 49%, rgba(255, 255, 255, .09) 50%, transparent 51%);
  background-size: 100% 24px;
  opacity: .5;
  animation: scan 7s linear infinite;
}

@keyframes scan {
  to {
    background-position-y: 240px;
  }
}

.visual-caption {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  max-width: 330px;
  margin: -10px 0 0 auto;
  border-top: 1px solid var(--color-line);
  padding-top: 15px;
  color: #9ea4aa;
  font-size: .77rem;
}

.visual-caption span {
  color: #fff;
  font-family: "Newsreader", serif;
  font-size: 1.4rem;
}

.visual-caption p {
  margin: 0;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  margin-top: 78px;
  aspect-ratio: 16 / 8.4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.hero-image img,
.story-image img,
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .72));
}

.image-overlay {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: 28px;
  display: grid;
  gap: 2px;
}

.image-overlay span {
  color: #c8ccd0;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
}

.image-overlay strong {
  font-family: "Newsreader", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 500;
}

.bento {
  display: grid;
}

.pressure-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.section-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 200px 1.2fr .8fr;
  gap: 30px;
  align-items: end;
  padding-bottom: 50px;
}

.section-intro h2,
.process-head h2,
.story-copy h2,
.map-copy h2,
.decision-copy h2,
.service-copy h2,
.faq-head h2,
.analysis-copy h2 {
  font-size: var(--text-h2);
  margin: 0;
}

.section-intro p {
  color: var(--color-text-muted);
  margin: 0;
  max-width: 520px;
}

.panel {
  position: relative;
  min-height: 330px;
  border-radius: var(--radius-md);
  padding: 30px;
  overflow: hidden;
  transition: transform .25s ease;
}

.panel:hover {
  transform: translateY(-4px);
}

.panel i {
  font-size: 2rem;
}

.panel h3 {
  font-size: 1.22rem;
  margin: 70px 0 12px;
}

.panel p {
  margin: 0;
  color: #aeb4ba;
}

.panel-dark {
  background: #15181c;
  border: 1px solid var(--color-line);
}

.panel-silver {
  background: #c8cdd2;
  color: #101214;
}

.panel-silver p {
  color: #343a40;
}

.corner-code {
  position: absolute;
  right: 24px;
  top: 22px;
  font-family: "Newsreader", serif;
  font-size: 2rem;
  opacity: .35;
}

.route-card {
  grid-column: 1 / -1;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  min-height: 270px;
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-content: end;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .07), transparent 30%);
}

.route-card::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 52px;
  height: 1px;
  background: rgba(255, 255, 255, .15);
}

.route-card>div:not(.route-line) {
  position: relative;
  padding-top: 70px;
}

.route-card small {
  display: block;
  color: #7f878e;
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 5px;
}

.route-card strong {
  font-size: .82rem;
  font-weight: 500;
}

.route-line {
  position: absolute;
  left: 34px;
  right: 34px;
  top: 45px;
  display: flex;
  justify-content: space-between;
}

.route-line span {
  width: 14px;
  height: 14px;
  background: #191c20;
  border: 2px solid #d7dadd;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, .04);
}

.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 84px;
  align-items: center;
}

.story-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-2);
}

.frame-label {
  position: absolute;
  left: 18px;
  top: 18px;
  background: rgba(8, 10, 12, .75);
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .64rem;
  letter-spacing: .14em;
}

.story-copy p {
  color: #aeb4ba;
  max-width: 660px;
}

.story-copy h2 {
  margin: 20px 0 34px;
}

.quote-rail {
  margin-top: 34px;
  border-left: 1px solid #cdd1d5;
  padding: 18px 0 18px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #d3d6da;
}

.process-head {
  display: grid;
  grid-template-columns: 180px 1.2fr .8fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 58px;
}

.process-head p {
  margin: 0;
  color: var(--color-text-muted);
}

.process-ribbon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.step-card {
  background: #111417;
  min-height: 380px;
  padding: 28px;
  position: relative;
  transition: background .25s ease;
}

.step-card:hover {
  background: #1b1f23;
}

.step-card .step-no {
  font-family: "Newsreader", serif;
  font-size: 2.2rem;
  color: #7d848b;
}

.step-card i {
  position: absolute;
  right: 28px;
  top: 31px;
  font-size: 1.6rem;
  color: #bec3c8;
}

.step-card h3 {
  margin: 145px 0 16px;
}

.step-card p {
  color: #979fa7;
  margin: 0;
}

.map-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.map-copy h2 {
  margin: 18px 0 30px;
}

.map-copy p {
  color: var(--color-text-muted-dark);
}

.mini-disclaimer {
  border-top: 1px solid var(--color-line-dark);
  padding-top: 18px;
  margin-top: 32px;
  color: #6d747b;
  font-size: .82rem;
}

.signal-map {
  min-height: 560px;
  position: relative;
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #fff, #dde1e4);
  overflow: hidden;
}

.signal-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#90979e 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .16;
}

.signal-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(14, 17, 20, .18);
  stroke-width: 1.5;
}

.signal {
  position: absolute;
  z-index: 4;
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(15, 18, 21, .18);
  background: rgba(248, 249, 250, .8);
  color: #1a1d20;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  transition: .25s ease;
}

.signal:hover,
.signal.active {
  background: #111417;
  color: #fff;
  transform: translateY(-2px);
}

.signal[data-signal="experience"] {
  left: 8%;
  top: 14%;
}

.signal[data-signal="skills"] {
  right: 8%;
  top: 14%;
}

.signal[data-signal="time"] {
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
}

.signal[data-signal="time"]:hover,
.signal[data-signal="time"].active {
  transform: translateX(-50%) translateY(-2px);
}

.signal-center {
  position: absolute;
  z-index: 3;
  width: 310px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #111417;
  color: #fff;
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  padding: 46px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .2);
}

.signal-kicker {
  font-size: .66rem;
  letter-spacing: .14em;
  color: #a3a9af;
  margin-bottom: 12px;
}

.signal-center strong {
  font-family: "Newsreader", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

.signal-center p {
  color: #a6adb4;
  font-size: .8rem;
  line-height: 1.55;
  margin: 15px 0 0;
}

.decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.decision-art {
  height: 520px;
  position: relative;
  perspective: 1000px;
}

.stack-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76%;
  height: 54%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .2);
  background: linear-gradient(145deg, #24282d, #111417);
  box-shadow: var(--shadow);
  padding: 26px;
  transform-style: preserve-3d;
}

.stack-card span {
  font-family: "Newsreader", serif;
  font-size: 3rem;
  color: #90979e;
}

.stack-card p {
  position: absolute;
  bottom: 24px;
  left: 26px;
  font-size: 1.2rem;
}

.stack-a {
  transform: translate(-58%, -62%) rotate(-9deg) translateZ(-60px);
  opacity: .48;
}

.stack-b {
  transform: translate(-54%, -56%) rotate(-4deg) translateZ(-20px);
  opacity: .65;
}

.stack-c {
  transform: translate(-50%, -50%) rotate(1deg) translateZ(20px);
  opacity: .82;
}

.stack-d {
  transform: translate(-46%, -44%) rotate(6deg) translateZ(60px);
  background: linear-gradient(145deg, #e5e8eb, #aeb4ba);
  color: #111417;
}

.decision-copy h2 {
  margin: 18px 0 30px;
}

.decision-copy p {
  color: #9fa6ad;
}

.decision-copy .btn {
  margin-top: 18px;
  background: #d9dde1;
  color: #111417;
}

.visual-service-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 80px;
  align-items: center;
}

.service-copy h2 {
  margin: 18px 0 30px;
}

.service-copy p {
  color: #a7adb4;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.service-tags span {
  border: 1px solid var(--color-line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #c1c6cb;
  font-size: .75rem;
}

.service-image {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-2);
}

.image-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  width: 25%;
  transform: skewX(-14deg);
  animation: imageScan 5s ease-in-out infinite;
}

@keyframes imageScan {

  0%,
  15% {
    left: -35%;
  }

  75%,
  100% {
    left: 115%;
  }
}

.faq-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 80px;
  align-items: start;
}

.faq-head {
  position: sticky;
  top: 36px;
}

.faq-head h2 {
  margin: 18px 0 26px;
}

.faq-head p {
  color: #9da4ab;
}

.accordion {
  border-top: 1px solid var(--color-line);
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item button {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 500;
}

.faq-item button i {
  transition: transform .25s ease;
}

.faq-item.open button i {
  transform: rotate(45deg);
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.faq-body>p {
  overflow: hidden;
  color: #9ba2a9;
  margin: 0;
}

.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-body>p {
  padding-bottom: 24px;
}

.analysis {
  background: #d9dde1;
  color: #111417;
}

.analysis-shell {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.analysis-copy {
  position: sticky;
  top: 36px;
}

.analysis-copy h2 {
  margin: 18px 0 28px;
}

.analysis-copy p {
  color: #5f666d;
}

.analysis-meter {
  margin-top: 44px;
}

.meter-head {
  display: flex;
  justify-content: space-between;
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.meter-track {
  height: 2px;
  background: rgba(15, 18, 21, .18);
  overflow: hidden;
}

.meter-track span {
  display: block;
  height: 100%;
  width: 25%;
  background: #111417;
  transition: width .3s ease;
}

.analysis-form {
  background: #111417;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(12px, 4vw, 54px);
  min-height: 520px;
  box-shadow: var(--shadow);
}

.form-step {
  display: none;
  min-height: 420px;
}

.form-step.active {
  display: flex;
  flex-direction: column;
  animation: stepIn .35s ease both;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.form-kicker {
  font-size: .72rem;
  letter-spacing: .14em;
  color: #8f969d;
}

.form-step h3 {
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
  margin: 18px 0 30px;
}

.form-step label {
  font-size: .83rem;
  color: #b6bcc2;
  margin-bottom: 9px;
}

.form-step textarea,
.form-step input:not([type="checkbox"]) {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #191d21;
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 17px;
  resize: vertical;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.form-step textarea:focus,
.form-step input:not([type="checkbox"]):focus {
  border-color: #d6dade;
  background: #1e2328;
}

.form-nav {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.field-grid>div {
  display: grid;
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  font-size: .78rem !important;
}

.check input {
  margin-top: 4px;
  accent-color: #d9dde1;
}

.check a {
  text-decoration: underline;
  color: #fff;
}

.form-disclaimer {
  color: #777f87;
  font-size: .72rem;
  margin: 20px 0 0;
}

.site-footer {
  background: #08090b;
  border-top: 1px solid var(--color-line);
  padding: 62px 0 26px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr .65fr .75fr 1fr;
  gap: 44px;
}

.footer-brand p {
  color: #8f969d;
  max-width: 420px;
  font-size: .82rem;
  margin-top: 20px;
}

.site-footer h3 {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #70777e;
  margin-bottom: 16px;
}

.site-footer a,
.site-footer p {
  display: block;
  color: #aab0b6;
  font-size: .8rem;
  margin: 0 0 9px;
}

.site-footer a:hover {
  color: #fff;
}

.footer-disclaimer {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}

.footer-disclaimer p {
  color: #747b82;
  max-width: 980px;
  line-height: 1.65;
}

.footer-bottom {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #60676e;
  font-size: .72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2, .65, .25, 1), transform .8s cubic-bezier(.2, .65, .25, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}

.legal-main {
  background: var(--color-light);
  color: var(--color-text-dark);
  min-height: 70vh;
}

.legal-hero {
  padding: 88px 0 58px;
  border-bottom: 1px solid var(--color-line-dark);
}

.legal-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  margin: 18px 0;
  word-break: break-word;
}

.legal-hero p {
  max-width: 720px;
  color: var(--color-text-muted-dark);
}

.legal-body {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 110px;
}

.legal-body h2 {
  font-family: "Newsreader", serif;
  font-size: 2rem;
  line-height: 1.1;
  margin: 52px 0 18px;
}

.legal-body h3 {
  font-size: 1rem;
  margin: 32px 0 10px;
}

.legal-body p {
  color: #4e555c;
  margin-bottom: 18px;
}

.legal-box {
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-md);
  padding: 28px;
  background: #fff;
  margin: 28px 0;
}

.legal-box p:last-child {
  margin-bottom: 0;
}

.thanks-main {
  background: var(--color-bg);
  min-height: 70vh;
}

.thanks-hero {
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}

.thanks-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  right: -200px;
  top: -240px;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, .02), 0 0 0 160px rgba(255, 255, 255, .015);
}

.thanks-hero h1 {
  max-width: 950px;
  word-break: break-word;
}

.thanks-hero p {
  max-width: 680px;
  color: #a8afb6;
  font-size: 1.1rem;
  word-break: break-word;
}

.next-steps {
  padding: 20px 0 110px;
}

.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.next-card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: 28px;
  min-height: 280px;
}

.next-card span {
  font-family: "Newsreader", serif;
  font-size: 2.4rem;
  color: #7f878f;
}

.next-card h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -.02em;
  line-height: 1.2;
  margin: 70px 0 12px;
}

.next-card p {
  color: #9199a1;
  font-size: .9rem;
}

.thanks-contact {
  margin-top: 32px;
  color: #111417;
}

.thanks-contact h2 {
  font-family: "Newsreader", serif;
  font-size: 2rem;
  line-height: 1.1;
}

.thanks-contact p {
  color: #4e555c;
}

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta {
    margin-left: auto;
  }

  .mobile-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 109px;
    background: #0d0f11;
    border-bottom: 1px solid var(--color-line);
    padding: 24px;
  }

  .mobile-nav.open {
    display: grid;
    gap: 16px;
  }

  .hero-grid,
  .story-grid,
  .map-grid,
  .decision-grid,
  .visual-service-grid,
  .faq-grid,
  .analysis-shell {
    gap: 48px;
  }

  .pressure-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-intro {
    grid-column: 1 / -1;
  }

  .route-card {
    grid-column: 1 / -1;
  }

  .process-ribbon {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {

  .hero-grid,
  .story-grid,
  .map-grid,
  .decision-grid,
  .visual-service-grid,
  .faq-grid,
  .analysis-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .section-intro,
  .process-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .faq-head,
  .analysis-copy {
    position: static;
  }

  .story-image {
    aspect-ratio: 16 / 11;
  }

  .decision-art {
    height: 430px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .btn {
    padding: 12px 16px;
  }
  .signal[data-signal="experience"] {
    top: 2%
  }
  .signal[data-signal="skills"] {
    top: 12%
  }
  .wrap {
    width: min(100% - 28px, 1240px);
  }

  .section {
    padding: 78px 0;
  }

  .nav-shell {
    width: calc(100% - 22px);
    height: 70px;
  }

  .brand span {
    font-size: .92rem;
  }

  .nav-cta {
    display: none;
  }

  .mobile-nav {
    top: 101px;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .hero-visual {
    min-height: 380px;
  }

  .ai-stage {
    height: 350px;
    transform: scale(.8);
    margin: -20px;
  }

  .hero-image {
    width: min(100% - 28px, 980px);
    margin-top: 50px;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .pressure-grid {
    grid-template-columns: 1fr;
  }

  .section-intro,
  .route-card {
    grid-column: auto;
  }

  .panel,
  .route-card {
    min-height: 290px;
  }

  .route-card {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }

  .route-card::before,
  .route-line {
    display: none;
  }

  .route-card>div:not(.route-line) {
    padding-top: 18px;
    border-top: 1px solid var(--color-line);
  }

  .process-ribbon {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: 320px;
  }

  .signal-map {
    min-height: 480px;
  }

  .signal-center {
    width: 260px;
    padding: 36px;
  }

  .signal-center strong {
    font-size: 1.7rem;
  }

  .decision-art {
    height: 340px;
  }

  .stack-card {
    width: 84%;
    height: 58%;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .analysis-form {
    border-radius: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .next-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 1000;
  width: min(1240px, calc(100% - 40px));
  background: #111417;
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 50px));
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 28px 30px;
}

.cookie-banner__content {
  max-width: 790px;
}

.cookie-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: #a7adb4;
  font-size: .68rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.cookie-banner__eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 6px rgba(207, 211, 216, .08);
}

.cookie-banner h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Newsreader", serif;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.035em;
}

.cookie-banner p {
  margin: 0;
  max-width: 790px;
  color: #9da4ab;
  font-size: .82rem;
  line-height: 1.65;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cookie-banner__button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.cookie-banner__button--primary {
  background: var(--color-primary);
  color: #0b0d0f;
  border-color: var(--color-primary);
}

.cookie-banner__button--primary:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.cookie-banner__button--secondary {
  background: transparent;
  color: #d9dde1;
  border-color: rgba(255, 255, 255, .2);
}

.cookie-banner__button--secondary:hover {
  background: #20242a;
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  transform: translateY(-2px);
}

.cookie-banner__button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .cookie-banner__inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__button {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .cookie-banner__inner {
    padding: 20px;
  }

  .cookie-banner__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .cookie-banner__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner {
    transition: none;
  }
}