:root {
  --bg: #0c0c0f;
  --bg-surface: #141418;
  --bg-card: #1a1a20;
  --bg-card-hover: #22222a;
  --fg: #e8e6e1;
  --fg-muted: #8a877f;
  --fg-dim: #5a5850;
  --accent: #d4a24e;
  --accent-glow: rgba(212, 162, 78, 0.12);
  --accent-bright: #e8b85a;
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(212, 162, 78, 0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(12, 12, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  color: var(--accent);
  font-size: 1.25rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}

/* Hero */
.hero {
  padding: 10rem 2rem 6rem;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-glow) 0%, transparent 60%),
    var(--bg);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--border);
}

/* Trades */
.trades {
  padding: 6rem 2rem;
}

.trades-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  max-width: 700px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  max-width: 600px;
  line-height: 1.7;
}

.trades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.trade-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: all 0.25s ease;
}

.trade-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.trade-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}

.trade-card-cta {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
}

.trade-card-soon {
  opacity: 0.55;
  cursor: default;
}

.trade-card-soon:hover {
  transform: none;
  border-color: var(--border);
  background: var(--bg-card);
}

.trade-card-soon-label {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--fg-dim);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trade-emoji {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.trade-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trade-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* How */
.how {
  padding: 6rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.how-item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.how-number {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.how-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.how-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* Closing */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 40% at 50% 100%, var(--accent-glow) 0%, transparent 60%),
    var(--bg);
}

.closing-inner {
  max-width: 750px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
}

/* Footer */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--fg-dim);
}

/* =============================================
   COMPARISON PAGE STYLES
   ============================================= */

/* Nav links for comparison pages */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }
.nav-link-active { color: var(--accent) !important; }

/* Comparison Hero */
.comp-hero {
  padding: 9rem 2rem 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, var(--accent-glow) 0%, transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.comp-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.comp-breadcrumb {
  font-size: 0.82rem;
  color: var(--fg-dim);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb-link {
  color: var(--fg-dim);
  text-decoration: none;
}
.breadcrumb-link:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--fg-dim); }
.breadcrumb-current { color: var(--fg-muted); }

.comp-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.comp-subhead {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 2rem;
}

.comp-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.comp-meta-tag {
  font-size: 0.8rem;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 0.3rem 0.8rem;
  letter-spacing: 0.01em;
}

/* Table of Contents Bar */
.toc-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 2rem;
  position: sticky;
  top: 65px;
  z-index: 90;
}

.toc-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.toc-inner::-webkit-scrollbar { display: none; }

.toc-label {
  font-size: 0.78rem;
  color: var(--fg-dim);
  white-space: nowrap;
  flex-shrink: 0;
}

.toc-link {
  font-size: 0.82rem;
  color: var(--fg-muted);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.toc-link:hover {
  color: var(--fg);
  border-bottom-color: var(--border-accent);
}

.toc-link-verdict {
  color: var(--accent);
  margin-left: auto;
  flex-shrink: 0;
}

/* Main Layout */
.comp-main {
  padding: 4rem 2rem 6rem;
}

.comp-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Category Section */
.cat-section {
  margin-bottom: 4rem;
}

.cat-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.cat-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cat-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 700px;
}

/* Tool Card */
.tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.2s;
}

.tool-card-winner {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212,162,78,0.04) 100%);
}

.tool-card:hover {
  border-color: var(--border-accent);
}

.tool-card-top {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.tool-logo-col {
  flex-shrink: 0;
}

.tool-logo {
  width: 52px;
  height: 52px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.tool-identity {
  flex: 1;
  min-width: 0;
}

.tool-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.4rem;
}

.tool-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.verdict-badge {
  font-size: 0.72rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.verdict-winner {
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

.verdict-runner {
  background: rgba(255,255,255,0.04);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.verdict-skip {
  background: rgba(200,60,60,0.08);
  color: #e06060;
  border: 1px solid rgba(200,60,60,0.2);
}

.verdict-situational {
  background: rgba(100,140,220,0.08);
  color: #8aabdd;
  border: 1px solid rgba(100,140,220,0.2);
}

.tool-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.tool-pricing {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.82rem;
}

.pricing-label {
  color: var(--fg-dim);
  font-weight: 500;
  white-space: nowrap;
}

.pricing-value {
  color: var(--fg);
}

/* Pros / Cons */
.tool-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.pros-header, .cons-header {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pros-header { color: #6abf7a; }
.cons-header { color: #e06060; }

.pros-list, .cons-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pros-list li, .cons-list li {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6abf7a;
  font-size: 0.8rem;
  top: 0.05rem;
}

.cons-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #e06060;
  font-size: 0.8rem;
  top: 0.05rem;
}

/* Verdict Block */
.tool-verdict-block {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.verdict-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.verdict-text {
  font-size: 0.95rem;
  color: var(--fg);
  line-height: 1.7;
}

.affiliate-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--accent);
  opacity: 0.8;
}

/* Bottom Line */
.bottom-line-section {
  margin-bottom: 3rem;
}

.bottom-line-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 2.5rem;
  position: relative;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(212,162,78,0.05) 100%);
}

.bottom-line-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.bottom-line-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.bottom-line-text {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* Related Pages */
.related-section {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.related-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.related-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s;
}

.related-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-accent);
}

.related-card-icon {
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.related-card-label {
  font-size: 0.92rem;
  color: var(--fg);
  flex: 1;
}

.related-card-arrow {
  color: var(--fg-dim);
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 1rem 1.25rem; }
  .nav-tag { display: none; }
  .hero { padding: 8rem 1.25rem 4rem; }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }
  .stat-divider { width: 100%; height: 1px; }
  .trades { padding: 4rem 1.25rem; }
  .trades-grid {
    grid-template-columns: 1fr;
  }
  .how { padding: 4rem 1.25rem; }
  .how-grid {
    grid-template-columns: 1fr;
  }
  .closing { padding: 5rem 1.25rem; }
  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  /* Comparison page mobile */
  .nav-links { display: none; }
  .comp-hero { padding: 7rem 1.25rem 3rem; }
  .comp-meta-row { gap: 0.5rem; }
  .comp-main { padding: 2.5rem 1.25rem 4rem; }
  .tool-card { padding: 1.5rem; }
  .tool-card-top { flex-direction: column; gap: 1rem; }
  .tool-pros-cons { grid-template-columns: 1fr; gap: 1.25rem; }
  .toc-bar { top: 60px; padding: 0.75rem 1.25rem; }
  .bottom-line-card { padding: 1.75rem; }
  .ad-leaderboard { display: none; }
  .sticky-email-inner { flex-direction: column; gap: 0.75rem; padding: 1.25rem; }
  .sticky-email-text { font-size: 0.85rem; }
  .homepage-email-section { padding: 4rem 1.25rem; }
}

/* =============================================
   AFFILIATE CTA BUTTONS
   ============================================= */

.tool-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tool-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.tool-cta-btn-primary {
  background: var(--accent);
  color: #0c0c0f;
  border: 1px solid var(--accent);
}

.tool-cta-btn-primary:hover {
  background: var(--accent-bright);
  border-color: var(--accent-bright);
  transform: translateY(-1px);
}

.tool-cta-btn-secondary {
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.tool-cta-btn-secondary:hover {
  color: var(--fg);
  border-color: var(--border-accent);
  background: var(--accent-glow);
}

.affiliate-note {
  font-size: 0.8rem;
  color: #6abf7a;
  opacity: 0.9;
}

/* =============================================
   AD SLOTS
   ============================================= */

.ad-slot {
  text-align: center;
  padding: 0.75rem 2rem;
}

.ad-leaderboard {
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.ad-inline {
  margin: 1.5rem 0;
}

.ad-placeholder {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg-dim);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.ad-placeholder[data-ad-size="728x90"] {
  width: min(728px, 100%);
  height: 90px;
}

.ad-placeholder[data-ad-size="300x250"] {
  width: 300px;
  height: 250px;
  margin: 0 auto;
}

.ad-label {
  color: var(--fg-dim);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =============================================
   FTC DISCLOSURE
   ============================================= */

.ftc-disclosure {
  background: rgba(212, 162, 78, 0.04);
  border-bottom: 1px solid var(--border-accent);
}

.ftc-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 2rem;
  font-size: 0.78rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

.ftc-inner strong {
  color: var(--fg-muted);
}

/* =============================================
   EMAIL CAPTURE
   ============================================= */

.email-capture-section {
  margin-bottom: 3rem;
}

.email-capture-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-surface) 0%, rgba(212,162,78,0.06) 100%);
}

.email-capture-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.email-capture-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.email-capture-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 1.75rem;
}

.email-capture-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.email-capture-row {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  max-width: 480px;
}

.email-input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.email-input:focus {
  border-color: var(--border-accent);
}

.email-input::placeholder {
  color: var(--fg-dim);
}

.email-btn {
  padding: 0.65rem 1.4rem;
  background: var(--accent);
  color: #0c0c0f;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}

.email-btn:hover {
  background: var(--accent-bright);
  transform: translateY(-1px);
}

.email-fine-print {
  font-size: 0.75rem;
  color: var(--fg-dim);
}

/* Homepage email section */
.homepage-email-section {
  padding: 6rem 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.homepage-email-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.homepage-email-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.homepage-email-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.homepage-email-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.homepage-email-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* =============================================
   STICKY EMAIL BAR
   ============================================= */

.sticky-email-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-accent);
  transform: translateY(100%);
  transition: transform 0.35s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.sticky-email-bar-visible {
  transform: translateY(0);
}

.sticky-email-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.sticky-email-text {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.sticky-email-form {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  max-width: 440px;
}

.sticky-email-input {
  flex: 1;
  padding: 0.55rem 0.9rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
}

.sticky-email-input:focus { border-color: var(--border-accent); }

.sticky-email-btn {
  padding: 0.55rem 1.1rem;
  background: var(--accent);
  color: #0c0c0f;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.sticky-email-btn:hover { background: var(--accent-bright); }

.sticky-email-close {
  background: none;
  border: none;
  color: var(--fg-dim);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.25rem;
  margin-left: auto;
  flex-shrink: 0;
}

.sticky-email-close:hover { color: var(--fg); }

/* =============================================
   FOOTER DISCLOSURE
   ============================================= */

.footer-disclosure {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.footer-disclosure-text {
  font-size: 0.75rem;
  color: var(--fg-dim);
  line-height: 1.6;
  max-width: 800px;
}