/* ═══════════════════════════════════════════════════════════════
   GetNoBurn — Shared Styles
   Design: Dark navy + orange accent, Space Grotesk + Inter
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #070d1a;
  --bg-elev: #0e1629;
  --bg-elev-2: #141e35;
  --bg-card: #0f182b;
  --border: #1e2d4a;
  --border-light: #2a3d5c;
  --text: #e8edf5;
  --text-muted: #7a8aa5;
  --text-dim: #4a5a78;
  --accent: #ff7a3a;
  --accent-hover: #ff8c54;
  --accent-glow: rgba(255,122,58,0.15);
  --accent-glow-strong: rgba(255,122,58,0.25);
  --green: #22c55e;
  --yellow: #f5b13a;
  --red: #ef4f4f;
  --shadow: 0 8px 40px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.5);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --nav-h: 60px;
  --max-w: 960px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

h1,h2,h3,h4,h5,.brand-name,.score-num,.tier-price,.verdict-label,.section-title,.nav-logo {
  font-family: var(--font-display);
}

/* ── Noise + ambient glow ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(7,13,26,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}

.nav-logo .no { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--bg-elev);
}

.nav-cta {
  background: var(--accent) !important;
  color: #1a1008 !important;
  font-weight: 600 !important;
  padding: 0.5rem 1rem !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
}

.nav-toggle {
  display: none;
  appearance: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
}

.nav-toggle svg { display: block; width: 24px; height: 24px; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(7,13,26,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem 1.25rem 1rem;
    gap: 0.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; width: 100%; }
}

/* ── Page wrapper ── */
.page {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

@media (min-width: 768px) {
  .page { padding: 3rem 2rem 5rem; }
}

/* ── Section layout ── */
.section { margin-bottom: 4rem; }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.section-sub { color: var(--text-muted); font-size: 1rem; max-width: 500px; margin: 0 auto; }

/* ── Brand / Hero ── */
.hero { text-align: center; padding: 1rem 0 2rem; }
.brand-name { font-size: 2.75rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 0.75rem; }
.brand-name .no { color: var(--accent); }
.tagline { font-size: 1.15rem; color: var(--text-muted); font-weight: 500; margin-bottom: 1rem; }
.hero-desc { font-size: 0.95rem; color: var(--text-dim); max-width: 520px; margin: 0 auto 2rem; line-height: 1.55; }
.hero-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.hero-actions .btn { width: auto; min-width: 160px; }

@media (min-width: 768px) {
  .brand-name { font-size: 3.75rem; }
  .tagline { font-size: 1.35rem; }
  .hero-desc { font-size: 1.05rem; }
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

/* ── Forms ── */
.form-grid { display: grid; gap: 1.25rem; }
.form-card { margin-bottom: 1.5rem; }
label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.5rem; color: var(--text); }
label .hint { font-weight: 400; color: var(--text-dim); font-size: 0.8rem; }
textarea, input[type="number"], input[type="email"], input[type="text"] {
  width: 100%; padding: 0.85rem 1rem; font: inherit; font-size: 1rem;
  color: var(--text); background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: var(--radius); outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
textarea { resize: vertical; min-height: 100px; }
textarea:focus, input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
textarea::placeholder, input::placeholder { color: var(--text-dim); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  appearance: none; border: none; cursor: pointer; font: inherit; font-weight: 600;
  font-size: 1rem; padding: 0.9rem 1.5rem; border-radius: var(--radius);
  transition: all 0.15s ease; min-height: 48px; text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #1a1008; font-weight: 700; font-size: 1.05rem; box-shadow: 0 4px 20px var(--accent-glow-strong); }
.btn-primary:hover { background: var(--accent-hover); box-shadow: 0 6px 28px var(--accent-glow-strong); }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }
.btn-ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-ghost:hover { background: var(--accent-glow); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; min-height: 40px; }

/* ── Loading ── */
.loading-state { text-align: center; padding: 3rem 1rem; }
.spinner { width: 44px; height: 44px; margin: 0 auto 1.5rem; border: 3px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.loading-step { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin-bottom: 0.5rem; }
.loading-sub { color: var(--text-muted); font-size: 0.9rem; max-width: 360px; margin: 0 auto; }

/* ── Error ── */
.error-state { border-left: 3px solid var(--red); background: rgba(239,79,79,0.06); padding: 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 1rem; }
.error-state h3 { color: var(--red); font-size: 1rem; margin-bottom: 0.35rem; }
.error-state p { color: var(--text-muted); font-size: 0.9rem; word-break: break-word; }
.actions { display: flex; justify-content: center; margin-top: 1rem; gap: 0.75rem; }

/* ── Scores ── */
.scores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 380px) { .scores-grid { grid-template-columns: 1fr; } }
.score-card { text-align: center; padding: 1.5rem 1rem; }
.score-label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.7rem; color: var(--text-dim); font-weight: 600; margin-bottom: 0.5rem; }
.score-num { font-size: 3.5rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.score-num .denom { font-size: 1.25rem; font-weight: 500; color: var(--text-dim); }
.score-bar { height: 4px; background: var(--bg-elev); border-radius: 999px; overflow: hidden; margin-top: 0.75rem; }
.score-bar > span { display: block; height: 100%; border-radius: 999px; transition: width 0.8s ease, background-color 0.3s; }
.score-meaning { margin-top: 0.5rem; font-size: 0.78rem; color: var(--text-dim); font-weight: 500; }
.score-num.green,.score-bar>span.green{color:var(--green)}.score-num.yellow,.score-bar>span.yellow{color:var(--yellow)}.score-num.red,.score-bar>span.red{color:var(--red)}
.score-bar>span.green{background:var(--green)}.score-bar>span.yellow{background:var(--yellow)}.score-bar>span.red{background:var(--red)}

/* ── Paywall Gate ── */
.paywall-gate { position: relative; margin-top: 0.5rem; }
.paywall-gate.unlocked .blurred-content { filter: blur(0); opacity: 1; pointer-events: auto; user-select: auto; }
.blurred-content { filter: blur(6px); user-select: none; pointer-events: none; opacity: 0.5; transition: filter 0.4s, opacity 0.4s; }
.paywall-overlay { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem 1.5rem; text-align: center; background: linear-gradient(180deg, rgba(7,13,26,0.7) 0%, rgba(7,13,26,0.95) 30%, rgba(7,13,26,0.95) 70%, rgba(7,13,26,0.7) 100%); border-radius: var(--radius-lg); border: 1px solid var(--border); margin-top: 0.5rem; }
.paywall-overlay[hidden] { display: none !important; }
.paywall-lock { font-size: 2rem; margin-bottom: 0.75rem; opacity: 0.6; }
.paywall-title { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 0.5rem; }
.paywall-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; max-width: 380px; line-height: 1.5; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 420px; margin: 0 auto; }
@media (min-width: 600px) { .pricing-grid { grid-template-columns: 1fr 1fr; max-width: 500px; } }

.pricing-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .pricing-cols { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .pricing-cols { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.tier-card { background: var(--bg-elev-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem 1.25rem; text-align: center; position: relative; transition: border-color 0.2s; overflow: visible; }
.tier-card:hover { border-color: var(--border-light); }
.tier-card.popular { border-color: var(--accent); background: linear-gradient(135deg, var(--bg-elev-2), rgba(255,122,58,0.06)); }
.tier-card.popular::before { content: 'MOST VALUE'; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #1a1008; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.2rem 0.75rem; border-radius: 999px; white-space: nowrap; }
.tier-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; margin-bottom: 0.25rem; }
.tier-price { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--accent); margin-bottom: 0.15rem; line-height: 1.1; }
.tier-price .mo { font-size: 0.9rem; font-weight: 500; color: var(--text-dim); }
.tier-tagline { font-size: 0.8rem; color: var(--text-dim); font-style: italic; margin-bottom: 1rem; line-height: 1.35; }
.tier-features { list-style: none; display: grid; gap: 0.5rem; text-align: left; margin-bottom: 1.25rem; }
.tier-features li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }
.tier-features li .icon { flex: 0 0 16px; width: 16px; margin-top: 3px; color: var(--green); font-weight: 700; font-size: 0.75rem; }

/* ── Verdict ── */
.verdict-card { border-left: 3px solid var(--accent); background: linear-gradient(90deg, rgba(255,122,58,0.08), transparent); padding: 1.25rem; border-radius: 0 var(--radius) var(--radius) 0; }
.verdict-label { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.7rem; color: var(--accent); font-weight: 700; margin-bottom: 0.5rem; }
.verdict-text { font-size: 1rem; line-height: 1.55; font-weight: 500; }

/* ── Meta Cards ── */
.meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.meta-card { padding: 1rem 1.15rem; }
.meta-label { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.7rem; color: var(--text-dim); font-weight: 600; margin-bottom: 0.4rem; }
.meta-value { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--accent); letter-spacing: -0.01em; }

/* ── List Cards ── */
.list-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .list-grid { grid-template-columns: 1fr 1fr; } }
.list-card { padding: 1.15rem; }
.list-card h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.75rem; }
.list-card ul { list-style: none; display: grid; gap: 0.5rem; }
.list-card li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; line-height: 1.45; }
.list-icon { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.72rem; border-radius: 4px; }
.list-icon.check { background: rgba(34,197,94,0.12); color: var(--green); }
.list-icon.dollar { background: rgba(255,122,58,0.12); color: var(--accent); border-radius: 50%; }

/* ── Risks ── */
.risks-card { border-left: 3px solid var(--red); background: rgba(239,79,79,0.04); padding: 1.15rem; border-radius: 0 var(--radius) var(--radius) 0; }
.risks-card h3 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--red); margin-bottom: 0.75rem; }
.risks-card ul { list-style: none; display: grid; gap: 0.6rem; }
.risks-card li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; line-height: 1.45; }
.risk-icon { flex: 0 0 20px; text-align: center; color: var(--red); font-weight: 700; font-size: 0.85rem; }

/* ── How It Works ── */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .steps-grid { grid-template-columns: 1fr 1fr 1fr; } }
.step-card { padding: 1.5rem 1.25rem; text-align: center; }
.step-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: var(--accent); opacity: 0.4; line-height: 1; margin-bottom: 0.75rem; }
.step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ── Social Proof ── */
.proof-bar { display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap; padding: 1.5rem 0; }
.proof-item { text-align: center; }
.proof-num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--accent); }
.proof-label { font-size: 0.8rem; color: var(--text-dim); }

/* ── FAQ ── */
.faq-list { display: grid; gap: 0.75rem; max-width: 640px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; appearance: none; background: none; border: none; color: var(--text); font: inherit; font-weight: 600; font-size: 0.95rem; padding: 1rem 1.25rem; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q:hover { background: var(--bg-elev); }
.faq-q .arrow { transition: transform 0.2s; flex-shrink: 0; color: var(--text-dim); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { padding: 0 1.25rem 1rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
.blog-card { padding: 1.25rem; transition: border-color 0.2s; cursor: pointer; text-decoration: none; color: inherit; display: block; }
.blog-card:hover { border-color: var(--border-light); }
.blog-date { font-size: 0.78rem; color: var(--text-dim); margin-bottom: 0.4rem; }
.blog-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; line-height: 1.3; }
.blog-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ── Legal pages ── */
.legal-content { max-width: 680px; margin: 0 auto; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin: 2rem 0 0.75rem; }
.legal-content h3 { font-size: 1rem; font-weight: 600; margin: 1.5rem 0 0.5rem; }
.legal-content p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.6; margin-bottom: 0.75rem; }
.legal-content ul { color: var(--text-muted); font-size: 0.92rem; padding-left: 1.25rem; margin-bottom: 0.75rem; }
.legal-content li { margin-bottom: 0.35rem; line-height: 1.5; }

/* ── Dashboard ── */
.dash-empty { text-align: center; padding: 3rem 1rem; }
.dash-empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.dash-empty h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.dash-empty p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; }

/* ── Footer ── */
.footer { text-align: center; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; list-style: none; }
.footer-links a { color: var(--text-dim); text-decoration: none; font-size: 0.82rem; transition: color 0.15s; }
.footer-links a:hover { color: var(--text-muted); }
.footer-copy { font-size: 0.8rem; color: var(--text-dim); }

/* ── Hero Badge ── */
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid rgba(255,122,58,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ── Hero Proof Inline ── */
.hero-proof {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 1.25rem;
}
.check-sm { color: var(--green); font-weight: 700; margin-right: 0.35rem; }

/* ── Proof Num Unit ── */
.proof-unit { font-size: 1rem; font-weight: 500; }

/* ── Problem Section ── */
.problem-section { margin-top: 1rem; }
.problem-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .problem-grid { grid-template-columns: 1fr 1fr 1fr; } }
.problem-card { padding: 1.5rem; text-align: center; }
.problem-icon { font-size: 1.75rem; margin-bottom: 0.75rem; opacity: 0.8; }
.problem-text { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* ── Form Improvements ── */
.form-group { position: relative; }
.form-group label { display: block; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.35rem; color: var(--text); }
.form-req { color: var(--accent); font-weight: 700; }
.form-help { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.form-charcount { font-size: 0.72rem; color: var(--text-dim); text-align: right; margin-top: 0.35rem; }
.form-submit-row { display: flex; flex-direction: column; gap: 0.75rem; }
.form-trust { font-size: 0.8rem; color: var(--text-dim); margin: 0; }
.form-assurance { text-align: center; font-size: 0.8rem; color: var(--text-dim); margin-top: 1rem; }
.form-assurance a { color: var(--accent); text-decoration: none; }
.form-assurance a:hover { text-decoration: underline; }

/* ── Loading Progress ── */
.loading-progress { height: 4px; background: var(--bg-elev); border-radius: 999px; overflow: hidden; margin: 1rem auto; max-width: 280px; }
.loading-progress-bar { display: block; height: 100%; background: var(--accent); border-radius: 999px; width: 0%; transition: width 0.4s ease; }

/* ── Card Labels ── */
.card-label-free { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.75rem; }
.card-label-pro { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; margin-bottom: 0.75rem; }

/* ── Billing Toggle ── */
.billing-toggle { display: inline-flex; align-items: center; gap: 0; background: var(--bg-elev); border: 1px solid var(--border); border-radius: 999px; padding: 3px; margin-bottom: 2rem; }
.billing-btn { appearance: none; background: none; border: none; color: var(--text-muted); font: inherit; font-size: 0.85rem; font-weight: 600; padding: 0.5rem 1.25rem; border-radius: 999px; cursor: pointer; transition: all 0.2s; }
.billing-btn:hover { color: var(--text); }
.billing-btn.active { background: var(--accent); color: #1a1008; }
.billing-save { font-size: 0.65rem; font-weight: 700; color: var(--green); margin-left: 0.25rem; }
.billing-btn.active .billing-save { color: #1a1008; opacity: 0.7; }

/* ── Tier Billing Label ── */
.tier-billing {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

/* ── Tier For ── */
.tier-for { font-size: 0.8rem; color: var(--text-dim); margin-bottom: 1rem; }

/* ── PayPal Button Wrapper ── */
.paypal-button-wrap {
  margin-top: auto;
  padding-top: 1rem;
  min-height: 52px;
}

/* └── AI Agent Cards ── */
.agents-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .agents-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .agents-grid { grid-template-columns: 1fr 1fr; }
}

.agent-card {
  padding: 1.5rem;
  border-left: 3px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s, transform 0.15s;
}
.agent-card:hover {
  transform: translateY(-2px);
}

.agent-marketing { border-left-color: #ff7a3a; }
.agent-finance   { border-left-color: #22c55e; }
.agent-competitor{ border-left-color: #f5b13a; }
.agent-action    { border-left-color: #60a5fa; }

.agent-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.agent-icon svg {
  width: 22px;
  height: 22px;
}

.agent-marketing .agent-icon { background: rgba(255,122,58,0.12); color: #ff7a3a; }
.agent-finance   .agent-icon { background: rgba(34,197,94,0.12);  color: #22c55e; }
.agent-competitor .agent-icon { background: rgba(245,177,58,0.12); color: #f5b13a; }
.agent-action    .agent-icon { background: rgba(96,165,250,0.12); color: #60a5fa; }

.agent-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}
.agent-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Paywall Agent Teaser ── */
.paywall-agents-teaser {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.paywall-agents-label {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.paywall-agents-row {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.paywall-agent-pill {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid;
}
.paywall-agent-pill.agent-marketing  { color: #ff7a3a; border-color: rgba(255,122,58,0.25); background: rgba(255,122,58,0.06); }
.paywall-agent-pill.agent-finance    { color: #22c55e; border-color: rgba(34,197,94,0.25);  background: rgba(34,197,94,0.06); }
.paywall-agent-pill.agent-competitor { color: #f5b13a; border-color: rgba(245,177,58,0.25); background: rgba(245,177,58,0.06); }
.paywall-agent-pill.agent-action     { color: #60a5fa; border-color: rgba(96,165,250,0.25); background: rgba(96,165,250,0.06); }
.paywall-agents-link {
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: none;
}
.paywall-agents-link:hover { text-decoration: underline; }

/* ── Paywall Tiers (4-col inside overlay) ── */
.paywall-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 700px) {
  .paywall-tiers { grid-template-columns: 1fr 1fr 1fr 1fr; }
}
.paywall-tiers .tier-card { padding: 1rem; }
.paywall-tiers .tier-features { font-size: 0.8rem; gap: 0.35rem; }
.paywall-tiers .tier-features li { font-size: 0.8rem; }
.paywall-tiers .tier-price { font-size: 1.75rem; }

/* ── Guarantee Bar ── */
.guarantee-bar { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; padding: 0.75rem 1rem; font-size: 0.82rem; color: var(--text-dim); flex-wrap: wrap; }
.guarantee-bar a { color: var(--accent); text-decoration: none; }
.guarantee-bar a:hover { text-decoration: underline; }
.guarantee-icon { font-size: 0.9rem; }

/* ── Paywall Guarantee ── */
.paywall-guarantee { margin-top: 1.25rem; font-size: 0.8rem; color: var(--text-dim); }
.paywall-guarantee a { color: var(--accent); text-decoration: none; }

/* ── Comparison Table ── */
.comparison-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.comparison-table th { font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); text-align: center; }
.comparison-table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(30,45,74,0.5); color: var(--text-muted); text-align: center; }
.comparison-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.comparison-table tr:hover td { background: rgba(255,122,58,0.03); }

/* ── Final CTA ── */
.final-cta { padding-top: 1rem; }

/* ── Blog CTA ── */
.blog-cta { font-weight: 600; color: var(--accent); font-size: 0.88rem; margin-top: 0.75rem; }

/* ── Footer Brand ── */
.footer-brand { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 1rem; }

/* ── Error State Card ── */
.error-state { border-left: 3px solid var(--red); background: rgba(239,79,79,0.06); padding: 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; }
.error-state h2 { color: var(--red); font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.5rem; }
.error-state .actions { justify-content: flex-start; }

/* ── Results Sub ── */
#results-sub { margin-top: -1.5rem; margin-bottom: 2rem; }

/* ── Utility ── */
[hidden] { display: none !important; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* ── Selection ── */
::selection { background: rgba(255,122,58,0.25); color: var(--text); }

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