*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f4f1ea;
  --surface: #ffffff;
  --ink: #1a2744;
  --ink-soft: #3d4f6f;
  --muted: #6b7a94;
  --accent: #c4862a;
  --accent-hover: #a66f1f;
  --accent-soft: #f0e4cc;
  --success: #2d6a4f;
  --success-soft: #d8f0e4;
  --border: #d8d2c6;
  --border-light: #e8e3d8;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(26,39,68,.06), 0 8px 24px rgba(26,39,68,.04);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ─────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,241,234,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--ink);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .15s;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; }

.btn-secondary {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--ink-soft); }

.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: #243456; color: #fff; }

.btn-lg { padding: 14px 32px; font-size: 16px; border-radius: var(--radius); }
.btn-block { width: 100%; }

/* ── Hero ────────────────────────────────── */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--success-soft);
  color: var(--success);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 20px;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 36px;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Sections ────────────────────────────── */
.section { padding: 64px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.section-header p { color: var(--muted); font-size: 16px; }

/* ── Line cards ──────────────────────────── */
.lines-search {
  max-width: 400px;
  margin: 0 auto 32px;
  position: relative;
}

.lines-search input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .15s;
}
.lines-search input:focus { border-color: var(--accent); }
.lines-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}

.lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.line-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px;
  cursor: pointer;
  transition: all .15s;
  box-shadow: var(--shadow);
}

.line-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26,39,68,.08);
}

.line-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.line-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.line-card-sub { font-size: 13px; color: var(--muted); margin-top: 2px; }

.line-card-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.line-card-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.line-card-meta span { display: flex; align-items: center; gap: 4px; }

.line-card-state {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent-soft);
  color: var(--accent-hover);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── Stats table ─────────────────────────── */
.stats-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.stats-table th {
  text-align: left;
  padding: 14px 20px;
  background: var(--bg);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  border-bottom: 1px solid var(--border-light);
}

.stats-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
}

.stats-table tr:last-child td { border-bottom: none; }
.stats-table tr:hover td { background: rgba(196,134,42,.03); }

.stat-highlight { font-family: var(--font-mono); font-weight: 600; color: var(--success); }
.stat-muted { color: var(--muted); font-family: var(--font-mono); font-size: 13px; }

/* ── Call-tree builder ───────────────────── */
.builder {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.builder-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.field input, .field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--bg);
  outline: none;
}
.field input:focus, .field select:focus { border-color: var(--accent); }

.builder-steps { margin: 20px 0; }

.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-hover);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-item select, .step-item input {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  background: var(--bg);
}

.step-remove {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
  padding: 4px;
}
.step-remove:hover { color: #c44; }

.builder-result {
  background: var(--ink);
  color: #e8e3d8;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  word-break: break-all;
  line-height: 1.8;
  position: relative;
}

.copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  color: #e8e3d8;
  font-size: 11px;
  cursor: pointer;
}
.copy-btn:hover { background: rgba(255,255,255,.2); }

/* ── How it works ────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card { text-align: center; }

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--accent-soft);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-card p { font-size: 14px; color: var(--muted); }

/* ── FAQ ─────────────────────────────────── */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.faq-item summary {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after { content: '+'; font-size: 20px; color: var(--muted); }
.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Footer ──────────────────────────────── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* ── App page ────────────────────────────── */
.app-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 24px;
  padding: 32px 0 64px;
  min-height: calc(100vh - 64px);
}

.app-main { min-width: 0; }

.panel {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.panel-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 16px;
}

.tier-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }

.tier-card {
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
  cursor: pointer;
  transition: all .15s;
}

.tier-card.active { border-color: var(--accent); background: var(--accent-soft); }
.tier-card:hover:not(.active) { border-color: var(--border); }

.tier-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.tier-card .price { font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--accent); }
.tier-card .desc { font-size: 12px; color: var(--muted); margin-top: 6px; }

.tier-card .badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

/* ── Session tracker ─────────────────────── */
.session-tracker { position: sticky; top: 88px; }

.status-timeline { list-style: none; }

.status-step {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  position: relative;
}

.status-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 36px;
  bottom: -4px;
  width: 2px;
  background: var(--border-light);
}

.status-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  z-index: 1;
}

.status-step.done .status-dot {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.status-step.active .status-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,134,42,.4); }
  50% { box-shadow: 0 0 0 8px rgba(196,134,42,0); }
}

.status-step-body h4 { font-size: 14px; font-weight: 600; }
.status-step-body p { font-size: 12px; color: var(--muted); margin-top: 2px; }

.attempt-counter {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  padding: 10px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-top: 12px;
  text-align: center;
}

.mode-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.mode-badge.demo { background: var(--accent-soft); color: var(--accent-hover); }
.mode-badge.live { background: var(--success-soft); color: var(--success); }

.event-log {
  max-height: 200px;
  overflow-y: auto;
  margin-top: 16px;
  font-size: 12px;
}

.event-log-item {
  padding: 6px 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--muted);
}

.event-log-item .time { font-family: var(--font-mono); font-size: 11px; }

.selected-line-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.selected-line-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
}

.back-link {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.back-link:hover { color: var(--ink); }

.feedback {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  margin-top: 12px;
  display: none;
}
.feedback.show { display: block; }
.feedback.success { background: var(--success-soft); color: var(--success); }
.feedback.error { background: #fde8e8; color: #b91c1c; }

@media (max-width: 800px) {
  .app-layout { grid-template-columns: 1fr; }
  .session-tracker { position: static; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .builder-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .nav-links a:not(.btn) { display: none; }
}

@media (max-width: 500px) {
  .steps-grid { grid-template-columns: 1fr; }
  .tier-cards { grid-template-columns: 1fr; }
  .lines-grid { grid-template-columns: 1fr; }
}

/* ── FAQ body (expanded entries with lists) ─────────────────────────── */
.faq-body p {
  margin-top: 0.75rem;
}

.faq-body p + p {
  margin-top: 0.6rem;
}

.faq-body ul {
  margin: 0.5rem 0 0.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.faq-body li {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.faq-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Trust Bar ───────────────────────────────────────────────────────── */
.trust-bar {
  background: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 8px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.82);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 4px 8px;
}

.trust-badge svg {
  flex-shrink: 0;
  stroke: var(--accent);
  opacity: 0.9;
}

.trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .trust-divider { display: none; }
  .trust-bar-inner { gap: 4px; }
  .trust-badge { font-size: 0.75rem; }
}

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

/* ── Competitive Comparison ──────────────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.compare-table thead th {
  background: var(--ink);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.compare-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: var(--bg);
  transition: background 0.15s;
}

.col-us {
  background: rgba(196,134,42,.06);
  font-weight: 500;
}

.col-win {
  color: var(--success);
  font-weight: 700;
  position: relative;
}

.col-win::before {
  content: '✓ ';
  color: var(--success);
  font-weight: 900;
}

.col-comp {
  color: var(--muted);
}

.compare-table thead .col-us {
  background: var(--accent);
  color: #fff;
}

.col-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ── Advantage Cards ─────────────────────────────────────────────────── */
.compare-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.compare-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.compare-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(26,39,68,.1);
}

.compare-card.advantage {
  border-top: 3px solid var(--accent);
}

.compare-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.compare-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.compare-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .compare-cards { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.85rem; }
}

/* ── Reviews ──────────────────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.review-stars {
  color: #e5a020;
  font-size: 1rem;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink);
  flex: 1;
  margin: 0;
}

.review-author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink);
  margin-top: 0.25rem;
}

.review-line {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

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

/* ── Featured Lines Grid ──────────────────────────────────────────────── */
.featured-lines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.featured-line-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: box-shadow 0.15s, transform 0.15s;
}

.featured-line-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.featured-line-state {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-warm, #c47c3a);
}

.featured-line-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.featured-line-phone {
  font-size: 0.85rem;
  font-family: var(--font-mono, monospace);
  color: var(--ink-soft);
}

.featured-line-wait {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
/* ── Live wait times widget ─────────────────────────────────────────────────── */
.wt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: .5rem;
}
.wt-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.wt-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.wt-card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .75rem; }
.wt-state { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); margin-bottom: .15rem; }
.wt-name { font-size: .95rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.wt-badge { font-size: .68rem; font-weight: 700; padding: .2rem .45rem; border-radius: 4px; white-space: nowrap; }
.wt-badge-hot { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.wt-badge-active { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.wt-times { display: flex; align-items: center; gap: .6rem; margin-bottom: .6rem; }
.wt-ours, .wt-self { flex: 1; text-align: center; }
.wt-time-val { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.wt-time-slow { color: var(--muted); }
.wt-time-unit { font-size: .75rem; font-weight: 400; font-family: var(--font-body); }
.wt-time-label { font-size: .7rem; color: var(--muted); margin-top: .15rem; }
.wt-vs { font-size: .75rem; color: var(--muted); flex-shrink: 0; }
.wt-save { font-size: .72rem; color: var(--accent); font-weight: 600; text-align: right; }

/* ── Pricing section ────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }
.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  position: relative;
}
.pricing-card.pricing-featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.pricing-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .03em;
}
.pricing-name { font-size: 1rem; font-weight: 700; }
.pricing-price { font-family: var(--font-serif); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.pricing-sub { font-size: .8rem; opacity: .6; }
.pricing-features { list-style: none; padding: 0; margin: .5rem 0; font-size: .88rem; display: flex; flex-direction: column; gap: .35rem; }
.pricing-features li { display: flex; align-items: center; gap: .4rem; }
.pricing-featured .pricing-features li { opacity: .9; }
.pricing-btn { margin-top: auto; width: 100%; text-align: center; display: block; }
.pricing-featured .btn-primary { background: #fff; color: var(--ink); border-color: #fff; }
.pricing-featured .btn-primary:hover { background: rgba(255,255,255,.9); }

/* ── Email capture ──────────────────────────────────────────────────────────── */
.email-section { padding: 3rem 0; }
.email-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.email-card-icon { font-size: 2rem; }
.email-card h3 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--ink); margin: 0; }
.email-card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; max-width: 440px; }
.subscribe-form { display: flex; gap: .5rem; width: 100%; max-width: 420px; }
.subscribe-form input { flex: 1; padding: .65rem .9rem; border: 1.5px solid var(--border); border-radius: 8px; font-size: .9rem; font-family: var(--font-body); background: var(--bg); color: var(--ink); }
.subscribe-form input:focus { outline: none; border-color: var(--accent); }
@media (max-width: 480px) { .subscribe-form { flex-direction: column; } .subscribe-form input, .subscribe-form button { width: 100%; } }
