/* ─────────────────────────────────────────────────────────────────
   COACH RICH BLUEPRINT — Clean Design System
   White · Black · Blue — No gradients
   ───────────────────────────────────────────────────────────────── */

/* ── TOKENS ── */
:root {
  --white:       #FFFFFF;
  --black:       #0A0A0A;
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-300:    #D1D5DB;
  --gray-400:    #9CA3AF;
  --gray-500:    #6B7280;
  --gray-700:    #374151;
  --gray-900:    #111827;

  --blue:        #2563EB;
  --blue-dark:   #1D4ED8;
  --blue-light:  #EFF6FF;
  --blue-border: #BFDBFE;
  --blue-text:   #1E40AF;

  --green:       #16A34A;
  --green-light: #F0FDF4;
  --green-border:#BBF7D0;

  --red-light:   #FEF2F2;
  --red-border:  #FECACA;
  --red-text:    #B91C1C;

  --text-primary:   var(--black);
  --text-secondary: var(--gray-500);
  --text-muted:     var(--gray-400);

  --border:      var(--gray-200);
  --border-dark: var(--gray-300);

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  20px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:   0 8px 24px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.04);

  --transition:  all 0.18s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── PROGRESS BAR ── */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 1000;
  background: var(--blue);
  width: 0; transition: width 0.08s linear;
}

/* ── LAYOUT ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: 760px; }

/* ─────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  height: 60px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.95rem; color: var(--black);
}
.nav-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: url('CoachRich.png') center/cover;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 800; color: transparent;
}
.nav-links { display: flex; gap: 4px; }
.nav-link {
  font-size: 0.85rem; font-weight: 500; color: var(--gray-500);
  padding: 6px 14px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover { color: var(--black); background: var(--gray-100); }
.nav-cta {
  font-size: 0.85rem; font-weight: 600;
  background: var(--blue); color: white;
  padding: 8px 18px; border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-cta:hover { background: var(--blue-dark); }
@media(max-width:640px) { .nav-links { display:none; } .nav { padding: 0 20px; } }

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 28px 100px;
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

/* subtle dot grid */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(var(--gray-200) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.7;
}

/* fade dot grid at bottom */
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  color: var(--blue-text);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.05;
  color: var(--black);
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 .accent {
  color: var(--blue);
}

.hero-desc {
  font-size: 1.15rem; color: var(--gray-500); line-height: 1.75;
  max-width: 560px; margin: 0 auto 40px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 72px;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* ── HERO MOCKUP ── */
.hero-mockup {
  width: 100%; max-width: 820px;
  margin: 0 auto;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-mockup-frame {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  position: relative;
}
.mock-topbar {
  position: absolute; top: 0; left: 0; right: 0; height: 36px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 14px; gap: 6px;
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot-r { background: #FF5F57; }
.mock-dot-y { background: #FFBD2E; }
.mock-dot-g { background: #28CA41; }
.mock-url {
  flex: 1; margin-left: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px; height: 22px;
  display: flex; align-items: center; padding: 0 10px;
  font-size: 0.68rem; color: var(--gray-400); font-family: monospace;
}
.placeholder-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400);
  background: var(--white);
  border: 1px dashed var(--gray-300);
  padding: 6px 14px; border-radius: var(--radius-sm);
}
.placeholder-hint { font-size: 0.76rem; color: var(--gray-400); }

/* ── STAT STRIP ── */
.stat-strip {
  padding: 48px 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.stat-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media(max-width:640px) { .stat-strip-inner { grid-template-columns: repeat(2,1fr); } }

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 2.6rem; font-weight: 800; letter-spacing: -0.04em;
  color: var(--blue); line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--gray-500); margin-top: 6px; }

/* ─────────────────────────────────────────────────
   SECTION SCAFFOLDING
───────────────────────────────────────────────── */
section { padding: 96px 0; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px; display: block;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--black); line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem; color: var(--gray-500);
  line-height: 1.75; max-width: 560px;
}

/* ─────────────────────────────────────────────────
   COACH SECTION
───────────────────────────────────────────────── */
.coach-section {
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.coach-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}
@media(max-width:800px) { .coach-grid { grid-template-columns: 1fr; gap: 40px; } }

.coach-photo-wrap { position: relative; }
.coach-photo {
  width: 100%; aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: var(--gray-100);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; overflow: hidden; position: relative;
}
.coach-photo-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; font-weight: 800; color: white;
}
.coach-photo-badge {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  display: flex; align-items: center; gap: 10px;
  white-space: nowrap;
}
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
.badge-text { font-size: 0.8rem; font-weight: 600; color: var(--black); }
.badge-sub  { font-size: 0.7rem; color: var(--gray-500); }

.coach-content blockquote {
  font-size: 1.25rem; font-weight: 500; line-height: 1.7;
  color: var(--gray-700); font-style: normal;
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--blue);
}
.coach-meta { display: flex; align-items: center; gap: 14px; }
.coach-avatar-sm {
  width: 44px; height: 44px; border-radius: 50%;
  background: url('CoachRich.png') center/cover;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; color: transparent;
}
.coach-name { font-weight: 700; color: var(--black); font-size: 0.95rem; }
.coach-handle { font-size: 0.8rem; color: var(--blue); margin-top: 2px; font-weight: 500; }

/* ─────────────────────────────────────────────────
   OVERVIEW / PHASE GRID
───────────────────────────────────────────────── */
.overview-section { background: var(--white); }
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}
@media(max-width:700px) { .phase-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:440px) { .phase-grid { grid-template-columns: 1fr; } }

.phase-card {
  background: var(--white);
  padding: 32px 28px;
  transition: var(--transition);
}
.phase-card:hover { background: var(--gray-50); }

.phase-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.phase-num {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--blue); text-transform: uppercase; margin-bottom: 6px;
}
.phase-card h3 {
  font-size: 0.97rem; font-weight: 700; color: var(--black);
  margin-bottom: 8px;
}
.phase-card p { font-size: 0.84rem; color: var(--gray-500); line-height: 1.6; }

/* ─────────────────────────────────────────────────
   DAYS SECTION
───────────────────────────────────────────────── */
.days-section { background: var(--gray-50); border-top: 1px solid var(--border); }

.days-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}

.day-list { display: flex; flex-direction: column; gap: 16px; }

.day-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.18s, box-shadow 0.18s;
}
.day-card.visible { opacity: 1; transform: translateY(0); }
.day-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.day-card--featured { border-color: var(--blue); }

.day-header {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.day-pill {
  background: var(--blue);
  color: white; font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px;
  white-space: nowrap; flex-shrink: 0;
}
.day-title { font-weight: 700; font-size: 1rem; color: var(--black); }
.day-arrow { margin-left: auto; color: var(--gray-400); font-size: 0.9rem; transition: transform 0.18s; }
.day-card:hover .day-arrow { transform: translateX(4px); color: var(--blue); }

.day-body { padding: 28px 24px; }
.day-intro { font-size: 0.97rem; color: var(--gray-500); line-height: 1.75; margin-bottom: 24px; }

/* Image placeholder */
.day-image-placeholder {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px dashed var(--gray-300);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 24px;
}

/* Callout */
.callout {
  display: flex; gap: 14px;
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-md); padding: 16px 18px;
  margin-bottom: 24px;
}
.callout-avatar {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: url('CoachRich.png') center/cover;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800; color: transparent;
}
.callout-name {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  color: var(--blue-text); text-transform: uppercase; margin-bottom: 5px;
}
.callout-text { font-size: 0.9rem; color: var(--blue-text); line-height: 1.65; font-style: italic; }

/* Steps */
.step-heading {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  color: var(--gray-400); text-transform: uppercase;
  margin: 22px 0 12px;
}
.step-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.step-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.92rem; color: var(--gray-700); line-height: 1.55;
}
.step-check {
  width: 20px; height: 20px; border-radius: 5px; flex-shrink: 0;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; color: var(--green); margin-top: 2px;
}

/* Compare pills */
.compare-row { display: flex; align-items: center; gap: 8px; margin: 6px 0; flex-wrap: wrap; }
.cpill {
  font-size: 0.8rem; font-weight: 500;
  padding: 4px 12px; border-radius: 100px;
}
.cpill--bad  { background: var(--red-light);   color: var(--red-text);  border: 1px solid var(--red-border); }
.cpill--good { background: var(--green-light);  color: var(--green);     border: 1px solid var(--green-border); }
.cpill-arrow { color: var(--gray-400); font-size: 0.85rem; }

/* Tools */
.tool-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 16px 0; }
.tool-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--black); font-size: 0.82rem; font-weight: 600;
  padding: 7px 14px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.free-badge {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  background: var(--green-light); color: var(--green);
  border: 1px solid var(--green-border);
  padding: 2px 7px; border-radius: 4px;
}

/* Schedule table */
.schedule-table {
  width: 100%; border-collapse: collapse;
  margin: 14px 0; font-size: 0.84rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.schedule-table thead th {
  text-align: left; padding: 10px 14px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--gray-500); text-transform: uppercase;
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}
.schedule-table tbody tr { border-bottom: 1px solid var(--gray-100); }
.schedule-table tbody tr:last-child { border-bottom: none; }
.schedule-table tbody tr:hover { background: var(--gray-50); }
.schedule-table td { padding: 10px 14px; color: var(--gray-700); }
.stype-badge {
  display: inline-flex; padding: 2px 10px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 600;
}

/* Hook grid */
.hook-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 8px; margin: 14px 0; }
@media(max-width:700px) { .hook-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:440px) { .hook-grid { grid-template-columns: repeat(2,1fr); } }
.hook-card {
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm);
  padding: 10px; text-align: center;
  font-size: 0.73rem; font-weight: 700; color: var(--blue-text);
  letter-spacing: 0.04em;
}

/* Formula steps */
.formula-steps { display: flex; flex-direction: column; gap: 10px; margin: 14px 0; }
.formula-step {
  display: flex; align-items: center; gap: 14px;
  background: var(--gray-50);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 14px 16px;
}
.formula-num {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); color: white;
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.formula-step-title { font-weight: 600; color: var(--black); font-size: 0.9rem; }
.formula-step-desc  { font-size: 0.8rem; color: var(--gray-500); margin-top: 2px; }

/* Mini stats */
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 18px 0; }
.mini-stat {
  text-align: center;
  background: var(--gray-50);
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 10px;
}
.mini-stat-num {
  font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--blue); line-height: 1;
}
.mini-stat-label { font-size: 0.72rem; color: var(--gray-500); margin-top: 4px; }

/* Income ladder */
.ladder { display: flex; flex-direction: column; gap: 6px; margin: 14px 0; }
.rung {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.rung:hover { border-color: var(--blue); background: var(--blue-light); }
.rung-price {
  font-size: 1.1rem; font-weight: 800; color: var(--blue);
  min-width: 60px; font-variant-numeric: tabular-nums;
}
.rung-label { color: var(--gray-600, #4B5563); font-size: 0.88rem; flex: 1; }
.rung-arrow { color: var(--gray-300); font-size: 0.85rem; }

/* Math table */
.math-table { width: 100%; border-collapse: collapse; margin: 14px 0; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.math-table tr { border-bottom: 1px solid var(--gray-100); }
.math-table tr:last-child { border-bottom: none; }
.math-table td { padding: 12px 16px; font-size: 0.88rem; color: var(--gray-700); }
.math-table td:last-child { text-align: right; font-weight: 700; color: var(--black); }
.math-table tr.total { background: var(--blue-light); }
.math-table tr.total td { color: var(--blue-text); font-size: 0.92rem; font-weight: 700; }
.math-table tr.total td:last-child { color: var(--blue); }

/* Win box */
.win-box {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-md); padding: 16px 18px; margin-top: 24px;
}
.win-icon { font-size: 1.2rem; flex-shrink: 0; line-height: 1.3; }
.win-text { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }
.win-text strong { color: var(--green); }

.win-box--featured {
  background: var(--blue-light);
  border-color: var(--blue-border);
}
.win-box--featured .win-text { color: var(--blue-text); }
.win-box--featured .win-text strong { color: var(--blue); }

/* ─────────────────────────────────────────────────
   SOCIAL PROOF
───────────────────────────────────────────────── */
.proof-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
@media(max-width:640px) { .proof-grid { grid-template-columns: 1fr; } }

.proof-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.proof-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); transform: translateY(-2px); }

.proof-image {
  width: 100%; aspect-ratio: 4/3;
  background: var(--gray-50);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; border-bottom: 1px solid var(--border);
}
.proof-image-icon { font-size: 2.2rem; }
.proof-body { padding: 20px; }
.proof-result {
  font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--blue); margin-bottom: 4px;
}
.proof-timeline { font-size: 0.76rem; color: var(--blue); font-weight: 600; margin-bottom: 10px; }
.proof-quote { font-size: 0.85rem; color: var(--gray-500); line-height: 1.65; }
.proof-person { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.proof-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: white;
}
.proof-name  { font-size: 0.8rem; font-weight: 600; color: var(--black); }
.proof-niche { font-size: 0.72rem; color: var(--gray-500); }

/* ─────────────────────────────────────────────────
   REMINDER
───────────────────────────────────────────────── */
.reminder-section { background: var(--gray-50); border-top: 1px solid var(--border); }
.reminder-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 64px 48px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
/* Blue top accent line */
.reminder-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
}
@media(max-width:600px) { .reminder-box { padding: 40px 24px; } }
.reminder-box p {
  font-size: 1.05rem; color: var(--gray-500);
  line-height: 1.75; max-width: 520px; margin: 0 auto 44px;
}
.reminder-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media(max-width:600px) { .reminder-stats { grid-template-columns: repeat(2,1fr); } }
.reminder-stat {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 20px 10px;
}
.reminder-num {
  font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--blue); line-height: 1;
}
.reminder-label { font-size: 0.74rem; color: var(--gray-500); margin-top: 6px; }

/* ─────────────────────────────────────────────────
   FINAL CTA
───────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  background: var(--blue);
  border-top: 1px solid var(--blue-dark);
}
.cta-glow-orb { display: none; }

.cta-section .section-eyebrow { color: rgba(255,255,255,0.6); }
.cta-section .section-title { color: var(--white); }
.cta-section p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
.cta-section p strong { color: var(--white); }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 0.92rem;
  padding: 12px 24px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; transition: var(--transition);
  text-decoration: none; line-height: 1;
}
.btn--primary {
  background: var(--blue);
  color: white;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--blue-dark); }

/* In CTA section, primary btn is white */
.cta-section .btn--primary {
  background: var(--white);
  color: var(--blue);
}
.cta-section .btn--primary:hover { background: var(--gray-100); }

.btn--outline {
  background: transparent;
  color: var(--gray-500);
  border: 1px solid var(--border);
}
.btn--outline:hover { color: var(--black); border-color: var(--gray-400); background: var(--gray-50); }

/* Outline btn inside blue CTA */
.cta-section .btn--outline {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.3);
  background: transparent;
}
.cta-section .btn--outline:hover {
  color: white;
  border-color: white;
  background: rgba(255,255,255,0.08);
}

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.footer {
  padding: 40px 0;
  background: var(--black);
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-align: center;
}
.footer-brand {
  font-weight: 700; font-size: 1rem; color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.footer p { font-size: 0.8rem; color: var(--gray-500); }
.footer-link { color: var(--blue); font-weight: 600; }

/* ─────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
