/* Unclaimed CEO — site styles
   Tokens and values follow design_handoff_unclaimed_ceo/README.md exactly. */

/* ---------- Fonts (self-hosted variable fonts, latin subset) ---------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('/assets/fonts/archivo-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('/assets/fonts/instrument-sans-latin.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --ink: #0E1424;
  --body: #3B4459;
  --muted: #5A6379;
  --dim: #8A90A0;
  --white: #FFFFFF;
  --tint-blue: #F6F8FE;
  --tint-purple: #F7F5FE;
  --chip: #F2F4FA;
  --blue: #1E4BFF;
  --purple: #7C3AED;
  --mid-purple: #5B3FF0;
  --gold-light: #E8C766;
  --gold-deep: #C8A02E;
  --gold-text: #8A6B14;
  --dark: #0E1424;
  --dark-2: #11172B;
  --dark-3: #1B2445;
  --dark-4: #231B45;
  --selection: #DCE4FF;

  --grad-primary: linear-gradient(120deg, #1E4BFF, #7C3AED);
  --grad-gold-rule: linear-gradient(90deg, #C8A02E, #E8C766);
  --grad-gold-pill: linear-gradient(120deg, #E8C766, #C8A02E);
  --grad-dark: linear-gradient(115deg, #0E1424, #231B45);
  --grad-dark-2: linear-gradient(115deg, #0E1424, #1B2445);
  --grad-progress: linear-gradient(90deg, #1E4BFF, #7C3AED, #E8C766);

  --display: 'Archivo', system-ui, sans-serif;
  --text: 'Instrument Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(.2, .7, .2, 1);
  --sec-pad: clamp(64px, 10vw, 130px);
  --sec-pad-tight: clamp(40px, 6vw, 80px);
  --hairline: rgba(14, 20, 36, .09);
  --focus-ring: 0 0 0 4px rgba(30, 75, 255, .12);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--purple); }
img { max-width: 100%; height: auto; }
input, textarea, button { font-family: inherit; }
button { -webkit-appearance: none; appearance: none; }
::selection { background: var(--selection); }
[hidden] { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
.dark :focus-visible { outline-color: var(--gold-light); }

.wrap { max-width: 1240px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.col { min-width: 0; }

/* ---------- Motion ---------- */
@keyframes ucRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes ucFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes ucDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(3%, -2%, 0) scale(1.08); }
  100% { transform: translate3d(0, 0, 0) scale(1); }
}
.rise { animation: ucRise .7s ease both; }
.rise-0 { animation-duration: .6s; animation-delay: 0ms; }
.rise-1 { animation-delay: 50ms; }
.rise-2 { animation-delay: 120ms; }
.rise-3 { animation-delay: 150ms; }
.rise-4 { animation-delay: 180ms; }
.rise-5 { animation-delay: 200ms; }
.rise-6 { animation-delay: 240ms; }
.fade-in { animation: ucFade .9s .1s ease both; }

/* Scroll reveal: JS adds .is-hidden only to elements that start below 90% of the viewport,
   then removes it when they cross 95%. One-way. */
[data-reveal], [data-agent], [data-flow], [data-stagger] > * {
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.is-hidden { opacity: 0; transform: translateY(18px); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .is-hidden { opacity: 1; transform: none; }
}
html[data-motion="off"] *, html[data-motion="off"] *::before, html[data-motion="off"] *::after {
  animation: none !important; transition: none !important;
}
html[data-motion="off"] .is-hidden { opacity: 1; transform: none; }

/* ---------- Type helpers ---------- */
.h2 {
  font-family: var(--display);
  font-size: clamp(38px, 8.4vw, 80px);
  line-height: .92;
  letter-spacing: -.035em;
  font-weight: 900;
  margin: 0;
  color: var(--ink);
  overflow-wrap: break-word;
}
.h3 {
  font-family: var(--display);
  font-size: clamp(25px, 3.4vw, 34px);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-weight: 900;
  margin: 0 0 8px;
  color: var(--ink);
}
.grad-text {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.blue { color: var(--blue); }
.gold { color: var(--gold-light) !important; }
.dim { color: rgba(255, 255, 255, .55) !important; }
.tm { font-size: .4em; vertical-align: super; }

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.eyebrow--blue { color: var(--blue); }
.eyebrow--gold { color: var(--gold-text); }

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.kicker--gold { color: var(--gold-text); }
.rule-gold { display: inline-block; width: 26px; height: 2px; flex-shrink: 0; background: var(--grad-gold-rule); }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  background: var(--chip);
  border-radius: 999px;
  padding: 9px 16px;
}
.chips--outline { margin-bottom: 16px; }
.chips--outline .chip {
  background: var(--white);
  border: 1px solid rgba(14, 20, 36, .10);
  padding: 8px 15px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  min-height: 52px;
  padding: 15px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease, background-color .2s ease;
}
.btn:disabled { cursor: default; opacity: .7; transform: none !important; }
.btn--grad {
  color: #fff;
  background: var(--grad-primary);
  box-shadow: 0 10px 30px rgba(30, 75, 255, .32);
}
.btn--grad:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 16px 38px rgba(30, 75, 255, .4); }
.btn--outline {
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid rgba(14, 20, 36, .16);
}
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--ink { color: #fff; background: var(--ink); }
.btn--ink:hover { color: #fff; }
.btn--blue { color: #fff; background: var(--blue); }
.btn--blue:hover { color: #fff; }
.btn--purple { color: #fff; background: var(--purple); }
.btn--purple:hover { color: #fff; }
.btn--gold { color: var(--ink); background: var(--grad-gold-pill); }
.btn--gold:hover { color: var(--ink); }
.btn--lg { padding: 20px 30px; min-height: 56px; flex: 1 1 220px; }
.btn--nav {
  font-size: 13px;
  letter-spacing: .08em;
  padding: 12px 22px;
  min-height: 0;
  box-shadow: 0 6px 18px rgba(30, 75, 255, .28);
}
.btn--nav:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(30, 75, 255, .36); }

.form-error {
  margin: 10px 0 0;
  font-size: 14.5px;
  font-weight: 600;
  color: #B42318;
  text-align: left;
}

/* ---------- 1. Header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(14, 20, 36, .07);
}
.hdr__row {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hdr__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hdr__logo img { height: 30px; width: auto; display: block; }
.hdr__nav { align-items: center; gap: clamp(16px, 2.2vw, 30px); white-space: nowrap; }
.hdr__nav a {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .2s ease;
}
.hdr__nav a:hover { color: var(--blue); }
.hdr__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hdr__burger span { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
.hdr__burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.hdr__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.hdr__progress {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}
.hdr__progress > div {
  height: 100%;
  background: var(--grad-progress);
  transform: scaleX(0);
  transform-origin: 0 50%;
}
.hdr__menu {
  border-top: 1px solid rgba(14, 20, 36, .07);
  padding: 18px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #fff;
  animation: ucFade .25s ease both;
}
.hdr__menu a {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  padding: 12px 0;
}
.hdr__menu-cta { margin-top: 14px; width: 100%; font-size: 16px; padding: 18px 22px; }

[data-desk] { display: none; }
@media (min-width: 900px) {
  [data-desk] { display: flex; }
  [data-mob] { display: none !important; }
}

/* ---------- 2. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F8FE 100%);
}
.hero__blob {
  position: absolute;
  top: -18%; right: -10%;
  width: 70vw; height: 70vw;
  max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(124, 58, 237, .16), rgba(30, 75, 255, .10) 45%, rgba(255, 255, 255, 0) 70%);
  filter: blur(10px);
  animation: ucDrift 18s ease-in-out infinite;
  pointer-events: none;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(14, 20, 36, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(14, 20, 36, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000, transparent 75%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 72px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(480px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.hero__copy { min-width: 0; }
.hero__h1 {
  font-family: var(--display);
  font-size: clamp(44px, 7.4vw, 88px);
  line-height: .92;
  letter-spacing: -.035em;
  font-weight: 900;
  margin: 0;
  color: var(--ink);
  overflow-wrap: break-word;
}
.hero__lead {
  font-size: clamp(17px, 2.4vw, 21px);
  line-height: 1.5;
  color: var(--body);
  max-width: 40ch;
  margin: 22px 0 0;
}
.hero__sub {
  font-size: clamp(15.5px, 2vw, 17px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 40ch;
  margin: 14px 0 0;
}
.hero__sub strong { color: var(--ink); font-weight: 700; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__textlink {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}
.hero__textlink:hover { color: var(--purple); }
.hero__cred {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}
.hero__cred span {
  font-family: var(--display);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__visual { position: relative; min-width: 0; }
.hero__glow {
  position: absolute;
  inset: auto -4% -4% 6%;
  height: 60%;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(30, 75, 255, .22), rgba(124, 58, 237, .22));
  filter: blur(38px);
}
.hero__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(14, 20, 36, .4);
}
.hero__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 22%;
}
.hero__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(30, 75, 255, .10), transparent 42%);
}
.hero__card {
  position: absolute;
  left: -2px;
  bottom: 18px;
  background: rgba(255, 255, 255, .94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 18px 40px -18px rgba(14, 20, 36, .45);
}
.hero__card-eyebrow {
  font-family: var(--display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.hero__card-title { font-family: var(--display); font-size: 14px; font-weight: 700; color: var(--ink); margin-top: 2px; }

/* ---------- 3. Ticker ---------- */
.ticker { background: var(--dark); background: linear-gradient(100deg, #11172B, #1B2445); overflow: hidden; }
.ticker__row {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  justify-content: center;
  align-items: center;
}
.ticker__gold, .ticker__dim {
  font-family: var(--display);
  font-size: 12px;
  text-transform: uppercase;
}
.ticker__gold { font-weight: 800; letter-spacing: .18em; color: var(--gold-light); }
.ticker__dim { font-weight: 600; letter-spacing: .16em; color: rgba(255, 255, 255, .72); }

/* ---------- Shared two-column + gradient list ---------- */
.grad-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 2px solid;
  border-image: linear-gradient(180deg, #1E4BFF, #7C3AED) 1;
  padding-left: 20px;
}
.grad-list p {
  margin: 0;
  font-size: clamp(16.5px, 2.1vw, 19px);
  line-height: 1.5;
  color: var(--body);
}
.grad-list--tight p { line-height: 1.45; }

/* ---------- 4. Hook ---------- */
.hook { background: #fff; }
.hook__grid {
  padding-top: var(--sec-pad);
  padding-bottom: var(--sec-pad-tight);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.hook__h2 { font-size: clamp(40px, 8.8vw, 80px); }
.hook__feel { margin: 0 0 22px; font-size: clamp(18px, 2.5vw, 22px); line-height: 1.45; font-weight: 600; color: var(--ink); }
.hook__good {
  margin: 30px 0 8px;
  font-family: var(--display);
  font-size: clamp(26px, 4.4vw, 42px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 900;
  color: var(--ink);
}
.hook__line { margin: 0 0 6px; font-size: clamp(17px, 2.2vw, 20px); line-height: 1.5; color: var(--body); }
.hook__punch {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(19px, 2.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 900;
}
.hook__eyebrow { margin: 26px 0 12px; }
.hook .chips { margin-bottom: 18px; }
.hook__close { margin: 0; font-size: clamp(16.5px, 2.2vw, 19px); line-height: 1.55; color: var(--body); max-width: 48ch; }

/* ---------- 5. Start ---------- */
.start { background: #fff; }
.start > .wrap { padding-top: var(--sec-pad-tight); padding-bottom: var(--sec-pad-tight); }
.start__h2 { font-size: clamp(38px, 8.4vw, 76px); margin-bottom: clamp(30px, 5vw, 54px); }
.start__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.start-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: 22px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease-out), box-shadow .35s ease, opacity .65s var(--ease-out);
}
.start-card:hover { transform: translateY(-4px); }
.start-card--blue { background: var(--tint-blue); border-color: rgba(30, 75, 255, .14); }
.start-card--blue:hover { box-shadow: 0 24px 50px -30px rgba(30, 75, 255, .6); }
.start-card--purple { background: var(--tint-purple); border-color: rgba(124, 58, 237, .16); }
.start-card--purple:hover { box-shadow: 0 24px 50px -30px rgba(124, 58, 237, .6); }
.start-card--gold { background: linear-gradient(160deg, #FFFBF0, #FDF6E6); border-color: rgba(200, 160, 46, .28); }
.start-card--gold:hover { box-shadow: 0 24px 50px -30px rgba(200, 160, 46, .7); }
.start-card__num {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.start-card--blue .start-card__num, .start-card--blue .start-card__sub { color: var(--blue); }
.start-card--purple .start-card__num, .start-card--purple .start-card__sub { color: var(--purple); }
.start-card--gold .start-card__num, .start-card--gold .start-card__sub { color: var(--gold-text); }
.start-card__sub { margin: 0 0 22px; font-size: 17px; font-weight: 600; }
.start-card__intro { margin: 0 0 16px; font-size: 16px; line-height: 1.5; color: var(--body); }
.start-card__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--body);
}
.start-card__helps {
  margin: 24px 0 0;
  padding-top: 18px;
  width: 100%;
  border-top: 1px solid rgba(30, 75, 255, .18);
}
.start-card--purple .start-card__helps { border-top-color: rgba(124, 58, 237, .2); }
.start-card--gold .start-card__helps { border-top-color: rgba(200, 160, 46, .32); }
.start-card__outcome {
  margin: 6px 0 0;
  font-family: var(--display);
  font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}
.start-card__pill { margin-top: 18px; font-size: 13.5px; padding: 15px 24px; }
.start__close { margin-top: clamp(32px, 5vw, 56px); text-align: center; }
.start__close p {
  margin: 0;
  font-family: var(--display);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 900;
  color: var(--ink);
}
.start__close-a { font-size: clamp(20px, 3.6vw, 34px); margin-bottom: 10px !important; }
.start__close-b, .start__close-c { font-size: clamp(22px, 4.2vw, 40px); }
.start__close-c { margin-top: 6px !important; }

/* ---------- 6. About ---------- */
.about { background: #fff; }
.about__grid {
  padding-top: var(--sec-pad);
  padding-bottom: var(--sec-pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.about__h2 { font-size: clamp(36px, 7.6vw, 68px); line-height: .94; letter-spacing: -.03em; }
.about__para { margin: 30px 0 0; font-size: clamp(17px, 2.3vw, 20px); line-height: 1.55; color: var(--ink); font-weight: 500; }
.about__thats {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* ---------- 7. Method ---------- */
.method { background: linear-gradient(180deg, #F6F8FE, #FFFFFF); position: relative; overflow: hidden; }
.method__inner { padding-top: var(--sec-pad); padding-bottom: var(--sec-pad); scroll-margin-top: 80px; }
.method__h2 { margin-bottom: 18px; }
.method__lead { margin: 0 0 clamp(36px, 6vw, 64px); font-size: clamp(17px, 2.3vw, 20px); line-height: 1.55; color: var(--body); max-width: 52ch; }

.spine-wrap { position: relative; padding-left: clamp(30px, 5vw, 54px); }
.spine-track {
  position: absolute;
  left: clamp(9px, 1.6vw, 17px);
  top: 8px; bottom: 8px;
  width: 2px;
  background: rgba(14, 20, 36, .10);
}
.spine-fill {
  position: absolute;
  left: clamp(9px, 1.6vw, 17px);
  top: 8px;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, #1E4BFF, #7C3AED);
  box-shadow: 0 0 12px rgba(30, 75, 255, .45);
}
.stage { position: relative; padding-bottom: clamp(40px, 6vw, 72px); }
.node {
  position: absolute;
  left: calc(-1 * clamp(30px, 5vw, 54px) + clamp(3px, 1vw, 11px));
  top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(14, 20, 36, .18);
  transition: all .4s ease;
}
.node.is-on {
  background: var(--grad-primary);
  border-color: var(--blue);
  transform: scale(1.3);
  box-shadow: 0 0 0 7px rgba(30, 75, 255, .12);
}
.stage__num { font-family: var(--display); font-size: 13px; font-weight: 800; letter-spacing: .2em; color: var(--blue); margin-bottom: 8px; }
.stage__num--purple { color: var(--purple); }
.stage__h3 {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.025em;
  margin: 0 0 8px;
  color: var(--ink);
}
.stage__sub {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.stage__p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.5; color: var(--body); max-width: 52ch; }
.stage__p--w { max-width: 54ch; }
.stage__p--last { margin-bottom: 0; }
.stage__p--engine { margin-bottom: 22px; }
.stage__workforce {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple);
}
.agents {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}
.agent {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(30, 75, 255, .22);
  border-radius: 12px;
  padding: 14px 16px;
}
.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
  max-width: 760px;
}
.flow__b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--display);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  border-radius: 10px;
  padding: 14px 16px;
}
.flow__b span { opacity: .55; }
.flow__b--ink { background: var(--ink); }
.flow__b--blue { background: var(--blue); }
.flow__b--purple { background: var(--mid-purple); }
.flow__b--gold { background: var(--grad-gold-pill); color: var(--ink); }
.channels { display: flex; flex-wrap: wrap; gap: 7px 14px; margin-bottom: 16px; font-size: 14.5px; color: var(--muted); }
.method__closer {
  margin: clamp(34px, 5vw, 56px) 0 0;
  font-family: var(--display);
  font-size: clamp(20px, 3.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 900;
  color: var(--ink);
  max-width: 26ch;
}
.method__panel {
  margin-top: clamp(48px, 7vw, 84px);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 22px;
  background: var(--grad-dark-2);
  position: relative;
  overflow: hidden;
}
.method__panel-blob {
  position: absolute;
  top: -40%; right: -10%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .45), transparent 62%);
  filter: blur(20px);
  animation: ucDrift 22s ease-in-out infinite;
}
.method__panel p {
  position: relative;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 4.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -.03em;
  font-weight: 900;
}
.method__panel-a { color: #fff; max-width: 22ch; }
.method__panel-b { color: var(--gold-light); max-width: 24ch; margin-top: 10px !important; }

/* ---------- 8. Old way ---------- */
.oldway { background: #fff; }
.oldway__grid {
  padding-top: var(--sec-pad);
  padding-bottom: var(--sec-pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}
.oldway__h2 { font-size: clamp(38px, 8vw, 72px); line-height: .94; margin-bottom: 26px; }
.hire { display: flex; flex-direction: column; gap: 10px; max-width: 420px; }
.hire__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.hire__row span { font-size: 17px; color: var(--body); }
.hire__row b { font-family: var(--display); font-size: 17px; font-weight: 900; color: var(--ink); }
.oldway__every { margin: 24px 0 10px; font-size: 16px; color: var(--muted); }
.oldway__math {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(30px, 5.4vw, 52px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 900;
}
.oldway__para { margin: 0 0 28px; font-size: clamp(16.5px, 2.2vw, 19px); line-height: 1.6; color: var(--body); max-width: 50ch; }
.oldway__panel {
  padding: clamp(24px, 3.2vw, 36px);
  border-radius: 20px;
  background: var(--tint-blue);
  border: 1px solid rgba(30, 75, 255, .14);
}
.oldway__panel .eyebrow { margin: 0 0 10px; }
.oldway__q-dim {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(19px, 2.6vw, 24px);
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--dim);
}
.oldway__q-ink {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}

/* ---------- 9. Pillars ---------- */
.pillars { background: var(--grad-dark); position: relative; overflow: hidden; }
.pillars__blob {
  position: absolute;
  bottom: -40%; right: -8%;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .4), transparent 62%);
  filter: blur(22px);
  animation: ucDrift 26s ease-in-out infinite;
  pointer-events: none;
}
.pillars__inner { position: relative; padding-top: var(--sec-pad); padding-bottom: var(--sec-pad); }
.pillars__h2 {
  font-family: var(--display);
  font-size: clamp(42px, 9.4vw, 88px);
  line-height: .9;
  letter-spacing: -.035em;
  font-weight: 900;
  margin: 0 0 16px;
  color: #fff;
}
.pillars__h2--gold { color: var(--gold-light); margin-bottom: clamp(36px, 5vw, 60px); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(20px, 3vw, 36px);
}
.pillar { padding-top: 20px; border-top: 2px solid rgba(255, 255, 255, .22); }
.pillar h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #fff;
}
.pillar p { margin: 0; font-size: 16.5px; line-height: 1.5; color: rgba(255, 255, 255, .72); }
.pillar--gold { border-top-color: var(--gold-light); }
.pillar--gold h3 { color: var(--gold-light); }
.pillars__closer {
  margin: clamp(38px, 5vw, 62px) 0 0;
  font-family: var(--display);
  font-size: clamp(22px, 3.8vw, 38px);
  line-height: 1.08;
  letter-spacing: -.03em;
  font-weight: 900;
  color: #fff;
  max-width: 20ch;
}
.pillars__para { margin: 18px 0 0; font-size: clamp(16.5px, 2.2vw, 19px); line-height: 1.6; color: rgba(255, 255, 255, .72); max-width: 54ch; }
.pillars__para strong { color: var(--gold-light); font-weight: 700; }

/* ---------- 10. Authority + letter ---------- */
.authority { background: #fff; }
.authority__top { padding-top: clamp(56px, 8vw, 110px); padding-bottom: clamp(20px, 3vw, 40px); }
.authority__h2 { font-size: clamp(38px, 8.4vw, 76px); max-width: 16ch; }
.authority__para { margin: 22px 0 0; font-size: clamp(17px, 2.3vw, 20px); line-height: 1.55; color: var(--body); max-width: 58ch; }
.authority__chips { gap: 8px 10px; margin-top: 22px; }
.authority__now {
  margin: 24px 0 0;
  font-family: var(--display);
  font-size: clamp(19px, 2.8vw, 26px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--ink);
}
.authority__lesson {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--muted);
  max-width: 44ch;
}
.authority__lesson span { color: var(--ink); }
.authority__grid {
  padding-bottom: var(--sec-pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(30px, 4vw, 64px);
  align-items: start;
}
.authority__photo { position: relative; min-width: 0; }
.authority__frame { border-radius: 20px; overflow: hidden; box-shadow: 0 40px 80px -34px rgba(14, 20, 36, .45); }
.authority__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 78% 38%;
}
.authority__tags { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 16px; }
.authority__tags span {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.letter { min-width: 0; }
.letter__from { letter-spacing: .2em; margin-bottom: 14px; }
.letter__h3 {
  font-family: var(--display);
  font-size: clamp(28px, 4.6vw, 44px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 900;
  margin: 0 0 22px;
  color: var(--ink);
}
.letter__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: clamp(16.5px, 2.1vw, 19px);
  line-height: 1.62;
  color: var(--body);
}
.letter__body p { margin: 0; }
.letter__pull {
  font-family: var(--display);
  font-size: clamp(22px, 3.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 900;
  color: var(--ink);
}
.letter__sig {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
}

/* ---------- 11. Philosophy ---------- */
.philo { background: var(--grad-dark); position: relative; overflow: hidden; }
.philo__blob {
  position: absolute;
  top: -30%; left: -8%;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 75, 255, .4), transparent 62%);
  filter: blur(22px);
  animation: ucDrift 24s ease-in-out infinite;
  pointer-events: none;
}
.philo__inner { position: relative; padding-top: clamp(60px, 9vw, 120px); padding-bottom: clamp(60px, 9vw, 120px); }
.philo__eyebrow { letter-spacing: .2em; color: var(--gold-light); margin-bottom: 20px; }
.philo__h2 {
  font-family: var(--display);
  font-size: clamp(38px, 8vw, 72px);
  line-height: .94;
  letter-spacing: -.035em;
  font-weight: 900;
  margin: 0 0 clamp(38px, 5vw, 62px);
  color: #fff;
}
.philo__beat {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(46px, 7vw, 86px);
}
.philo__p { margin: 0 0 18px; font-size: clamp(16.5px, 2.2vw, 19px); line-height: 1.6; color: rgba(255, 255, 255, .75); max-width: 46ch; }
.philo__p:last-child { margin-bottom: 0; }
.philo__p--nomax { max-width: none; }
.philo__pull { min-width: 0; padding-left: clamp(0px, 2vw, 20px); border-left: 2px solid rgba(232, 199, 102, .4); }
.philo__pull > p { padding-left: clamp(14px, 2vw, 20px); }
.philo__pull-a, .philo__pull-b {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(21px, 3.4vw, 34px);
  line-height: 1.08;
  letter-spacing: -.025em;
  font-weight: 900;
  color: #fff;
}
.philo__pull-b { color: var(--gold-light); margin-bottom: 18px; }
.philo__claimed { min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.philo__claimed span {
  font-family: var(--display);
  font-size: clamp(18px, 2.8vw, 27px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .5);
}
.philo__own {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(20px, 3.2vw, 30px);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 900;
  color: #fff;
  max-width: 20ch;
}
.philo__own--gold { color: var(--gold-light); max-width: 22ch; margin-bottom: 0; }
.philo__means {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(26px, 5.2vw, 52px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 900;
  color: #fff;
  max-width: 20ch;
}
.philo__yours { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-bottom: clamp(46px, 7vw, 86px); }
.philo__yours span {
  font-family: var(--display);
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}
.philo__ceo-h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 5.6vw, 54px);
  line-height: .98;
  letter-spacing: -.03em;
  font-weight: 900;
  color: #fff;
}
.philo__ceo-list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; }
.philo__ceo-list span { font-size: clamp(16.5px, 2.2vw, 19px); line-height: 1.5; color: rgba(255, 255, 255, .82); }
.philo__need-eyebrow { margin: 0 0 10px; color: rgba(255, 255, 255, .55); }
.philo__need { margin: 0 0 22px; font-size: clamp(16px, 2.1vw, 18px); line-height: 1.5; color: rgba(255, 255, 255, .55); }
.philo__become {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(19px, 2.8vw, 26px);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 900;
  color: #fff;
  max-width: 26ch;
}
.philo__roles { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-bottom: 30px; }
.philo__roles span {
  font-family: var(--display);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -.025em;
  color: #fff;
}
.philo__claim-a, .philo__claim-b {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 5.6vw, 56px);
  line-height: 1;
  letter-spacing: -.03em;
  font-weight: 900;
  color: #fff;
  max-width: 22ch;
}
.philo__claim-b { color: var(--gold-light); margin: 10px 0 clamp(34px, 5vw, 54px); }
.philo__live { display: flex; flex-direction: column; gap: 6px; }
.philo__live span {
  font-family: var(--display);
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
}

/* ---------- 12. World ---------- */
.world { background: linear-gradient(180deg, #FFFFFF, #F6F8FE); }
.world > .wrap { padding-top: var(--sec-pad); padding-bottom: var(--sec-pad); }
.world__h2 { font-size: clamp(40px, 9vw, 80px); margin-bottom: clamp(34px, 5vw, 58px); }
.entries { display: flex; flex-direction: column; gap: 14px; }
.entry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(14px, 3vw, 40px);
  align-items: center;
  padding: clamp(24px, 3.4vw, 38px);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px -28px rgba(14, 20, 36, .35);
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease-out), box-shadow .3s ease, opacity .65s var(--ease-out);
}
.entry:hover { color: inherit; transform: translateY(-3px); box-shadow: 0 28px 56px -30px rgba(14, 20, 36, .45); }
.entry__eyebrow { font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .2em; margin-bottom: 8px; }
.entry__eyebrow--gold { color: var(--gold-text); }
.entry__eyebrow--blue { color: var(--blue); }
.entry__h3 {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -.025em;
  margin: 0;
  color: var(--ink);
}
.entry__h3--white { color: #fff; }
.entry__p { margin: 0 0 18px; font-size: 16.5px; line-height: 1.55; color: var(--body); }
.entry__p--light { color: rgba(255, 255, 255, .82); }
.entry__pill { font-size: 14px; padding: 16px 26px; }
.entry:hover .btn--outline { border-color: var(--blue); color: var(--blue); }
.entry--dark {
  padding: clamp(26px, 3.6vw, 42px);
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 30px 60px -30px rgba(30, 75, 255, .55);
}
.entry--dark:hover { box-shadow: 0 38px 70px -30px rgba(30, 75, 255, .65); }
.entry--dark .entry__eyebrow--gold { color: var(--gold-light); }
.entry--dark .col { position: relative; }
.entry__blob {
  position: absolute;
  top: -60%; right: -5%;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 75, 255, .55), transparent 62%);
  filter: blur(18px);
  animation: ucDrift 20s ease-in-out infinite;
}
.entry__cta {
  width: 100%;
  max-width: 360px;
  min-height: 56px;
  padding: 18px 26px;
  box-shadow: 0 12px 30px rgba(30, 75, 255, .45);
}

/* ---------- 13. Qualification ---------- */
.qual { background: #fff; }
.qual__grid {
  padding-top: var(--sec-pad);
  padding-bottom: var(--sec-pad);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.qual__h2 { font-size: clamp(40px, 9vw, 80px); margin-bottom: 22px; }
.qual__para { margin: 0 0 26px; font-size: clamp(17px, 2.3vw, 20px); line-height: 1.55; color: var(--body); max-width: 44ch; }
.qual__cta {
  width: 100%;
  max-width: 400px;
  min-height: 60px;
  padding: 20px 30px;
  box-shadow: 0 12px 34px rgba(30, 75, 255, .34);
}
.qual__cta:hover { box-shadow: 0 18px 42px rgba(30, 75, 255, .42); }
.qual__compare {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 28px;
}
.qual__head {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.qual__head--not { color: var(--muted); border-bottom: 1px solid rgba(14, 20, 36, .12); }
.qual__head--for { color: var(--blue); border-bottom: 2px solid var(--blue); }
.qual__list { display: flex; flex-direction: column; gap: 10px; }
.qual__list--not { font-size: 16px; color: var(--muted); }
.qual__list--for { font-size: 16.5px; font-weight: 600; color: var(--ink); }

/* ---------- 14. Training ---------- */
.training { background: linear-gradient(180deg, #F6F8FE, #FFFFFF); }
.training__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) 20px;
  text-align: center;
}
.training__eyebrow { letter-spacing: .2em; margin-bottom: 16px; }
.training__h2 {
  font-family: var(--display);
  font-size: clamp(34px, 7.4vw, 64px);
  line-height: .96;
  letter-spacing: -.03em;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--ink);
}
.training__para { margin: 0 auto 30px; max-width: 52ch; font-size: clamp(16.5px, 2.2vw, 19px); line-height: 1.55; color: var(--body); }
.training__form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 560px; margin: 0 auto; position: relative; }
.training__input {
  flex: 1 1 240px;
  min-height: 58px;
  font-size: 16px;
  padding: 16px 20px;
  border-radius: 999px;
  border: 1.5px solid rgba(14, 20, 36, .16);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.training__input:focus { border-color: var(--blue); box-shadow: var(--focus-ring); }
.training__input.is-invalid { border-color: #B42318; }
.training__submit { flex: 1 1 200px; min-height: 58px; padding: 18px 28px; white-space: nowrap; box-shadow: 0 10px 28px rgba(30, 75, 255, .3); }
.training__form .form-error { flex-basis: 100%; text-align: center; }
.training__done {
  max-width: 520px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 40px -26px rgba(14, 20, 36, .4);
  animation: ucFade .4s ease both;
}
.training__done-a { margin: 0; font-family: var(--display); font-size: 20px; font-weight: 800; color: var(--ink); }
.training__done-b { margin: 8px 0 0; font-size: 15px; color: var(--muted); }

/* ---------- 15. Footer ---------- */
.ftr { background: var(--dark); color: #fff; }
.ftr__inner { padding-top: clamp(48px, 7vw, 80px); padding-bottom: clamp(28px, 4vw, 40px); }
.ftr__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 36px;
  align-items: start;
}
.ftr__mark { height: 56px; width: auto; display: block; margin-bottom: 18px; }
.ftr__tag {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 3.4vw, 30px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  color: #fff;
  max-width: 16ch;
}
.ftr__links { min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.ftr__links a {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  transition: color .2s ease;
  align-self: flex-start;
}
.ftr__links a:hover { color: var(--gold-light); }
.ftr__cta { width: 100%; min-height: 56px; font-size: 14px; padding: 18px 24px; box-shadow: none; }
.ftr__bottom {
  margin-top: clamp(34px, 5vw, 56px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}
.ftr__disclaimer { max-width: 60ch; }

/* ---------- 16. Application overlay ---------- */
.app {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: #fff;
  display: flex;
  flex-direction: column;
  animation: ucFade .3s ease both;
}
.app__top {
  flex-shrink: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.app__top img { height: 24px; width: auto; display: block; }
.app__close {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1.5px solid rgba(14, 20, 36, .14);
  background: #fff;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.app__close:hover { border-color: var(--blue); color: var(--blue); }
.app__track { flex-shrink: 0; height: 3px; background: rgba(14, 20, 36, .08); }
.app__fill { height: 100%; width: 0; background: linear-gradient(90deg, #1E4BFF, #7C3AED); transition: width .45s var(--ease-out); }
.app__scroll { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.app__body { max-width: 760px; margin: 0 auto; padding: clamp(22px, 5vw, 54px) 20px 40px; }
.app__step { animation: ucFade .25s ease both; }
.app__label {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
}
.app__kicker {
  font-family: var(--display);
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 10px;
}
.app__title {
  font-family: var(--display);
  font-size: clamp(28px, 6.2vw, 48px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 900;
  margin: 0;
  color: var(--ink);
  text-wrap: pretty;
}
.app__sub { margin: 16px 0 0; font-size: clamp(15.5px, 2.2vw, 18px); line-height: 1.55; color: var(--muted); max-width: 52ch; }
.app__options { margin-top: clamp(24px, 4vw, 38px); display: flex; flex-direction: column; gap: 10px; }
.app__opt {
  display: block;
  width: 100%;
  min-height: 62px;
  text-align: left;
  padding: 18px 20px;
  border-radius: 16px;
  cursor: pointer;
  border: 1.5px solid rgba(14, 20, 36, .13);
  background: #fff;
  color: var(--ink);
  font-size: clamp(16px, 2.4vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  transition: all .18s ease;
}
.app__opt:hover { border-color: rgba(30, 75, 255, .5); }
.app__opt.is-selected {
  border-color: var(--blue);
  background: linear-gradient(115deg, rgba(30, 75, 255, .08), rgba(124, 58, 237, .08));
  box-shadow: 0 8px 24px -14px rgba(30, 75, 255, .7);
}
.app__field { margin-top: clamp(22px, 4vw, 34px); }
.app__textarea {
  width: 100%;
  font-size: 17px;
  line-height: 1.5;
  padding: 18px;
  border-radius: 16px;
  border: 1.5px solid rgba(14, 20, 36, .16);
  background: #fff;
  color: var(--ink);
  outline: none;
  resize: vertical;
  min-height: 160px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.app__contact { margin-top: clamp(22px, 4vw, 34px); display: flex; flex-direction: column; gap: 12px; }
.app__input {
  width: 100%;
  min-height: 58px;
  font-size: 17px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1.5px solid rgba(14, 20, 36, .16);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.app__textarea:focus, .app__input:focus { border-color: var(--blue); box-shadow: var(--focus-ring); }
.app__textarea.is-invalid, .app__input.is-invalid { border-color: #B42318; }
.app__bar {
  flex-shrink: 0;
  border-top: 1px solid rgba(14, 20, 36, .08);
  background: rgba(255, 255, 255, .92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
}
.app__bar-inner { max-width: 760px; margin: 0 auto; }
.app__error { margin: 0 0 12px; }
.app__actions { display: flex; gap: 12px; align-items: center; }
.app__back { min-height: 54px; min-width: 54px; font-size: 14px; padding: 0 20px; }
.app__next { flex: 1; min-height: 54px; padding: 0 24px; box-shadow: 0 10px 26px rgba(30, 75, 255, .3); }
.app__done { padding-top: clamp(20px, 8vw, 60px); animation: ucRise .5s ease both; }
.app__done-eyebrow { letter-spacing: .2em; color: var(--gold-text); margin-bottom: 16px; }
.app__done-h2 {
  font-family: var(--display);
  font-size: clamp(34px, 8vw, 60px);
  line-height: .95;
  letter-spacing: -.03em;
  font-weight: 900;
  margin: 0 0 18px;
  color: var(--ink);
}
.app__done-p { margin: 0 0 30px; font-size: clamp(16.5px, 2.4vw, 19px); line-height: 1.55; color: var(--body); max-width: 48ch; }
.app__done-btn { min-height: 58px; padding: 18px 30px; }
