/* 터줏대감 — landing page system */

:root {
  --paper: #F2EEE6;
  --paper-2: #E8E2D5;
  --paper-3: #DDD5C2;
  --paper-deep: #1A1612;
  --ink: #161310;
  --ink-soft: #4A4239;
  --ink-mute: #8C8378;
  --line: rgba(22, 19, 16, 0.14);
  --line-strong: rgba(22, 19, 16, 0.28);
  --flag: #C13A2C;
  --flag-deep: #8B2418;
  --green: #1F3A2E;
  --gold: #B8893A;

  --font-display: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body: "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-serif: "Gowun Batang", "Nanum Myeongjo", serif;

  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea {
  font-family: inherit;
  color: inherit;
}

a { color: inherit; text-decoration: none; }

/* ───── typography ───── */

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kicker::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.kicker.no-line::before { display: none; }

.kicker-flag::before {
  content: "▲";
  width: auto;
  height: auto;
  background: transparent;
  color: var(--flag);
  font-size: 9px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: clamp(44px, 7.4vw, 112px); letter-spacing: -0.035em; }
h2 { font-size: clamp(32px, 4.4vw, 64px); }
h3 { font-size: clamp(22px, 2.4vw, 32px); }
h4 { font-size: clamp(17px, 1.4vw, 20px); font-weight: 700; }

p { margin: 0; text-wrap: pretty; }

.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
}

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum";
}

.serif { font-family: var(--font-serif); font-weight: 400; font-style: italic; }

/* ───── layout primitives ───── */

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.section.no-rule { border-top: none; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 60px);
  margin-bottom: clamp(40px, 5vw, 72px);
}

.section-head > div {
  grid-column: 1 / -1;
}

.section-head .meta { display: flex; flex-direction: column; gap: 12px; }

@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
}

/* ───── nav ───── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 238, 230, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.brand-mark {
  width: 26px; height: 26px;
  position: relative;
  display: inline-block;
}

.brand-mark::before, .brand-mark::after {
  content: ""; position: absolute;
}

.brand-mark::before {
  width: 2.5px; height: 100%; left: 5px; top: 0;
  background: var(--ink);
}

.brand-mark::after {
  left: 7.5px; top: 2px;
  width: 15px; height: 11px;
  background: var(--flag);
  clip-path: polygon(0 0, 100% 0, 80% 50%, 100% 100%, 0 100%);
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-soft);
}

.nav-links a {
  white-space: nowrap;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--flag); }

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

/* ───── buttons ───── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--flag); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-arrow {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* ───── pill / tag ───── */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--flag);
  box-shadow: 0 0 0 3px rgba(193, 58, 44, 0.18);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ───── reveal animations ───── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-stagger.in > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.22s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.28s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.34s; }

/* utility */
.flex { display: flex; }
.col { display: flex; flex-direction: column; }
.row { display: flex; flex-direction: row; }
.center { align-items: center; justify-content: center; }
.between { justify-content: space-between; }
.gap-s { gap: 8px; } .gap-m { gap: 16px; } .gap-l { gap: 24px; } .gap-xl { gap: 40px; }
.tnum { font-variant-numeric: tabular-nums; }
.hidden-mobile { }
@media (max-width: 720px) { .hidden-mobile { display: none !important; } }

/* ───────────── HERO ───────────── */

.hero {
  position: relative;
  padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-eyebrow {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero h1 .strike {
  position: relative;
  display: inline-block;
  color: var(--ink-mute);
}

.hero h1 .accent { color: var(--flag); }

.hero-lede {
  margin-bottom: 36px;
  max-width: 48ch;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  border-top: 1px solid var(--line);
  padding-top: 22px;
  flex-wrap: wrap;
}

.hero-meta-item .num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  display: block;
  line-height: 1;
}

.hero-meta-item .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

.hero-map {
  aspect-ratio: 1 / 0.9;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 20px 60px -20px rgba(22, 19, 16, 0.18);
}

.hero-map-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  pointer-events: none;
}

.hero-map-overlay .label-tl {
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  bottom: auto;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}

.hero-map-corners {
  position: absolute;
  inset: 10px;
  pointer-events: none;
}

.hero-map-corners::before, .hero-map-corners::after,
.hero-map-corners > i, .hero-map-corners > i + i {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--ink);
  content: "";
}
.hero-map-corners::before { top: 0; left: 0; border-right: none; border-bottom: none; }
.hero-map-corners::after { top: 0; right: 0; border-left: none; border-bottom: none; }
.hero-map-corners > i { bottom: 0; left: 0; border-right: none; border-top: none; display: block; }
.hero-map-corners > i + i { bottom: 0; right: 0; left: auto; border-left: none; border-top: none; }

.map-tl {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-transform: uppercase;
  pointer-events: none;
}
.map-tr {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  text-transform: uppercase;
  pointer-events: none;
}

/* ───────────── PROBLEM ───────────── */

.problem {
  background: var(--paper-deep);
  color: var(--paper);
  border-top: none;
  margin-top: 0;
}

.problem .kicker { color: rgba(242, 238, 230, 0.5); }
.problem h2 { color: var(--paper); }
.problem .lede { color: rgba(242, 238, 230, 0.7); }

.problem-headline {
  font-size: clamp(38px, 5.4vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 900;
}

.problem-headline em {
  font-style: normal;
  color: var(--flag);
  position: relative;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(242, 238, 230, 0.16);
}

@media (max-width: 800px) { .proof-grid { grid-template-columns: 1fr; } }

.proof-cell {
  padding: 36px 28px;
  border-right: 1px solid rgba(242, 238, 230, 0.16);
}
.proof-cell:last-child { border-right: none; }

@media (max-width: 800px) {
  .proof-cell {
    border-right: none;
    border-bottom: 1px solid rgba(242, 238, 230, 0.16);
  }
  .proof-cell:last-child { border-bottom: none; }
}

.proof-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 72px);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 16px;
  color: var(--paper);
}

.proof-num .unit {
  font-size: 0.4em;
  font-weight: 500;
  color: rgba(242, 238, 230, 0.5);
  margin-left: 4px;
}

.proof-label {
  font-size: 14px;
  color: rgba(242, 238, 230, 0.78);
  line-height: 1.5;
  max-width: 28ch;
}

.proof-source {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(242, 238, 230, 0.4);
  text-transform: uppercase;
}

/* fake review vs. real review */
.review-cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

@media (max-width: 800px) { .review-cards { grid-template-columns: 1fr; } }

.review-card {
  padding: 28px;
  border: 1px solid rgba(242, 238, 230, 0.18);
  background: rgba(255,255,255,0.02);
  position: relative;
}

.review-card.fake { border-right: none; }
@media (max-width: 800px) {
  .review-card.fake { border-right: 1px solid rgba(242, 238, 230, 0.18); border-bottom: none; }
}

.review-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.review-card.fake .review-card-tag {
  background: rgba(193, 58, 44, 0.18);
  color: #E97B6E;
}

.review-card.real .review-card-tag {
  background: rgba(75, 168, 113, 0.16);
  color: #6FCF97;
}

.review-quote {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(242, 238, 230, 0.92);
  margin-bottom: 20px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(242, 238, 230, 0.55);
}

.review-card.fake .review-flags {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #E97B6E;
}

/* ───────────── SOLUTION (How it works) ───────────── */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

@media (max-width: 800px) { .steps-grid { grid-template-columns: 1fr; } }

.step-cell {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.step-cell:last-child { border-right: none; }
@media (max-width: 800px) {
  .step-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .step-cell:last-child { border-bottom: none; }
}

.step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-bottom: 28px;
}

.step-illu {
  height: 110px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.15;
}

.step-body {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ───────────── LEADERBOARD ───────────── */

.lb-wrap { display: flex; flex-direction: column; gap: 20px; }

.lb-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.lb-tab {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 500;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.lb-tab:hover { color: var(--ink); border-color: var(--ink); }

.lb-tab.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.lb-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(24px, 3vw, 40px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.6) inset,
    0 24px 60px -30px rgba(22, 19, 16, 0.2);
}

.lb-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.lb-rating { text-align: right; }

.lb-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
}

@media (max-width: 920px) { .lb-grid { grid-template-columns: 1fr; } }

/* occupier card */
.lb-occupier {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px;
  position: relative;
}

.occ-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.occ-handle {
  font-family: var(--font-mono);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--ink);
}

.occ-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--line-strong);
  margin-bottom: 24px;
}

.occ-stat-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.occ-stat-val {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.occ-stat-val i {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-mute);
}

.occ-review-head {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.occ-review-body {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* rankings */
.lb-rankings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rank-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rank-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.rank-table thead th {
  text-align: left;
  padding: 10px 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.rank-table thead th.tnum { text-align: right; }

.rank-table tbody td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.rank-table tbody td.tnum { text-align: right; }

.rank-table tbody tr.first {
  background: rgba(193, 58, 44, 0.06);
}

.rank-table tbody tr.first td:first-child {
  border-left: 3px solid var(--flag);
}

.rk { width: 36px; }
.rk-flag {
  color: var(--flag);
  font-size: 14px;
}

.rank-foot {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  padding-top: 4px;
}

/* ───────────── COMPARISON ───────────── */

.comparison {
  background: var(--paper-2);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.comp-table thead th {
  padding: 24px 24px;
  text-align: left;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 1px solid var(--line-strong);
}

.comp-table thead th.us {
  color: var(--ink);
  font-weight: 600;
}

.comp-table tbody td {
  padding: 24px 24px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 15px;
  line-height: 1.5;
}

.comp-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 22%;
  font-size: 14px;
}

.comp-table tbody td.them {
  color: var(--ink-soft);
  width: 39%;
}

.comp-table tbody td.us {
  color: var(--ink);
  width: 39%;
  background: var(--paper);
  border-left: 3px solid var(--flag);
  position: relative;
}

.comp-table tbody td.us strong {
  font-weight: 700;
}

@media (max-width: 720px) {
  .comp-table thead, .comp-table tbody td:first-child { display: none; }
  .comp-table, .comp-table tbody, .comp-table tbody tr { display: block; }
  .comp-table tbody tr { margin-bottom: 20px; }
  .comp-table tbody td { display: block; width: auto !important; padding: 16px; }
}

/* ───────────── AUDIENCE ───────────── */

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

@media (max-width: 800px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-cell {
  padding: clamp(36px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.audience-cell:last-child { border-right: none; }

@media (max-width: 800px) {
  .audience-cell { border-right: none; border-bottom: 1px solid var(--line); }
  .audience-cell:last-child { border-bottom: none; }
}

.audience-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--flag);
  margin-bottom: 18px;
}

.audience-cell.evangelist .audience-tag { color: var(--flag); }
.audience-cell.seeker .audience-tag { color: var(--green); }

.audience-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.1;
}

.audience-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 2px solid var(--line-strong);
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-list li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.audience-list li::before {
  content: "→";
  color: var(--flag);
  font-family: var(--font-mono);
  flex-shrink: 0;
}

.audience-cell.seeker .audience-list li::before { color: var(--green); }

.audience-payoff {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* ───────────── CTA / WAITLIST ───────────── */

.cta {
  background: var(--ink);
  color: var(--paper);
  border-top: none;
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 14vw, 200px) 0;
}

.cta-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(193, 58, 44, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(31, 58, 46, 0.22) 0%, transparent 50%);
  pointer-events: none;
}

.cta .wrap { position: relative; }

.cta-headline {
  font-size: clamp(40px, 6vw, 88px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 900;
  color: var(--paper);
  margin-bottom: 22px;
  max-width: 16ch;
}

.cta-headline .accent { color: var(--flag); }

.cta-sub {
  font-size: 17px;
  color: rgba(242, 238, 230, 0.7);
  max-width: 52ch;
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 540px;
}

.cta-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 4px;
  width: fit-content;
}

.cta-toggle button {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(242, 238, 230, 0.6);
  white-space: nowrap;
}

.cta-toggle button.active {
  background: var(--paper);
  color: var(--ink);
}

.cta-input-row {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  align-items: center;
  transition: border-color 0.15s;
}

.cta-input-row:focus-within {
  border-color: var(--flag);
}

.cta-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--paper);
  font-size: 15px;
  padding: 12px 0;
  min-width: 0;
}

.cta-input-row input::placeholder { color: rgba(242, 238, 230, 0.4); }

.cta-input-row button {
  background: var(--flag);
  color: var(--paper);
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  transition: background 0.15s;
  white-space: nowrap;
}

.cta-input-row button:hover { background: #D04A3A; }

.cta-input-row button:disabled { background: rgba(193, 58, 44, 0.4); cursor: not-allowed; }

.cta-extra {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-extra label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(242, 238, 230, 0.6);
  cursor: pointer;
}

.cta-extra input[type="text"] {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--paper);
  font-size: 13px;
  outline: none;
  width: 200px;
}

.cta-extra input[type="text"]:focus { border-color: var(--flag); }

.cta-tickets {
  margin-top: 56px;
  border-top: 1px solid rgba(242, 238, 230, 0.16);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-tickets-num {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.cta-tickets-num em {
  font-style: normal;
  color: var(--flag);
}

.cta-tickets-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 238, 230, 0.5);
}

.cta-tickets-bar {
  flex: 1;
  min-width: 200px;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.cta-tickets-bar > i {
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--flag);
  border-radius: 999px;
  animation: barFill 1.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes barFill {
  to { width: var(--bar-fill, 73%); }
}

.cta-success {
  padding: 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-success .num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 600;
  color: var(--flag);
}

/* ───────────── FOOTER ───────────── */

footer {
  padding: 48px var(--pad) 32px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.foot {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}

/* ───────────── theme variants (Tweaks) ───────────── */

body.theme-newsprint {
  --paper: #F2EEE6;
  --paper-2: #E8E2D5;
  --paper-3: #DDD5C2;
  --paper-deep: #1A1612;
  --ink: #161310;
  --ink-soft: #4A4239;
  --flag: #C13A2C;
}

body.theme-archive {
  --paper: #ECE8DC;
  --paper-2: #DDD8C7;
  --paper-3: #C9C2AB;
  --paper-deep: #14110D;
  --ink: #14110D;
  --ink-soft: #3F3A30;
  --flag: #2D5A3D;
}

body.theme-stamp {
  --paper: #F4F0E5;
  --paper-2: #E9E2CF;
  --paper-3: #DCD2B8;
  --paper-deep: #1B1209;
  --ink: #1B1209;
  --ink-soft: #4D3F2A;
  --flag: #A8331E;
}

body.theme-noir {
  --paper: #F0EDE6;
  --paper-2: #E2DED4;
  --paper-3: #C8C2B5;
  --paper-deep: #0E0C0A;
  --ink: #0E0C0A;
  --ink-soft: #3A352E;
  --flag: #E2842B;
}

