/* Kindra Hire — cinematic bak-v3 · teal/magenta/navy · full-bleed film */
:root {
  --ink: #0B0726;
  --ink-2: #120C32;
  --ink-3: #150E38;
  --steel: #08061A;
  --edge: #241A4D;
  --teal: #14B8A6;
  --teal-hot: #2DD4BF;
  --teal-dim: rgba(20, 184, 166, 0.16);
  --magenta: #D946EF;
  --magenta-hot: #E879F9;
  --magenta-dim: rgba(217, 70, 239, 0.16);
  --violet: #6E5BFF;
  --paper: #F5F3FB;
  --paper-2: #ECE9F6;
  --ice: #F3F1FA;
  --cream: #FBFAFF;
  --mist: rgba(243, 241, 250, 0.68);
  --mist-strong: rgba(243, 241, 250, 0.92);
  --mute: #6A6488;
  --mute-d: #A9A3C6;
  --line: rgba(243, 241, 250, 0.10);
  --line-dark: rgba(11, 7, 38, 0.10);
  --ok: #34D399;
  --warn: #F59E0B;
  --ember: #F472B6;
  --grad: linear-gradient(96deg in oklab, #14B8A6 0%, #6682C8 42%, #B34EAC 72%, #D946EF 100%);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1180px;
  --nav-h: 4.25rem;
  --base: ;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--ice);
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
a:hover { color: var(--teal-hot); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin: 0 0 0.55em;
}
h1 { font-size: clamp(2.4rem, 6.5vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(1.75rem, 4vw, 2.85rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p { margin: 0 0 1em; max-width: 40rem; }
.lede { font-size: clamp(1.05rem, 1.9vw, 1.25rem); color: var(--mist); max-width: 36rem; line-height: 1.5; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-hot);
  margin: 0 0 0.75rem;
}
.wrap { width: min(100% - 2 * var(--pad), var(--max)); margin-inline: auto; }
.wrap-wide { width: min(100% - 2 * var(--pad), 1320px); margin-inline: auto; }
.skip {
  position: absolute; left: -999px; top: 0; background: var(--grad); color: #fff; padding: 0.5rem 1rem; z-index: 100;
}
.skip:focus { left: 0; }
.draft-banner {
  position: sticky; top: 0; z-index: 60;
  background: var(--ink-2); color: var(--mute-d);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em;
  text-align: center; padding: 0.28rem 1rem;
}
.draft-banner b { color: var(--teal-hot); font-weight: 500; }

/* —— Nav —— */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(1.15);
  background: rgba(11, 7, 38, 0.88);
  border-bottom: 1px solid var(--line);
}
.site-header.has-draft { top: 1.25rem; }
.nav-inner {
  width: min(100% - 2 * var(--pad), var(--max));
  margin: 0 auto;
  min-height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; flex-direction: column; gap: 0; position: relative; z-index: 2; min-width: 0; }
.brand-home {
  display: flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--ice);
}
.brand-home:hover { color: var(--ice); }
.brand img { width: 32px; height: 32px; flex-shrink: 0; }
.brand-name {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  letter-spacing: -0.02em; white-space: nowrap; line-height: 1.15;
}
.brand-wordmark { display: flex; flex-direction: column; gap: 0.02rem; line-height: 1.1; min-width: 0; }
.brand-tag {
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--mute-d);
  white-space: nowrap;
}
.brand-parent { display: none; } /* parent lives in footer only */
.foot-parent { font-size: 0.78rem; color: var(--mute-d); margin-top: 0.2rem; }
.foot-parent a { color: var(--teal-hot); text-decoration: none; font-weight: 500; }
.foot-parent a:hover { text-decoration: underline; color: var(--magenta-hot); }
.nav-links { display: flex; align-items: center; gap: 0.85rem; font-size: 0.88rem; }
.nav-links a { text-decoration: none; color: var(--mist-strong); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-play {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(243,241,250,0.18);
  background: rgba(255,255,255,0.04);
  color: var(--ice); font-weight: 600; font-size: 0.84rem;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.nav-play svg { width: 0.85rem; height: 0.85rem; fill: currentColor; margin-left: 1px; }
.nav-play .nav-play-pause { display: none; }
.nav-play.is-playing .nav-play-icon { display: none; }
.nav-play.is-playing .nav-play-pause { display: block; }
.nav-play:hover, .nav-play.is-playing {
  border-color: transparent;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 24px rgba(110, 91, 255, 0.28);
}
.nav-cta {
  background: var(--grad) !important; color: #fff !important;
  padding: 0.5rem 1.05rem; border-radius: 999px; font-weight: 600;
  box-shadow: 0 8px 24px rgba(110, 91, 255, 0.25);
}
.nav-cta:hover { filter: brightness(1.08); color: #fff !important; }
.nav-toggle { display: none; width: 2.5rem; height: 2.5rem; place-items: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 1.25rem; height: 2px; background: var(--ice); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-mobile {
  display: none; flex-direction: column; gap: 0.25rem;
  padding: 0.5rem var(--pad) 1.25rem; border-top: 1px solid var(--line);
  background: var(--ink-2);
}
.nav-mobile a, .nav-mobile .nav-play {
  padding: 0.75rem 0; text-decoration: none; border-bottom: 1px solid var(--line);
  border-radius: 0; width: 100%; justify-content: flex-start;
  background: transparent; box-shadow: none;
}
.nav-mobile .nav-play { border: 0; border-bottom: 1px solid var(--line); }
.nav-mobile.open { display: flex; }
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; }
}

/* —— Buttons —— */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.4rem; border-radius: 999px; font-weight: 600; text-decoration: none;
  transition: transform 0.25s var(--ease), filter 0.25s, background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 12px 36px rgba(110, 91, 255, 0.28), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.btn-primary:hover { filter: brightness(1.07); color: #fff; }
.btn-ghost {
  border: 1px solid rgba(243,241,250,0.22); color: var(--ice); background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-hot); }
.btn-ink { background: var(--ink); color: var(--ice); }
.btn-ink:hover { background: var(--ink-2); color: #fff; box-shadow: 0 0 0 1px var(--teal); }
.ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0 1rem; }

/* —— Hero film (full-bleed cinematic) —— */
.hero {
  position: relative;
  min-height: min(92vh, 920px);
  display: grid; align-items: end;
  padding: 0 0 clamp(3rem, 8vh, 5.5rem);
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--steel);
}
.hero-media video {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.78;
  filter: saturate(1.05) contrast(1.06);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,7,38,0.45) 0%, rgba(11,7,38,0.18) 32%, rgba(11,7,38,0.82) 72%, var(--ink) 100%),
    radial-gradient(ellipse 70% 55% at 75% 28%, rgba(20,184,166,0.18), transparent 58%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(217,70,239,0.12), transparent 55%);
}
.hero-content { width: min(100% - 2 * var(--pad), var(--max)); margin: 0 auto; }
.wedge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-mono); font-size: 0.76rem; letter-spacing: 0.03em;
  color: #fff; background: var(--magenta);
  padding: 0.42rem 0.85rem; border-radius: 999px; margin-bottom: 1.15rem;
  font-weight: 500;
  box-shadow: 0 8px 28px rgba(217, 70, 239, 0.35);
}
.hero h1 { max-width: 14ch; margin-bottom: 0.5em; color: #fff; }
.hero .lede { color: rgba(243,241,250,0.9); max-width: 38rem; }
.anti-line {
  font-size: 0.88rem; color: var(--mute-d); margin: 0.35rem 0 0; max-width: 36rem;
}
.job-rail {
  display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.5rem 0 0; padding: 0; max-width: 42rem;
}
.job-chip {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em;
  padding: 0.38rem 0.7rem; border: 1px solid var(--line); border-radius: 999px;
  color: var(--mist-strong); background: rgba(11,7,38,0.45); list-style: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.job-chip.is-hot, .job-chip:hover {
  border-color: var(--teal);
  color: var(--teal-hot);
  background: var(--teal-dim);
}
.hero-play {
  position: absolute; right: var(--pad); bottom: clamp(3rem, 8vh, 5.5rem);
  width: 3.25rem; height: 3.25rem; border-radius: 50%;
  background: rgba(11,7,38,0.55); border: 1px solid var(--line);
  display: grid; place-items: center; backdrop-filter: blur(10px);
  z-index: 3;
}
.hero-play svg { width: 1rem; height: 1rem; fill: var(--ice); margin-left: 2px; }
.hero-play:hover {
  background: var(--grad); border-color: transparent;
  box-shadow: 0 0 28px rgba(217,70,239,0.35);
}
.hero-play:hover svg { fill: #fff; }
.hero-play.is-playing { opacity: 0.4; }

/* —— Story chapters (normal scroll · no sticky trap) —— */
.story-chapters {
  padding: clamp(3rem, 8vh, 5rem) 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.story-chapters .wrap > .eyebrow { margin-bottom: 0.5rem; }
.chapter-stack { display: flex; flex-direction: column; gap: clamp(2rem, 5vh, 3.25rem); margin-top: 1.75rem; }
.chapter-card {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: stretch;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, var(--ink-2), var(--ink-3));
  box-shadow: 0 24px 50px rgba(0,0,0,0.28);
}
.chapter-card.reverse { grid-template-columns: 0.95fr 1.05fr; }
.chapter-card.reverse .chapter-visual { order: 2; }
.chapter-card.reverse .chapter-copy { order: 1; }
.chapter-visual {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16/9; background: var(--steel); position: relative;
  align-self: stretch;
}
.chapter-copy { display: flex; flex-direction: column; justify-content: center; padding: 0.35rem 0.25rem; }
.chapter-visual img,
.chapter-visual video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.chapter-copy { padding: 0.35rem 0.25rem; }
.chapter-copy .ch-num {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--teal-hot);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.55rem;
}
.chapter-copy h3 {
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  margin-bottom: 0.55rem; max-width: 18ch;
}
.chapter-copy p {
  margin: 0; color: var(--mist); font-size: 1.05rem; line-height: 1.45;
  max-width: 28rem;
}
.chapter-copy .ch-cap {
  display: block; margin-top: 0.85rem;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em;
  color: var(--magenta-hot);
}
@media (max-width: 860px) {
  .chapter-card, .chapter-card.reverse { grid-template-columns: 1fr; }
  .chapter-card.reverse .chapter-visual,
  .chapter-card.reverse .chapter-copy { order: unset; }
  .chapter-visual { aspect-ratio: 16/9; }
}
/* kill leftover sticky pad if any */
.film-scroll-pad { display: none !important; height: 0 !important; }
.film-story .film-sticky { position: relative; height: auto; }

/* —— Visual feast splits —— */
.feast-split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 2.75rem);
  align-items: center; margin-top: 1.5rem;
}
.feast-split.reverse { direction: rtl; }
.feast-split.reverse > * { direction: ltr; }
.feast-split .feast-copy h2 { max-width: 14ch; }
.feast-split .feast-copy p { max-width: 32rem; }
.feast-split .feast-visual {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(0,0,0,0.35);
  aspect-ratio: 16/9; background: var(--steel); align-self: stretch;
}
.feast-split .feast-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.feast-split { align-items: stretch; }
.feast-split .feast-copy { display: flex; flex-direction: column; justify-content: center; }
.feast-caption {
  color: var(--ice);
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 0 0 0.65rem; max-width: 16ch;
}
@media (max-width: 860px) {
  .feast-split, .feast-split.reverse { grid-template-columns: 1fr; direction: ltr; }
}

.vis-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.75rem;
}
@media (max-width: 700px) { .vis-grid { grid-template-columns: 1fr; } }
.vis-tile {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: var(--ink-2); position: relative;
}
.vis-tile { display: flex; flex-direction: column; height: 100%; }
.vis-tile img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; flex-shrink: 0; }
.vis-tile figcaption { flex: 1; }
.vis-grid { align-items: stretch; }
.vis-tile figcaption {
  padding: 0.85rem 1rem 1rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--mist-strong);
}
.vis-tile strong { color: var(--teal-hot); font-weight: 500; display: block; margin-bottom: 0.25rem; font-size: 0.78rem; }

.offer-card .oc-thumb {
  border-radius: 10px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16/9; margin: -0.15rem 0 0.15rem; background: var(--steel);
}
.offer-card .oc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.offer-card { min-height: 280px; height: 100%; padding-top: 1rem; }
.offer-grid { align-items: stretch; }

.teaser-band {
  padding: clamp(3.5rem, 9vh, 6rem) 0;
  border-top: 1px solid var(--line);
}
.teaser-band.alt { background: var(--ink-2); }

/* —— Manifest / bands —— */
.manifest {
  padding: clamp(4rem, 10vh, 7rem) 0;
  border-top: 1px solid var(--line);
}
.manifest.paper {
  background: var(--ink-2); color: var(--ice);
  border-top: 0;
}
.manifest.paper .lede { color: var(--mist); }
.manifest.paper h2 { color: #fff; }
.manifest-tag {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal-hot); margin-bottom: 1.25rem;
}
.can-list {
  list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 0.85rem; max-width: 40rem;
}
.can-list li {
  display: grid; grid-template-columns: 1.5rem 1fr; gap: 0.75rem; align-items: start;
  padding: 0.85rem 0; border-bottom: 1px solid var(--line);
}
.can-list .tick {
  width: 1.35rem; height: 1.35rem; border-radius: 50%;
  background: var(--teal-dim); color: var(--teal-hot);
  display: grid; place-items: center; font-size: 0.75rem; margin-top: 0.15rem;
}

/* —— Desk gallery (visual density) —— */
.desk-gallery {
  padding: clamp(3rem, 8vh, 5rem) 0;
  background: var(--steel);
  border-top: 1px solid var(--line);
}
.desk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.75rem;
}
@media (max-width: 980px) { .desk-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .desk-grid { grid-template-columns: 1fr; } }
.desk-card {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-3);
  aspect-ratio: 4/3;
}
.desk-card img,
.desk-card video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}
.desk-card video { pointer-events: none; }
.desk-card:hover img,
.desk-card:hover video { transform: scale(1.04); }
.desk-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem 0.85rem 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(8,6,26,0.92));
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em;
  color: var(--mist-strong);
}
.desk-card .live-dot {
  display: inline-block; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ok); box-shadow: 0 0 8px var(--ok); margin-right: 0.4rem;
}

/* —— Before / after —— */
.ba-band {
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
  border-top: 1px solid var(--line);
  background: var(--ink);
}
.ba-frame {
  margin-top: 1.75rem;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,0.4);
}
.ba-frame img { width: 100%; height: auto; }

/* —— Tuesday —— */
.tuesday {
  padding: clamp(3rem, 8vh, 5rem) 0 clamp(2rem, 5vh, 3rem);
  background: var(--ink-2);
  border-top: 1px solid var(--line);
}
.tuesday-head { width: min(100% - 2 * var(--pad), var(--max)); margin: 0 auto 1.5rem; }
.tuesday-track {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.5rem var(--pad) 1.75rem;
  scrollbar-width: thin; scrollbar-color: var(--teal) transparent;
}
.tue-card {
  flex: 0 0 min(78vw, 340px); scroll-snap-align: start;
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 18px;
  padding: 0; min-height: 300px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.tue-card .tue-shot {
  height: 140px; overflow: hidden; border-bottom: 1px solid var(--line);
}
.tue-card .tue-shot img,
.tue-card .tue-shot video { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; display: block; }
.tue-card .tue-shot video { pointer-events: none; }
.tue-body { padding: 1.15rem 1.25rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.tue-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 2;
  background: var(--grad); opacity: 0.85;
}
.tue-time {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--teal-hot); margin-bottom: 0.65rem;
}
.tue-card h3 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.tue-card p { color: var(--mist); font-size: 0.94rem; margin: 0; flex: 1; }
.tue-ui {
  margin-top: 1rem; font-family: var(--font-mono); font-size: 0.66rem;
  color: var(--mist); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.6rem 0.7rem; background: rgba(0,0,0,0.25);
}
.tue-ui strong { color: var(--teal-hot); font-weight: 500; }

/* —— Seats —— */
.seats-band { padding: clamp(4rem, 10vh, 7rem) 0; }
.seat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem;
}
@media (max-width: 980px) { .seat-grid { grid-template-columns: 1fr; } }
.seat-panel {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden; cursor: pointer; text-align: left;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}
.seat-panel:hover, .seat-panel.is-open {
  border-color: rgba(20,184,166,0.55);
  box-shadow: 0 0 0 1px rgba(20,184,166,0.2), 0 24px 50px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
.seat-chrome {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.65rem 0.9rem; background: var(--ink-3); border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--mist);
}
.seat-dots { display: flex; gap: 0.3rem; }
.seat-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--edge); display: block; }
.seat-dots i:nth-child(1) { background: #F472B6; }
.seat-dots i:nth-child(2) { background: #FBBF24; }
.seat-dots i:nth-child(3) { background: #34D399; }
.seat-body { padding: 1.15rem 1.15rem 1.35rem; display: grid; gap: 0.85rem; }
.seat-top { display: flex; gap: 0.9rem; align-items: center; }
.seat-top img {
  width: 56px; height: 56px; border-radius: 12px; object-fit: cover;
  border: 1px solid var(--line);
}
.seat-work {
  border-radius: 10px; overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 16/9; background: var(--steel);
}
.seat-work img,
.seat-work video { width: 100%; height: 100%; object-fit: cover; display: block; }
.seat-work video { pointer-events: none; }
.seat-top h3 { margin: 0 0 0.2rem; font-size: 1.15rem; }
.seat-role { font-size: 0.85rem; color: var(--mist); margin: 0; }
.seat-detail {
  display: none; border-top: 1px solid var(--line); padding-top: 0.85rem;
  font-size: 0.95rem; color: var(--mist);
}
.seat-panel.is-open .seat-detail { display: block; }
.seat-detail ul { margin: 0.5rem 0 0; padding-left: 1.1rem; }
.seat-detail li { margin-bottom: 0.35rem; }
.seat-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.08em;
  color: var(--ok); text-transform: uppercase;
}
.seat-status::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ok);
  box-shadow: 0 0 8px var(--ok);
}

/* —— Ladder visual —— */
.ladder-asymm {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1rem; margin-top: 2rem;
}
@media (max-width: 860px) { .ladder-asymm { grid-template-columns: 1fr; } }
.rung {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.35rem 1.4rem;
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  position: relative; overflow: hidden;
}
.rung.tall { grid-row: span 2; min-height: 100%; display: flex; flex-direction: column; }
.rung .rung-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em;
  color: var(--teal-hot); text-transform: uppercase; margin-bottom: 0.65rem;
}
.rung.premium .rung-label { color: var(--magenta-hot); }
.rung p { color: var(--mist); margin: 0; }
.rung img { margin-top: auto; padding-top: 1.15rem; border-radius: 10px; width: 100%; opacity: 0.95; }
.rung-num {
  position: absolute; right: 1rem; top: 1rem;
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--mute);
}

/* —— How visual steps —— */
.how-visual {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem; margin-top: 2rem;
}
@media (max-width: 980px) { .how-visual { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .how-visual { grid-template-columns: 1fr; } }
.how-card {
  border: 1px solid var(--line); border-radius: 14px; padding: 1.15rem;
  background: var(--ink-2); position: relative;
  min-height: 160px;
}
.how-card .how-n {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em;
  color: var(--magenta-hot); margin-bottom: 0.55rem;
}
.how-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.how-card p { margin: 0; font-size: 0.88rem; color: var(--mist); }
.how-card::after {
  content: "→";
  position: absolute; right: -0.55rem; top: 50%; transform: translateY(-50%);
  color: var(--teal); font-size: 1rem; z-index: 2;
}
.how-card:last-child::after, .how-visual .how-card:nth-child(2)::after {
  content: none;
}
@media (min-width: 981px) {
  .how-card:last-child::after { content: none; }
  .how-visual .how-card:nth-child(2)::after { content: "→"; }
}
.how-flow {
  margin-top: 2.5rem; display: grid; gap: 0;
  border-left: 2px solid rgba(20,184,166,0.35); padding-left: 1.5rem;
}
.how-step { position: relative; padding: 0 0 2rem 0.5rem; }
.how-step::before {
  content: ""; position: absolute; left: -1.72rem; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 4px rgba(20,184,166,0.2);
}
.how-step h3 { margin-bottom: 0.35rem; font-size: 1.2rem; }
.how-step p { margin: 0; color: var(--mist); }

/* —— VS —— */
.vs-split {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 420px;
}
@media (max-width: 800px) { .vs-split { grid-template-columns: 1fr; } }
.vs-side { padding: clamp(2.5rem, 6vw, 4rem) var(--pad); }
.vs-side.them { background: #0A0618; border-right: 1px solid var(--line); }
.vs-side.us {
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(20,184,166,0.12), transparent 50%),
    var(--ink-2);
}
.vs-side h2 { max-width: 14ch; }
.vs-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.vs-list li {
  padding: 0.85rem 0; border-bottom: 1px solid var(--line);
  font-size: 1.02rem; display: grid; grid-template-columns: 1.4rem 1fr; gap: 0.65rem;
}
.vs-x { color: var(--ember); }
.vs-check { color: var(--ok); }
.vs-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  width: min(100% - 2 * var(--pad), var(--max));
  margin: -2rem auto 0; position: relative; z-index: 2;
  padding-bottom: 3rem;
}
@media (max-width: 800px) { .vs-cards { grid-template-columns: 1fr; margin-top: 1rem; } }
.vs-card {
  border-radius: 16px; overflow: hidden; border: 1px solid var(--line);
  background: var(--ink-3);
}
.vs-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.vs-card .vs-card-body { padding: 1rem 1.1rem 1.2rem; }
.vs-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.vs-card p { margin: 0; font-size: 0.88rem; color: var(--mist); }
.vs-card .vs-tag {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ember); margin-bottom: 0.4rem;
}
.vs-card.us .vs-tag { color: var(--teal-hot); }

/* —— First Desk —— */
.product-sheet {
  margin: clamp(3rem, 8vh, 5rem) auto;
  width: min(100% - 2 * var(--pad), var(--max));
  background: var(--cream); color: var(--ink);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
  display: grid; grid-template-columns: 1.05fr 0.95fr;
}
@media (max-width: 900px) { .product-sheet { grid-template-columns: 1fr; } }
.ps-main { padding: clamp(1.75rem, 4vw, 2.75rem); }
.ps-side {
  background: var(--ink-2); color: var(--ice); padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex; flex-direction: column; gap: 1rem;
}
.ps-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.ps-pill {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.35rem 0.6rem; border-radius: 4px;
  background: rgba(20,184,166,0.12); color: #0F766E; border: 1px solid rgba(20,184,166,0.3);
}
.ps-side .ps-pill { background: var(--teal-dim); color: var(--teal-hot); border-color: rgba(20,184,166,0.35); }
.ps-rows { margin: 1.25rem 0 0; }
.ps-row {
  display: grid; grid-template-columns: 7.5rem 1fr; gap: 0.75rem;
  padding: 0.75rem 0; border-top: 1px solid var(--line-dark); font-size: 0.95rem;
}
.ps-row dt { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: #0F766E; padding-top: 0.2rem; }
.ps-row dd { margin: 0; }
.ps-side h3 { font-size: 1.15rem; margin: 0; }
.ps-side ul { margin: 0; padding-left: 1.1rem; color: var(--mist); }
.ps-side li { margin-bottom: 0.4rem; }
.ps-footnote { font-size: 0.82rem; color: var(--mist); margin-top: auto; padding-top: 1rem; }
.ps-shot { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); margin-bottom: 0.5rem; }
.ps-shot img { width: 100%; height: auto; }

/* —— Rails / cred / final —— */
.rails-quiet {
  padding: clamp(3rem, 7vh, 4.5rem) 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
}
.rails-quiet .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2rem; align-items: center; }
@media (max-width: 800px) { .rails-quiet .wrap { grid-template-columns: 1fr; } }
.rails-quiet .lede { margin-bottom: 0; }
.cred {
  padding: clamp(3.5rem, 8vh, 5.5rem) 0;
  background: var(--ink-2); color: var(--ice);
  border-top: 1px solid var(--line);
}
.cred-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: end;
}
@media (max-width: 800px) { .cred-grid { grid-template-columns: 1fr; } }
.cred-stats { display: grid; gap: 1rem; }
.cred-stat { border-top: 1px solid var(--line); padding-top: 0.85rem; }
.cred-stat strong {
  display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-bottom: 0.2rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cred-stat span { font-size: 0.92rem; color: var(--mist); }
.final-cta {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(20,184,166,0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(217,70,239,0.12), transparent 50%),
    var(--ink);
  text-align: center;
  border-top: 1px solid var(--line);
}
.final-cta h2 { margin-inline: auto; max-width: 16ch; }
.final-cta .lede { margin-inline: auto; }
.final-cta .ctas { justify-content: center; }

/* —— Page hero (inner) —— */
.page-hero {
  padding: clamp(3rem, 8vh, 5rem) 0 clamp(2rem, 5vh, 3rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, rgba(20,184,166,0.12), transparent 50%),
    var(--ink);
}
.page-hero h1 { max-width: 16ch; }

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line); padding: 2.5rem 0 3rem;
  background: var(--steel); font-size: 0.9rem; color: var(--mist);
}
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
}
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.site-footer a { color: var(--ice); text-decoration: none; }
.site-footer a:hover { color: var(--teal-hot); }
.foot-brand { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
.foot-brand img { width: 28px; height: 28px; }
.foot-links { display: flex; flex-direction: column; gap: 0.45rem; }
.foot-meta { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid var(--line); font-size: 0.8rem; }

/* —— Reveal / util —— */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.band { padding: clamp(3.5rem, 8vh, 5.5rem) 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.anti-soft {
  font-size: 0.92rem; color: var(--mist); margin-top: 0.5rem; max-width: 36rem;
}
.img-frame {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: var(--ink-3);
}
.img-frame img { width: 100%; height: auto; }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }
.vs-table-wrap { padding: clamp(2rem, 5vw, 3.5rem) 0; background: var(--ink); }
.vs-table {
  width: min(100% - 2 * var(--pad), var(--max)); margin: 0 auto;
  border-collapse: collapse; font-size: 0.95rem;
}
.vs-table th, .vs-table td {
  text-align: left; padding: 1rem 1rem; border-bottom: 1px solid var(--line); vertical-align: top;
}
.vs-table th {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal-hot); font-weight: 500;
}
.vs-table td:first-child { color: var(--mist); width: 28%; }
.vs-table td.hl { color: var(--ice); font-weight: 500; }


/* —— Seat films (muted loop cards) —— */
.ps-shot video,
.rung video {
  width: 100%; height: auto; display: block; border-radius: inherit;
  object-fit: cover;
}
.ps-shot { overflow: hidden; }

/* —— Full site v=full1 — offer map, literacy, own-stack, portal, crew, nav —— */
.nav-links { gap: 0.75rem; font-size: 0.84rem; }
.nav-more { position: relative; }
.nav-more-btn {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--mist-strong); font-size: 0.84rem; padding: 0.25rem 0;
  background: none; border: 0; cursor: pointer;
}
.nav-more-btn:hover, .nav-more.open .nav-more-btn { color: #fff; }
.nav-more-panel {
  display: none; position: absolute; top: calc(100% + 0.6rem); right: 0;
  min-width: 11rem; padding: 0.5rem; border-radius: 12px;
  background: var(--ink-2); border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45); z-index: 40;
}
.nav-more.open .nav-more-panel { display: flex; flex-direction: column; gap: 0.15rem; }
.nav-more-panel a {
  display: block; padding: 0.55rem 0.75rem; border-radius: 8px;
  text-decoration: none; color: var(--mist-strong); font-size: 0.88rem;
}
.nav-more-panel a:hover, .nav-more-panel a[aria-current="page"] {
  background: rgba(20,184,166,0.12); color: #fff;
}
@media (max-width: 1100px) {
  .nav-links .nav-hide-md { display: none; }
}

.lit-chip {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em;
  color: var(--teal-hot); background: var(--teal-dim);
  border: 1px solid rgba(20,184,166,0.35); border-radius: 999px;
  padding: 0.4rem 0.85rem; margin: 0.75rem 0 0; font-weight: 500;
  text-decoration: none;
}
.lit-chip:hover { color: #fff; border-color: var(--teal); background: rgba(20,184,166,0.28); }
.seat-lit {
  display: inline-block; margin-top: 0.55rem;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.06em;
  color: var(--magenta-hot); text-transform: uppercase;
}

.offer-map {
  padding: clamp(3.5rem, 9vh, 6rem) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(20,184,166,0.1), transparent 55%),
    var(--ink);
}
.offer-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.85rem; margin-top: 1.75rem;
}
@media (max-width: 1100px) { .offer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card {
  display: flex; flex-direction: column; gap: 0.55rem;
  padding: 1.25rem 1.15rem 1.35rem; border-radius: 16px;
  border: 1px solid var(--line); background: var(--ink-2);
  text-decoration: none; color: inherit;
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  min-height: 180px;
}
.offer-card:hover {
  border-color: rgba(20,184,166,0.5); color: inherit;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.offer-card .oc-num {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
  color: var(--magenta-hot); text-transform: uppercase;
}
.offer-card h3 { font-size: 1.15rem; margin: 0; }
.offer-card p { margin: 0; font-size: 0.88rem; color: var(--mist); flex: 1; }
.offer-card .oc-go { font-family: var(--font-mono); font-size: 0.68rem; color: var(--teal-hot); }

.fear-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.75rem;
}
@media (max-width: 900px) { .fear-grid { grid-template-columns: 1fr; } }
.fear-card {
  border: 1px solid var(--line); border-radius: 14px; padding: 1.25rem;
  background: var(--ink-2);
}
.fear-card .fear-q {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em;
  color: var(--ember); margin-bottom: 0.5rem;
}
.fear-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.fear-card p { margin: 0; font-size: 0.92rem; color: var(--mist); }

.fear-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  margin-top: 2rem;
}
@media (max-width: 800px) { .fear-hero { grid-template-columns: 1fr; } }
.fear-headline {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 0.75rem;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}

.plain-grid {
  display: grid; gap: 0; margin-top: 1.5rem; max-width: 42rem;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.plain-row {
  display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem;
  padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.plain-row:last-child { border-bottom: 0; }
.plain-row .word {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--teal-hot); padding-top: 0.15rem;
}
.plain-row .mean { color: var(--mist); margin: 0; }

.include-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; margin-top: 1.5rem;
}
@media (max-width: 700px) { .include-grid { grid-template-columns: 1fr; } }
.include-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 1.1rem 1.2rem;
  background: var(--ink-2);
}
.include-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.include-card p { margin: 0; font-size: 0.88rem; color: var(--mist); }
.include-card.out { opacity: 0.7; border-style: dashed; }

.phase-list {
  list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.75rem;
}
.phase-list li {
  display: grid; grid-template-columns: 3.5rem 1fr; gap: 1rem; align-items: start;
  padding: 1rem 1.15rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--ink-2);
}
.phase-list .ph {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--magenta-hot); padding-top: 0.15rem;
}
.phase-list h3 { font-size: 1.05rem; margin: 0 0 0.25rem; }
.phase-list p { margin: 0; font-size: 0.9rem; color: var(--mist); }
.phase-list li.is-soon { border-color: rgba(217,70,239,0.35); }

.crew-lead-card {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.5rem; align-items: center;
  margin-top: 2rem; padding: 1.5rem; border-radius: 18px;
  border: 1px solid rgba(217,70,239,0.35);
  background:
    radial-gradient(ellipse 60% 50% at 90% 20%, rgba(217,70,239,0.12), transparent 55%),
    var(--ink-2);
}
@media (max-width: 800px) { .crew-lead-card { grid-template-columns: 1fr; } }
.crew-lead-card .cl-badge {
  display: inline-block; font-family: var(--font-mono); font-size: 0.65rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--magenta-hot);
  margin-bottom: 0.5rem;
}

.pipeline {
  display: grid; gap: 0; margin-top: 2rem;
  border-left: 2px solid rgba(217,70,239,0.4); padding-left: 1.5rem;
}
.pipe-step { position: relative; padding: 0 0 1.75rem 0.5rem; }
.pipe-step::before {
  content: ""; position: absolute; left: -1.72rem; top: 0.35rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--magenta); box-shadow: 0 0 0 4px rgba(217,70,239,0.2);
}
.pipe-step h3 { margin-bottom: 0.3rem; font-size: 1.1rem; }
.pipe-step p { margin: 0; color: var(--mist); font-size: 0.95rem; }

.meeting-note {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em;
  color: var(--mute-d); border: 1px dashed var(--line); border-radius: 8px;
  padding: 0.5rem 0.85rem; margin: 1rem 0 0;
}
.walkin-box {
  border: 1px solid var(--line); border-radius: 16px; padding: 1.5rem 1.6rem;
  background: var(--ink-2); margin-top: 1.5rem; max-width: 40rem;
}
.walkin-box .say {
  font-size: 1.05rem; line-height: 1.55; color: var(--ice); margin: 0 0 0.75rem;
}
.walkin-box .ask {
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--teal-hot);
  margin: 0; letter-spacing: 0.03em;
}

.seat-film-strip {
  display: flex; gap: 0.85rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.5rem 0 1rem; margin-top: 1.25rem;
  scrollbar-width: thin; scrollbar-color: var(--teal) transparent;
}
.seat-film-strip .desk-card {
  flex: 0 0 min(70vw, 280px); scroll-snap-align: start; aspect-ratio: 4/3;
}
.how-split-path {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem;
}
@media (max-width: 800px) { .how-split-path { grid-template-columns: 1fr; } }
.path-card {
  border-radius: 16px; padding: 1.5rem; border: 1px solid var(--line);
  background: var(--ink-2);
}
.path-card.own {
  border-color: rgba(20,184,166,0.4);
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(20,184,166,0.12), transparent 55%),
    var(--ink-2);
}
.path-card .path-label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--teal-hot); margin-bottom: 0.65rem;
}
.path-card.own .path-label { color: var(--magenta-hot); }


/* —— Premium layout polish (prem1) —— */
.two-col { align-items: stretch; }
.two-col .feast-visual {
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 28px 60px rgba(0,0,0,0.35);
  aspect-ratio: 16/9; background: var(--steel); align-self: center;
  width: 100%;
}
.two-col .feast-visual img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.how-split-path { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: stretch; }
@media (max-width: 700px) { .how-split-path { grid-template-columns: 1fr; } }
.path-card { height: 100%; display: flex; flex-direction: column; }
.nav-play-label { font-size: 0.8rem; }
@media (max-width: 1100px) {
  .nav-play-label { display: none; }
}
.include-grid { align-items: stretch; }
.include-card { height: 100%; }


/* —— Pat polish prem2 —— */
.draft-banner {
  font-size: 0.62rem; letter-spacing: 0.04em; padding: 0.28rem 1rem;
  color: var(--mute-d); opacity: 0.85;
}
.seat-chrome { display: none !important; } /* hide kindra://seat/ geek chrome on buyer pages */
.dual-shot {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0.55rem;
  align-items: stretch;
}
.dual-shot .shot {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
  background: var(--steel); aspect-ratio: 16/9;
}
.dual-shot .shot img, .dual-shot .shot video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.dual-shot .shot.real { aspect-ratio: 16/9; }
.dual-caption {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.05em;
  color: var(--mute-d); margin-top: 0.45rem;
}
.dual-caption span strong { color: var(--teal-hot); font-weight: 500; }
.plain-note {
  font-size: 0.95rem; color: var(--mist-strong); margin: 0.75rem 0 0;
  max-width: 36rem; line-height: 1.45;
}
.plain-note b { color: var(--ice); font-weight: 600; }
@media (max-width: 700px) {
  .dual-shot { grid-template-columns: 1fr; }
}

/* Above-fold feast visuals stay visible even before IO */
.feast-visual.reveal { opacity: 1; transform: none; }
.two-col .feast-visual.reveal { opacity: 1; transform: none; }


/* —— Pat polish prem3 —— */
.film-dual {
  gap: 0.7rem;
  filter: none;
}
.film-dual .shot {
  border-radius: 16px;
  border: 1px solid rgba(243,241,250,0.14);
  box-shadow:
    0 28px 64px rgba(0,0,0,0.45),
    0 0 0 1px rgba(45,212,191,0.08),
    inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.film-dual .shot::after {
  content: "";
  pointer-events: none;
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,7,38,0.05) 0%, transparent 28%, rgba(11,7,38,0.22) 100%);
  mix-blend-mode: multiply;
}
.film-grid .vis-tile {
  overflow: hidden;
}
.film-grid .vis-tile img,
.film-grid .vis-tile .dual-shot {
  border-radius: 14px;
}
.film-grid .dual-shot .shot { aspect-ratio: 16/10; }
.page-hero .lede + .plain-note { margin-top: 0.55rem; }
