/* ───────────────────────────────────────────────────────────────
   Defbot Homepage — Preview
   Production-fidelity demo of the creative direction in DR-001.
   ─────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500&display=swap');

:root {
  --ink-0:   #050608;
  --ink-1:   #0A0C10;
  --ink-2:   #11141A;
  --ink-3:   #1A1E26;
  --line:    rgba(255,255,255,0.06);
  --line-2:  rgba(255,255,255,0.10);
  --line-3:  rgba(255,255,255,0.16);

  --fg-1:   oklch(0.97 0.005 250);
  --fg-2:   oklch(0.78 0.005 250);
  --fg-3:   oklch(0.58 0.008 250);
  --fg-4:   oklch(0.42 0.008 250);

  --violet:        oklch(0.65 0.20 275);
  --violet-soft:   oklch(0.65 0.20 275 / 0.14);
  --violet-line:   oklch(0.65 0.20 275 / 0.35);
  --violet-glow:   oklch(0.78 0.18 280);
  --green:         oklch(0.72 0.16 155);
  --red:           oklch(0.67 0.22 25);

  --serif:    'Instrument Serif', ui-serif, Georgia, serif;
  --sans:     'Geist', ui-sans-serif, system-ui, sans-serif;
  --mono:     'Geist Mono', ui-monospace, 'SF Mono', monospace;

  --gutter:   clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--ink-0);
  color: var(--fg-2);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

::selection { background: var(--violet); color: white; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── shared container ──────────────────────────────────────── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── nav ───────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(5,6,8,0.65) 0%, rgba(5,6,8,0.0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.nav .row {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fg-1);
}
.nav .brand .mark {
  width: 22px; height: 22px;
  display: grid; place-items: center;
}
.nav .brand .mark svg { width: 22px; height: 22px; }
.nav .brand .wm {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav .brand .by {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--line-2);
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--fg-4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav .links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav .links a {
  font-size: 13.5px;
  color: var(--fg-2);
  transition: color 200ms ease;
}
.nav .links a:hover { color: var(--fg-1); }
@media (max-width: 720px) { .nav .links { display: none; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 180ms ease;
  white-space: nowrap;
}
.btn.primary {
  background: var(--violet);
  color: white;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 8px 24px rgba(122,92,255,0.25);
}
.btn.primary:hover {
  background: oklch(0.70 0.20 275);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 12px 28px rgba(122,92,255,0.32);
}
.btn.ghost {
  border: 1px solid var(--line-2);
  color: var(--fg-1);
}
.btn.ghost:hover { border-color: var(--line-3); background: rgba(255,255,255,0.02); }

.btn .arrow {
  display: inline-block;
  transition: transform 180ms ease;
}
.btn:hover .arrow { transform: translateX(2px); }

/* ─── hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: 80px;
  padding-bottom: 100px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Hero scenes (replaces Live Ops card) ──────────────────── */
.hero-scenes {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(15,18,26,0.92) 0%, rgba(10,12,16,0.95) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(168,144,255,0.08),
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}
.hero-scenes::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 50% at 100% 0%, rgba(168,144,255,0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-scenes > * { position: relative; z-index: 1; }

.scenes-head {
  padding: 16px 22px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.scenes-head .phase {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.scenes-head .phase .ph-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: lo-pip 2.6s ease-in-out infinite;
}
.scenes-head .phase .ph-name {
  color: var(--fg-1);
  font-weight: 500;
}
.scenes-head .ph-num {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--fg-4);
  letter-spacing: 0.06em;
}

.scenes-progress {
  position: relative;
  height: 2px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.scenes-progress .bar {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--violet) 0%, oklch(0.78 0.18 280) 100%);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 80ms linear;
  box-shadow: 0 0 12px var(--violet);
}

.scene-dots {
  position: absolute;
  top: 16px;
  right: 22px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.scene-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  transition: background 240ms ease, transform 240ms ease;
}
.scene-dots .dot.done   { background: oklch(0.65 0.20 275 / 0.55); }
.scene-dots .dot.active {
  background: var(--violet);
  transform: scale(1.4);
  box-shadow: 0 0 8px var(--violet);
}

.scenes-stack {
  position: relative;
  flex: 1;
  min-height: 460px;
}
.scene {
  position: absolute;
  inset: 0;
  padding: 26px 26px 22px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 700ms cubic-bezier(0.22,1,0.36,1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.scene.active {
  opacity: var(--scene-opacity, 1);
  pointer-events: auto;
  transform: translateY(var(--parallax-y, 0px));
}

.scene .s-eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--violet);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scene .s-eyebrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--violet);
}
.scene h3.s-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--fg-1);
  text-wrap: balance;
  margin: 0;
  padding-bottom: 0.08em;
}
.scene h3.s-title em { font-style: italic; color: var(--violet); }

.scene .s-status {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scene .s-status .pip {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.scene .s-status em { font-style: normal; color: var(--violet); }

/* ─── Scene 1 — Preventive (checklist) ──────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all 320ms cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}
.check-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--violet);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 400ms ease;
}
.check-row.lit {
  background: rgba(168,144,255,0.04);
  border-color: var(--violet-line);
}
.check-row.lit::before { transform: scaleY(1); }
.check-row .cr-icon {
  width: 18px; height: 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line-3);
  display: grid;
  place-items: center;
  color: var(--fg-3);
  transition: all 280ms ease;
}
.check-row.lit .cr-icon {
  border-color: var(--green);
  background: var(--green);
  color: oklch(0.16 0.05 155);
}
.check-row .cr-icon svg { width: 12px; height: 12px; }
.check-row .cr-label {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--fg-2);
  transition: color 280ms ease;
}
.check-row.lit .cr-label { color: var(--fg-1); }
.check-row .cr-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-4);
  text-transform: uppercase;
}
.check-row.lit .cr-meta { color: var(--green); }

/* ─── Scene 2 — Detective (alert ledger) ────────────────────── */
.alert-ledger {
  font-family: var(--mono);
  font-size: 11.5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  position: relative;
}
.alert-ledger::before {
  content: "ALERTS · LIVE";
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--fg-4);
  margin-bottom: 10px;
}
.alert-row {
  display: grid;
  grid-template-columns: 78px 1fr 78px;
  gap: 10px;
  padding: 9px 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--fg-3);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease, border-color 320ms ease;
  align-items: center;
}
.alert-row.shown { opacity: 1; transform: translateY(0); }
.alert-row .a-id { color: var(--fg-4); font-size: 10px; }
.alert-row .a-msg { color: var(--fg-2); font-family: var(--sans); font-size: 12.5px; }
.alert-row .a-sev {
  text-align: right;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: var(--fg-3);
}
.alert-row.threat {
  border-color: var(--red);
  background: rgba(255,98,98,0.06);
  animation: threatPulse 1.4s ease-in-out infinite;
}
.alert-row.threat .a-msg { color: oklch(0.85 0.10 25); }
.alert-row.threat .a-sev { color: var(--red); }
@keyframes threatPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,98,98,0.0); }
  50%      { box-shadow: 0 0 0 4px rgba(255,98,98,0.10); }
}

/* ─── Scene 3 — Reactive (routes) ───────────────────────────── */
.route-head {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 4px;
}
.route-head em {
  font-style: normal;
  color: var(--violet);
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: -0.005em;
  text-transform: none;
  margin-top: 6px;
}
.route-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.route-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: all 320ms ease;
  align-items: center;
}
.route-row.routed {
  background: rgba(124,210,148,0.06);
  border-color: oklch(0.72 0.16 155 / 0.4);
}
.route-row .r-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
  display: grid;
  place-items: center;
  color: var(--fg-3);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  transition: all 320ms ease;
}
.route-row.routed .r-icon {
  background: var(--green);
  color: oklch(0.18 0.06 155);
}
.route-row .r-label {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--fg-2);
}
.route-row.routed .r-label { color: var(--fg-1); }
.route-row .r-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.route-row.routed .r-meta { color: var(--green); }

/* ─── hero text — dynamic copy fade ──────────────────────────── */
.hero-text .eyebrow-dyn {
  transition: opacity 240ms ease;
}
.hero-text .sub-dyn {
  transition: opacity 240ms ease;
}

/* ─── floating "scroll to continue" hint at hero bottom ─────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 4;
  pointer-events: none;
  animation: hintBob 2.6s ease-in-out infinite;
}
.hero-scroll-hint .arrow-down {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent 0%, var(--violet) 100%);
  position: relative;
}
.hero-scroll-hint .arrow-down::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -3px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--violet);
  border-bottom: 1px solid var(--violet);
  transform: rotate(45deg);
}
@keyframes hintBob {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.85; }
  50%     { transform: translateX(-50%) translateY(4px); opacity: 0.55; }
}

/* hide on small screens */
@media (max-width: 1080px) {
  .hero-tall { height: auto; }
  .hero-sticky { position: relative; height: auto; }
  .hero { min-height: 100vh; }
  .hero-scenes { min-height: 480px; }
  .hero-scroll-hint { display: none; }
}

/* ─── Scene art (SVG illustrations) ─────────────────────────── */
.scene-art {
  flex: 1;
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.scene-art svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Scene 1 — Preventive (orbiting shield) ────────────────── */
.shield-rings .ring {
  transform-origin: 200px 160px;
  transform-box: fill-box;
  animation: ringPulse 4s ease-out infinite;
}
.shield-rings .ring.r2 { animation-delay: 1.3s; }
.shield-rings .ring.r3 { animation-delay: 2.6s; }
@keyframes ringPulse {
  0%   { transform: scale(0.35); opacity: 0; }
  20%  { opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

.orbit-spin { animation: spin 28s linear infinite; transform-origin: 0 0; }
.orbit-icon { animation: spinReverse 28s linear infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinReverse {
  /* counter-rotate so icon stays upright while parent rotates */
  from { transform: rotate(0deg) translateX(118px) rotate(0deg); }
  to   { transform: rotate(-360deg) translateX(118px) rotate(360deg); }
}

.scan-beams .beam-spin {
  animation: spin 18s linear infinite;
  transform-origin: 0 0;
  opacity: 0.7;
}

.status-chips .chip {
  opacity: 0;
  transform: translateY(8px);
  animation: chipIn 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}
.status-chips .c1 { animation-delay: 0.4s; }
.status-chips .c2 { animation-delay: 0.7s; }
.status-chips .c3 { animation-delay: 1.0s; }
.status-chips .c4 { animation-delay: 1.3s; }
@keyframes chipIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Scene 2 — Detective (radar) ───────────────────────────── */
.scene-2 .radar-spin {
  animation: spin 8s linear infinite;
  transform-origin: 0 0;
}
.scene-2 .threats .threat {
  animation: threatFloat 3.6s ease-in-out infinite;
  transform-origin: center;
}
.scene-2 .threats .t1 { animation-delay: 0s; }
.scene-2 .threats .t2 { animation-delay: 0.6s; }
.scene-2 .threats .t3 { animation-delay: 1.2s; }
.scene-2 .threats .t4 { animation-delay: 1.8s; }
@keyframes threatFloat {
  0%,100% { opacity: 0.45; }
  50%     { opacity: 1; }
}
.scene-2 .det-beams .db {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: beamDraw 3.6s ease-in-out infinite;
}
.scene-2 .det-beams .b1 { animation-delay: 0s; }
.scene-2 .det-beams .b2 { animation-delay: 0.4s; }
.scene-2 .det-beams .b3 { animation-delay: 0.8s; }
.scene-2 .det-beams .b4 { animation-delay: 1.2s; }
@keyframes beamDraw {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  30%  { opacity: 0.8; }
  100% { stroke-dashoffset: 0;  opacity: 0; }
}
.scene-2 .crosshair { animation: chPulse 2.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes chPulse {
  0%,100% { opacity: 0.6; }
  50%     { opacity: 1; }
}
.scene-2 .alert-tag {
  animation: alertBlink 1.6s ease-in-out infinite;
}
@keyframes alertBlink {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.6; }
}

/* ─── Scene 3 — Reactive (restore + routes) ─────────────────── */
.restore-rings .rring {
  transform-origin: 200px 160px;
  transform-box: fill-box;
  animation: ringPulseGreen 4s ease-out infinite;
}
.restore-rings .rr2 { animation-delay: 1.3s; }
.restore-rings .rr3 { animation-delay: 2.6s; }
@keyframes ringPulseGreen {
  0%   { transform: scale(0.35); opacity: 0; }
  20%  { opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
.shield-wrap {
  transform-origin: center;
  animation: shieldBreathe 4s ease-in-out infinite;
}
@keyframes shieldBreathe {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.04); }
}

.routes .rt {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: beamDrawGreen 2.8s ease-in-out infinite;
}
.routes .rt1 { animation-delay: 0s; }
.routes .rt2 { animation-delay: 0.3s; }
.routes .rt3 { animation-delay: 0.6s; }
.routes .rt4 { animation-delay: 0.9s; }
@keyframes beamDrawGreen {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  35%  { opacity: 0.85; }
  100% { stroke-dashoffset: 0;  opacity: 0.2; }
}
.channels .ch {
  opacity: 0;
  transform: translateY(6px);
  animation: chipIn 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
.channels .ch1 { animation-delay: 0.3s; }
.channels .ch2 { animation-delay: 0.6s; }
.channels .ch3 { animation-delay: 0.9s; }
.channels .ch4 { animation-delay: 1.2s; }
.restored-tag {
  animation: chipIn 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
  animation-delay: 1.5s;
  opacity: 0;
}

/* hide old now-unused widgets if they exist */
.check-list, .alert-ledger, .route-list, .route-head { display: none !important; }

/* ─── readability scrim — softened to let bg breathe ────────── */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5,6,8,0.92) 0%, rgba(5,6,8,0.78) 18%, rgba(5,6,8,0.35) 42%, rgba(5,6,8,0.05) 65%, transparent 100%),
    linear-gradient(180deg, rgba(5,6,8,0.0) 55%, rgba(5,6,8,0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 32px;
}
.hero .eyebrow .bar { width: 28px; height: 1px; background: var(--violet); }
.hero .eyebrow .pip {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.hero h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  color: var(--fg-1);
  max-width: 16ch;
  text-wrap: balance;
  margin-bottom: 40px;
  padding-bottom: 0.12em;
}
.hero h1 em { font-style: normal; color: var(--fg-2); }

.hero .sub {
  max-width: 52ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero .actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero .actions .meta {
  margin-left: 4px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--fg-4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* scene indicator — bottom of hero */
.scene-indicator {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: 36px;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  pointer-events: none;
}
.scene-indicator .now {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-3);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 18px;
}
.scene-indicator .now .label {
  color: var(--fg-1);
  transition: color 600ms ease;
}
.scene-indicator .now .label em {
  font-style: normal;
  color: var(--violet);
  font-weight: 500;
}
.scene-indicator .now .desc {
  color: var(--fg-3);
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: -0.005em;
  text-transform: none;
  font-style: italic;
}

.scene-indicator .progress {
  display: flex;
  gap: 6px;
  width: 280px;
  flex-shrink: 0;
}
.scene-indicator .progress .seg {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.scene-indicator .progress .seg .fill {
  position: absolute;
  inset: 0;
  background: var(--violet);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 60ms linear;
}

@media (max-width: 720px) {
  .scene-indicator { flex-direction: column; align-items: flex-start; gap: 12px; }
  .scene-indicator .progress { width: 100%; }
  .scene-indicator .now .desc { display: none; }
}

/* ─── section common ────────────────────────────────────────── */
.section {
  position: relative;
  padding: 140px 0;
  border-top: 1px solid var(--line);
}
.section.dense { padding: 96px 0; }
.section .kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section .kicker::before {
  content: "";
  width: 22px; height: 1px; background: var(--violet);
}

/* ─── thesis ────────────────────────────────────────────────── */
.thesis h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5.8vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  max-width: 22ch;
  text-wrap: balance;
}
.thesis h2 em { font-style: italic; color: var(--violet); }
.thesis .lede {
  margin-top: 48px;
  max-width: 56ch;
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  font-weight: 300;
}
.thesis .feet {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 720px) { .thesis .feet { grid-template-columns: 1fr 1fr; } }
.thesis .feet dt {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 8px;
}
.thesis .feet dd {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  color: var(--fg-1);
  letter-spacing: -0.018em;
}
.thesis .feet dd em { font-style: italic; color: var(--violet); }

/* ─── enhanced product renders (Group-IB style v2) ──────────── */
.render-stage {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 18px;
  overflow: hidden;
  perspective: 1600px;
  perspective-origin: 50% 35%;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.render-stage.violet {
  background:
    radial-gradient(82% 70% at 38% 28%, oklch(0.72 0.24 275) 0%, oklch(0.52 0.27 278) 40%, oklch(0.30 0.22 282) 75%, oklch(0.18 0.16 282) 100%);
}
.render-stage.indigo {
  background:
    radial-gradient(78% 65% at 42% 30%, oklch(0.68 0.23 270) 0%, oklch(0.46 0.26 268) 45%, oklch(0.22 0.18 270) 100%);
}
.render-stage.ink {
  background:
    radial-gradient(70% 60% at 50% 50%, oklch(0.32 0.06 275) 0%, oklch(0.18 0.03 275) 55%, #050608 100%);
}
.render-stage.crimson {
  background:
    radial-gradient(70% 60% at 50% 40%, oklch(0.55 0.22 25) 0%, oklch(0.32 0.18 22) 55%, oklch(0.14 0.08 22) 100%);
}

.render-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,255,255,0.22), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.render-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0) 50%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}

.render-stage .shot {
  width: 94%;
  border-radius: 12px;
  transform: rotateY(-22deg) rotateX(7deg) translateZ(0);
  transform-origin: 30% 60%;
  box-shadow:
    0 60px 110px rgba(0,0,0,0.6),
    0 30px 70px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.10),
    inset 0 1px 0 rgba(255,255,255,0.18);
  outline: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
  display: block;
}
.render-stage .shot.flat {
  transform: none;
  width: 96%;
}
.render-stage .shot.left {
  transform: rotateY(22deg) rotateX(7deg) translateZ(0);
  transform-origin: 70% 60%;
}

/* bright top edge highlight on the screen */
.render-stage::after,
.render-stage .shot {
  /* keep existing pseudo */
}
.render-stage .shot-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

/* floating callout cards over the render */
.render-stage .callout {
  position: absolute;
  z-index: 3;
  background: rgba(8, 8, 14, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-1);
  box-shadow: 0 18px 44px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  min-width: 160px;
}
.render-stage .callout .cv {
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: #fff;
}
.render-stage .callout .cl {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}
.render-stage .callout.violet-edge {
  border-color: var(--violet);
  box-shadow: 0 0 0 1px var(--violet-line), 0 18px 44px rgba(0,0,0,0.5);
}

/* ─── product showcase layout ───────────────────────────────── */
.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 980px) { .showcase { grid-template-columns: 1fr; gap: 36px; } }

.showcase.reverse { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); }
.showcase.reverse .text { order: 2; }
.showcase.reverse .visual { order: 1; }
@media (max-width: 980px) { .showcase.reverse { grid-template-columns: 1fr; } .showcase.reverse .text { order: 1; } .showcase.reverse .visual { order: 2; } }

.showcase .text .step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 22px;
}
.showcase .text h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  text-wrap: pretty;
  margin-bottom: 24px;
}
.showcase .text h3 em {
  font-style: normal;
  font-weight: 600;
  color: var(--violet);
  background: linear-gradient(180deg, oklch(0.78 0.18 280), oklch(0.62 0.22 275));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.showcase .text p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-bottom: 12px;
  max-width: 32ch;
}
.showcase .text .signals {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.showcase .text .signals .pip {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
  padding: 4px 9px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.showcase .visual .render-stage { aspect-ratio: 16/10; }

/* ─── triptych — PDR lifecycle ──────────────────────────────── */
.triptych {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 820px) { .triptych { grid-template-columns: 1fr; } }
.tri {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, var(--violet-soft), transparent 60%),
    var(--ink-1);
  padding: 32px 30px 36px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}
.tri::before {
  content: "";
  position: absolute;
  left: 30px; right: 30px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--violet) 0%, transparent 100%);
}
.tri .num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--fg-4);
  margin-bottom: 32px;
}
.tri .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--violet-soft);
  border: 1px solid var(--violet-line);
  display: grid;
  place-items: center;
  color: var(--violet);
  margin-bottom: 24px;
}
.tri .icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.tri h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin-bottom: 12px;
}
.tri h4 em { font-style: italic; color: var(--violet); }
.tri .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 18px;
}
.tri p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-top: auto;
}

/* ─── close CTA ─────────────────────────────────────────────── */
.close {
  padding: 180px 0 140px;
  border-top: 1px solid var(--line);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.close::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% 30%;
  height: 80%;
  background: radial-gradient(50% 70% at 50% 50%, oklch(0.50 0.22 275 / 0.16), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.close .inner { position: relative; z-index: 1; max-width: 820px; }
.close h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5.8vw, 82px);
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: var(--fg-1);
  margin-bottom: 44px;
  max-width: 18ch;
  text-wrap: balance;
}
.close h2 em { font-style: italic; color: var(--violet); }
.close .actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.close .sig {
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.close .sig em { font-style: normal; color: var(--fg-2); }
.close .sig .cursor {
  display: inline-block;
  width: 7px; height: 1em;
  background: var(--violet);
  margin-left: 8px;
  vertical-align: -2px;
  animation: blink 1.1s steps(2, end) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ─── hero content layout: left text, right live ops ────────── */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-grid {
  display: grid;
  /* Single text column overlaid on top of the full-bleed Spline
     scene. The text occupies the left half of the hero; the rest
     of the section stays visually open so the 3D model reads. */
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}
.hero-grid .hero-text {
  max-width: 620px;
}
@media (max-width: 1080px) {
  .hero-grid { gap: 56px; }
  .hero-grid .hero-text { max-width: 560px; }
  .hero-grid .live-ops { max-width: 480px; }
}

/* ─── Live Ops card — the right-side phase panel ────────────── */
.live-ops {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(15,18,26,0.88) 0%, rgba(10,12,16,0.92) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(168,144,255,0.06),
    0 30px 80px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.04);
  isolation: isolate;
}
.live-ops::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 50% at 100% 0%, rgba(168,144,255,0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.live-ops > * { position: relative; z-index: 1; }

.live-ops .lo-head {
  padding: 16px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.live-ops .lo-head .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-2);
  display: flex; align-items: center; gap: 10px;
}
.live-ops .lo-head .label .pip {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: lo-pip 2.6s ease-in-out infinite;
}
@keyframes lo-pip {
  0%,100% { opacity: 1; }
  50%     { opacity: 0.45; }
}
.live-ops .lo-head .ts {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--fg-4);
}

.lo-row {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 14px;
  align-items: baseline;
}
.lo-row:last-of-type { border-bottom: 0; }
.lo-row .ph {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  display: flex; align-items: center; gap: 10px;
}
.lo-row .ph .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 8px var(--violet);
}
.lo-row .num {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  transition: opacity 200ms ease;
}
.lo-row .num.flash { animation: lo-flash 0.6s ease-out; }
@keyframes lo-flash {
  0%   { color: oklch(0.88 0.18 285); transform: translateY(-2px); }
  100% { color: var(--fg-1); transform: translateY(0); }
}
.lo-row .status {
  grid-column: 1 / -1;
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--fg-3);
  letter-spacing: -0.005em;
}
.lo-row .status em {
  font-style: normal;
  color: var(--fg-2);
}
.lo-row .spark {
  grid-column: 1 / -1;
  margin-top: 6px;
  height: 22px;
  position: relative;
  overflow: hidden;
}
.lo-row .spark svg { width: 100%; height: 100%; display: block; }

.live-ops .lo-foot {
  padding: 12px 20px;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.live-ops .lo-foot .ev {
  color: var(--fg-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.live-ops .lo-foot .ev em {
  font-style: normal;
  color: var(--violet);
}

/* hide the old slider scene indicator */
.scene-indicator { display: none; }

/* ─── section background depth ──────────────────────────────── */
.section { isolation: isolate; }
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(80% 60% at 50% -10%, rgba(168,144,255,0.045), transparent 70%);
}
.section > * { position: relative; z-index: 1; }
.section.thesis::before {
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(168,144,255,0.06), transparent 70%),
    radial-gradient(50% 40% at 90% 80%, rgba(168,144,255,0.04), transparent 70%);
}
.section.tinted-a::before {
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(168,144,255,0.05), transparent 70%),
    linear-gradient(180deg, rgba(15,12,28,0.4), transparent 30%);
}
.section.tinted-b::before {
  background:
    radial-gradient(60% 40% at 0% 50%, rgba(168,144,255,0.05), transparent 70%);
}
.section.tinted-c::before {
  background:
    radial-gradient(50% 40% at 100% 50%, rgba(168,144,255,0.05), transparent 70%);
}
.section.dense::before {
  background:
    radial-gradient(40% 30% at 50% 0%, rgba(168,144,255,0.06), transparent 70%);
}

/* ─── stats section ─────────────────────────────────────────── */
.stats {
  padding: 140px 0;
  border-top: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(168,144,255,0.08), transparent 70%),
    radial-gradient(40% 30% at 0% 100%, rgba(255,98,98,0.04), transparent 70%);
  z-index: 0;
}
.stats > * { position: relative; z-index: 1; }
.stats .kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.stats .kicker::before {
  content: "";
  width: 22px; height: 1px; background: var(--violet);
}
.stats h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: var(--fg-1);
  max-width: 24ch;
  text-wrap: balance;
  margin-bottom: 56px;
}
.stats h2 em {
  font-style: normal;
  background: linear-gradient(180deg, #ffffff 0%, #8b0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1080px) { .stats-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .stats-grid { grid-template-columns: 1fr; } }

.stat-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(22,24,34,0.94) 0%, rgba(12,14,20,0.96) 100%);
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 36px 28px 30px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  transition: transform 320ms cubic-bezier(0.22,1,0.36,1),
              border-color 320ms ease,
              box-shadow 320ms ease;
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(85% 65% at 0% 0%, rgba(168,144,255,0.16), transparent 60%),
    radial-gradient(60% 50% at 100% 100%, rgba(168,144,255,0.08), transparent 70%);
  opacity: 0;
  transition: opacity 320ms ease;
  z-index: -1;
}
.stat-card::after {
  content: "";
  position: absolute;
  left: 26px; right: 26px; bottom: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--violet) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 540ms cubic-bezier(0.22,1,0.36,1);
}
.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--violet-line);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.45),
    0 0 0 1px rgba(168,144,255,0.20),
    0 0 60px -10px rgba(168,144,255,0.18);
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover::after  { transform: scaleX(1); }

.stat-card .tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stat-card .tag::before {
  content: "";
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
}
.stat-card .num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(52px, 4.8vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--fg-1);
  margin-bottom: 22px;
  display: flex;
  align-items: baseline;
  gap: 3px;
  /* count-up animation: rendered by stats-counter.js */
  font-variant-numeric: tabular-nums;
}
.stat-card .num .unit {
  font-size: 0.5em;
  color: oklch(0.42 0.21 27);
  letter-spacing: -0.01em;
  font-style: normal;
  font-weight: 600;
  margin-left: 2px;
}
.stat-card .num .prefix {
  font-size: 0.6em;
  color: var(--fg-3);
  font-weight: 600;
  margin-right: 2px;
}
.stat-card .num em { font-style: normal; color: var(--violet); }
.stat-card .desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-1);
  margin-top: auto;
}
.stat-card .desc em { font-style: italic; color: var(--fg-1); }
.stat-card .src {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--fg-2);
}

/* ─── Two Models section ────────────────────────────────────── */
.models {
  padding: 140px 0;
  border-top: 1px solid var(--line);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.models::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(40% 50% at 25% 50%, rgba(168,144,255,0.06), transparent 65%),
    radial-gradient(40% 50% at 75% 50%, rgba(168,144,255,0.06), transparent 65%);
}
.models > * { position: relative; z-index: 1; }
.models .head { text-align: center; margin-bottom: 56px; }
.models .head .kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 18px;
}
.models .head h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.024em;
  color: var(--fg-1);
  margin-bottom: 16px;
  text-wrap: balance;
}
.models .head h2 em { font-style: normal; color: var(--violet); }
.models .head p {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  font-weight: 300;
}
.models-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 820px) { .models-grid { grid-template-columns: 1fr; } }
.model-card {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 36px 36px 40px;
  background:
    linear-gradient(180deg, rgba(20,22,32,0.85) 0%, rgba(12,14,20,0.95) 100%);
  isolation: isolate;
  overflow: hidden;
}
.model-card.featured {
  border-color: var(--violet-line);
  background:
    linear-gradient(180deg, oklch(0.18 0.08 275 / 0.55) 0%, oklch(0.10 0.04 275 / 0.85) 100%);
}
.model-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(168,144,255,0.18), transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.model-card .badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
  border: 1px solid var(--line-3);
  margin-bottom: 28px;
}
.model-card.featured .badge {
  background: var(--violet);
  border-color: var(--violet);
  color: white;
}
.model-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin-bottom: 16px;
  text-wrap: balance;
}
.model-card h3 em { font-style: normal; color: var(--violet); }
.model-card .blurb {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  max-width: 38ch;
}
.model-card ul.feats {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.model-card ul.feats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--fg-1);
  line-height: 1.4;
}
.model-card ul.feats li::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1.5px solid var(--green);
  background: radial-gradient(circle at 50% 50%, var(--green) 0%, var(--green) 38%, transparent 38%);
  flex-shrink: 0;
  margin-top: 3px;
}
.model-card .bestfor {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}
.model-card .bestfor em { font-style: normal; color: var(--fg-2); }

/* ─── Booking modal ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,6,10,0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 220ms ease;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  width: 100%;
  max-width: 560px;
  background:
    linear-gradient(180deg, rgba(20,22,32,0.96) 0%, rgba(12,14,20,0.98) 100%);
  border: 1px solid var(--violet-line);
  border-radius: 18px;
  padding: 36px 36px 32px;
  box-shadow: 0 0 0 1px rgba(168,144,255,0.10), 0 40px 100px rgba(0,0,0,0.6);
  position: relative;
  transform: translateY(8px) scale(0.985);
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms cubic-bezier(0.22,1,0.36,1);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}
.modal-overlay.open .modal { opacity: 1; transform: translateY(0) scale(1); }
.modal .kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}
.modal h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin-bottom: 8px;
}
.modal h3 em { font-style: italic; color: var(--violet); }
.modal .sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-3);
  margin-bottom: 28px;
}
.modal .close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--fg-2);
  cursor: pointer;
  font-size: 16px;
  display: grid;
  place-items: center;
  transition: all 180ms ease;
}
.modal .close:hover { border-color: var(--line-3); color: var(--fg-1); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { position: relative; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 22px 14px 8px;
  color: var(--fg-1);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
  appearance: none;
}
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'><path d='M3 4.5L6 7.5L9 4.5' stroke='%23999' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--violet);
  background: rgba(168,144,255,0.04);
}
.field label {
  position: absolute;
  left: 14px;
  top: 18px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fg-3);
  pointer-events: none;
  transition: all 180ms ease;
  background: transparent;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field select:focus + label,
.field select.has-value + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: 6px;
  font-size: 10px;
  color: var(--violet);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 22px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--fg-3);
}
.consent input { margin-top: 2px; accent-color: var(--violet); }
.consent a { color: var(--violet); text-decoration: underline; }
.modal .btn.primary { width: 100%; justify-content: center; padding: 14px 18px; font-size: 14px; }

.modal-success { text-align: center; padding: 28px 0 4px; display: none; }
.modal-success.show { display: block; }
.modal-success .check {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--violet-soft);
  border: 1px solid var(--violet-line);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--violet);
}
.modal-success h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin-bottom: 10px;
}
.modal-success p {
  font-size: 14px;
  color: var(--fg-2);
  max-width: 36ch;
  margin: 0 auto 24px;
}

/* hide form when success state is shown */
.modal.success-mode .modal-form { display: none; }
.modal.success-mode .modal-success { display: block; }

/* ─── Two Models — refined section ──────────────────────────── */
.models {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.models-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 80% at 20% 0%, oklch(0.55 0.22 280 / 0.18) 0%, transparent 60%),
    radial-gradient(45% 70% at 80% 30%, oklch(0.60 0.20 275 / 0.12) 0%, transparent 65%),
    radial-gradient(40% 60% at 50% 100%, oklch(0.40 0.18 285 / 0.10) 0%, transparent 70%);
}
.models-aurora::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(50% 60% at 50% 50%, rgba(0,0,0,0.6), transparent 80%);
  -webkit-mask-image: radial-gradient(50% 60% at 50% 50%, rgba(0,0,0,0.6), transparent 80%);
  opacity: 0.55;
}
.models > * { position: relative; z-index: 1; }
.models::before { display: none; }

.models .head { text-align: center; margin-bottom: 64px; }
.models .head .logo-mark {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168,144,255,0.16), rgba(168,144,255,0.04));
  padding: 10px;
  box-shadow: 0 0 0 1px rgba(168,144,255,0.20), 0 12px 32px rgba(122,92,255,0.20);
}

.models-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 820px) {
  .models-grid { grid-template-columns: 1fr; gap: 18px; }
}

.model-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 8px;
}
.model-divider .line {
  width: 1px;
  flex: 1;
  background: linear-gradient(180deg, transparent 0%, var(--violet-line) 40%, var(--violet-line) 60%, transparent 100%);
}
.model-divider .plus {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--violet);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--violet-line);
  background: rgba(10,12,16,0.85);
  box-shadow: 0 0 0 4px rgba(168,144,255,0.06);
}
@media (max-width: 820px) {
  .model-divider { flex-direction: row; padding: 8px 0; }
  .model-divider .line { width: auto; height: 1px; background: linear-gradient(90deg, transparent 0%, var(--violet-line) 40%, var(--violet-line) 60%, transparent 100%); }
}

/* model card slight polish */
.model-card {
  border-radius: 18px;
  transition: transform 280ms cubic-bezier(0.22,1,0.36,1), border-color 280ms ease, box-shadow 280ms ease;
}
.model-card:hover {
  transform: translateY(-3px);
  border-color: var(--violet-line);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42), 0 0 0 1px rgba(168,144,255,0.14);
}

/* ─── Showcase section backgrounds — multi-layer ────────────── */
.section.tinted-a::before {
  background:
    radial-gradient(50% 70% at 100% 0%, oklch(0.40 0.20 275 / 0.22) 0%, transparent 60%),
    radial-gradient(40% 50% at 0% 100%, oklch(0.35 0.16 285 / 0.10) 0%, transparent 65%),
    linear-gradient(180deg, rgba(15,12,28,0.50) 0%, transparent 30%, rgba(15,12,28,0.30) 100%);
}
.section.tinted-b::before {
  background:
    radial-gradient(45% 65% at 0% 30%, oklch(0.42 0.20 280 / 0.18) 0%, transparent 60%),
    radial-gradient(40% 55% at 95% 70%, oklch(0.50 0.18 275 / 0.14) 0%, transparent 65%);
}
.section.tinted-c::before {
  background:
    radial-gradient(50% 60% at 100% 50%, oklch(0.45 0.22 275 / 0.18) 0%, transparent 60%),
    radial-gradient(40% 50% at 20% 0%, oklch(0.35 0.16 285 / 0.10) 0%, transparent 65%),
    linear-gradient(180deg, transparent 0%, rgba(15,12,28,0.25) 100%);
}
.section.dense::before {
  background:
    radial-gradient(40% 30% at 50% 0%, rgba(168,144,255,0.08), transparent 70%),
    radial-gradient(60% 40% at 50% 100%, rgba(168,144,255,0.06), transparent 70%);
}

/* ─── Booking section ───────────────────────────────────────── */
.booking {
  position: relative;
  padding: 160px 0 180px;
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}
.booking-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 70% at 78% 30%, oklch(0.50 0.24 275 / 0.34) 0%, transparent 60%),
    radial-gradient(55% 60% at 18% 80%, oklch(0.40 0.20 285 / 0.22) 0%, transparent 65%),
    radial-gradient(40% 45% at 50% 50%, oklch(0.35 0.16 275 / 0.10) 0%, transparent 70%),
    linear-gradient(180deg, oklch(0.10 0.04 275) 0%, oklch(0.06 0.02 275) 100%);
  animation: bookingDrift 24s ease-in-out infinite alternate;
}
@keyframes bookingDrift {
  0%   { transform: scale(1)    translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.booking-aurora::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168,144,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,144,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(60% 50% at 50% 50%, rgba(0,0,0,0.7), transparent 80%);
  -webkit-mask-image: radial-gradient(60% 50% at 50% 50%, rgba(0,0,0,0.7), transparent 80%);
  opacity: 0.55;
}
.booking > * { position: relative; z-index: 1; }

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 560px);
  gap: clamp(40px, 5vw, 88px);
  align-items: center;
}
@media (max-width: 980px) {
  .booking-grid { grid-template-columns: 1fr; align-items: start; }
}

/* ─── Booking form — polished card ──────────────────────────── */
.booking-card {
  position: relative;
  border-radius: 22px;
  padding: 38px 38px 32px;
  background:
    linear-gradient(180deg, rgba(22,24,34,0.92) 0%, rgba(12,14,20,0.96) 100%);
  border: 1px solid var(--violet-line);
  box-shadow:
    0 0 0 1px rgba(168,144,255,0.10),
    0 0 80px -10px rgba(168,144,255,0.22),
    0 50px 120px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  isolation: isolate;
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(168,144,255,0.18), transparent 60%),
    radial-gradient(60% 60% at 100% 100%, rgba(168,144,255,0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.booking-card::after {
  /* a soft inner edge highlight on top */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 30%);
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: 0;
}
.booking-card > * { position: relative; z-index: 1; }

.booking-card .bc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.booking-card .bc-head .bc-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.booking-card .bc-head .bc-label .pip {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.booking-card .bc-head .bc-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-4);
}

/* form fields — tighter, more refined */
.booking-card .field input,
.booking-card .field select,
.booking-card .field textarea {
  width: 100%;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 22px 16px 8px;
  color: var(--fg-1);
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease, box-shadow 200ms ease;
  appearance: none;
}
.booking-card .field input:focus,
.booking-card .field select:focus,
.booking-card .field textarea:focus {
  border-color: var(--violet);
  background: rgba(168,144,255,0.05);
  box-shadow: 0 0 0 3px rgba(168,144,255,0.12);
}
.booking-card .field label {
  position: absolute;
  left: 16px;
  top: 18px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fg-3);
  pointer-events: none;
  transition: all 180ms ease;
  background: transparent;
}
.booking-card .field input:focus + label,
.booking-card .field input:not(:placeholder-shown) + label,
.booking-card .field select:focus + label,
.booking-card .field select.has-value + label,
.booking-card .field textarea:focus + label,
.booking-card .field textarea:not(:placeholder-shown) + label {
  top: 7px;
  font-size: 10px;
  color: var(--violet);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-card .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 6px;
}
.booking-card .form-grid .full { grid-column: 1 / -1; }
.booking-card textarea {
  resize: vertical;
  min-height: 60px;
  font-family: var(--sans);
}

.booking-card .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 22px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fg-3);
}
.booking-card .consent input { margin-top: 2px; accent-color: var(--violet); }
.booking-card .consent a { color: var(--violet); text-decoration: underline; }

.booking-card .btn.primary.block {
  width: 100%;
  justify-content: center;
  padding: 16px 18px;
  font-size: 14.5px;
  margin-top: 8px;
  background:
    linear-gradient(135deg, oklch(0.68 0.22 275) 0%, oklch(0.60 0.24 280) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 14px 40px rgba(122,92,255,0.30),
    inset 0 1px 0 rgba(255,255,255,0.18);
}
.booking-card .btn.primary.block:hover {
  background:
    linear-gradient(135deg, oklch(0.72 0.22 275) 0%, oklch(0.64 0.24 280) 100%);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.14),
    0 18px 48px rgba(122,92,255,0.38),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

.booking-card .bc-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fg-3);
  text-align: center;
}
.booking-card .bc-foot a {
  color: var(--violet);
  text-decoration: underline;
  text-decoration-color: var(--violet-line);
  text-underline-offset: 3px;
}

/* ─── Section background polish — subtle drifting glow ──────── */
.section::before {
  background:
    radial-gradient(40% 30% at 70% 10%, rgba(168,144,255,0.05), transparent 70%),
    radial-gradient(40% 30% at 20% 90%, rgba(168,144,255,0.03), transparent 70%);
}
.section.tinted-a::before {
  background:
    radial-gradient(55% 70% at 100% 0%, oklch(0.42 0.22 275 / 0.26) 0%, transparent 60%),
    radial-gradient(45% 55% at 0% 100%, oklch(0.35 0.18 285 / 0.14) 0%, transparent 65%),
    linear-gradient(180deg, rgba(15,12,28,0.42) 0%, transparent 30%, rgba(15,12,28,0.20) 100%);
}
.section.tinted-b::before {
  background:
    radial-gradient(50% 70% at 0% 30%, oklch(0.44 0.22 280 / 0.22) 0%, transparent 60%),
    radial-gradient(42% 55% at 100% 75%, oklch(0.50 0.20 275 / 0.16) 0%, transparent 65%),
    linear-gradient(180deg, rgba(15,12,28,0.25), transparent 40%);
}
.section.tinted-c::before {
  background:
    radial-gradient(55% 65% at 100% 30%, oklch(0.46 0.24 275 / 0.22) 0%, transparent 60%),
    radial-gradient(42% 55% at 20% 80%, oklch(0.36 0.18 285 / 0.14) 0%, transparent 65%),
    linear-gradient(180deg, transparent 0%, rgba(15,12,28,0.30) 100%);
}
.section.dense::before {
  background:
    radial-gradient(45% 35% at 50% 0%, rgba(168,144,255,0.10), transparent 70%),
    radial-gradient(60% 40% at 50% 100%, rgba(168,144,255,0.08), transparent 70%);
}

/* subtle horizontal hairline divider between sections (decorative) */
.section + .section::after,
.stats + .section::after,
.models + .section::after,
.section + .booking::after,
.section + .stats::after,
.section + .models::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--violet-line) 50%, transparent 100%);
  transform: translateX(-50%);
  opacity: 0.5;
  pointer-events: none;
}

.booking-copy .kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.booking-copy .kicker::before {
  content: "";
  width: 22px; height: 1px; background: var(--violet);
}
.booking-copy h2 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.024em;
  color: var(--fg-1);
  max-width: 18ch;
  margin-bottom: 28px;
  text-wrap: balance;
  padding-bottom: 0.08em;
}
.booking-copy h2 em { font-style: normal; color: var(--violet); }
.booking-copy .lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-2);
  font-weight: 300;
  max-width: 46ch;
  margin-bottom: 40px;
}

.booking-copy ul.expect {
  list-style: none;
  padding: 0;
  margin: 0 0 44px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.booking-copy ul.expect li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
}
.booking-copy ul.expect li .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(168,144,255,0.18), 0 0 12px var(--violet);
  margin-top: 7px;
}
.booking-copy ul.expect li > div {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-2);
}
.booking-copy ul.expect li > div b {
  color: var(--fg-1);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
}

.booking-copy .sig-line {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  line-height: 1.7;
}
.booking-copy .sig-line em {
  font-style: normal;
  color: var(--fg-2);
}

/* form card */
.booking-card {
  position: relative;
  border-radius: 20px;
  padding: 36px 36px 32px;
  background:
    linear-gradient(180deg, rgba(20,22,32,0.85) 0%, rgba(12,14,20,0.95) 100%);
  border: 1px solid var(--violet-line);
  box-shadow:
    0 0 0 1px rgba(168,144,255,0.08),
    0 40px 100px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  isolation: isolate;
  overflow: hidden;
}
.booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 50% at 50% 0%, rgba(168,144,255,0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.booking-card > * { position: relative; z-index: 1; }

.booking-card .bc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.booking-card .bc-head .bc-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.booking-card .bc-head .bc-label .pip {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.booking-card .bc-head .bc-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-4);
}

.booking-card .form-grid { margin-bottom: 6px; }
.booking-card textarea {
  resize: vertical;
  min-height: 60px;
  font-family: var(--sans);
}
.booking-card .btn.primary.block {
  width: 100%;
  justify-content: center;
  padding: 16px 18px;
  font-size: 14.5px;
  margin-top: 8px;
}

.booking-card .bc-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--fg-3);
  text-align: center;
}
.booking-card .bc-foot a {
  color: var(--violet);
  text-decoration: underline;
  text-decoration-color: var(--violet-line);
  text-underline-offset: 3px;
}

.booking-success {
  display: none;
  text-align: center;
  padding: 28px 0 4px;
}
.booking-success.show { display: block; }
.booking-success .check {
  width: 60px; height: 60px;
  border-radius: 999px;
  background: var(--violet-soft);
  border: 1px solid var(--violet-line);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  color: var(--violet);
  box-shadow: 0 0 24px rgba(168,144,255,0.20);
}
.booking-success h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg-1);
  margin-bottom: 10px;
}
.booking-success p {
  font-size: 14px;
  color: var(--fg-2);
  max-width: 36ch;
  margin: 0 auto;
}

/* hide leftover modal styles (no longer used) */
.modal-overlay { display: none !important; }

/* ─── refined nav brand mark (real logo) ───────────────────── */
.nav .brand { gap: 14px; }
.nav .brand-link {
  display: flex;
  align-items: center;
  padding: 6px 0;
  text-decoration: none;
}
.nav .brand-logo {
  height: 26px;
  width: auto;
  display: block;
}
.nav .brand .sep {
  width: 1px;
  height: 22px;
  background: var(--line-2);
}
.nav .brand .by {
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--fg-4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav .brand .by .vs-pin {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}
@media (max-width: 720px) {
  .nav .brand .by { display: none; }
}

/* ─── company footer (VaultStrike sign-off) ─────────────────── */
.company-foot {
  border-top: 1px solid var(--line);
  padding: 80px 0 56px;
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, transparent 0%, rgba(15,12,28,0.4) 100%);
}
.company-foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 50% 0%, rgba(168,144,255,0.04), transparent 70%);
  z-index: 0;
}
.company-foot > * { position: relative; z-index: 1; }

.cf-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 980px) { .cf-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 600px) { .cf-top { grid-template-columns: 1fr; } }

.cf-top .cf-brand img.vs-mark {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin-bottom: 22px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 8px 24px rgba(0,0,0,0.4);
}
.cf-top .cf-brand .wm {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-1);
  margin-bottom: 12px;
}
.cf-top .cf-brand p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-3);
  max-width: 38ch;
}
.cf-top .cf-brand .reg {
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.cf-col h6 {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #991111;
  margin-bottom: 18px;
}
.cf-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cf-col ul li a {
  color: var(--fg-2);
  font-size: 14px;
  text-decoration: none;
  transition: color 200ms ease;
}
.cf-col ul li a:hover { color: var(--fg-1); }
.cf-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.cf-bottom .lic { color: var(--fg-2); }
.cf-bottom .lic em { font-style: normal; color: var(--violet); }

/* hide old slim mini footer */
.foot { display: none; }

/* close section: small VS mark beside the sig line */
.close .sig .vs-inline {
  display: inline-block;
  vertical-align: -3px;
  width: 14px;
  height: 14px;
  border-radius: 3px;
  margin: 0 6px 0 4px;
  object-fit: cover;
}

/* ─── footer mini ───────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot .brand-mini { color: var(--fg-3); }
.foot a:hover { color: var(--fg-1); }

/* ─── preview banner ────────────────────────────────────────── */
.preview-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 100;
  background: rgba(10, 12, 16, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--violet-line);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.4);
}
.preview-banner .pip {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet);
}
.preview-banner a {
  color: var(--fg-1);
  text-decoration: underline;
  text-decoration-color: var(--violet-line);
  text-underline-offset: 3px;
}
.preview-banner a:hover { text-decoration-color: var(--violet); }
