:root {
  /* Locked HotelBrain palette — exact */
  --field: #111111;       /* page background, nav, chrome shell */
  --cream: #F3E9DD;       /* work / cards / cream surfaces */
  --clay: #C15F3D;        /* live / accent / CTAs */
  --on-field: #FFFFFF;    /* type on dark field */
  --ink: #493217;         /* type on cream */
  /* Derived */
  --muted-on-field: rgba(243, 233, 221, 0.62);
  --muted-on-cream: #6B5E52;
  --line-on-field: rgba(243, 233, 221, 0.14);
  --line-on-cream: #E0D2C2;
  --line-soft-cream: #EBDFD0;
  --ok: #4F7A5C;
  --mono: ui-monospace, "SF Mono", "Liberation Mono", Menlo, Consolas, monospace;
  --sans: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--field);
  color: var(--on-field);
  line-height: 1.5;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* —— Motion —— */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes softPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(193, 95, 61, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(193, 95, 61, 0); }
}
@keyframes chromeDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes barSweep {
  0% { transform: translateX(-30%); opacity: 0.35; }
  50% { opacity: 0.85; }
  100% { transform: translateX(130%); opacity: 0.35; }
}
@keyframes walkFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}
.fade-up.d1 { animation-delay: 0.08s; }
.fade-up.d2 { animation-delay: 0.18s; }
.fade-up.d3 { animation-delay: 0.28s; }
.fade-up.d4 { animation-delay: 0.38s; }
.fade-up.d5 { animation-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .ui, .walk-stage, .live-dot, .walk-progress-bar, .sys-pulse, .sys-node.active {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .sys-pulse { display: none !important; }
}

/* —— Nav: black shell, white/cream links, terracotta DEMO —— */
.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 1.25rem 2rem;
  min-height: 72px;
  border-bottom: 1px solid var(--line-on-field);
  background: var(--field);
  position: sticky;
  top: 0;
  z-index: 40;
}
.nav .mark {
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.35rem;
  margin-right: auto;
  color: var(--on-field);
}
.nav a {
  font-size: 0.98rem;
  color: var(--muted-on-field);
  font-weight: 500;
}
.nav a:hover,
.nav a.active { color: var(--cream); }
.nav a.demo {
  margin-left: 0.35rem;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  font-weight: 700;
}
.nav a.demo:hover { filter: brightness(0.92); color: #fff; }

/* —— Hero —— */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2.25rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 3.4rem 1.75rem 2.25rem;
  align-items: center;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line-on-field);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.68rem;
  color: var(--muted-on-field);
  margin-bottom: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(243, 233, 221, 0.04);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  display: inline-block;
  animation: softPulse 2.4s ease-in-out infinite;
}
h1 {
  font-size: clamp(2.15rem, 4.1vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  font-weight: 700;
  max-width: 13ch;
  color: var(--on-field);
}
.lede {
  margin-top: 1.05rem;
  color: var(--muted-on-field);
  font-size: 1.05rem;
  max-width: 34rem;
}
.lede strong { color: var(--cream); font-weight: 600; }
.cta-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.65rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.78rem 1.1rem;
  border-radius: 7px;
  font-weight: 650;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: filter 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-primary,
.btn-clay {
  background: var(--clay);
  color: #fff;
}
.btn-primary:hover,
.btn-clay:hover { filter: brightness(0.92); }
.btn-ghost {
  border: 1px solid var(--line-on-field);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover {
  border-color: rgba(243, 233, 221, 0.35);
  background: rgba(243, 233, 221, 0.05);
}
.micro {
  margin-top: 0.9rem;
  font-size: 0.7rem;
  color: var(--muted-on-field);
}

/* —— Product UI mock: black phone/shell, cream work cards —— */
.ui {
  background: var(--field);
  border: 1px solid var(--line-on-field);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
  animation: chromeDrift 7s ease-in-out infinite;
}
.ui-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 0.85rem;
  border-bottom: 1px solid var(--line-on-field);
  background: var(--field);
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(243, 233, 221, 0.28);
}
.ui-top span {
  margin-left: 0.45rem;
  font-size: 0.68rem;
  color: var(--muted-on-field);
}
.ui-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  min-height: 320px;
}
.ui-rail {
  background: #111111;
  border-right: 1px solid var(--line-on-field);
  padding: 0.65rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ui-rail b {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 7px;
  background: rgba(243, 233, 221, 0.06);
  border: 1px solid var(--line-on-field);
}
.ui-rail b.on {
  background: rgba(193, 95, 61, 0.22);
  border-color: rgba(193, 95, 61, 0.55);
}
.ui-main {
  padding: 1rem 1rem 1.1rem;
  background: var(--field);
}
.ui-main .hi {
  font-size: 0.68rem;
  color: var(--muted-on-field);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ui-main h3 {
  font-size: 1.2rem;
  margin: 0.3rem 0 0.9rem;
  letter-spacing: -0.02em;
  color: var(--on-field);
  font-weight: 650;
}
.ui-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.ui-card {
  background: var(--cream);
  color: var(--ink);
  border-radius: 9px;
  padding: 0.7rem 0.75rem;
  min-height: 92px;
}
.ui-card .k {
  font-size: 0.6rem;
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ui-card .v {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.22rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ui-card .s {
  font-size: 0.72rem;
  color: var(--muted-on-cream);
  margin-top: 0.12rem;
}

.ui-queue {
  margin-top: 0.75rem;
  border: 1px solid var(--line-on-cream);
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
}
.ui-queue-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.7rem;
  border-bottom: 1px solid var(--line-soft-cream);
  font-size: 0.78rem;
  color: var(--ink);
}
.ui-queue-row:last-child { border-bottom: none; }
.ui-queue-row .tag {
  font-size: 0.6rem;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  border: 1px solid var(--line-on-cream);
  color: var(--muted-on-cream);
  white-space: nowrap;
}
.ui-queue-row .tag.need {
  border-color: rgba(193, 95, 61, 0.55);
  color: var(--clay);
  background: rgba(193, 95, 61, 0.1);
}
.ui-queue-row .tag.done {
  border-color: rgba(79, 122, 92, 0.45);
  color: var(--ok);
}
.ui-queue-row .label { color: var(--ink); flex: 1; }
.ui-queue-row .meta {
  color: var(--muted-on-cream);
  font-size: 0.65rem;
}

/* —— Walkthrough —— */
.walk {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 3.25rem;
}
.walk-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.walk-head h2 {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: var(--on-field);
}
.walk-head p {
  color: var(--muted-on-field);
  max-width: 36rem;
  font-size: 0.95rem;
  margin-top: 0.35rem;
}
.walk-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border: 1px solid var(--line-on-field);
  border-radius: 12px;
  overflow: hidden;
  background: var(--field);
  min-height: 380px;
}
.walk-steps {
  border-right: 1px solid var(--line-on-field);
  padding: 1rem 0.75rem;
  background: #111111;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.walk-step {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0.7rem 0.75rem;
  color: var(--muted-on-field);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.walk-step:hover {
  color: var(--cream);
  background: rgba(243, 233, 221, 0.04);
}
.walk-step.active,
.walk-step[aria-selected="true"] {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--clay);
}
.walk-step .n {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
  color: inherit;
  opacity: 0.7;
}
.walk-step.active .n,
.walk-step[aria-selected="true"] .n { color: var(--clay); opacity: 1; }
.walk-step .t {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.walk-stage-wrap {
  position: relative;
  padding: 1.15rem 1.25rem 1.35rem;
  background: var(--field);
}
.walk-progress {
  height: 2px;
  background: var(--line-on-field);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.walk-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, transparent, var(--clay), transparent);
  animation: barSweep 5.2s linear infinite;
}
.walk-stage {
  display: none;
  animation: walkFade 0.45s ease;
}
.walk-stage.active { display: block; }

.walk-ui {
  border: 1px solid var(--line-on-field);
  border-radius: 10px;
  overflow: hidden;
  background: var(--field);
  min-height: 260px;
}
.walk-ui-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--line-on-field);
  font-size: 0.68rem;
  color: var(--muted-on-field);
  background: var(--field);
}
.walk-ui-body { padding: 1rem; background: var(--field); }

.birth-empty {
  height: 200px;
  border: 1px dashed var(--line-on-field);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--muted-on-field);
  font-size: 0.78rem;
  position: relative;
  overflow: hidden;
}
.birth-form {
  position: absolute;
  inset: 1rem;
  background: var(--cream);
  border: 1px solid var(--line-on-cream);
  border-radius: 8px;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
  animation: walkFade 0.5s ease;
}
.birth-form .field {
  height: 28px;
  border-radius: 5px;
  background: rgba(73, 50, 23, 0.08);
  border: 1px solid var(--line-on-cream);
}
.birth-form .field.w60 { width: 60%; }
.birth-form .field.w40 { width: 40%; }
.birth-form .swatch-row { display: flex; gap: 0.4rem; }
.birth-form .swatch {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid rgba(73, 50, 23, 0.15);
}
.birth-form .cta-mini {
  margin-top: 0.25rem;
  height: 32px;
  border-radius: 6px;
  background: var(--clay);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  width: 140px;
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.home-tile {
  background: var(--cream);
  color: var(--ink);
  border-radius: 8px;
  padding: 0.75rem;
  min-height: 78px;
}
.home-tile .k {
  font-size: 0.58rem;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.home-tile .v {
  font-weight: 700;
  font-size: 1.05rem;
  margin-top: 0.2rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.home-tile .s {
  font-size: 0.7rem;
  color: var(--muted-on-cream);
  margin-top: 0.1rem;
}
.home-strip {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.4rem;
}
.home-strip .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--line-on-cream);
  border-radius: 7px;
  background: var(--cream);
  font-size: 0.78rem;
  color: var(--ink);
}
.home-strip .row span:last-child {
  font-size: 0.65rem;
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.msg-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0.75rem;
}
.msg-list,
.msg-thread {
  border: 1px solid var(--line-on-cream);
  border-radius: 8px;
  background: var(--cream);
  min-height: 210px;
  color: var(--ink);
}
.msg-list .item {
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid var(--line-soft-cream);
  font-size: 0.78rem;
}
.msg-list .item.active {
  background: rgba(193, 95, 61, 0.08);
  box-shadow: inset 3px 0 0 var(--clay);
}
.msg-list .item .who { font-weight: 600; color: var(--ink); }
.msg-list .item .snip {
  color: var(--muted-on-cream);
  font-size: 0.72rem;
  margin-top: 0.15rem;
}
.msg-thread {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.bubble {
  max-width: 88%;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--ink);
}
.bubble.in {
  background: rgba(73, 50, 23, 0.06);
  border: 1px solid var(--line-on-cream);
  align-self: flex-start;
}
.bubble.out {
  background: rgba(193, 95, 61, 0.14);
  border: 1px solid rgba(193, 95, 61, 0.35);
  align-self: flex-end;
}
.bubble .meta {
  font-size: 0.58rem;
  color: var(--muted-on-cream);
  margin-top: 0.3rem;
}
.msg-status {
  margin-top: auto;
  display: flex;
  gap: 0.4rem;
  padding-top: 0.5rem;
}
.chip {
  font-size: 0.6rem;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  border: 1px solid var(--line-on-cream);
  color: var(--muted-on-cream);
}
.chip.done {
  border-color: rgba(79, 122, 92, 0.45);
  color: var(--ok);
  background: rgba(79, 122, 92, 0.08);
}
.chip.not {
  border-color: rgba(193, 95, 61, 0.45);
  color: var(--clay);
}

.aq-table { display: grid; gap: 0.4rem; }
.aq-row {
  display: grid;
  grid-template-columns: 90px 1fr 80px;
  gap: 0.6rem;
  align-items: center;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line-on-cream);
  border-radius: 7px;
  background: var(--cream);
  font-size: 0.8rem;
  color: var(--ink);
}
.aq-row .lane {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-on-cream);
}
.aq-row .lane.human {
  color: #fff;
  background: var(--clay);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  text-align: center;
}
.walk-caption {
  margin-top: 0.9rem;
  color: var(--muted-on-field);
  font-size: 0.88rem;
  max-width: 42rem;
}
.walk-cta {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}

/* —— Sections / cream cards on black field —— */
.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem 1.75rem 3.25rem;
}
.section h2 {
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
  color: var(--on-field);
}
.section .sub {
  color: var(--muted-on-field);
  margin-bottom: 1.35rem;
  max-width: 42rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  display: block;
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 1.15rem 1.1rem 1.2rem;
  min-height: 148px;
  color: var(--ink);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
a.card:hover {
  border-color: rgba(193, 95, 61, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}
.card .kicker {
  font-size: 0.65rem;
  color: var(--muted-on-cream);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  display: block;
}
.card.live {
  border-color: rgba(193, 95, 61, 0.55);
  box-shadow:
    inset 0 0 0 1px rgba(193, 95, 61, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.22);
}
.card.live .kicker { color: var(--clay); }
.card h3 {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  font-weight: 650;
  color: var(--ink);
}
.card p {
  color: var(--muted-on-cream);
  font-size: 0.9rem;
}
.card .go {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.68rem;
  color: var(--ink);
  font-weight: 600;
}
.card .badge-soft {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted-on-cream);
  border: 1px solid var(--line-on-cream);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}
.card .badge-soft.shelf {
  color: #8A7355;
  border-color: rgba(138, 115, 85, 0.4);
}

.note {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border: 1px dashed var(--line-on-field);
  border-radius: 8px;
  font-size: 0.74rem;
  color: var(--muted-on-field);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.panel-box {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 1.25rem;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.panel-box h3 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.panel-box p,
.panel-box li {
  color: var(--muted-on-cream);
  font-size: 0.92rem;
}
.panel-box ul {
  margin: 0.6rem 0 0 1.1rem;
  display: grid;
  gap: 0.35rem;
}
.panel-box a {
  color: var(--clay);
  font-weight: 600;
}
.panel-box a:hover { text-decoration: underline; }

.truth {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
  border: 1px solid var(--line-on-cream);
  color: var(--muted-on-cream);
  margin-bottom: 0.55rem;
}
.truth.live {
  color: var(--clay);
  border-color: rgba(193, 95, 61, 0.5);
  background: rgba(193, 95, 61, 0.08);
}
.truth.shelf {
  color: #8A7355;
  border-color: rgba(138, 115, 85, 0.4);
}

.steps {
  display: grid;
  gap: 0.75rem;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.step .num {
  font-size: 0.75rem;
  color: var(--clay);
  padding-top: 0.15rem;
  font-weight: 700;
}
.step h3 {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.step p {
  color: var(--muted-on-cream);
  font-size: 0.9rem;
}

.arch-ring {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.arch-node {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 1.1rem;
  background: var(--cream);
  text-align: left;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.arch-node h3 {
  font-size: 0.98rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.arch-node p {
  color: var(--muted-on-cream);
  font-size: 0.85rem;
}

.pricing-box {
  max-width: 560px;
  margin: 1.5rem 0 0;
  border: 1px solid rgba(193, 95, 61, 0.4);
  border-radius: 12px;
  padding: 1.75rem;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.pricing-box h2 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.pricing-box p {
  color: var(--muted-on-cream);
  margin-bottom: 1.2rem;
}
.pricing-box .btn-ghost {
  border-color: var(--line-on-cream);
  color: var(--ink);
}
.pricing-box .btn-ghost:hover {
  border-color: var(--clay);
  background: rgba(193, 95, 61, 0.06);
}

.form-soft {
  display: grid;
  gap: 0.75rem;
  max-width: 480px;
  margin-top: 1.25rem;
}
.form-soft label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--muted-on-field);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-soft input,
.form-soft textarea,
.form-soft select {
  background: var(--cream);
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.92rem;
}
.form-soft textarea { min-height: 110px; resize: vertical; }
.form-soft input:focus,
.form-soft textarea:focus,
.form-soft select:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 2px rgba(193, 95, 61, 0.25);
}
.form-soft input::placeholder,
.form-soft textarea::placeholder {
  color: var(--muted-on-cream);
}
.form-note {
  font-size: 0.7rem;
  color: var(--muted-on-field);
  margin-top: 0.5rem;
}

.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 2.75rem 1.75rem 3rem;
}
.page-wrap h1 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  max-width: 18ch;
  color: var(--on-field);
}
.page-wrap .lede {
  margin: 0.9rem 0 1.6rem;
  color: var(--muted-on-field);
  max-width: 42rem;
}
.page-wrap .section h2 { color: var(--on-field); }
.page-wrap .section .sub { color: var(--muted-on-field); }

.foot {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem 1.75rem 2.5rem;
  border-top: 1px solid var(--line-on-field);
  font-size: 0.72rem;
  color: var(--muted-on-field);
  background: var(--field);
}

@media (max-width: 960px) {
  .hero,
  .walk-shell,
  .msg-layout,
  .split,
  .grid,
  .grid-2,
  .grid-4,
  .arch-ring,
  .home-grid,
  .ui-body,
  .ui-cards {
    grid-template-columns: 1fr;
  }
  .ui-rail { display: none; }
  .walk-steps {
    border-right: none;
    border-bottom: 1px solid var(--line-on-field);
    flex-direction: row;
    overflow-x: auto;
  }
  .walk-step { min-width: 140px; }
  .aq-row { grid-template-columns: 1fr; gap: 0.25rem; }
  .nav { flex-wrap: wrap; gap: 0.65rem; }
  .nav .mark { width: 100%; margin-bottom: 0.2rem; }
}

/* —— Enrichment: get-strip, prose, tool blocks, video slot, walk controls —— */
.get-strip {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.75rem 2.5rem;
}
.get-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  border: 1px solid var(--line-on-field);
  border-radius: 12px;
  padding: 1rem;
  background: rgba(243, 233, 221, 0.03);
}
.get-item {
  background: var(--cream);
  color: var(--ink);
  border-radius: 9px;
  padding: 1rem 1.05rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.get-item .kicker {
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
}
.get-item h3 {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.get-item p {
  font-size: 0.82rem;
  color: var(--muted-on-cream);
  line-height: 1.45;
}

.walk-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.walk-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}
.walk-controls .btn-play {
  min-width: 5.5rem;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  border-radius: 999px;
  background: var(--clay);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
.walk-controls .btn-play:hover { filter: brightness(0.92); }
.walk-controls .hint {
  font-size: 0.72rem;
  color: var(--muted-on-field);
}


/* —— System map: day-brain OS —— */
.sysmap {
  margin-top: 0.15rem;
  border: 1px solid rgba(243, 233, 221, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    0 0 0 1px rgba(193, 95, 61, 0.08),
    0 36px 90px rgba(0, 0, 0, 0.55),
    0 8px 24px rgba(0, 0, 0, 0.35);
}
.sysmap-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line-on-field);
  background: linear-gradient(180deg, rgba(243,233,221,0.04), transparent);
}
.sysmap-chrome-left {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.sysmap-mark {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  font-weight: 650;
}
.sysmap-meta {
  font-size: 0.68rem;
  color: var(--muted-on-field);
  letter-spacing: 0.02em;
}
.sysmap-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.sysmap-controls .btn-play {
  appearance: none;
  border: 1px solid rgba(193, 95, 61, 0.55);
  background: var(--clay);
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
}
.sysmap-controls .btn-play:hover { filter: brightness(0.92); }
.sysmap-controls .hint {
  font-size: 0.72rem;
  color: var(--muted-on-field);
}

.sysmap-stage {
  position: relative;
  padding: 1.65rem 1.35rem 1.35rem;
  min-height: 640px;
  background:
    radial-gradient(ellipse 75% 55% at 50% 32%, rgba(193,95,61,0.11), transparent 68%),
    radial-gradient(ellipse 40% 30% at 78% 78%, rgba(193,95,61,0.05), transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 22px,
      rgba(243,233,221,0.03) 22px,
      rgba(243,233,221,0.03) 23px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 22px,
      rgba(243,233,221,0.03) 22px,
      rgba(243,233,221,0.03) 23px
    ),
    #0a0a0a;
}
.sysmap-edges {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.sys-edge {
  stroke: rgba(243, 233, 221, 0.26);
  stroke-width: 0.48;
  stroke-linecap: round;
  transition: stroke 0.35s ease, stroke-width 0.35s ease, opacity 0.35s ease;
}
.sys-edge.shelf {
  stroke: rgba(138, 115, 85, 0.55);
  stroke-dasharray: 1.4 1.15;
  stroke-width: 0.42;
}
.sys-edge.hot {
  stroke: rgba(193, 95, 61, 0.95);
  stroke-width: 0.78;
  filter: drop-shadow(0 0 0.6px rgba(193, 95, 61, 0.8));
}
.sys-edge.shelf.hot {
  stroke: rgba(193, 95, 61, 0.7);
  stroke-width: 0.62;
}
.sys-pulse {
  fill: rgba(193, 95, 61, 0.65);
  opacity: 0.45;
  transition: opacity 0.3s ease, fill 0.3s ease;
}
.sys-pulse.shelf { fill: rgba(138, 115, 85, 0.6); }
.sys-pulse.hot {
  opacity: 1;
  fill: var(--clay);
}

.sysmap-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto auto auto;
  gap: 0.85rem 0.75rem;
  grid-template-areas:
    "birth birth birth .     home home home home .     rooms rooms rooms"
    ".     .     .     .     home home home home .     .     .     ."
    "people people people .  guest guest guest ping ping ping .   ."
    ".     .     .     .     done done done done .     .     .     ."
    "queue queue queue queue queue queue connect connect connect connect quiet quiet";
  align-items: stretch;
}

.sys-node {
  appearance: none;
  text-align: left;
  cursor: pointer;
  font: inherit;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid rgba(73, 50, 23, 0.08);
  border-radius: 12px;
  padding: 0.95rem 1rem 1rem;
  padding-right: 3.1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease,
    opacity 0.3s ease,
    filter 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  min-height: 108px;
  position: relative;
}
.sys-node:hover {
  border-color: rgba(193, 95, 61, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}
.sys-node.dim { opacity: 0.48; filter: saturate(0.8); }
.sys-node.active {
  opacity: 1;
  filter: none;
  border-color: rgba(193, 95, 61, 0.9);
  box-shadow:
    0 0 0 2px rgba(193, 95, 61, 0.55),
    0 0 36px rgba(193, 95, 61, 0.38),
    0 18px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
  animation: softPulse 2.4s ease-in-out infinite;
}
.sys-node.rail-hot:not(.active) {
  opacity: 1;
  filter: none;
  border-color: rgba(193, 95, 61, 0.45);
  box-shadow:
    0 0 0 1px rgba(193, 95, 61, 0.28),
    0 0 20px rgba(193, 95, 61, 0.18),
    0 12px 28px rgba(0, 0, 0, 0.3);
}
.sys-node-core {
  min-height: 168px;
  background: linear-gradient(165deg, #F8F0E6 0%, var(--cream) 55%, #E8D9C8 100%);
  border: 1px solid rgba(193, 95, 61, 0.4);
}
.sys-node-core .sys-name {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.sys-core-k {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--clay);
  font-weight: 700;
  margin-top: 0.1rem;
}
.sys-node-wide { min-height: 118px; }
.sys-cap {
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--muted-on-cream);
  margin-top: 0.15rem;
  max-width: 22ch;
}
.sys-node-core .sys-cap { max-width: 26ch; }
.sys-node-shelf .sys-cap { color: rgba(243, 233, 221, 0.58); max-width: 28ch; }
.sys-node-shelf {
  background: transparent;
  color: var(--cream);
  border: 1px dashed rgba(138, 115, 85, 0.55);
  box-shadow: none;
}
.sys-node-shelf .sys-name { color: var(--cream); }
.sys-node-shelf .sys-idx { color: rgba(243, 233, 221, 0.45); }
.sys-node-shelf.active {
  border-style: dashed;
  border-color: rgba(193, 95, 61, 0.65);
  background: rgba(193, 95, 61, 0.08);
  box-shadow: 0 0 0 1px rgba(193, 95, 61, 0.25), 0 0 20px rgba(193, 95, 61, 0.15);
}
.sys-doors {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.45rem;
  padding: 0;
}
.sys-doors li {
  font-size: 0.58rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.18rem 0.4rem;
  border-radius: 4px;
  border: 1px dashed rgba(138, 115, 85, 0.5);
  color: rgba(243, 233, 221, 0.7);
}
.sys-idx {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: var(--clay);
  font-weight: 700;
}
.sys-name {
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}
.sys-tag {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.12rem 0.35rem;
  border-radius: 3px;
  border: 1px solid var(--line-on-cream);
  color: var(--muted-on-cream);
}
.sys-tag.live {
  color: var(--clay);
  border-color: rgba(193, 95, 61, 0.5);
  background: rgba(193, 95, 61, 0.08);
}
.sys-tag.shelf {
  color: #B89A72;
  border-color: rgba(138, 115, 85, 0.55);
  background: transparent;
}
.sys-node-shelf .sys-tag.shelf {
  color: #B89A72;
  border-color: rgba(138, 115, 85, 0.55);
}

.sys-quiet {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.35rem;
  padding: 0.75rem 0.7rem;
  border: 1px solid rgba(243, 233, 221, 0.1);
  border-radius: 10px;
  background: rgba(243, 233, 221, 0.03);
}
.sys-quiet-k {
  width: 100%;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: rgba(243, 233, 221, 0.4);
  margin-bottom: 0.15rem;
}
.sys-quiet-chip {
  font-size: 0.68rem;
  color: rgba(243, 233, 221, 0.62);
  border: 1px solid rgba(243, 233, 221, 0.12);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  background: rgba(243, 233, 221, 0.04);
}

.sysmap-readout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 1.1rem;
  row-gap: 0.25rem;
  padding: 1.15rem 1.4rem 1.25rem;
  border-top: 1px solid rgba(243, 233, 221, 0.16);
  background: linear-gradient(180deg, #141414, #111111);
  min-height: 5.25rem;
}
.sysmap-readout .sys-kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--clay);
  font-weight: 700;
  padding-right: 1rem;
  border-right: 1px solid var(--line-on-field);
  min-width: 6rem;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.sys-read-main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.sysmap-readout strong {
  font-size: 1.18rem;
  letter-spacing: -0.025em;
  color: var(--cream);
  font-weight: 650;
}
.sysmap-readout p {
  font-size: 0.95rem;
  color: var(--muted-on-field);
  margin: 0;
  max-width: 46rem;
  line-height: 1.4;
}
.sys-read-hint {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243, 233, 221, 0.42);
  white-space: nowrap;
  justify-self: end;
}

@media (max-width: 960px) {
  .sysmap-stage { min-height: 0; padding: 1rem 0.85rem; }
  .sysmap-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-template-areas:
      "birth home"
      "rooms people"
      "guest ping"
      "done done"
      "queue queue"
      "connect quiet";
  }
  .sysmap-edges { display: none; }
  .sys-node-core { min-height: 96px; }
  .sysmap-readout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .sysmap-readout .sys-kicker {
    border-right: none;
    border-bottom: 1px solid var(--line-on-field);
    padding: 0 0 0.5rem;
    margin-bottom: 0.15rem;
    min-width: 0;
    display: block;
  }
  .sys-read-hint {
    justify-self: start;
    white-space: normal;
  }
}

.prose-block {
  margin: 1.25rem 0 1.75rem;
  max-width: 46rem;
}
.prose-block p {
  color: var(--muted-on-field);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.prose-block p:last-child { margin-bottom: 0; }
.prose-block strong { color: var(--cream); font-weight: 600; }

.tool-block {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.5rem;
}
.tool-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  background: var(--cream);
  border-radius: 10px;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  border: 1px solid transparent;
}
.tool-row.live {
  border-color: rgba(193, 95, 61, 0.45);
  box-shadow:
    inset 0 0 0 1px rgba(193, 95, 61, 0.25),
    0 12px 32px rgba(0, 0, 0, 0.22);
}
.tool-row.shelf {
  border-color: rgba(138, 115, 85, 0.35);
}
.tool-meta .name {
  font-size: 1.08rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0.35rem 0 0.45rem;
}
.tool-row p {
  color: var(--muted-on-cream);
  font-size: 0.92rem;
  line-height: 1.55;
}
.tool-row .go {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ink);
}
.tool-row a.go:hover { color: var(--clay); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
}
.who-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.15rem 1.1rem;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.who-card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}
.who-card p {
  font-size: 0.88rem;
  color: var(--muted-on-cream);
  line-height: 1.5;
}

.demo-cover {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
}
.cover-item {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.15rem 1.1rem;
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}
.cover-item .kicker {
  font-size: 0.6rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
}
.cover-item h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.cover-item p {
  font-size: 0.88rem;
  color: var(--muted-on-cream);
  line-height: 1.5;
}

.pricing-box { max-width: 640px; }
.pricing-box ul {
  margin: 0 0 1.15rem 1.1rem;
  display: grid;
  gap: 0.4rem;
}
.pricing-box li {
  color: var(--muted-on-cream);
  font-size: 0.92rem;
  line-height: 1.45;
}

.step .shelf-note {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: #8A7355;
  border-left: 2px solid rgba(138, 115, 85, 0.45);
  padding-left: 0.65rem;
  line-height: 1.45;
}
.step .detail {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  color: var(--muted-on-cream);
  line-height: 1.5;
}

.arch-node p { line-height: 1.5; }
.isolation-copy {
  color: var(--muted-on-cream);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0.45rem 0 0.75rem;
}

@media (max-width: 960px) {
  .get-strip-inner,
  .who-grid,
  .demo-cover,
  .tool-row {
    grid-template-columns: 1fr;
  }
}


.benefit-banner {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(193, 95, 61, 0.14);
  border: 1px solid rgba(193, 95, 61, 0.45);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.walk-caption strong { color: var(--cream); font-weight: 650; }
.walk-steps { width: 100%; }
.walk-shell { grid-template-columns: 200px 1fr; }
@media (max-width: 960px) {
  .walk-shell { grid-template-columns: 1fr; }
}

/* —— v3.0 short step rail into system map (not four big cards) —— */
h1 { max-width: 16ch; }
.step-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.35rem;
  margin: 0 0 1.15rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(243, 233, 221, 0.12);
  border-radius: 999px;
  background: rgba(243, 233, 221, 0.03);
  max-width: 100%;
}
.step-chip {
  appearance: none;
  font: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted-on-field);
  font-size: 0.78rem;
  font-weight: 550;
  letter-spacing: -0.01em;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.step-chip:hover {
  color: var(--cream);
  background: rgba(243, 233, 221, 0.06);
}
.step-chip.active,
.step-chip[aria-pressed="true"] {
  color: var(--ink);
  background: var(--cream);
  border-color: rgba(193, 95, 61, 0.45);
  font-weight: 650;
}
.step-rail-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(193, 95, 61, 0.55);
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .step-rail {
    border-radius: 14px;
    padding: 0.5rem;
  }
  .step-chip {
    white-space: normal;
    text-align: left;
    line-height: 1.25;
  }
  .step-rail-sep { display: none; }
}
.walk-head h2 {
  font-size: 1.7rem;
  letter-spacing: -0.035em;
  max-width: 22ch;
}

/* —— v3.1 cinematic story player embed —— */
.story-walk .walk-head { margin-bottom: 1.25rem; }
.story-embed {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line-on-field);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.story-embed iframe {
  width: 100%;
  display: block;
  border: 0;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
  max-height: none;
  background: #0c0c0c;
}
.story-secondary {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: var(--muted-on-field);
}
.story-secondary a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 720px) {
  .story-embed iframe {
    min-height: 0;
    height: auto;
    max-height: none;
  }
}

/* Landing: hero on top, film under with first-screen peek */
.hero.hero-above-film{
  grid-template-columns: 1fr;
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1.25rem;
}
.hero.hero-above-film .lede{
  max-width: 38rem;
}
.story-peek{
  padding: 0 1.25rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.story-peek .story-embed{
  border-radius: 14px;
  overflow: visible;
  background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,.16);
  /* Full frame — never crop scenes (guest wheel, phones, etc.) */
  max-height: none;
}
.story-peek .story-embed iframe{
  width: 100%;
  border: 0;
  display: block;
  background: #111;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 560px;
}
@media (max-width: 720px){
  .nav{ padding: 1rem 1.1rem; gap: 0.85rem; flex-wrap: wrap; }
  .nav .mark{ font-size: 1.2rem; width: 100%; margin-bottom: 0.15rem; }
  .story-peek .story-embed{ max-height: none; }
  .story-peek .story-embed iframe{ min-height: 420px; }
}
