:root {
  color-scheme: dark;
  --bg: #070708;
  --panel: #111214;
  --panel-2: #17191d;
  --line: rgba(255,255,255,0.12);
  --text: #f4efe6;
  --muted: #b9b19f;
  --mustard: #f2b525;
  --mustard-deep: #bb8510;
  --red: #ff5c5c;
  --blue: #88a4ff;
  --green: #63d4a7;
  --shadow: 0 20px 50px rgba(0,0,0,0.4);
  --max: 1100px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242,181,37,0.16), transparent 22%),
    radial-gradient(circle at bottom right, rgba(136,164,255,0.12), transparent 24%),
    linear-gradient(180deg, #0a0b0d 0%, #070708 100%);
}
a { color: inherit; text-decoration: none; }
.shell { width: min(calc(100% - 28px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(7,7,8,0.84);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar {
  min-height: 74px; display: grid; grid-template-columns: auto auto 1fr; gap: 16px; align-items: center;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand strong { display: block; font-size: 1rem; }
.brand small { display: block; color: var(--muted); font-size: 0.8rem; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--mustard), #ffd76d);
  color: #221500; font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 10px 24px rgba(242,181,37,0.28);
}
.menu-toggle {
  display: none; min-height: 44px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.04); color: var(--text); font: inherit;
}
.site-nav { display: flex; justify-content: flex-end; align-items: center; gap: 12px; flex-wrap: wrap; }
.site-nav a:not(.pill) { color: var(--muted); }
.site-nav a.active, .site-nav a:hover { color: var(--text); }
.pill {
  min-height: 46px; padding: 0 18px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; font-weight: 700;
}
.pill.cta { background: var(--mustard); color: #241800; }
.pill.ghost { border-color: var(--line); background: rgba(255,255,255,0.03); color: var(--text); }
.hero, .inner-page { padding: 28px 0 64px; }
.hero-main { margin-top: 6px; }
.hero-block h1 { font-size: clamp(2.4rem, 8vw, 5.2rem); line-height: 0.95; letter-spacing: -0.05em; margin: 10px 0 16px; max-width: 11ch; }
.hero-block h2, .section-head h2, .note-card h2, .raw-card h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.05; margin: 0 0 12px; }
.eyebrow, .card-tag, .door-label {
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--muted); font-size: 0.76rem; margin: 0 0 10px;
}
.lead { font-size: 1.1rem; line-height: 1.7; color: #f2ecdf; max-width: 68ch; }
.tape-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.tape {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 12px; border-radius: 8px; font-size: 0.78rem;
  font-weight: 900; letter-spacing: 0.08em; color: #111;
}
.tape.yellow { background: #f2b525; }
.tape.blue { background: #9bb2ff; }
.tape.red { background: #ff8b8b; }
.tape-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 26px;
}
.tape-card::before {
  content: '';
  position: absolute; top: -10px; left: 20px;
  width: 76px; height: 22px;
  border-radius: 6px;
  background: rgba(242,181,37,0.22);
  border: 1px solid rgba(242,181,37,0.22);
  transform: rotate(-4deg);
}
.section-block { margin-top: 30px; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.two.uneven { grid-template-columns: 1.1fr 0.9fr; }
.note-card p, .raw-card p, .split-copy p { color: var(--muted); line-height: 1.7; }
.action-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.door-card {
  display: block; padding: 24px; border-radius: 24px; border: 1px solid var(--line);
  background: rgba(255,255,255,0.035); min-height: 220px;
}
.door-card strong { display: block; font-size: 2rem; margin-bottom: 10px; }
.door-card p { color: var(--muted); line-height: 1.6; }
.live-door { box-shadow: inset 0 0 0 1px rgba(99,212,167,0.2); }
.clip-door { box-shadow: inset 0 0 0 1px rgba(255,92,92,0.2); }
.crew-door { box-shadow: inset 0 0 0 1px rgba(136,164,255,0.2); }
.quote-wall { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.quote-wall.dense { align-items: start; }
.quote-chip {
  padding: 12px 14px; border-radius: 999px; background: rgba(255,255,255,0.05); border: 1px solid var(--line);
  color: #f0eadc; font-weight: 600;
}
.split-banner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start;
}
.plain-list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.8; }
.plain-list li + li { margin-top: 6px; }
.contact-grid { align-items: start; }
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; }
.contact-form span { color: var(--muted); font-size: 0.92rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; min-height: 48px; border-radius: 14px; border: 1px solid var(--line);
  background: rgba(0,0,0,0.24); color: var(--text); padding: 12px 14px; font: inherit;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-point { padding: 12px 0; color: var(--muted); border-bottom: 1px solid rgba(255,255,255,0.08); }
.form-note { color: var(--muted); margin: 0; }
.site-footer { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 44px; }
.footer-row {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-row p { margin: 0; color: var(--muted); }
.footer-row div { display: flex; gap: 14px; flex-wrap: wrap; }
.top-gap { margin-top: 16px; }
@media (max-width: 860px) {
  .topbar { grid-template-columns: auto auto; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; justify-self: end; }
  .site-nav {
    grid-column: 1 / -1; display: none; flex-direction: column; align-items: stretch;
    padding: 10px 0 16px;
  }
  .site-nav.open { display: flex; }
  .grid.two, .grid.three, .grid.two.uneven, .split-banner { grid-template-columns: 1fr; }
  .hero-block h1 { max-width: none; }
}

.lead.slim { max-width: 52ch; font-size: 1rem; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.video-embed-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  box-shadow: var(--shadow);
}
.video-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}
.video-frame {
  width: 100%;
  height: 100%;
  border: 0;
}
.video-copy {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
}
.video-copy strong {
  font-size: 1rem;
  line-height: 1.35;
}
.video-copy span {
  color: var(--muted);
  font-size: 0.9rem;
}
.video-fallback {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
}
@media (max-width: 860px) {
  .video-grid { grid-template-columns: 1fr; }
}

.video-fallback { padding: 18px; border: 1px solid var(--line); border-radius: 18px; color: var(--muted); background: rgba(255,255,255,0.03); }
