/* ════════════════════════════════════════════════════════════════════
   LOBBY — the not-logged-in home page
   Uses the dossier system tokens (defined in :root in index.html);
   leans harder into Fraunces display. Loaded after dossier.css so
   wherever we restyle a shared element, our rules win.
   ══════════════════════════════════════════════════════════════════ */

/* Override the legacy `#auth-screen { display: flex; min-height; centred }`
   so the lobby can scroll as a long magazine layout. The grain + vignette
   already applied by dossier.css#auth-screen::before / ::after carry over. */
#auth-screen.lobby {
  display: block;
  align-items: initial;
  justify-content: initial;
  gap: initial;
  min-height: 100vh;
  padding: 0;
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--parchment);
  font-feature-settings: "ss01", "kern", "liga";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "opsz" 14, "wght" 380;
  position: relative;
  z-index: 0;
}

/* Win against `#auth-screen h1 { font-size: clamp(...); ... }` set in
   dossier.css. Each element in the lobby declares its own type. */
#auth-screen.lobby h1,
#auth-screen.lobby h2,
#auth-screen.lobby h3 { color: var(--parchment); font-weight: normal; }
#auth-screen.lobby h1::before { content: none; } /* dossier.css added a ⌘ glyph */
#auth-screen.lobby p { font: inherit; color: inherit; }

::selection { background: rgba(201,154,82,0.35); color: var(--parchment); }

/* Reusable lobby kicker — same shape as dossier kickers but locally scoped */
.lobby .lobby-kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass);
  display: inline-flex; align-items: center; gap: 10px;
  margin: 0 0 18px 0;
}
.lobby .lobby-kicker::before {
  content: ""; width: 22px; height: 1px;
  background: var(--brass); display: inline-block;
}

/* ── 1. Top rail ─────────────────────────────────────────────── */

.lobby .lobby-rail {
  position: sticky; top: 0; z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 14px 36px;
  background: rgba(14,13,11,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.lobby .lr-brand {
  display: inline-flex; align-items: baseline; gap: 10px;
  text-decoration: none; color: var(--parchment-2);
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase;
}
.lobby .lr-glyph {
  font-family: "Fraunces", serif;
  font-weight: 600; font-size: 19px;
  color: var(--brass); text-transform: none;
  font-variation-settings: "opsz" 144, "WONK" 1, "SOFT" 30;
  line-height: 1;
}
.lobby .lr-nav {
  display: inline-flex; gap: 24px;
  justify-self: center;
}
.lobby .lr-nav a {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}
.lobby .lr-nav a:hover {
  color: var(--parchment); border-bottom-color: var(--brass-soft);
}

.lobby .lobby-signin {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--parchment); background: transparent;
  border: 1px solid var(--brass-soft);
  border-radius: 4px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 120ms var(--ease-soft);
  display: inline-flex; align-items: center; gap: 10px;
}
.lobby .lobby-signin:hover {
  background: rgba(201,154,82,0.07);
  border-color: var(--brass);
  color: var(--brass-2);
}
.lobby .lobby-signin:active { transform: translateY(1px); }
.lobby .lobby-signin svg { width: 16px; height: 16px; color: var(--brass); }

.lobby .lobby-signin.primary {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
  padding: 14px 22px;
  font-size: 11.5px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.12) inset,
              0 12px 28px -10px rgba(201,154,82,0.45);
}
.lobby .lobby-signin.primary:hover {
  background: var(--brass-2);
  border-color: var(--brass-2);
  color: var(--ink);
}
.lobby .lobby-signin.primary svg { color: var(--ink); }

.lobby .lobby-signin-mini { padding: 8px 14px; font-size: 10.5px; }
.lobby .lr-arrow { transition: transform 220ms var(--ease-soft); }
.lobby .lobby-signin:hover .lr-arrow { transform: translateX(3px); }

/* Anchor-as-button — kill default link decoration */
.lobby a.lobby-signin { text-decoration: none; }

/* Secondary — outlined, less prominent than .primary; sits next to it */
.lobby .lobby-signin-secondary {
  background: transparent;
  border-color: var(--rule);
  color: var(--parchment-2);
  padding: 12px 18px;
  font-size: 10.5px;
}
.lobby .lobby-signin-secondary:hover {
  background: rgba(201,154,82,0.04);
  border-color: var(--brass-soft);
  color: var(--parchment);
}
.lobby .lobby-signin-secondary svg { color: var(--muted); }
.lobby .lobby-signin-secondary:hover svg { color: var(--brass); }

/* Inline text-button — for "sign in" inside the access note paragraph */
.lobby .lobby-inline-signin {
  background: transparent; border: 0; padding: 0;
  color: var(--brass-2);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  border-bottom: 1px solid var(--brass-soft);
  transition: color 200ms ease, border-color 200ms ease;
}
.lobby .lobby-inline-signin:hover {
  color: var(--brass);
  border-bottom-color: var(--brass);
}

@media (max-width: 720px) {
  .lobby .lobby-rail { grid-template-columns: auto auto; padding: 12px 18px; }
  .lobby .lr-nav { display: none; }
}

/* ── 2. Hero ─────────────────────────────────────────────────── */

.lobby .lobby-hero {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 36px 80px;
  text-align: left;
}

.lobby .lobby-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "wght" 320, "SOFT" 60, "WONK" 0;
  font-size: clamp(3.4rem, 9vw, 7rem);
  /* Generous line-height so italic descenders sit comfortably inside
     the line box (so margin-bottom actually behaves as visual gap). */
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 40px 0;
  color: var(--parchment);
  font-weight: normal;
}
.lobby .lobby-title .lt-line { display: block; }
.lobby .lobby-title em {
  font-style: italic;
  color: var(--brass-2);
  font-variation-settings: "opsz" 144, "wght" 280, "SOFT" 100, "WONK" 1;
}

.lobby .lobby-lede {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.45;
  max-width: 32em;
  color: var(--parchment);
  margin: 0 0 16px 0;
  font-variation-settings: "opsz" 24, "wght" 380;
}
.lobby .lobby-dek {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 36em;
  color: var(--parchment-2);
  margin: 0 0 36px 0;
  font-style: italic;
  font-variation-settings: "opsz" 14, "wght" 360, "SOFT" 100;
}

/* Inline brand link in the lede — same editorial pattern as the FAQ */
.lobby .lobby-lede a {
  color: var(--brass-2);
  text-decoration: underline;
  text-decoration-color: var(--brass-soft);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: color 200ms ease, text-decoration-color 200ms ease;
}
.lobby .lobby-lede a:hover {
  color: var(--brass);
  text-decoration-color: var(--brass);
}

.lobby .lobby-hero-actions {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.lobby .lobby-access-note {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Decorative frame on the hero — a faint editorial rule + brass tick */
.lobby .lobby-hero-frame {
  position: absolute;
  left: 36px; right: 36px; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rule-soft) 20%, var(--rule-soft) 80%, transparent);
}

/* ── 3. Team portrait ────────────────────────────────────────── */

.lobby .lobby-team {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 36px 100px;
}

.lobby .lt-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.lobby .lt-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 30;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0 0 18px 0;
  font-weight: normal;
}
.lobby .lt-sub {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--parchment-2);
  margin: 0;
  max-width: 36em;
}

/* Group portrait — two horizontal rows, slightly overlapping */
.lobby .lt-portrait {
  position: relative;
  margin: 0 auto 36px;
  padding: 60px 0 100px;

  /* Stage backdrop — a faint horizon line + soft glow */
  background:
    linear-gradient(180deg, transparent 0%, transparent 40%, rgba(201,154,82,0.045) 50%, transparent 60%, transparent 100%),
    radial-gradient(ellipse 70% 30% at 50% 65%, rgba(0,0,0,0.45), transparent 70%);
}

.lobby .lt-row {
  display: flex;
  justify-content: center;
  gap: 0;
}

.lobby .lt-row-back {
  position: relative;
  z-index: 1;
}
.lobby .lt-row-front {
  position: relative;
  z-index: 2;
  margin-top: -38px;
  /* Slight horizontal offset so front row sits between back row members */
  padding-left: 28px;
}

.lobby .lt-member {
  position: relative;
  margin: 0 -10px;
  text-align: center;
  flex-shrink: 0;
  transition: transform 320ms var(--ease-soft), z-index 0ms;
  cursor: default;
}

.lobby .lt-member img {
  display: block;
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--brass-soft);
  background: var(--surface);
  box-shadow:
    0 0 0 4px var(--ink),
    0 12px 28px -10px rgba(0,0,0,0.65);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

/* Subtle row-based size variance — back row a touch smaller for depth */
.lobby .lt-row-back .lt-member img { width: 84px; height: 84px; opacity: 0.92; }
.lobby .lt-row-back .lt-member { transform: translateY(8px); }

/* Front-centre portrait (CoS) — slightly bigger, brass-ringed */
.lobby .lt-cos img {
  width: 112px; height: 112px;
  border-color: var(--brass);
  box-shadow:
    0 0 0 4px var(--ink),
    0 0 0 6px rgba(201,154,82,0.18),
    0 16px 36px -12px rgba(0,0,0,0.7);
}
.lobby .lt-cos figcaption { color: var(--brass-2); }

.lobby .lt-member figcaption {
  position: absolute;
  bottom: -28px; left: 50%;
  transform: translate(-50%, 4px);
  white-space: nowrap;
  font-family: "JetBrains Mono", monospace;
  font-size: 9.5px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 220ms ease, transform 220ms var(--ease-soft);
  pointer-events: none;
}

.lobby .lt-member:hover {
  z-index: 5;
  transform: translateY(-6px);
}
.lobby .lt-row-back .lt-member:hover { transform: translateY(2px); }
.lobby .lt-member:hover img {
  border-color: var(--brass);
  box-shadow:
    0 0 0 4px var(--ink),
    0 0 0 6px rgba(201,154,82,0.22),
    0 18px 36px -12px rgba(0,0,0,0.75);
}
.lobby .lt-member:hover figcaption {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Static caption visible on the CoS portrait — anchor for the eye */
.lobby .lt-cos figcaption {
  opacity: 1;
  transform: translate(-50%, 0);
  font-weight: 500;
}

.lobby .lt-credit {
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  text-align: center;
  max-width: 42em;
  margin: 0 auto;
  font-variation-settings: "opsz" 14, "wght" 360, "SOFT" 100;
}

@media (max-width: 720px) {
  .lobby .lt-portrait { padding: 24px 0 80px; }
  .lobby .lt-row-back .lt-member img { width: 60px; height: 60px; }
  .lobby .lt-member img { width: 70px; height: 70px; }
  .lobby .lt-cos img { width: 84px; height: 84px; }
  .lobby .lt-row-front { margin-top: -22px; padding-left: 18px; }
  .lobby .lt-member { margin: 0 -6px; }
  .lobby .lt-member figcaption { display: none; }
  .lobby .lt-cos figcaption { display: block; bottom: -24px; }
}

/* ── 3.5. Carousel — recently from the dossier ───────────────── */

.lobby .lobby-carousel-section {
  padding: 80px 0 100px;
  position: relative;
}

.lobby .cw-head {
  max-width: 1180px;
  margin: 0 auto 56px;
  padding: 0 36px;
}
.lobby .cw-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 30;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0 0 14px 0;
  font-weight: normal;
  max-width: 22ch;
  color: var(--parchment);
}
.lobby .cw-title em {
  font-style: italic;
  color: var(--brass-2);
  font-variation-settings: "opsz" 144, "wght" 320, "SOFT" 100, "WONK" 1;
}
.lobby .cw-sub {
  font-family: "Source Serif 4", Georgia, serif;
  color: var(--parchment-2);
  font-size: 1.05rem;
  max-width: 44em;
  line-height: 1.55;
  margin: 0;
}

.lobby .cw-carousel {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.lobby .cw-controls {
  position: absolute;
  top: -68px; right: 36px;
  display: flex; gap: 8px;
}
.lobby .cw-btn {
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 120ms var(--ease-soft);
}
.lobby .cw-btn:hover {
  color: var(--brass-2);
  border-color: var(--brass-soft);
  background: rgba(201,154,82,0.05);
}
.lobby .cw-btn:active { transform: translateY(1px); }
.lobby .cw-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.lobby .cw-btn svg { width: 18px; height: 18px; }

.lobby .cw-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 380px;
  gap: 18px;
  padding: 4px 36px 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 36px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lobby .cw-track::-webkit-scrollbar { display: none; }

@media (max-width: 720px) {
  .lobby .cw-track { grid-auto-columns: 86vw; padding: 4px 24px 28px; scroll-padding-left: 24px; }
  .lobby .cw-controls { display: none; }
}

.lobby .cw-card {
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 22px 24px 24px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 14px;
  position: relative;
  transition: background 260ms var(--ease-soft), border-color 220ms ease;
  --indicator: transparent;
  overflow: hidden;
}
.lobby .cw-card::before {
  content: ""; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--indicator);
  transform: scaleY(0.18);
  transform-origin: top center;
  transition: transform 320ms var(--ease-soft), background 220ms var(--ease-soft);
}
.lobby .cw-card:hover {
  background: linear-gradient(180deg, var(--surface-2), var(--surface) 60%);
  border-color: var(--brass-soft);
  --indicator: var(--brass);
}
.lobby .cw-card:hover::before { transform: scaleY(1); }

.lobby .cw-card[data-tone="affirm"]    { --tone: #88A36A; }
.lobby .cw-card[data-tone="security"]  { --tone: var(--brass); }
.lobby .cw-card[data-tone="strategic"] { --tone: var(--slate-2); }
.lobby .cw-card[data-tone="research"]  { --tone: var(--brass-2); }
.lobby .cw-card[data-tone="personal"]  { --tone: #C8B68A; }
.lobby .cw-card[data-tone="archive"]   { --tone: #B0A28A; }
.lobby .cw-card .cw-tone-mark {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tone, var(--brass));
  opacity: 0.55;
}

.lobby .cw-byline {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule-soft);
}
.lobby .cw-byline img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--brass-soft);
  background: var(--ink-2);
  box-shadow: 0 0 0 2px var(--surface);
  flex-shrink: 0;
}
.lobby .cw-byline .cw-meta { min-width: 0; }
.lobby .cw-byline .cw-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--parchment);
  display: block;
}

.lobby .cw-headline {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 60, "wght" 480, "SOFT" 30;
  font-size: 1.28rem;
  line-height: 1.22;
  letter-spacing: -0.005em;
  color: var(--parchment);
  font-weight: normal;
  margin: 0;
}

.lobby .cw-body {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--parchment-2);
  margin: 0;
  align-self: start;
  font-feature-settings: "ss01", "kern", "tnum";
}
.lobby .cw-body code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.86em;
  color: var(--brass-2);
  background: var(--ink-2);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  padding: 1px 5px;
}

/* ── 4. Pitch — three primitives ─────────────────────────────── */

.lobby .lobby-pitch {
  max-width: 1080px;
  margin: 0 auto;
  padding: 80px 36px;
}

.lobby .lp-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 30;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0 0 56px 0;
  font-weight: normal;
  max-width: 16ch;
}

.lobby .lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-soft);
  border-left: 1px solid var(--rule-soft);
}
.lobby .lp-card {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  transition: background 220ms var(--ease-soft);
}
.lobby .lp-card:hover {
  background: linear-gradient(180deg, rgba(201,154,82,0.04), transparent 80%);
}
.lobby .lp-num {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "wght" 280, "SOFT" 0;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--faint);
  letter-spacing: -0.02em;
  font-feature-settings: "tnum";
  display: block;
  margin: 0 0 18px 0;
  transition: color 220ms var(--ease-soft);
}
.lobby .lp-card:hover .lp-num { color: var(--brass); }
.lobby .lp-card h3 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 60, "wght" 480, "SOFT" 30;
  font-size: 1.5rem;
  letter-spacing: -0.005em;
  margin: 0 0 12px 0;
  color: var(--parchment);
  font-weight: normal;
}
.lobby .lp-card p {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--parchment-2);
  margin: 0;
}

@media (max-width: 720px) {
  .lobby .lp-grid { grid-template-columns: 1fr; }
}

/* ── 5. Numbers strip ────────────────────────────────────────── */

.lobby .lobby-numbers {
  max-width: 1080px;
  margin: 0 auto;
  padding: 60px 36px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-soft);
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
}
.lobby .ln-block {
  padding: 32px 24px;
  text-align: left;
  position: relative;
}
.lobby .ln-block + .ln-block::before {
  content: "";
  position: absolute;
  left: 0; top: 24px; bottom: 24px;
  width: 1px;
  background: var(--rule-soft);
}
.lobby .ln-n {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "wght" 320, "SOFT" 0;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--brass);
  letter-spacing: -0.025em;
  font-feature-settings: "tnum";
  display: block;
  margin: 0 0 10px 0;
}
.lobby .ln-inf { font-variation-settings: "opsz" 144, "wght" 320, "SOFT" 100, "WONK" 1; }
.lobby .ln-l {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
}

@media (max-width: 720px) {
  .lobby .lobby-numbers { grid-template-columns: repeat(2, 1fr); padding: 40px 18px 60px; }
  .lobby .ln-block:nth-child(odd)::before { display: none; }
}

/* ── 6. How (the loop) ───────────────────────────────────────── */

.lobby .lobby-how {
  max-width: 880px;
  margin: 0 auto;
  padding: 90px 36px 80px;
}
.lobby .lh-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 30;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0 0 48px 0;
  font-weight: normal;
}
.lobby .lh-list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--rule-soft);
}
.lobby .lh-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 28px 12px 28px 0;
  border-bottom: 1px solid var(--rule-soft);
  position: relative;
  transition: background 220ms var(--ease-soft);
}
.lobby .lh-list li:hover {
  background: linear-gradient(90deg, rgba(201,154,82,0.04), transparent 70%);
}
.lobby .lh-num {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "wght" 280, "SOFT" 0;
  font-size: 3.6rem;
  line-height: 0.9;
  color: var(--faint);
  letter-spacing: -0.025em;
  font-feature-settings: "tnum";
  padding-top: 6px;
  transition: color 220ms var(--ease-soft);
}
.lobby .lh-list li:hover .lh-num { color: var(--brass); }
.lobby .lh-body h3 {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 60, "wght" 480, "SOFT" 30;
  font-size: 1.4rem;
  margin: 0 0 8px 0;
  letter-spacing: -0.005em;
  color: var(--parchment);
  font-weight: normal;
}
.lobby .lh-body p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--parchment-2);
  margin: 0;
  max-width: 38em;
}

@media (max-width: 720px) {
  .lobby .lh-list li { grid-template-columns: 60px 1fr; gap: 18px; }
  .lobby .lh-num { font-size: 2.6rem; }
}

/* ── 7. FAQ ──────────────────────────────────────────────────── */

.lobby .lobby-faq {
  max-width: 880px;
  margin: 0 auto;
  padding: 90px 36px 80px;
}
.lobby .lf-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "wght" 360, "SOFT" 30;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  margin: 0 0 48px 0;
  font-weight: normal;
  max-width: 14ch;
}
.lobby .lf-list { display: block; margin: 0; padding: 0; }
.lobby .lf-item {
  border-top: 1px solid var(--rule-soft);
  padding: 24px 0;
}
.lobby .lf-item:last-child { border-bottom: 1px solid var(--rule-soft); }
.lobby .lf-item dt {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 60, "wght" 460, "SOFT" 30;
  font-size: 1.25rem;
  margin: 0 0 6px 0;
  color: var(--brass-2);
  letter-spacing: -0.005em;
}
.lobby .lf-item dd {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--parchment-2);
  margin: 0; padding: 0;
  max-width: 40em;
}
.lobby .lf-item dd a {
  color: var(--brass-2);
  text-decoration: underline;
  text-decoration-color: var(--brass-soft);
  text-underline-offset: 3px;
}
.lobby .lf-item dd a:hover { color: var(--brass); }
.lobby .lf-item dd code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.88em;
  color: var(--brass-2);
  background: var(--ink-2);
  border: 1px solid var(--rule-soft);
  border-radius: 3px;
  padding: 1px 5px;
}

/* ── 8. CTA ──────────────────────────────────────────────────── */

.lobby .lobby-cta {
  max-width: 720px;
  margin: 0 auto;
  padding: 100px 36px 100px;
  text-align: center;
}
.lobby .lc-title {
  font-family: "Fraunces", Georgia, serif;
  font-variation-settings: "opsz" 144, "wght" 320, "SOFT" 60, "WONK" 0;
  font-size: clamp(2.4rem, 5.4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 12px 0;
  font-weight: normal;
}
.lobby .lc-sub {
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 36px 0;
  font-variation-settings: "opsz" 14, "wght" 360, "SOFT" 100;
}
.lobby .lobby-cta .lobby-signin.primary {
  margin-bottom: 14px;
  padding: 16px 28px;
  font-size: 12px;
}
.lobby .lobby-cta .lobby-access-note { display: block; }

/* ── 9. Footer ───────────────────────────────────────────────── */

.lobby .lobby-foot {
  border-top: 1px solid var(--rule-soft);
  padding: 32px 36px 56px;
  background: var(--ink-2);
}
.lobby .lf-foot-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.lobby .lf-foot-line,
.lobby .lf-foot-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
}
.lobby .lf-foot-sub { color: var(--faint); }
.lobby .lf-foot-line a,
.lobby .lf-foot-sub a {
  color: var(--brass-2);
  text-decoration: none;
  border-bottom: 1px solid var(--brass-soft);
}
.lobby .lf-foot-line a:hover,
.lobby .lf-foot-sub a:hover { color: var(--brass); }
.lobby .lf-foot-sub code {
  font-family: "JetBrains Mono", monospace;
  font-size: 1em;
  color: var(--parchment-2);
  background: transparent;
  border: 0;
  padding: 0;
}

/* ── Entrance choreography ───────────────────────────────────── */

@keyframes lobby-rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lobby-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lobby .lobby-rail   { animation: lobby-fade 0.5s var(--ease-out) 0.0s both; }
.lobby .lobby-hero > .lobby-kicker { animation: lobby-rise 0.7s var(--ease-out) 0.05s both; }
.lobby .lobby-title  { animation: lobby-rise 0.8s var(--ease-out) 0.10s both; }
.lobby .lobby-lede   { animation: lobby-rise 0.7s var(--ease-out) 0.18s both; }
.lobby .lobby-dek    { animation: lobby-rise 0.7s var(--ease-out) 0.24s both; }
.lobby .lobby-hero-actions { animation: lobby-rise 0.7s var(--ease-out) 0.30s both; }

/* Stagger the team portraits onto the stage */
.lobby .lt-row-back .lt-member {
  opacity: 0;
  animation: lobby-rise 0.6s var(--ease-out) both;
}
.lobby .lt-row-front .lt-member {
  opacity: 0;
  animation: lobby-rise 0.6s var(--ease-out) both;
}
.lobby .lt-row-back  .lt-member:nth-child(1) { animation-delay: 0.40s; }
.lobby .lt-row-back  .lt-member:nth-child(2) { animation-delay: 0.46s; }
.lobby .lt-row-back  .lt-member:nth-child(3) { animation-delay: 0.52s; }
.lobby .lt-row-back  .lt-member:nth-child(4) { animation-delay: 0.58s; }
.lobby .lt-row-back  .lt-member:nth-child(5) { animation-delay: 0.64s; }
.lobby .lt-row-back  .lt-member:nth-child(6) { animation-delay: 0.70s; }
.lobby .lt-row-back  .lt-member:nth-child(7) { animation-delay: 0.76s; }
.lobby .lt-row-front .lt-member:nth-child(1) { animation-delay: 0.50s; }
.lobby .lt-row-front .lt-member:nth-child(2) { animation-delay: 0.56s; }
.lobby .lt-row-front .lt-member:nth-child(3) { animation-delay: 0.62s; }
.lobby .lt-row-front .lt-member:nth-child(4) { animation-delay: 0.68s; }
.lobby .lt-row-front .lt-member:nth-child(5) { animation-delay: 0.74s; }
.lobby .lt-row-front .lt-member:nth-child(6) { animation-delay: 0.80s; }
.lobby .lt-row-front .lt-member:nth-child(7) { animation-delay: 0.86s; }

@media (prefers-reduced-motion: reduce) {
  .lobby *, .lobby *::before, .lobby *::after {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Print: keep it readable but skip decoration ─────────────── */
@media print {
  .lobby .lobby-rail,
  .lobby .lobby-cta,
  .lobby .lobby-hero-frame,
  .lobby .lobby-signin { display: none; }
  .lobby { background: white; color: black; }
  .lobby h1, .lobby h2, .lobby h3 { color: black; }
}
