/* ═══════════════════════════════════════════
   TOKENS & RESET
═══════════════════════════════════════════ */
:root {
  --primary:    #212121;
  --highlight:  #3CE000;
  --cream:      #F7F5F0;
  --white:      #ffffff;
  --font-display: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.22s ease;
  --radius:     14px;
  --max-w:      1200px;

  /* Page-specific accent */
  --opt-out:    #3CE000;
  --opt-in:     #3CE000;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth; font-size: 16px }
body {
  font-family: var(--font-display);
  background: var(--cream);
  color: var(--primary);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none }
img { max-width: 100%; height: auto; display: block }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);

}
.reveal.visible { opacity: 1; transform: none; will-change: auto }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);

}
.reveal-left.visible { opacity: 1; transform: none; will-change: auto }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);

}
.reveal-right.visible { opacity: 1; transform: none; will-change: auto }

/* Below-fold paint deferral */
.cv-auto {
  content-visibility: auto;
  contain-intrinsic-size: 0 700px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right {
    opacity: 1; transform: none; transition: none;
  }
  html { scroll-behavior: auto }
}

/* ═══════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════ */
.page-hero {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(60,224,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--highlight); margin-bottom: 20px;
  border: 1px solid rgba(60,224,0,0.3); border-radius: 50px;
  padding: 5px 14px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: #ffffff;
  letter-spacing: -0.03em; line-height: 1.15;
  max-width: 760px; margin: 0 auto 20px;
}
.page-hero h1 em {
  font-style: normal;
  color: #3CE000;
}
.page-hero .hero-sub {
  font-size: 17px; color: #999; line-height: 1.7;
  max-width: 560px; margin: 0 auto 48px;
}
.hero-choice-strip {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px; padding: 10px 22px;
  font-size: 14px; font-weight: 600; color: #ffffff;
}
.hero-badge .badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  flex-shrink: 0;
}
.hero-badge.opt-out .badge-dot { background: #aaa }
.hero-badge.opt-in  .badge-dot { background: var(--highlight) }

/* ═══════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════ */
.section-wrap {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
section { padding: 100px 0 }
section:nth-child(odd) { background: var(--cream) }
section:nth-child(even) { background: #fff }
section.page-hero { background: #212121; padding: 140px 0 80px }

/* Two-column alternate layout */
.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.alt-row.reverse { direction: rtl }
.alt-row.reverse > * { direction: ltr }

.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--highlight); margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem);
  font-weight: 800; letter-spacing: -0.025em; line-height: 1.2;
  color: var(--primary); margin-bottom: 20px;
}
.section-body {
  font-size: 16px; line-height: 1.8; color: #555;
}
.section-body + .section-body { margin-top: 14px }

/* Highlight callout inside body copy */
.inline-stat {
  display: inline-block;
  background: rgba(60,224,0,0.1);
  color: #1a4d00;
  font-weight: 700; border-radius: 6px;
  padding: 1px 8px;
}

/* ═══════════════════════════════════════════
   VISUAL CARDS, replace old PNGs
═══════════════════════════════════════════ */

/* ── Opt-Out tool checklist card ── */
.tool-card {
  background: var(--primary);
  border-radius: 20px;
  padding: 36px 36px 28px;
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(60,224,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.tool-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--highlight); margin-bottom: 18px;
}
.tool-card-title {
  font-size: 19px; font-weight: 700; color: var(--white);
  margin-bottom: 24px; line-height: 1.3;
}
.tool-list { list-style: none; }
.tool-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px; color: #bbb; line-height: 1.4;
}
.tool-list li:last-child { border-bottom: none }
.tool-list .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(60,224,0,0.15);
  border: 1px solid rgba(60,224,0,0.35);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.tool-list .check svg { width: 10px; height: 10px; stroke: var(--highlight); fill: none; stroke-width: 2.5 }
.tool-card-badge {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(60,224,0,0.12); border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px; font-weight: 600; color: var(--highlight);
}

/* ── Opt-In "done for you" card ── */
.dfy-card {
  background: linear-gradient(145deg, #1a2a10 0%, #0d1a08 100%);
  border: 1px solid rgba(60,224,0,0.2);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.dfy-card::after {
  content: '';
  position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(60,224,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.dfy-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--highlight); margin-bottom: 18px;
}
.dfy-card-title {
  font-size: 19px; font-weight: 700; color: var(--white); margin-bottom: 24px; line-height: 1.3;
}
.dfy-steps { list-style: none }
.dfy-steps li {
  display: flex; align-items: center; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px; color: #bbb;
}
.dfy-steps li:last-child { border-bottom: none }
.dfy-steps .step-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--highlight); color: #0a1a04;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.earn-pill {
  margin-top: 24px;
  display: flex; align-items: center; gap: 14px;
  background: rgba(60,224,0,0.08); border: 1px solid rgba(60,224,0,0.25);
  border-radius: 12px; padding: 14px 18px;
}
.earn-pill .earn-pct {
  font-size: 36px; font-weight: 900; color: var(--highlight);
  letter-spacing: -0.03em; line-height: 1;
}
.earn-pill .earn-desc { font-size: 13px; color: #aaa; line-height: 1.5 }
.earn-pill .earn-desc strong { color: var(--white); display: block }

/* ── Balance scale card (Ben Franklin) ── */
.scale-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.scale-header {
  background: var(--primary);
  padding: 22px 28px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--highlight);
  display: flex; align-items: center; gap: 10px;
}
.scale-icon {
  width: 28px; height: 28px; flex-shrink: 0;
}
.scale-cols {
  display: grid; grid-template-columns: 1fr 1fr;
}
.scale-col {
  padding: 24px 24px;
}
.scale-col + .scale-col { border-left: 1px solid rgba(0,0,0,0.08) }
.scale-col-head {
  font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 18px; padding-bottom: 10px;
  border-bottom: 2px solid;
}
.scale-col.out .scale-col-head { color: #888; border-color: #ddd }
.scale-col.in  .scale-col-head { color: #1a6600; border-color: var(--highlight) }
.scale-row {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; line-height: 1.5; color: #555;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.scale-row:last-child { border-bottom: none }
.scale-row .sr-icon { flex-shrink: 0; width: 16px; font-size: 12px; color: #aaa }
.scale-col.in .scale-row .sr-icon { color: var(--highlight) }

/* ── Time value card ── */
.time-card {
  background: #2a2a2a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.time-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(60,224,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.time-card-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #999; margin-bottom: 20px;
}
.time-stat-row {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.time-stat-row:last-child { border-bottom: none }
.time-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(60,224,0,0.1);
}
.time-icon-wrap svg { width: 20px; height: 20px; stroke: #3CE000; fill: none; stroke-width: 2 }
.time-stat-label { font-size: 14px; color: #ffffff; line-height: 1.4; font-weight: 600 }
.time-stat-sub   { font-size: 12px; color: #bbb; margin-top: 2px }

/* ── Scale-up card ── */
.scale-up-card {
  background: linear-gradient(145deg, #f7fdf2 0%, #f0fae6 100%);
  border: 1px solid rgba(60,224,0,0.15);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.scale-up-card::after {
  content: '';
  position: absolute; bottom: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(60,224,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.scale-up-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #3a7a00; margin-bottom: 20px;
}
.scale-metric-row {
  display: flex; align-items: center; gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(60,224,0,0.15);
}
.scale-metric-row:last-child { border-bottom: none }
.scale-metric-val {
  font-size: 26px; font-weight: 900; color: var(--primary);
  letter-spacing: -0.03em; min-width: 64px;
}
.scale-metric-desc { font-size: 14px; color: #444; line-height: 1.4 }
.scale-metric-desc strong { color: #1a4d00; display: block }

/* ═══════════════════════════════════════════
   COMPARISON SECTION, Ben Franklin
═══════════════════════════════════════════ */
section.comparison-section { background: var(--primary) }
.comparison-section .section-eyebrow { color: var(--highlight) }
.comparison-section .section-title { color: var(--white) }
.comparison-section .section-body { color: #999 }

/* ═══════════════════════════════════════════
   "THERE'S MORE" SECTION
═══════════════════════════════════════════ */
section.more-section {
  background: var(--cream);
}
.more-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.more-top {
  text-align: center;
  margin-bottom: 64px;
}
.more-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--highlight); margin-bottom: 14px;
}
.more-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--primary); line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  display: flex; flex-direction: column; gap: 12px;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
  border-color: rgba(60,224,0,0.3);
}
.feature-card-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--highlight);
}
.feature-card-title {
  font-size: 16px; font-weight: 700; color: var(--primary); line-height: 1.3;
}
.feature-card-body {
  font-size: 13px; color: #777; line-height: 1.6;
}

/* ═══════════════════════════════════════════
   DEMO BANNER
═══════════════════════════════════════════ */
.demo-banner {
  background: var(--primary);
  padding: 80px 24px;
  text-align: center;
}
.demo-banner h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 16px;
}
.demo-banner p { font-size: 16px; color: #999; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7 }
.btn-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--highlight); color: #0a1a04;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-cta:hover { background: #2dc700; box-shadow: 0 6px 24px rgba(60,224,0,0.45); transform: translateY(-1px) }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .alt-row { grid-template-columns: 1fr; gap: 48px }
  .alt-row.reverse { direction: ltr }
  .features-grid { grid-template-columns: 1fr 1fr }
}
@media (max-width: 768px) {
  section { padding: 72px 0 }
  .page-hero { padding: 120px 24px 64px }
  .scale-cols { grid-template-columns: 1fr }
  .scale-col + .scale-col { border-left: none; border-top: 1px solid rgba(0,0,0,0.08) }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr }
  .hero-choice-strip { flex-direction: column; align-items: center }
}
