/* Playbook — landing + lobby — Stripe/Notion-inspired */
:root {
  --bg: #ffffff;
  --bg-soft: #fafaf7;
  --bg-tint: #f5f4ef;
  --ink: #0a0a0a;
  --ink-2: #1a1a1a;
  --muted: #5a5a5a;
  --muted-2: #8a8a85;
  --line: #e8e6df;
  --line-2: #d8d6cd;
  --accent: #1a1a1a;
  --gold-1: #f6d77a;
  --gold-2: #d4a942;
  --gold-3: #8a6a1f;
  --gold-bg: #fdf6e0;
  --danger: #b54343;
  --shadow-sm: 0 1px 2px rgba(15,15,15,0.04), 0 1px 3px rgba(15,15,15,0.06);
  --shadow-md: 0 2px 4px rgba(15,15,15,0.04), 0 8px 24px rgba(15,15,15,0.06);
  --shadow-lg: 0 4px 12px rgba(15,15,15,0.06), 0 24px 48px rgba(15,15,15,0.08);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --serif: "Instrument Serif", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --sans: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
img, video { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.h-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.h-display em { font-style: italic; color: var(--muted); }
.h-section {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}
.h-section em { font-style: italic; color: var(--muted); }
.h-card {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--muted);
  line-height: 1.5;
  max-width: 56ch;
  margin: 0;
}
.body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  cursor: pointer;
  border: 0;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); background: #000; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink-2); background: var(--bg-soft); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 100%);
  color: #2a1f00;
  box-shadow: 0 1px 2px rgba(212, 169, 66, 0.4), 0 8px 24px rgba(212, 169, 66, 0.25);
  font-weight: 600;
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212, 169, 66, 0.5), 0 16px 36px rgba(212, 169, 66, 0.3); }
.btn-danger {
  background: var(--danger);
  color: #fff;
}
.btn-danger:hover { background: #9c3838; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { height: 52px; padding: 0 26px; font-size: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--ink);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

@media (max-width: 720px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(56px, 9vw, 120px) 0 clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  text-align: center;
  justify-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
  background: var(--bg-soft);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 3px rgba(212, 169, 66, 0.18);
}
.hero h1 { max-width: 18ch; }
.hero-sub { max-width: 52ch; }
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 13px;
  color: var(--muted-2);
  font-family: var(--mono);
}
.hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.check {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-grid; place-items: center;
  font-size: 9px;
}

/* ---------- Hero video ---------- */
.hero-video-wrap {
  margin-top: clamp(32px, 5vw, 56px);
  position: relative;
}
.hero-video {
  position: relative;
  border-radius: clamp(14px, 2vw, 24px);
  background: linear-gradient(180deg, #fafaf7 0%, #f0eee5 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
}
.video-chrome {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: rgba(250, 250, 247, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
}
.chrome-dots { display: flex; gap: 6px; }
.chrome-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-2);
}
.chrome-url {
  flex: 1;
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
}
.video-placeholder {
  position: absolute;
  inset: 36px 0 0 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 169, 66, 0.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 26, 26, 0.04), transparent 50%),
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(0,0,0,0.025) 39px, rgba(0,0,0,0.025) 40px),
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(0,0,0,0.025) 39px, rgba(0,0,0,0.025) 40px),
    var(--bg-soft);
}
.play-btn {
  width: clamp(64px, 8vw, 88px);
  height: clamp(64px, 8vw, 88px);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: transform 0.2s;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.play-btn:hover { transform: scale(1.05); }
.play-btn::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}
.video-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

/* Floating "board snippets" around hero video */
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 12px 14px;
  font-size: 13px;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
.float-card.sticky-y { background: #fff7c4; border-color: #ecdf80; }
.float-card.sticky-p { background: #ffd9d2; border-color: #f5b8ad; }
.float-card .card-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.float-1 { top: 8%; left: -2%; transform: rotate(-3deg); animation-delay: 0s; }
.float-2 { top: 20%; right: -3%; transform: rotate(2deg); animation-delay: -2s; }
.float-3 { bottom: 12%; left: 4%; transform: rotate(1.5deg); animation-delay: -4s; }
@keyframes float {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}
@media (max-width: 880px) { .float-card { display: none; } }

/* ---------- Section ---------- */
section { scroll-margin-top: 80px; }
.section {
  padding: clamp(64px, 9vw, 128px) 0;
  border-top: 1px solid var(--line);
}
.section-soft { background: var(--bg-soft); }

.section-head {
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head .lede { text-align: center; }

/* ---------- Why grid ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.why-card {
  background: #fff;
  padding: clamp(28px, 3.5vw, 44px);
  display: grid;
  gap: 16px;
  align-content: start;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
}
.why-card h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin: 0; }
.why-card p { color: var(--muted); font-size: 15px; margin: 0; line-height: 1.55; }
.why-visual {
  margin-top: 8px;
  height: 110px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
@media (max-width: 720px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  gap: clamp(48px, 7vw, 96px);
}
.step {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.step:nth-child(even) .step-text { order: 2; }
.step:nth-child(even) .step-video { order: 1; }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 64px;
  color: var(--gold-2);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.step p { color: var(--muted); font-size: 17px; line-height: 1.55; max-width: 44ch; }
.step-video {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.step-video .play-btn { width: 64px; height: 64px; }
.step-video .video-caption { font-size: 10px; }
@media (max-width: 800px) {
  .step { grid-template-columns: 1fr; }
  .step:nth-child(even) .step-text { order: 0; }
  .step:nth-child(even) .step-video { order: 0; }
}

/* ---------- Personas ---------- */
.persona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.persona {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  gap: 12px;
  align-content: start;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.persona:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.persona-glyph {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
.persona h4 { font-size: 16px; font-weight: 600; margin: 0; letter-spacing: -0.01em; }
.persona p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.5; }
@media (max-width: 880px) { .persona-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .persona-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */
.pricing-bar { display: flex; justify-content: center; margin-bottom: 32px; }
.urgency-banner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #fff8e0 0%, #fdf0c0 100%);
  border: 1px solid var(--gold-2);
  border-radius: 999px;
  font-size: 13px;
  color: var(--gold-3);
  font-weight: 500;
  font-family: var(--mono);
  flex-wrap: wrap;
  justify-content: center;
}
.urgency-banner .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-2);
  position: relative;
}
.urgency-banner .pulse-dot::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: var(--gold-2);
  opacity: 0.4;
  animation: ringpulse 1.6s ease-out infinite;
}
@keyframes ringpulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}
.countdown { display: inline-flex; gap: 4px; font-variant-numeric: tabular-nums; font-weight: 600; }
.countdown b {
  background: var(--ink);
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  min-width: 24px;
  display: inline-block;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
  align-items: stretch;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  gap: 20px;
  align-content: start;
  position: relative;
}
.price-card.gold {
  background:
    radial-gradient(circle at 100% 0%, rgba(246, 215, 122, 0.18), transparent 60%),
    linear-gradient(180deg, #fffaef 0%, #fff 60%);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 1.5px transparent, var(--shadow-lg);
}
.price-card.gold::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2), #b8881e, var(--gold-1));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.price-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #2a1f00;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(212, 169, 66, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.price-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 12px;
}
.price-name small {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  font-style: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 4px 8px;
  border-radius: 999px;
}
.price-card.gold .price-name small {
  color: var(--gold-3);
  border-color: var(--gold-2);
  background: rgba(246, 215, 122, 0.18);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.price-amount .num {
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-amount .per { color: var(--muted); font-size: 14px; }
.price-amount .strike { color: var(--muted-2); text-decoration: line-through; font-size: 18px; font-family: var(--serif); }
.price-amount .save {
  font-family: var(--mono);
  font-size: 11px;
  background: var(--ink);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-card.gold .price-amount .save {
  background: linear-gradient(135deg, var(--gold-2), #b8881e);
}
.price-tag { font-size: 14px; color: var(--muted); margin-top: -8px; }
.price-tag b { color: var(--ink); font-weight: 600; }
.price-features { display: grid; gap: 12px; list-style: none; padding: 0; margin: 0; }
.price-features li { display: flex; gap: 10px; font-size: 14px; color: var(--ink-2); align-items: flex-start; }
.price-features .tick {
  flex: 0 0 auto;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--bg-tint);
  display: grid; place-items: center;
  margin-top: 2px;
  font-size: 10px;
  color: var(--ink);
}
.price-card.gold .price-features .tick {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #2a1f00;
}
.scarcity-meter {
  display: grid;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold-3);
}
.scarcity-bar {
  height: 6px;
  background: rgba(212, 169, 66, 0.15);
  border-radius: 999px;
  overflow: hidden;
}
.scarcity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  border-radius: 999px;
}
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  gap: 16px;
}
.faq-q .icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  flex: 0 0 auto;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--ink); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 64ch;
}
.faq-item.open .faq-a { max-height: 280px; padding: 0 0 24px; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 18px;
  align-content: space-between;
}
.testi-quote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0;
}
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
}
.testi-name { font-size: 14px; font-weight: 500; }
.testi-role { font-size: 12px; color: var(--muted); }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  padding: clamp(72px, 10vw, 140px) 0;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--line);
}
.final-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 auto 20px;
  max-width: 18ch;
}
.final-cta h2 em { font-style: italic; color: var(--gold-1); }
.final-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 50ch;
  margin: 0 auto 32px;
}
.final-cta .btn-primary { background: #fff; color: var(--ink); }
.final-cta .btn-primary:hover { background: #f0f0f0; }
.final-cta .btn-gold { color: #2a1f00; }
.final-cta .btn-ghost { border-color: rgba(255,255,255,0.2); color: #fff; }
.final-cta .btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

/* ---------- Footer ---------- */
.footer {
  padding: 48px 0 32px;
  background: var(--ink);
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer .logo { color: #fff; }
.footer .logo-mark { background: #fff; color: var(--ink); }
.footer-links { display: flex; gap: 24px; }
.footer-links a:hover { color: #fff; }

/* ---------- Mini board demos (rendered in why cards) ---------- */
.mini-board { position: absolute; inset: 10px; display: grid; gap: 4px; }
.mb-sticky {
  position: absolute;
  background: #fff7c4;
  border: 1px solid #ecdf80;
  border-radius: 4px;
  font-size: 8px;
  padding: 4px 5px;
  font-weight: 500;
  color: #5a4a00;
}
.mb-line { position: absolute; background: var(--ink); height: 1px; }
.mb-arrow::after {
  content: "";
  position: absolute;
  right: -3px; top: -2px;
  width: 0; height: 0;
  border-left: 4px solid var(--ink);
  border-top: 2.5px solid transparent;
  border-bottom: 2.5px solid transparent;
}
.mb-heading {
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: 11px;
  color: var(--ink);
}
.mb-paper {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 4px 5px;
  font-size: 7px;
  color: var(--muted);
  line-height: 1.3;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* =========================================================
   LOBBY  — same aesthetic, applied to project dashboard.
   ========================================================= */
.lobby {
  padding: clamp(48px, 7vw, 80px) 0 clamp(64px, 8vw, 120px);
}
.lobby-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.lobby-head .eyebrow { margin-bottom: 14px; }
.lobby-head .h-section { margin-bottom: 12px; }
.lobby-head .lede { margin-top: 0; max-width: 60ch; }

.lobby-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lobby-search {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  height: 44px;
  padding: 0 16px;
  color: var(--muted);
  transition: border-color 0.15s ease;
}
.lobby-search:focus-within { border-color: var(--ink-2); }
.lobby-search input {
  border: 0;
  background: transparent;
  outline: 0;
  font-family: inherit;
  font-size: 14px;
  width: 200px;
  color: var(--ink);
}
.lobby-select {
  font-family: inherit;
  font-size: 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  height: 44px;
  padding: 0 16px;
  cursor: pointer;
  color: var(--ink);
  outline: 0;
  transition: border-color 0.15s ease;
}
.lobby-select:focus, .lobby-select:hover { border-color: var(--ink-2); }

/* Empty state */
.lobby-empty {
  display: grid;
  place-items: center;
  padding: 60px 0;
}
.lobby-empty[hidden],
.project-grid[hidden] { display: none; }
.lobby-empty-card {
  background: var(--bg-soft);
  border: 1px dashed var(--line-2);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
  max-width: 520px;
  display: grid;
  justify-items: center;
  gap: 16px;
}
.lobby-empty-card h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.lobby-empty-card h2 em { font-style: italic; color: var(--muted); }
.lobby-empty-card p {
  margin: 0;
  color: var(--muted);
  max-width: 44ch;
}

/* Project grid */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.project-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  outline: 0;
}
.project-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink-2);
}
.project-card:focus-visible { border-color: var(--ink-2); box-shadow: 0 0 0 3px rgba(10,10,10,.1); }
.project-card.new-card {
  background: var(--bg-soft);
  border-style: dashed;
  border-color: var(--line-2);
  color: var(--muted);
  align-items: center;
  justify-content: center;
  min-height: 220px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  text-align: center;
  gap: 8px;
}
.project-card.new-card svg { margin-bottom: 4px; }
.project-card.new-card:hover {
  color: var(--ink);
  border-color: var(--ink);
  border-style: solid;
  background: #fff;
}

.project-thumb {
  height: 130px;
  position: relative;
  background:
    radial-gradient(circle at 25% 25%, rgba(10,10,10,.05) 1px, transparent 1px) 0 0/18px 18px,
    linear-gradient(135deg, var(--bg-soft) 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.thumb-mini {
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(10,10,10,.06);
}
.thumb-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted-2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.project-body {
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.project-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.project-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.5em;
}
.project-meta {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  opacity: 0;
  transition: opacity .15s ease;
}
.project-card:hover .project-actions,
.project-card:focus-within .project-actions { opacity: 1; }
.icon-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all .15s ease;
  backdrop-filter: blur(6px);
}
.icon-btn:hover { background: #fff; color: var(--ink); border-color: var(--ink-2); }
.icon-btn.danger:hover { color: var(--danger); border-color: var(--danger); }

/* ---------- Lobby modals ---------- */
.lp-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}
.lp-modal[hidden] { display: none; }
.lp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.4);
  backdrop-filter: blur(4px);
}
.lp-modal-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 3vw, 40px);
  width: 100%;
  max-width: 540px;
  box-shadow: var(--shadow-lg);
  animation: lp-pop .18s ease;
  display: grid;
  gap: 14px;
}
.lp-modal-card.narrow { max-width: 440px; }
@keyframes lp-pop {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.lp-modal-head { display: grid; gap: 6px; }
.lp-modal-head .eyebrow.danger { color: var(--danger); }
.lp-modal-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}
.lp-modal-head h2 em { font-style: italic; color: var(--muted); }
.lp-modal-sub { margin: 0; color: var(--muted); font-size: 14px; }
.lp-input, .lp-textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: 0;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.lp-input:focus, .lp-textarea:focus {
  border-color: var(--ink);
  background: #fff;
}
.lp-textarea { resize: vertical; min-height: 84px; line-height: 1.5; }
.lp-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}

/* ---------- Mobile lobby tweaks ---------- */
@media (max-width: 720px) {
  .lobby-head { grid-template-columns: 1fr; }
  .lobby-tools { width: 100%; }
  .lobby-search input { width: 100%; }
  .lobby-search { flex: 1; }
}
@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 20px; }
  .hero-meta { font-size: 11px; gap: 12px; }
  .urgency-banner { font-size: 11px; padding: 10px 14px; gap: 10px; }
  .price-amount .num { font-size: 56px; }
  .nav-cta .btn-ghost { display: none; }
}
