/* tokens */
:root {
  --ink:        #16191e;
  --ink-warm:   #1a1d22;
  --plate:      #1d2026;
  --plate-deep: #131619;
  --paper:      #f4f1ea;
  --paper-dim:  #c4c0b4;
  --dim:        #8e8b83;
  --faint:      #555248;
  --hairline:   #2a2d33;
  --rule:       #34383e;
  --gold:       #e8c888;
  --emerald:    #2a5a42;

  --sans: "Inter Tight", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Consolas, monospace;

  --ease: cubic-bezier(0.2, 0.7, 0.1, 1);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--ink); color: var(--paper); }
body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

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

/* layout: .wide */
.wide { max-width: 1360px; margin: 0 auto; padding: 0 72px; position: relative; }

/* mono labels */
.mono {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}

/* nav */
nav.top {
  position: sticky; top: 0; z-index: 20;
  padding: 28px 72px;
  background: rgba(22, 25, 30, 0.78);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 64px;
}
nav.top .brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-weight: 400; font-size: 16px;
  letter-spacing: -0.01em; color: var(--paper);
}
nav.top .brand svg { width: 22px; height: 22px; }
nav.top .links {
  display: flex; gap: 32px; justify-self: center;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
}
nav.top .links a {
  color: var(--dim); padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
nav.top .links a:hover { color: var(--paper); border-bottom-color: var(--gold); }
nav.top .links a.current { color: var(--paper); }
nav.top .nav-right {
  display: inline-flex; align-items: center; gap: 24px; justify-self: end;
}
nav.top .enter {
  justify-self: end;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper);
  padding: 10px 16px;
  border: 1px solid var(--rule);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
nav.top .enter:hover { border-color: var(--paper); }
nav.top .nav-right .enter { justify-self: auto; }
nav.top .lang-switch {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  padding: 4px 8px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
nav.top .lang-switch:hover { color: var(--paper); border-bottom-color: var(--gold); }
nav.top .lang-switch.current { color: var(--paper); }

/* mark animation */
.mark-svg { overflow: visible; }
.mark-svg .face {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
}
.mark-svg.lit .face-top   { opacity: 1; transition-delay: 0s; }
.mark-svg.lit .face-right { opacity: 1; transition-delay: 0.15s; }
.mark-svg.lit .face-left  { opacity: 1; transition-delay: 0.3s; }
.mark-svg .ring {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.mark-svg.lit .ring-1 { stroke-dashoffset: 0; transition-delay: 0.45s; }
.mark-svg.lit .ring-2 { stroke-dashoffset: 0; transition-delay: 0.65s; }
.mark-svg.lit .ring-3 { stroke-dashoffset: 0; transition-delay: 0.85s; }
.mark-svg.lit .ring-4 { stroke-dashoffset: 0; transition-delay: 1.05s; }
.mark-svg .core,
.mark-svg .core-inner,
.mark-svg .core-bar,
.mark-svg .core-half,
.mark-svg .academy-dot {
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.mark-svg.lit .core { opacity: 1; transition-delay: 1.4s; }
.mark-svg.lit .core-half { opacity: 1; transition-delay: 1.4s; }
.mark-svg.lit .core-bar { opacity: 1; transition-delay: 1.6s; }
.mark-svg.lit .core-inner { opacity: 1; transition-delay: 1.7s; }
.mark-svg.lit .academy-dot.dot-1 { opacity: 1; transition-delay: 1.4s; }
.mark-svg.lit .academy-dot.dot-2 { opacity: 1; transition-delay: 1.55s; }
.mark-svg.lit .academy-dot.dot-3 { opacity: 1; transition-delay: 1.7s; }

/* hero (base) */
section.hero {
  padding: 220px 0 200px;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
section.hero .grid {
  display: grid; grid-template-columns: 1fr auto; gap: 120px; align-items: center;
}
section.hero .eyebrow { margin-bottom: 56px; }
section.hero h1 {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(54px, 7vw, 110px);
  line-height: 1.02; letter-spacing: -0.04em;
  margin: 0 0 48px; max-width: 14ch;
  color: var(--paper);
}
section.hero h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
section.hero h1 .word.in {
  opacity: 1;
  transform: none;
}
section.hero .sub {
  font-size: 17px; line-height: 1.7; color: var(--paper-dim);
  max-width: 56ch; font-weight: 400;
  margin: 0;
}
section.hero .hero-brand {
  display: flex; flex-direction: column; align-items: center; gap: 36px;
  will-change: transform;
}
section.hero .hero-mark { width: 280px; height: 280px; }
section.hero .hero-mark svg { width: 100%; height: 100%; display: block; }
section.hero .hero-wordmark {
  font-family: var(--sans); font-weight: 200; font-size: 36px;
  letter-spacing: -0.02em; line-height: 1;
  color: var(--paper);
  margin: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
section.hero .hero-wordmark.in {
  opacity: 1;
  transform: none;
}

/* section-head ribbon */
section.block { padding: 200px 0; border-top: 1px solid var(--hairline); }
.section-head {
  display: flex; align-items: baseline; gap: 48px; margin-bottom: 120px;
}
.section-head .line {
  flex: 1; height: 1px; background: var(--hairline);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease);
}
.section-head .line.in { clip-path: inset(0 0 0 0); }

/* sections (.block / .contact / .cta) */
section.contact {
  padding: 200px 0 220px;
  border-top: 1px solid var(--hairline);
  background: var(--ink-warm);
}
section.cta {
  padding: 200px 0 220px;
  border-top: 1px solid var(--hairline);
  background: var(--ink-warm);
}

.trust-strip {
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  background: var(--ink-warm);
}

/* stats */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 56px;
}
.stat .stat-num {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(40px, 4.6vw, 72px);
  letter-spacing: -0.04em; line-height: 1;
  color: var(--paper);
  margin: 0 0 24px;
  font-variant-numeric: tabular-nums;
}
.stat .stat-label {
  color: var(--paper-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 14px;
}
.stat .stat-source {
  font-family: var(--mono); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--paper-dim);
  display: block;
}
.stats-foot {
  margin-top: 96px;
  color: var(--paper-dim);
  font-size: 16px;
  max-width: 64ch;
}

/* product grid */
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.card {
  background: var(--ink);
  padding: 64px 48px 48px;
  display: flex; flex-direction: column; gap: 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.card:hover {
  background: var(--plate);
  transform: translateY(-2px);
}
.card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, var(--gold) 50%, transparent 95%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-2px);
}
.card.scanning::after {
  animation: cardScan 1.4s var(--ease) forwards;
}
@keyframes cardScan {
  0%   { transform: translateY(-2px); opacity: 0; }
  8%   { opacity: 0.65; }
  92%  { opacity: 0.65; }
  100% { transform: translateY(calc(100% + 2px)); opacity: 0; }
}
.card .frame {
  aspect-ratio: 1; width: 100%;
  background: var(--plate-deep);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
  padding: 28%;
}
.card .frame svg { width: 100%; height: 100%; }
.card .meta {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}
.card h3 {
  font-family: var(--sans); font-weight: 300; font-size: 30px;
  letter-spacing: -0.025em; margin: 0; line-height: 1;
  color: var(--paper);
}
.card .hook {
  font-family: var(--sans); font-weight: 300; font-size: 24px;
  letter-spacing: -0.02em; line-height: 1.3;
  color: var(--paper);
  margin: 0;
}
.card .body {
  margin: 0; color: var(--paper-dim); font-size: 15.5px;
  line-height: 1.7; font-weight: 400;
}
.card .enter {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  margin-top: auto; padding-top: 32px; border-top: 1px solid var(--hairline);
  display: inline-flex; justify-content: space-between; align-items: center;
  transition: color 0.3s var(--ease);
}
.card:hover .enter { color: var(--paper); }
.card .enter .arr { transition: transform 0.3s var(--ease); }
.card:hover .enter .arr { transform: translateX(3px); }

/* studio */
.studio-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 120px;
  align-items: start;
}
.studio-h {
  font-family: var(--sans); font-weight: 200; font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em; line-height: 1.2;
  margin: 0; color: var(--paper);
  max-width: 22ch;
}
.studio-body p {
  color: var(--paper-dim); font-size: 16px; line-height: 1.75;
  margin: 0 0 20px;
}
.studio-body p:last-child { margin-bottom: 0; }

/* contact form */
.contact-title {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.035em; line-height: 1.05;
  margin: 0 0 96px;
  color: var(--paper);
  max-width: 20ch;
}
.contact-grid {
  display: grid; grid-template-columns: 1.7fr 1fr; gap: 120px;
  align-items: start;
}
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px 32px;
}
.contact-form .field { display: flex; flex-direction: column; gap: 10px; }
.contact-form .field.full { grid-column: 1 / -1; }
.contact-form label {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  padding: 12px 0;
  transition: border-color 0.3s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--paper);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--faint);
}
.contact-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}
.contact-form .submit-row {
  display: flex; align-items: center;
  margin-top: 28px;
}
.contact-form .form-submit {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper);
  padding: 16px 32px;
  background: transparent;
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.contact-form .form-submit:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}
.form-success {
  grid-column: 1 / -1;
  padding: 36px 0;
  color: var(--paper);
  font-size: 17px; line-height: 1.6;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.contact-meta { display: flex; flex-direction: column; gap: 56px; }
.contact-meta .col .label { margin-bottom: 28px; display: block; }
.contact-meta .col .line {
  font-size: 16px; color: var(--paper); line-height: 1.9;
}
.contact-meta .col .line.dim { color: var(--paper-dim); }

/* footer */
footer.foot {
  padding: 48px 0 56px;
  border-top: 1px solid var(--hairline);
}
footer.foot .grid {
  display: flex; justify-content: space-between; align-items: center; gap: 48px;
  font-family: var(--mono); font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--faint);
}
footer.foot .links { display: flex; gap: 40px; }
footer.foot .links a:hover { color: var(--dim); }

/* sentinel: cap-grid, flow, tier-grid, faq, hero cta-row */
section.hero .cta-row {
  display: flex; gap: 24px; align-items: center;
}
section.hero .cta-row .primary {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper);
  padding: 14px 24px;
  border: 1px solid var(--paper);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
section.hero .cta-row .primary:hover { background: var(--paper); color: var(--ink); }
section.hero .cta-row .ghost {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
section.hero .cta-row .ghost:hover { color: var(--paper); border-bottom-color: var(--gold); }

.cap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.cap {
  background: var(--ink);
  padding: 56px 36px 48px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 280px;
}
.cap .glyph {
  width: 56px; height: 56px;
  background: var(--plate-deep);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
}
.cap .glyph svg { width: 28px; height: 28px; overflow: visible; }
.cap .glyph svg .stroke {
  stroke: var(--paper-dim); stroke-width: 1.25; fill: none;
  stroke-linecap: square;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.2s var(--ease);
}
.cap .glyph svg .accent {
  stroke: var(--gold); stroke-width: 1.25; fill: none;
  stroke-linecap: square;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.2s var(--ease) 0.4s;
}
.cap .glyph svg .dot {
  fill: var(--paper-dim);
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.8s;
}
.cap.in .glyph svg .stroke,
.cap.in .glyph svg .accent { stroke-dashoffset: 0; }
.cap.in .glyph svg .dot { opacity: 1; }
.cap .num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}
.cap h3 {
  font-family: var(--sans); font-weight: 300; font-size: 22px;
  letter-spacing: -0.025em; line-height: 1.15;
  margin: 0; color: var(--paper);
}
.cap p {
  margin: 0; color: var(--paper-dim); font-size: 14.5px;
  line-height: 1.7; font-weight: 400;
}

.flow {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--hairline);
  background: var(--hairline);
}
.flow-step {
  background: var(--ink);
  padding: 56px 40px 48px;
  display: flex; flex-direction: column; gap: 24px;
}
.flow-step .frame {
  width: 96px; height: 96px;
  background: var(--plate-deep);
  border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
}
.flow-step .frame svg { width: 56px; height: 56px; overflow: visible; }
.flow-step .frame svg .stroke {
  stroke: var(--paper-dim); stroke-width: 1.25; fill: none;
  stroke-linecap: square; stroke-linejoin: miter;
  stroke-dasharray: 400; stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.flow-step .frame svg .accent {
  stroke: var(--gold); stroke-width: 1.25; fill: none;
  stroke-linecap: square;
  stroke-dasharray: 200; stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.4s var(--ease) 0.5s;
}
.flow-step .frame svg .dot {
  fill: var(--gold);
  opacity: 0;
  transition: opacity 0.6s var(--ease) 1.1s;
}
.flow-step.in .frame svg .stroke,
.flow-step.in .frame svg .accent { stroke-dashoffset: 0; }
.flow-step.in .frame svg .dot { opacity: 1; }
.flow-step .num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.flow-step h3 {
  font-family: var(--sans); font-weight: 300; font-size: 22px;
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 0; color: var(--paper);
}
.flow-step p {
  margin: 0; color: var(--paper-dim); font-size: 14.5px;
  line-height: 1.7;
}
.flow-arrow {
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.flow-arrow .track {
  width: 100%; height: 1px; background: var(--hairline);
  position: relative;
}
.flow-arrow .track::after {
  content: ""; position: absolute; right: 0; top: -4px;
  width: 0; height: 0;
  border-left: 6px solid var(--hairline);
  border-top: 4px solid transparent; border-bottom: 4px solid transparent;
}
.flow-arrow .pulse {
  position: absolute; left: 0; top: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: width 1.2s var(--ease);
}
.flow-arrow.in .pulse { width: calc(100% - 8px); }

.tier-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.tier {
  background: var(--ink);
  padding: 64px 44px 52px;
  display: flex; flex-direction: column; gap: 32px;
  transition: background 0.4s var(--ease);
}
.tier:hover { background: var(--plate); }
.tier .meta {
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}
.tier h3 {
  font-family: var(--sans); font-weight: 300; font-size: 30px;
  letter-spacing: -0.025em; margin: 0; line-height: 1;
  color: var(--paper);
}
.tier .price {
  display: flex; align-items: baseline; gap: 12px;
}
.tier .price .amount {
  font-family: var(--sans); font-weight: 200; font-size: 52px;
  letter-spacing: -0.04em; line-height: 1; color: var(--paper);
}
.tier .price .per {
  color: var(--dim); font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.tier .price-note {
  color: var(--paper-dim); font-size: 14px; margin-top: -16px;
}
.tier ul.feat {
  list-style: none; padding: 32px 0 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
  border-top: 1px solid var(--hairline);
}
.tier ul.feat li {
  color: var(--paper-dim); font-size: 14.5px; line-height: 1.55;
  padding-left: 22px; position: relative;
}
.tier ul.feat li::before {
  content: "·"; position: absolute; left: 8px; color: var(--dim);
  font-family: var(--mono); font-size: 16px; line-height: 1; top: 4px;
}
.tier .enter {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  margin-top: auto; padding-top: 32px; border-top: 1px solid var(--hairline);
  display: inline-flex; justify-content: space-between; align-items: center;
  transition: color 0.3s var(--ease);
}
.tier:hover .enter { color: var(--paper); }
.tier .enter .arr { transition: transform 0.3s var(--ease); }
.tier:hover .enter .arr { transform: translateX(3px); }
.tier-foot {
  margin-top: 40px;
  color: var(--dim);
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
}

.proc-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.proc {
  background: var(--ink);
  padding: 64px 40px 56px;
  display: flex; flex-direction: column; gap: 28px;
}
.proc .num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.proc h3 {
  font-family: var(--sans); font-weight: 300; font-size: 24px;
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 0; color: var(--paper);
}
.proc p {
  margin: 0; color: var(--paper-dim); font-size: 15px;
  line-height: 1.7; font-weight: 400;
}

.faq {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.qa {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px;
  padding: 48px 0;
  border-bottom: 1px solid var(--hairline);
}
.qa h3 {
  font-family: var(--sans); font-weight: 300; font-size: 22px;
  letter-spacing: -0.02em; line-height: 1.3;
  margin: 0; color: var(--paper);
}
.qa p {
  margin: 0; color: var(--paper-dim); font-size: 15px; line-height: 1.7;
}

.cta-card {
  display: grid; grid-template-columns: 1fr auto; gap: 80px;
  align-items: center;
}
.cta-card h2 {
  font-family: var(--sans); font-weight: 200; font-size: clamp(36px, 4.4vw, 60px);
  letter-spacing: -0.035em; line-height: 1.1; margin: 0; max-width: 22ch;
  color: var(--paper);
}
.cta-card .cta-row { display: flex; gap: 24px; align-items: center; }
.cta-card .primary {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper);
  padding: 14px 24px;
  border: 1px solid var(--paper);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.cta-card .primary:hover { background: var(--paper); color: var(--ink); }
.cta-card .ghost {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  transition: color 0.3s var(--ease);
}
.cta-card .ghost:hover { color: var(--paper); }

/* hacked: scenarios, lures */
.scen-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.scen {
  background: var(--ink);
  padding: 56px 48px;
  display: flex; flex-direction: column; gap: 20px;
}
.scen .num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.scen h3 {
  font-family: var(--sans); font-weight: 300; font-size: 24px;
  letter-spacing: -0.02em; line-height: 1.25;
  margin: 0; color: var(--paper);
}
.scen p {
  margin: 0; color: var(--paper-dim); font-size: 15.5px; line-height: 1.7;
}

.lures-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.lure {
  background: var(--ink);
  padding: 36px 40px;
  display: flex; flex-direction: column; gap: 14px;
}
.lure .key {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.lure h3 {
  font-family: var(--sans); font-weight: 300; font-size: 19px;
  letter-spacing: -0.02em; line-height: 1.25;
  margin: 0; color: var(--paper);
}
.lure p {
  margin: 0; color: var(--paper-dim); font-size: 14.5px; line-height: 1.65;
}
.lures-foot {
  margin-top: 40px;
  color: var(--paper-dim); font-size: 14.5px; line-height: 1.7;
  max-width: 60ch;
}

/* academy: programs, roadmap, coach card, access */
.prog-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.prog {
  background: var(--ink);
  padding: 64px 48px 52px;
  display: flex; flex-direction: column; gap: 24px;
  transition: background 0.4s var(--ease);
}
.prog:hover { background: var(--plate); }
.prog .meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}
.prog .meta .badge { color: var(--gold); }
.prog h3 {
  font-family: var(--sans); font-weight: 300; font-size: 28px;
  letter-spacing: -0.025em; line-height: 1.1;
  margin: 0; color: var(--paper);
}
.prog .hook {
  font-family: var(--sans); font-weight: 300; font-size: 19px;
  letter-spacing: -0.02em; line-height: 1.35;
  margin: 0; color: var(--paper);
}
.prog p {
  margin: 0; color: var(--paper-dim); font-size: 15px; line-height: 1.7;
}
.prog ul.facts {
  list-style: none; padding: 24px 0 0; margin: 0;
  border-top: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 10px;
}
.prog ul.facts li {
  color: var(--paper-dim); font-size: 14.5px; line-height: 1.55;
  padding-left: 22px; position: relative;
}
.prog ul.facts li::before {
  content: "·"; position: absolute; left: 8px; color: var(--dim);
  font-family: var(--mono); font-size: 16px; line-height: 1; top: 4px;
}
.prog .enter {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  margin-top: auto; padding-top: 28px; border-top: 1px solid var(--hairline);
  display: inline-flex; justify-content: space-between; align-items: center;
  transition: color 0.3s var(--ease);
}
.prog:hover .enter { color: var(--paper); }
.prog .enter .arr { transition: transform 0.3s var(--ease); }
.prog:hover .enter .arr { transform: translateX(3px); }

.roadmap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.road-step {
  background: var(--ink);
  padding: 56px 40px 48px;
  display: flex; flex-direction: column; gap: 22px;
}
.road-step .num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.road-step h3 {
  font-family: var(--sans); font-weight: 300; font-size: 22px;
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 0; color: var(--paper);
}
.road-step p {
  margin: 0; color: var(--paper-dim); font-size: 15px; line-height: 1.7;
}
.road-step .span {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid var(--hairline);
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}

.coach-card {
  margin-top: 80px;
  border: 1px solid var(--hairline);
  background: var(--ink-warm);
  padding: 56px 64px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.coach-card .label { display: block; margin-bottom: 20px; }
.coach-card h3 {
  font-family: var(--sans); font-weight: 200; font-size: clamp(28px, 3.4vw, 44px);
  letter-spacing: -0.03em; line-height: 1.15;
  margin: 0; color: var(--paper);
}
.coach-card p {
  margin: 0; color: var(--paper-dim); font-size: 16px; line-height: 1.7;
}

.access-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.access-col h3 {
  font-family: var(--sans); font-weight: 300; font-size: 26px;
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 0 0 20px; color: var(--paper);
}
.access-col .label { margin-bottom: 24px; display: block; }
.access-col p {
  margin: 0 0 18px; color: var(--paper-dim); font-size: 15.5px; line-height: 1.7;
}
.access-col .price-line {
  color: var(--paper); font-size: 17px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  margin-top: 24px;
}

/* partners: why, process, sell, get, worked, margin table, apply */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 80px;
}
.why-grid .col .label { margin-bottom: 32px; }
.why-grid .col h3 {
  font-family: var(--sans); font-weight: 300; font-size: 24px;
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 0 0 20px; color: var(--paper);
}
.why-grid .col p {
  margin: 0; color: var(--paper-dim); font-size: 15px;
  line-height: 1.7; font-weight: 400;
}

.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.step {
  background: var(--ink);
  padding: 56px 40px 48px;
  display: flex; flex-direction: column; gap: 24px;
  min-height: 280px;
}
.step .num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.step h3 {
  font-family: var(--sans); font-weight: 300; font-size: 22px;
  letter-spacing: -0.025em; line-height: 1.15;
  margin: 0; color: var(--paper);
}
.step p {
  margin: 0; color: var(--paper-dim); font-size: 14.5px;
  line-height: 1.7; font-weight: 400;
}

.sell-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.sell {
  background: var(--ink);
  padding: 64px 56px 56px;
  display: flex; flex-direction: column; gap: 28px;
}
.sell-head { display: flex; gap: 24px; align-items: center; }
.sell-mark {
  width: 64px; height: 64px;
  background: var(--plate-deep);
  border: 1px solid var(--hairline);
  padding: 12px;
  flex: 0 0 auto;
}
.sell-mark svg { width: 100%; height: 100%; display: block; }
.sell h3 {
  font-family: var(--sans); font-weight: 300; font-size: 28px;
  letter-spacing: -0.025em; line-height: 1; margin: 8px 0 0;
  color: var(--paper);
}
.sell .sell-pitch {
  color: var(--paper-dim); font-size: 15.5px; line-height: 1.7; margin: 0;
}
.sell-meta {
  margin-top: auto; padding-top: 28px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; gap: 24px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}

.get-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.get {
  background: var(--ink);
  padding: 56px 36px 48px;
  display: flex; flex-direction: column; gap: 18px;
  min-height: 240px;
}
.get .label {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.get h3 {
  font-family: var(--sans); font-weight: 300; font-size: 20px;
  letter-spacing: -0.02em; line-height: 1.2;
  margin: 0; color: var(--paper);
}
.get p {
  margin: 0; color: var(--paper-dim); font-size: 14px; line-height: 1.65;
}

.worked {
  margin-top: 56px;
  border: 1px solid var(--hairline);
  padding: 40px 48px;
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.worked .label {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.worked .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15.5px;
}
.worked .row:last-child { border-bottom: none; padding-bottom: 0; }
.worked .row .l { color: var(--paper-dim); }
.worked .row .v { color: var(--paper); font-variant-numeric: tabular-nums; font-weight: 400; }
.worked .row.total .l { color: var(--paper); }
.worked .row.total .v { color: var(--paper); font-weight: 500; }

.rate-cta {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 16px 28px;
  border: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper);
  transition: border-color 0.3s var(--ease);
}
.rate-cta .arr { transition: transform 0.3s var(--ease); }
.rate-cta:hover { border-color: var(--paper); }
.rate-cta:hover .arr { transform: translateX(3px); }

.margin-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid var(--hairline);
}
.margin-table thead th {
  padding: 24px 0;
  text-align: left;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  border-bottom: 1px solid var(--hairline);
}
.margin-table thead th + th { padding-left: 40px; }
.margin-table tbody td {
  padding: 32px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15.5px;
  line-height: 1.7;
  vertical-align: baseline;
}
.margin-table tbody td + td { padding-left: 40px; }
.margin-table tbody td.product { color: var(--paper); font-weight: 400; }
.margin-table tbody td.num { color: var(--paper); font-variant-numeric: tabular-nums; }
.margin-table tbody td.num .off {
  color: var(--dim); margin-left: 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.margin-foot {
  margin-top: 48px;
  color: var(--paper-dim);
  font-size: 14.5px;
  max-width: 64ch;
}

section.apply {
  padding: 200px 0 220px;
  border-top: 1px solid var(--hairline);
  background: var(--ink-warm);
}
.apply-title {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.035em; line-height: 1.05;
  margin: 0 0 96px;
  color: var(--paper);
  max-width: 22ch;
}
.apply-grid {
  display: grid; grid-template-columns: 1.7fr 1fr; gap: 120px; align-items: start;
}
.apply-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px 32px;
}
.apply-form .field { display: flex; flex-direction: column; gap: 10px; }
.apply-form .field.full { grid-column: 1 / -1; }
.apply-form label {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}
.apply-form input,
.apply-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  padding: 12px 0;
  transition: border-color 0.3s var(--ease);
}
.apply-form input:focus,
.apply-form textarea:focus {
  outline: none;
  border-bottom-color: var(--paper);
}
.apply-form input::placeholder,
.apply-form textarea::placeholder { color: var(--faint); }
.apply-form textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.7;
}
.apply-form .submit-row {
  display: flex; align-items: center;
  margin-top: 28px;
}
.apply-form .form-submit {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper);
  padding: 16px 32px;
  background: transparent;
  border: 1px solid var(--rule);
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.apply-form .form-submit:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}
.apply-aside { display: flex; flex-direction: column; gap: 32px; }
.apply-aside .label { margin-bottom: 16px; display: block; }
.apply-aside .line { font-size: 16px; color: var(--paper); line-height: 1.7; }
.apply-aside .line.dim { color: var(--paper-dim); }
.apply-aside a.book {
  color: var(--paper);
  border-bottom: 1px solid var(--faint);
  word-break: break-all;
  transition: border-color 0.3s var(--ease);
}
.apply-aside a.book:hover { border-color: var(--gold); }

/* about: people portraits, story, origin, credentials, why */
.story-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 120px;
  align-items: start;
}
.story-h {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.035em; line-height: 1.1;
  margin: 0; color: var(--paper);
  max-width: 16ch;
}
.story-body p {
  color: var(--paper-dim); font-size: 16.5px; line-height: 1.8;
  margin: 0 0 24px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body p strong {
  color: var(--paper); font-weight: 400;
}

.origin-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 120px;
  align-items: start;
}
.origin-h {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.035em; line-height: 1.1;
  margin: 0; color: var(--paper);
  max-width: 16ch;
}
.origin-body p {
  color: var(--paper-dim); font-size: 16.5px; line-height: 1.8;
  margin: 0 0 24px;
}
.origin-body p:last-child { margin-bottom: 0; }
.origin-body p strong { color: var(--paper); font-weight: 400; }

.people-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.person {
  background: var(--ink);
  padding: 48px 44px 44px;
  display: flex; flex-direction: column; gap: 28px;
}
.person .portrait {
  width: 100%;
  aspect-ratio: 1;
  background: var(--plate-deep);
  border: 1px solid var(--hairline);
  overflow: hidden;
}
.person .portrait img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: grayscale(0.1) contrast(1.02);
}
.person .role {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.person h3 {
  font-family: var(--sans); font-weight: 300; font-size: 26px;
  letter-spacing: -0.025em; line-height: 1.1;
  margin: 0; color: var(--paper);
}
.person p {
  margin: 0; color: var(--paper-dim); font-size: 15.5px; line-height: 1.7;
}

.creds {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.cred {
  background: var(--ink);
  padding: 48px 36px 40px;
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
}
.cred .label {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.cred h3 {
  font-family: var(--sans); font-weight: 300; font-size: 20px;
  letter-spacing: -0.02em; line-height: 1.25;
  margin: 0; color: var(--paper);
}
.cred p {
  margin: 0; color: var(--paper-dim); font-size: 14.5px; line-height: 1.65;
}

.why {
  background: var(--ink);
  padding: 56px 48px;
  display: flex; flex-direction: column; gap: 20px;
}
.why .num {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.why h3 {
  font-family: var(--sans); font-weight: 300; font-size: 24px;
  letter-spacing: -0.025em; line-height: 1.2;
  margin: 0; color: var(--paper);
}
.why p {
  margin: 0; color: var(--paper-dim); font-size: 15.5px; line-height: 1.7;
}

/* legal: narrow reading column */
section.legal {
  padding: 180px 0 200px;
  border-bottom: 1px solid var(--hairline);
}
.legal-head {
  display: flex; align-items: baseline; gap: 48px; margin-bottom: 80px;
}
.legal-head .line {
  flex: 1; height: 1px; background: var(--hairline);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease);
}
.legal-head .line.in { clip-path: inset(0 0 0 0); }

.legal-content { max-width: 760px; }
.legal-content h1 {
  font-family: var(--sans); font-weight: 200;
  font-size: clamp(48px, 5.4vw, 88px);
  line-height: 1.04; letter-spacing: -0.04em;
  margin: 0 0 32px; color: var(--paper);
}
.legal-meta {
  color: var(--dim); margin: 0 0 80px;
}
.legal-content h2 {
  font-family: var(--sans); font-weight: 300; font-size: 24px;
  letter-spacing: -0.02em; line-height: 1.2;
  margin: 56px 0 20px; color: var(--paper);
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.legal-content h2:first-of-type { padding-top: 0; border-top: none; margin-top: 0; }
.legal-content h3 {
  font-family: var(--sans); font-weight: 400; font-size: 17px;
  letter-spacing: -0.01em; line-height: 1.3;
  margin: 28px 0 12px; color: var(--paper);
}
.legal-content p {
  color: var(--paper-dim); font-size: 16px; line-height: 1.8;
  margin: 0 0 16px;
}
.legal-content ul {
  list-style: none; padding: 0; margin: 0 0 16px;
  color: var(--paper-dim); font-size: 16px; line-height: 1.8;
}
.legal-content ul li {
  padding-left: 24px; position: relative; margin: 0 0 8px;
}
.legal-content ul li::before {
  content: "·"; position: absolute; left: 8px; top: 0;
  font-family: var(--mono); color: var(--dim);
}
.legal-content ul li strong { color: var(--paper); font-weight: 400; }
.legal-content p a, .legal-content li a {
  color: var(--paper); border-bottom: 1px solid var(--faint);
  transition: border-color 0.3s var(--ease);
}
.legal-content p a:hover, .legal-content li a:hover { border-bottom-color: var(--gold); }

.fact-block {
  margin: 32px 0 0;
  border-top: 1px solid var(--hairline);
}
.fact-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.fact-row .k {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  padding-top: 4px;
}
.fact-row .v {
  color: var(--paper); font-size: 16px; line-height: 1.7;
}
.fact-row .v .dim { color: var(--paper-dim); display: block; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 16px;
  border-top: 1px solid var(--hairline);
}
.legal-table th {
  text-align: left;
  padding: 18px 24px 18px 0;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}
.legal-table td {
  padding: 20px 24px 20px 0;
  color: var(--paper-dim); font-size: 15.5px; line-height: 1.7;
  border-bottom: 1px solid var(--hairline);
  vertical-align: top;
}
.legal-table td.k { color: var(--paper); width: 36%; }
.legal-table code {
  font-family: var(--mono); font-size: 13px; color: var(--paper);
  background: var(--plate-deep); padding: 1px 6px;
  border: 1px solid var(--hairline);
}

/* cookie banner */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 50;
  background: rgba(22, 25, 30, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--hairline);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  transform: translateY(140%);
  transition: transform 0.6s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden { display: none; }

.cookie-banner .copy {
  display: flex; flex-direction: column; gap: 8px;
}
.cookie-banner .label {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
}
.cookie-banner p {
  margin: 0;
  color: var(--paper-dim);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 64ch;
}
.cookie-banner p a {
  color: var(--paper);
  border-bottom: 1px solid var(--faint);
  transition: border-color 0.3s var(--ease);
}
.cookie-banner p a:hover { border-bottom-color: var(--gold); }

.cookie-banner .actions {
  display: flex; gap: 12px; align-items: center;
}
.cookie-banner button {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 12px 20px;
  background: transparent;
  cursor: pointer;
  border: 1px solid var(--rule);
  color: var(--paper);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.cookie-banner button.ghost { color: var(--dim); border-color: transparent; padding: 12px 8px; }
.cookie-banner button.ghost:hover { color: var(--paper); }
.cookie-banner button.outline:hover { border-color: var(--paper); }
.cookie-banner button.primary:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.cookie-manage {
  display: none;
  grid-column: 1 / -1;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  margin-top: 4px;
}
.cookie-banner.expanded { grid-template-columns: 1fr; gap: 20px; }
.cookie-banner.expanded .cookie-manage { display: block; }

.cookie-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
.cookie-row:last-of-type { border-bottom: none; }
.cookie-row .name {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 6px;
}
.cookie-row .desc {
  color: var(--paper-dim); font-size: 14px; line-height: 1.6;
  margin: 0; max-width: 56ch;
}

.cookie-toggle {
  position: relative;
  width: 44px; height: 22px;
  border: 1px solid var(--rule);
  background: transparent;
  cursor: pointer;
  flex: 0 0 auto;
  transition: border-color 0.3s var(--ease);
}
.cookie-toggle::after {
  content: "";
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: var(--paper-dim);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.cookie-toggle.on { border-color: var(--paper); }
.cookie-toggle.on::after { transform: translateX(20px); background: var(--gold); }
.cookie-toggle.locked { border-color: var(--hairline); cursor: not-allowed; }
.cookie-toggle.locked::after { background: var(--dim); }

.cookie-save-row {
  display: flex; justify-content: flex-end; margin-top: 16px;
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"].in { transition-delay: 0.08s; }
.reveal[data-d="2"].in { transition-delay: 0.16s; }
.reveal[data-d="3"].in { transition-delay: 0.24s; }

/* responsive: <=1100 */
@media (max-width: 1100px) {
  .wide, nav.top { padding-left: 40px; padding-right: 40px; }
  section.hero { padding: 160px 0 140px; }
  section.hero .grid { gap: 80px; }
  section.block { padding: 140px 0; }
  section.contact { padding: 140px 0 160px; }
  section.cta { padding: 140px 0 160px; }
  section.apply { padding: 140px 0 160px; }
  section.legal { padding: 140px 0 160px; }
  .section-head { margin-bottom: 80px; }
  .legal-head { margin-bottom: 56px; gap: 24px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 64px 80px; }
  .product-grid { grid-template-columns: 1fr; }
  .studio-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 80px; }
  .contact-title { margin-bottom: 64px; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .qa { grid-template-columns: 1fr; gap: 16px; }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { min-height: 56px; }
  .flow-arrow .track { width: 1px; height: 100%; }
  .flow-arrow .track::after {
    right: -3px; top: auto; bottom: 0;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 6px solid var(--hairline); border-bottom: none;
  }
  .flow-arrow .pulse {
    left: 50%; top: 0; width: 1px; height: 0;
    transform: translateX(-50%); transition: height 1.2s var(--ease);
  }
  .flow-arrow.in .pulse { height: calc(100% - 8px); width: 1px; }
  .scen-grid { grid-template-columns: 1fr; }
  .lures-grid { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .proc-list { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; gap: 48px; }
  .prog-grid { grid-template-columns: 1fr; }
  .roadmap { grid-template-columns: 1fr; }
  .coach-card { grid-template-columns: 1fr; gap: 32px; padding: 56px 40px; }
  .access-grid { grid-template-columns: 1fr; gap: 56px; }
  .why-grid { gap: 56px; grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .sell-grid { grid-template-columns: 1fr; }
  .get-grid { grid-template-columns: repeat(2, 1fr); }
  .worked { padding: 32px 36px; }
  .story-grid, .origin-grid { grid-template-columns: 1fr; gap: 48px; }
  .people-grid { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .fact-row { grid-template-columns: 1fr; gap: 6px; }
  .apply-grid { grid-template-columns: 1fr; gap: 80px; }
}

/* responsive: <=760 */
@media (max-width: 760px) {
  .wide, nav.top { padding-left: 28px; padding-right: 28px; }
  nav.top { grid-template-columns: 1fr auto; padding-top: 20px; padding-bottom: 20px; }
  nav.top .links { display: none; }
  section.hero { padding: 120px 0 110px; }
  section.hero .grid { grid-template-columns: 1fr; gap: 56px; }
  section.hero .hero-mark { width: 200px; height: 200px; }
  section.hero .hero-wordmark { font-size: 28px; }
  section.hero .eyebrow { margin-bottom: 36px; }
  section.hero h1 { margin-bottom: 36px; }
  section.hero .sub { margin-bottom: 36px; }
  section.hero .cta-row { flex-direction: column; align-items: stretch; gap: 20px; }
  section.block { padding: 100px 0; }
  section.contact { padding: 100px 0 120px; }
  section.cta { padding: 100px 0 120px; }
  section.apply { padding: 100px 0 120px; }
  section.legal { padding: 100px 0 120px; }
  .section-head { margin-bottom: 56px; gap: 24px; }
  .legal-content h1 { font-size: clamp(40px, 9vw, 56px); }
  .legal-table th, .legal-table td { padding-right: 12px; }
  .stats-row { grid-template-columns: 1fr; gap: 56px; }
  .stat .stat-num { font-size: 56px; }
  .product-grid { grid-template-columns: 1fr; }
  .card { padding: 48px 32px 36px; gap: 28px; }
  .contact-grid { gap: 56px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .submit-row { flex-direction: column; align-items: stretch; gap: 20px; }
  .cap-grid { grid-template-columns: 1fr; }
  .cap { min-height: 0; padding: 40px 28px; }
  .tier-grid { grid-template-columns: 1fr; }
  .tier { padding: 48px 32px 40px; }
  .proc-list { grid-template-columns: 1fr; }
  .proc { padding: 44px 28px; }
  .qa { padding: 36px 0; }
  .scen { padding: 40px 28px; }
  .cta-card .cta-row { flex-direction: column; align-items: stretch; gap: 20px; }
  .prog { padding: 44px 28px; }
  .road-step { padding: 40px 28px; }
  .coach-card { padding: 40px 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-grid { grid-template-columns: 1fr; }
  .sell-grid { grid-template-columns: 1fr; }
  .sell { padding: 44px 28px 36px; }
  .get-grid { grid-template-columns: 1fr; }
  .get { min-height: 0; padding: 36px 28px; }
  .worked { padding: 28px 24px; }
  .worked .row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .step { min-height: 0; padding: 40px 28px; }
  .margin-table thead { display: none; }
  .margin-table tbody td { display: block; padding: 8px 0; border: none; }
  .margin-table tbody td:first-child { padding-top: 32px; border-top: 1px solid var(--hairline); }
  .margin-table tbody td + td { padding-left: 0; }
  .margin-table tbody td::before {
    content: attr(data-l);
    display: block;
    font-family: var(--mono); font-size: 10px; font-weight: 500;
    letter-spacing: 0.22em; text-transform: uppercase; color: var(--dim);
    margin-bottom: 4px;
  }
  .margin-table tbody td.product::before { display: none; }
  .apply-grid { grid-template-columns: 1fr; gap: 56px; }
  .person { padding: 36px 28px; }
  .cred { padding: 36px 28px; min-height: 0; }
  .why { padding: 40px 28px; }
  footer.foot .grid { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-banner {
    left: 16px; right: 16px; bottom: 16px;
    padding: 20px 24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cookie-banner .actions { width: 100%; flex-wrap: wrap; }
  .cookie-banner .actions button { flex: 1 1 auto; padding: 12px 14px; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  section.hero h1 .word { opacity: 1; transform: none; transition: none; }
  section.hero .hero-wordmark { opacity: 1; transform: none; transition: none; }
  .section-head .line { clip-path: none; transition: none; }
  .legal-head .line { clip-path: none; transition: none; }
  .card { transform: none !important; }
  .card.scanning::after { animation: none; }
  .mark-svg .face,
  .mark-svg .core,
  .mark-svg .core-inner,
  .mark-svg .core-bar,
  .mark-svg .core-half,
  .mark-svg .academy-dot { opacity: 1; transition: none; }
  .mark-svg .ring { stroke-dasharray: none; stroke-dashoffset: 0; transition: none; }
  .cap .glyph svg .stroke,
  .cap .glyph svg .accent,
  .flow-step .frame svg .stroke,
  .flow-step .frame svg .accent { stroke-dasharray: none; stroke-dashoffset: 0; transition: none; }
  .cap .glyph svg .dot,
  .flow-step .frame svg .dot { opacity: 1; transition: none; }
  .flow-arrow .pulse { width: 100%; height: 100%; transition: none; }
  .cookie-banner { transition: none; }
  .cookie-toggle::after { transition: none; }
}

/* Mobile nav: hamburger toggle + drawer */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  padding: 0;
  margin: 0;
  position: relative;
  justify-self: end;
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--paper);
  margin: 0 auto 5px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle .bar:last-child { margin-bottom: 0; }
.nav-toggle.open .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.open .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile { display: none; }

.nav-mobile a {
  display: block;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper-dim);
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
  transition: color 0.3s var(--ease);
}
.nav-mobile a:hover { color: var(--paper); }
.nav-mobile a.lang {
  margin-top: 24px;
  border-top: 1px solid var(--hairline);
  border-bottom: none;
  color: var(--dim);
}
.nav-mobile a.enter {
  margin-top: 28px;
  border: 1px solid var(--rule);
  text-align: center;
  padding: 18px 24px;
  color: var(--paper);
}
.nav-mobile a.enter:hover { border-color: var(--paper); background: var(--paper); color: var(--ink); }

@media (max-width: 760px) {
  nav.top { grid-template-columns: 1fr auto; }
  nav.top .links { display: none; }
  nav.top .nav-right { display: none; }
  nav.top .nav-toggle { display: block; }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-mobile {
    display: block;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ink);
    z-index: 30;
    padding-top: 88px;
    overflow-y: auto;
  }
  body.nav-open nav.top {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 40;
  }
}
