/* ═══════════════════════════════════════════════════════
   FINANCIAL SCORING — WEBINAR FUNNEL
   Brand: #599742 (green), #3E7364 (dark green), #8FCD78 (light)
   Font: Inter (professional, clean, fintech-standard)
═══════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --green:        #599742;
  --green-dark:   #3E7364;
  --green-light:  #8FCD78;
  --green-glow:   rgba(89, 151, 66, 0.30);
  --green-subtle: #f0fdf4;

  --dark:         #0d1a10;
  --dark-2:       #112016;
  --dark-card:    #1a2e20;
  --dark-alt:     #0f1f16;

  --white:        #ffffff;
  --off-white:    #f8f9fa;
  --light:        #f3f4f6;
  --border:       rgba(89, 151, 66, 0.15);
  --border-light: rgba(0,0,0,0.09);

  /* Neutral, professional text — no green tint */
  --text:         #111827;
  --text-body:    #374151;
  --text-muted:   #6b7280;
  --text-light:   rgba(255,255,255,0.78);
  --text-lighter: rgba(255,255,255,0.48);

  --font-head:    'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius:       10px;
  --radius-lg:    18px;
  --radius-xl:    24px;

  --shadow-sm:    0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --shadow-green: 0 6px 28px rgba(89,151,66,0.28);

  --transition:   all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── UTILITY ── */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.hidden { display: none !important; }
.d-md-block { display: none; }
@media (min-width: 768px) { .d-md-block { display: block; } }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn--green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 14px 30px;
  font-size: 1rem;
  box-shadow: var(--shadow-green);
}
.btn--green:hover {
  background: linear-gradient(135deg, #6ab550 0%, #4a9078 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(89,151,66,0.45);
}
.btn--green:active { transform: translateY(0); }
.btn--lg { padding: 16px 36px; font-size: 1.05rem; }
.btn--xl { padding: 18px 44px; font-size: 1.15rem; letter-spacing: 0.01em; }
.btn--full { width: 100%; justify-content: center; }

.btn--pulse {
  animation: pulse-glow 2.4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(89,151,66,0.30); }
  50%       { box-shadow: 0 12px 48px rgba(89,151,66,0.55), 0 0 0 8px rgba(89,151,66,0.08); }
}

/* ── EYEBROW / LABELS ── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(89,151,66,0.10);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(89,151,66,0.20);
}
.eyebrow--light {
  color: var(--green-light);
  background: rgba(142,205,120,0.15);
  border-color: rgba(142,205,120,0.25);
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 64px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 2.65rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.22;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-header--light h2 { color: var(--white); }
.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.section-sub--light { color: var(--text-light); }

/* ── SECTION BACKGROUNDS ── */
.section { padding: 96px 0; }
.section--white    { background: var(--white); }
.section--light    { background: var(--light); }
.section--off-white { background: var(--off-white); }
.section--dark     { background: var(--dark); }
.section--dark-alt { background: var(--dark-alt); }

/* ════════════════════════════════════════
   URGENCY BAR
════════════════════════════════════════ */
.urgency-bar {
  background: linear-gradient(90deg, #0a1a0d 0%, #1a3a1a 50%, #0a1a0d 100%);
  padding: 10px 24px;
  position: relative;
  z-index: 1000;
  overflow: hidden;
}
.urgency-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(89,151,66,0.1), transparent);
  animation: shimmer-bar 3s linear infinite;
}
@keyframes shimmer-bar {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.urgency-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}
.urgency-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}
.urgency-text strong { color: var(--white); }
.urgency-cta {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-light);
  padding: 4px 14px;
  border: 1px solid rgba(142,205,120,0.4);
  border-radius: 100px;
  transition: var(--transition);
}
.urgency-cta:hover {
  background: rgba(142,205,120,0.15);
  color: var(--white);
}
.live-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #fff;
  background: rgba(89,151,66,0.6);
  padding: 3px 10px 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(142,205,120,0.4);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: live-pulse 1.5s ease-out infinite;
  display: inline-block;
  flex-shrink: 0;
}
.live-dot--sm { width: 6px; height: 6px; }
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  70%  { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.nav.nav--scrolled {
  box-shadow: var(--shadow-md);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.nav__logo {
  flex-shrink: 0;
  margin-right: auto;
}
.nav__links {
  display: flex;
  gap: 4px;
}
.nav__link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav__link:hover,
.nav__link--active {
  color: var(--green);
  background: var(--green-subtle);
}
.nav__cta { font-size: 0.92rem; padding: 10px 22px; }
@media (max-width: 767px) {
  .nav__links { display: none; }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #081408 0%, #0d2110 40%, #0a1f18 100%);
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.hero__glow {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(89,151,66,0.18) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: glow-breathe 6s ease-in-out infinite;
}
@keyframes glow-breathe {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.1); }
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 40px 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-light);
  background: rgba(89,151,66,0.15);
  border: 1px solid rgba(89,151,66,0.35);
  padding: 8px 20px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.badge-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: live-pulse 1.5s ease-out infinite;
  flex-shrink: 0;
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  max-width: 860px;
  letter-spacing: -0.025em;
}
.hero__headline-num {
  color: var(--white);
  font-style: normal;
  position: relative;
  display: inline-block;
}
.hero__headline-accent {
  color: var(--green-light);
  position: relative;
  display: inline-block;
}
.hero__headline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 2px;
  transform-origin: left;
  animation: underline-grow 1.2s var(--ease-out) 0.8s forwards;
  transform: scaleX(0);
}
@keyframes underline-grow {
  to { transform: scaleX(1); }
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  line-height: 1.75;
}
.hero__sub strong { color: var(--green-light); font-weight: 600; }
.hero__ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero__micro {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* COUNTDOWN */
.countdown {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px 36px;
  backdrop-filter: blur(8px);
}
.countdown__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 12px;
}
.countdown__blocks {
  display: flex;
  align-items: center;
  gap: 8px;
}
.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}
.countdown__num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  min-width: 2ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.countdown__unit {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.countdown__colon {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: opacity 0.3s;
  z-index: 2;
}
.hero__scroll-hint:hover { opacity: 0.7; }
.hero__scroll-hint span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-chevron { animation: bounce-down 2s ease-in-out infinite; }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  background: var(--text);
  padding: 0;
  border-bottom: 1px solid rgba(89,151,66,0.2);
}
.stats-bar__inner {
  display: flex;
  align-items: stretch;
  min-height: 100px;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(89,151,66,0.08); }
.stat-item__nums {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.stat-item__num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-item__suffix {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
}
.stat-item__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
  text-align: center;
}
.stat-divider { display: none; }
@media (max-width: 600px) {
  .stats-bar__inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-item:last-child { border-bottom: none; }
}

/* ════════════════════════════════════════
   VIDEO SECTION
════════════════════════════════════════ */
.video-section .section-header { margin-bottom: 48px; }
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  background: #0a1a0d;
}
.video-thumbnail-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(160deg, #0a1a0d 0%, #1a3d1a 50%, #0a140d 100%);
  transition: var(--transition);
}
.video-thumbnail-overlay:hover .video-play-btn { transform: scale(1.05); }
.video-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(89,151,66,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(62,115,100,0.1) 0%, transparent 60%);
}
.video-labels {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.video-label-top {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-head);
}
.video-label-main {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.label-line-1 {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.label-line-2 {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.label-line-3 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255,255,255,0.85);
  line-height: 1;
}
.label-accent { color: var(--green-light); }

.video-play-btn {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform 0.3s var(--ease-out);
}
.video-play-ring {
  position: absolute;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(89,151,66,0.4);
  animation: ring-pulse 2.5s ease-out infinite;
}
@keyframes ring-pulse {
  0%   { transform: scale(1);    opacity: 0.8; }
  100% { transform: scale(1.8);  opacity: 0; }
}
.video-play-icon {
  width: 72px; height: 72px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(89,151,66,0.5));
}
.video-play-btn span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}
.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ════════════════════════════════════════
   GPS EVOLUTION SECTION
════════════════════════════════════════ */
.evo-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .evo-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .evo-arrow { display: none; }
}
.evo-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px 52px;
  border: 2px solid var(--border-light);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.evo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.evo-card--new {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(89,151,66,0.08);
}
.evo-card--new:hover {
  box-shadow: 0 0 0 4px rgba(89,151,66,0.12), var(--shadow-lg);
}
.evo-card__recommended {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-green);
}
.evo-card__icon { margin-bottom: 20px; width: 52px; height: 52px; }
.evo-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.evo-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.evo-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.evo-list__item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  line-height: 1.4;
}
.evo-list__item::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.evo-list__item--bad { color: #b91c1c; }
.evo-list__item--bad::before  { background-color: #fee2e2; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L8 8M8 2L2 8' stroke='%23ef4444' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.evo-list__item--mid { color: #92400e; }
.evo-list__item--mid::before  { background-color: #fef9c3; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 2V5M5 7V7.5' stroke='%23ca8a04' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.evo-list__item--good { color: #166534; }
.evo-list__item--good::before { background-color: #dcfce7; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%23599742' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

.evo-card__footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px;
  border-radius: 0 0 calc(var(--radius-xl) - 2px) calc(var(--radius-xl) - 2px);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
}
.evo-card__footer--bad  { background: #fee2e2; color: #b91c1c; }
.evo-card__footer--mid  { background: #fef9c3; color: #92400e; }
.evo-card__footer--good { background: #dcfce7; color: #166534; }

.evo-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  margin-top: 80px;
}
.evo-arrow svg { width: 40px; opacity: 0.4; }

.evo-insight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(89,151,66,0.06);
  border: 1px solid rgba(89,151,66,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 48px;
}
.evo-insight__icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.evo-insight p { font-size: 1rem; color: var(--text-body); line-height: 1.65; }
.evo-insight strong { color: var(--green-dark); }

/* ════════════════════════════════════════
   ADAPT SECTION — THREE PATHS
════════════════════════════════════════ */
.adapt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .adapt-grid { grid-template-columns: 1fr; }
}
.adapt-card {
  border-radius: var(--radius-xl);
  padding: 40px 28px 36px;
  border: 2px solid var(--border-light);
  background: var(--white);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.adapt-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.adapt-card--danger { border-color: rgba(239,68,68,0.2); background: #fffafa; }
.adapt-card--warning { border-color: rgba(245,158,11,0.2); background: #fffdf5; }
.adapt-card--win {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(89,151,66,0.06);
}
.adapt-card--win:hover {
  box-shadow: 0 0 0 4px rgba(89,151,66,0.10), var(--shadow-lg);
}
.adapt-card__recommended {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-green);
}
.adapt-card__num {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  opacity: 0.5;
}
.adapt-card__num--green { color: var(--green); opacity: 1; }
.adapt-card__icon { width: 40px; height: 40px; }
.adapt-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.adapt-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.adapt-wins {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}
.adapt-wins li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: #166534;
  line-height: 1.4;
}
.adapt-wins li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.adapt-card__outcome {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 8px;
  line-height: 1.4;
}
.adapt-card__outcome--bad  { background: #fee2e2; color: #b91c1c; }
.adapt-card__outcome--mid  { background: #fef9c3; color: #92400e; }
.adapt-card__outcome--good { background: #dcfce7; color: #166534; }

/* ════════════════════════════════════════
   TOOLS SECTION
════════════════════════════════════════ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .tools-grid { grid-template-columns: 1fr; }
}
.tool-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(89,151,66,0.2);
}
.tool-card__icon { width: 56px; height: 56px; }
.tool-card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.tool-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.tool-card__proof {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid var(--border-light);
}
.proof-num {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--green);
}
.proof-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ════════════════════════════════════════
   DISCOVER / DARK SECTION
════════════════════════════════════════ */
.discover-section { padding-bottom: 80px; }
.discover-section .section-header { margin-bottom: 56px; }

.secrets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}
@media (max-width: 900px) {
  .secrets-grid { grid-template-columns: 1fr; }
}
.secret-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.secret-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(89,151,66,0.4);
  transform: translateY(-4px);
}
.secret-card--featured {
  background: rgba(89,151,66,0.12);
  border-color: rgba(89,151,66,0.4);
  box-shadow: 0 0 0 1px rgba(89,151,66,0.2), inset 0 1px 0 rgba(255,255,255,0.05);
}
.secret-card__live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(89,151,66,0.25);
  color: var(--green-light);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(89,151,66,0.4);
  width: fit-content;
}
.secret-card__label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  opacity: 0.75;
}
.secret-card__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.secret-card__body {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}
.secret-card__body em { color: var(--green-light); font-style: normal; }
.secret-card__objection {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.2);
  border-radius: 8px;
  padding: 10px 12px;
  line-height: 1.4;
}
.objection-label {
  color: #f87171;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.secret-card__tag {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-light);
  padding: 6px 12px;
  background: rgba(89,151,66,0.15);
  border-radius: 8px;
  border: 1px solid rgba(89,151,66,0.3);
  text-align: center;
}
.secret-card__demo-strip {
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  margin-top: 4px;
}
.demo-metric {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  background: rgba(89,151,66,0.12);
  border-radius: 10px;
  border: 1px solid rgba(89,151,66,0.2);
}
.demo-metric__num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 4px;
}
.demo-metric__label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}

/* FOUNDING MEMBER CALLOUT */
.founding-callout {
  margin-top: 56px;
  background: linear-gradient(135deg, rgba(89,151,66,0.15) 0%, rgba(62,115,100,0.15) 100%);
  border: 1px solid rgba(89,151,66,0.35);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  backdrop-filter: blur(8px);
}
.founding-callout__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.founding-callout__left { flex: 1; min-width: 280px; }
.founding-callout__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.founding-callout__left h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.founding-callout__left p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
}
.founding-callout__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.founding-callout__note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ════════════════════════════════════════
   SOCIAL PROOF / TESTIMONIALS
════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 56px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(89,151,66,0.2);
}
.testimonial-card--featured {
  background: var(--white);
  border-color: rgba(89,151,66,0.2);
  box-shadow: 0 0 0 3px rgba(89,151,66,0.06);
}
.testimonial-card__stars {
  color: #f59e0b;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-card blockquote::before { content: '"'; color: var(--green); font-size: 1.2rem; font-style: normal; }
.testimonial-card blockquote::after  { content: '"'; color: var(--green); font-size: 1.2rem; font-style: normal; }
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.testimonial-card__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__avatar--featured {
  background: linear-gradient(135deg, #3E7364, #0f2014);
  box-shadow: 0 4px 12px rgba(62,115,100,0.4);
}
.testimonial-card__name {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.testimonial-card__title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ROI STRIP */
.roi-strip {
  background: linear-gradient(135deg, var(--text) 0%, #0f2014 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  text-align: center;
}
.roi-strip__label {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.roi-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.roi-calc__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 80px;
}
.roi-calc__block--result {
  background: rgba(89,151,66,0.2);
  border: 1px solid rgba(89,151,66,0.4);
  padding: 16px 28px;
}
.roi-calc__num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.roi-calc__num--big { font-size: 2rem; color: var(--green-light); }
.roi-calc__desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}
.roi-calc__op {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
}
.roi-strip__note {
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}
.roi-strip__note strong { color: var(--green-light); }

/* ════════════════════════════════════════
   DISSERVICE SECTION
════════════════════════════════════════ */
.disservice-section { padding: 100px 0; }
.disservice-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.disservice-headline {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.disservice-accent { color: var(--green-light); display: block; }
.disservice-body {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 680px;
}
.disservice-body em { color: var(--green-light); font-style: normal; }
.disservice-callout {
  background: rgba(89,151,66,0.12);
  border: 1px solid rgba(89,151,66,0.3);
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  max-width: 600px;
}

/* ════════════════════════════════════════
   REGISTRATION SECTION
════════════════════════════════════════ */
.register-section { padding: 96px 0 80px; }
.register-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .register-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.register-left { padding-top: 8px; }
.register-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.register-left__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.register-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.register-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.perk-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.register-perk div { display: flex; flex-direction: column; gap: 2px; }
.register-perk strong {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.register-perk span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.register-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.trust-icon { font-size: 1rem; }

/* FORM CARD */
.register-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-card__header {
  background: linear-gradient(135deg, var(--text) 0%, #0f2014 100%);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.form-card__date-badge {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-card__date-day {
  font-family: var(--font-head);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  line-height: 1;
}
.form-card__date-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.form-card__title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.form-card__subtitle {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.register-form {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}
.form-label__optional {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(89,151,66,0.12);
}
.form-input::placeholder { color: #a0aec0; }
.form-submit-btn {
  margin-top: 4px;
  font-size: 1.05rem;
  padding: 16px;
}
.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.form-card__urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--off-white);
  padding: 12px;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-card__urgency strong { color: var(--text); }

/* SMS consent checkbox */
.form-group--consent {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 14px 16px;
}
.form-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.form-consent-check {
  width: 16px; height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--green);
  cursor: pointer;
}
.form-consent-label a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent-label a:hover { color: var(--green-dark); }

/* Footer SMS notice */
.footer__sms-notice {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  text-align: center;
  max-width: 600px;
  line-height: 1.5;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #060e08;
  padding: 40px 0 32px;
  border-top: 1px solid rgba(89,151,66,0.1);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--green-light); }
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}

/* ════════════════════════════════════════
   GPS EVOLUTION — TIMELINE ROWS
════════════════════════════════════════ */
.evo-timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}
.evo-trow {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: start;
  gap: 20px 32px;
  padding: 28px 32px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  background: var(--white);
  position: relative;
  transition: var(--transition);
}
.evo-trow:hover { box-shadow: var(--shadow-md); }
.evo-trow--bad  { border-color: rgba(239,68,68,0.14);  background: #fffafa; }
.evo-trow--mid  { border-color: rgba(245,158,11,0.14); background: #fffdf8; }
.evo-trow--good {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(89,151,66,0.06);
}
.evo-trow--good:hover {
  box-shadow: 0 0 0 4px rgba(89,151,66,0.10), var(--shadow-lg);
}
.evo-trow__recommended {
  position: absolute;
  top: -13px;
  left: 32px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-green);
}
.evo-trow__num {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  padding-top: 4px;
  letter-spacing: -0.04em;
  user-select: none;
}
.evo-trow--bad  .evo-trow__num { color: rgba(239,68,68,0.18); }
.evo-trow--mid  .evo-trow__num { color: rgba(245,158,11,0.2); }
.evo-trow--good .evo-trow__num { color: rgba(89,151,66,0.22); }
.evo-trow__status {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.evo-trow__status--bad  { background: #fee2e2; color: #b91c1c; }
.evo-trow__status--mid  { background: #fef9c3; color: #92400e; }
.evo-trow__status--good { background: #dcfce7; color: #166534; }
.evo-trow__title {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.evo-trow__desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 380px;
}
.evo-trow__chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 210px;
  padding-top: 4px;
}
.evo-trow__chip {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 6px;
  line-height: 1.4;
}
.evo-trow__chip--bad  { background: #fee2e2; color: #b91c1c; }
.evo-trow__chip--mid  { background: #fef9c3; color: #92400e; }
.evo-trow__chip--good { background: #dcfce7; color: #166534; }
@media (max-width: 860px) {
  .evo-trow { grid-template-columns: 48px 1fr; padding: 22px 20px; }
  .evo-trow__chips { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; padding-top: 0; }
  .evo-trow__num { font-size: 2rem; }
}

/* ════════════════════════════════════════
   THREE PATHS — STACKED STRIPS
════════════════════════════════════════ */
.paths-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}
.path-item {
  display: grid;
  grid-template-columns: 36px 44px 1fr auto;
  align-items: center;
  gap: 16px 20px;
  padding: 20px 28px;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  background: var(--white);
  position: relative;
  transition: var(--transition);
}
.path-item--bad  { background: #fffafa; border-color: rgba(239,68,68,0.12); }
.path-item--mid  { background: #fffdf8; border-color: rgba(245,158,11,0.12); }
.path-item--win {
  padding: 36px 32px;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(89,151,66,0.06);
  align-items: start;
}
.path-item--win:hover {
  box-shadow: 0 0 0 4px rgba(89,151,66,0.10), var(--shadow-lg);
}
.path-item__recommended {
  position: absolute;
  top: -13px;
  left: 32px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-green);
}
.path-item__num {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  opacity: 0.45;
  align-self: flex-start;
  margin-top: 2px;
}
.path-item__num--green { color: var(--green); opacity: 1; }
.path-item__icon { width: 36px; height: 36px; opacity: 0.65; flex-shrink: 0; }
.path-item--win .path-item__icon { opacity: 1; }
.path-item__main h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.path-item--win .path-item__main h3 { font-size: 1.25rem; margin-bottom: 8px; }
.path-item__main p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.path-item--win .path-item__main p { font-size: 0.95rem; margin-bottom: 14px; }
.path-item__wins {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 2px;
}
.path-item__wins li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: #166534;
  line-height: 1.4;
}
.path-item__wins li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.path-item__outcome {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 8px;
  min-width: 190px;
  text-align: center;
  line-height: 1.4;
  flex-shrink: 0;
}
.path-item__outcome--bad  { background: #fee2e2; color: #b91c1c; }
.path-item__outcome--mid  { background: #fef9c3; color: #92400e; }
.path-item__outcome--good { background: #dcfce7; color: #166534; }
@media (max-width: 900px) {
  .path-item { grid-template-columns: 36px 1fr; gap: 12px 16px; }
  .path-item__icon { display: none; }
  .path-item__outcome { grid-column: 1 / -1; min-width: unset; text-align: left; }
}

/* ════════════════════════════════════════
   TOOLS — EDITORIAL STAT ROWS
════════════════════════════════════════ */
.benefits-list {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
  border-top: 1px solid var(--border-light);
}
.benefit-row {
  display: grid;
  grid-template-columns: 200px 1px 1fr;
  gap: 0 52px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  transition: var(--transition);
}
.benefit-row:hover .benefit-stat__num { color: var(--green-dark); }
.benefit-row__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.benefit-stat__num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.04em;
  transition: color 0.3s;
}
.benefit-stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 600;
}
.benefit-row__rule {
  width: 1px;
  align-self: stretch;
  background: var(--border-light);
}
.benefit-row__content h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.benefit-row__content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
}
@media (max-width: 860px) {
  .benefit-row { grid-template-columns: 140px 1px 1fr; gap: 0 28px; padding: 32px 0; }
  .benefit-stat__num { font-size: 2.6rem; }
}
@media (max-width: 560px) {
  .benefit-row { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .benefit-row__rule { width: auto; height: 1px; align-self: auto; }
  .benefit-row__stat { align-items: flex-start; }
  .benefit-stat__label { text-align: left; }
}

/* ════════════════════════════════════════
   SUB-SCORES SECTION
════════════════════════════════════════ */
.subscores-section .section-header { margin-bottom: 48px; }
.score-meter {
  max-width: 680px;
  margin: 0 auto 56px;
}
.score-meter__label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 10px;
}
.score-meter__track {
  height: 14px;
  border-radius: 7px;
  background: linear-gradient(90deg, #ef4444 0%, #f97316 25%, #eab308 50%, #84cc16 75%, #22c55e 100%);
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.score-meter__ranges {
  display: flex;
  justify-content: space-between;
}
.score-meter__range {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.score-meter__range--1 { color: #ef4444; }
.score-meter__range--2 { color: #f97316; }
.score-meter__range--3 { color: #ca8a04; }
.score-meter__range--4 { color: #65a30d; }
.score-meter__range--5 { color: #16a34a; }

.subscores-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.subscores-grid .subscore-card:nth-child(1) { grid-column: 1 / 3; }
.subscores-grid .subscore-card:nth-child(2) { grid-column: 3 / 5; }
.subscores-grid .subscore-card:nth-child(3) { grid-column: 5 / 7; }
.subscores-grid .subscore-card:nth-child(4) { grid-column: 2 / 4; }
.subscores-grid .subscore-card:nth-child(5) { grid-column: 4 / 6; }

.subscore-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.subscore-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(89,151,66,0.22);
}
.subscore-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.subscore-card__icon svg { width: 26px; height: 26px; }
.subscore-card h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.subscore-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .subscores-grid { grid-template-columns: repeat(2, 1fr); }
  .subscores-grid .subscore-card:nth-child(n) { grid-column: auto; }
  .subscores-grid .subscore-card:nth-child(5) { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .subscores-grid { grid-template-columns: 1fr; }
  .subscores-grid .subscore-card:nth-child(5) { grid-column: auto; }
}

/* Pete initial avatar */
.testimonial-mini__avatar-init {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   DISCOVER — BENTO GRID
════════════════════════════════════════ */
.secrets-bento {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
  min-height: 520px;
}
.secrets-bento > :nth-child(1) { grid-column: 2; grid-row: 1; }
.secrets-bento > :nth-child(2) { grid-column: 1; grid-row: 1 / 3; }
.secrets-bento > :nth-child(3) { grid-column: 2; grid-row: 2; }
@media (max-width: 860px) {
  .secrets-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: unset;
  }
  .secrets-bento > :nth-child(1) { grid-column: 1; grid-row: auto; }
  .secrets-bento > :nth-child(2) { grid-column: 1; grid-row: auto; order: -1; }
  .secrets-bento > :nth-child(3) { grid-column: 1; grid-row: auto; }
}

/* ════════════════════════════════════════
   TESTIMONIALS V2 — PULL QUOTE + MINI
════════════════════════════════════════ */
.testimonials-v2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  margin-bottom: 56px;
}
.testimonial-pull {
  background: linear-gradient(135deg, var(--text) 0%, #0f2014 100%);
  border-radius: var(--radius-xl);
  padding: 52px 56px;
  position: relative;
  overflow: hidden;
}
.testimonial-pull::before {
  content: '\201C';
  position: absolute;
  top: -32px;
  left: 40px;
  font-family: Georgia, serif;
  font-size: 16rem;
  font-weight: 900;
  color: rgba(89,151,66,0.1);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.testimonial-pull blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.38;
  letter-spacing: -0.01em;
  font-style: normal;
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
  max-width: 720px;
}
.testimonial-pull__author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.testimonial-pull__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(89,151,66,0.45);
}
.testimonial-pull__name {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.testimonial-pull__title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.testimonial-pull__stars {
  margin-left: auto;
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonials-mini-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .testimonials-mini-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .testimonials-mini-row { grid-template-columns: 1fr; }
}
.testimonial-mini {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
}
.testimonial-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(89,151,66,0.2);
}
.testimonial-mini__stars {
  color: #f59e0b;
  font-size: 0.88rem;
  letter-spacing: 2px;
}
.testimonial-mini blockquote {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-mini__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.testimonial-mini__author img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-mini__name {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.testimonial-mini__title {
  font-size: 0.75rem;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .testimonial-pull { padding: 36px 28px; }
  .testimonial-pull::before { font-size: 10rem; top: -20px; left: 20px; }
  .testimonial-pull__stars { display: none; }
}

/* ════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════ */
.reveal,
.animate-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible,
.animate-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for child elements */
[data-delay="0"]   { transition-delay: 0ms; }
[data-delay="80"]  { transition-delay: 80ms; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="120"] { transition-delay: 120ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="160"] { transition-delay: 160ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="240"] { transition-delay: 240ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="320"] { transition-delay: 320ms; }
[data-delay="400"] { transition-delay: 400ms; }

/* Hero initial animations */
.hero__content .reveal {
  animation: none;
}

/* ════════════════════════════════════════
   PARALLAX HELPER
════════════════════════════════════════ */
[data-parallax] {
  will-change: transform;
}

/* ════════════════════════════════════════
   GPS EVOLUTION — PINNED SCROLL STORY
════════════════════════════════════════ */
.evo-wrap {
  background: var(--dark);
  padding-bottom: 80px;
}
.evo-wrap .section-header { padding: 80px 0 56px; margin-bottom: 0; }
.evo-wrap .section-header h2 { color: var(--white); }
.evo-wrap .section-sub { color: var(--text-light); }
.evo-wrap .eyebrow { color: var(--green-light); background: rgba(142,205,120,0.12); border-color: rgba(142,205,120,0.25); }

.evo-pin-outer {
  height: 300vh;
  position: relative;
}
.evo-pin-sticky {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* establish containing block for absolute children */
  isolation: isolate;
}
.evo-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  transition: background 0.6s ease;
}

.evo-pills {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  flex-wrap: wrap;
  justify-content: center;
}
.evo-pill {
  font-family: var(--font-head);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  transition: all 0.35s ease;
  cursor: default;
  white-space: nowrap;
}
.evo-pill.evo-pill--active {
  background: rgba(89,151,66,0.2);
  border-color: rgba(89,151,66,0.5);
  color: var(--green-light);
}

.evo-chapters {
  position: relative;
  width: 100%;
  max-width: 680px;
  padding: 0 24px;
}
.evo-chapter {
  position: absolute;
  width: calc(100% - 48px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 20px));
  opacity: 0;
  will-change: opacity, transform;
  padding: 0;
}

.evo-chapter__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px 32px;
  position: relative;
}
.evo-chapter__card--featured {
  background: rgba(89,151,66,0.08);
  border-color: rgba(89,151,66,0.35);
  box-shadow: 0 0 0 1px rgba(89,151,66,0.12), 0 32px 64px rgba(0,0,0,0.3);
}
.evo-chapter__recommended {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-green);
}
.evo-chapter__icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.evo-chapter__icon-wrap svg { width: 28px; height: 28px; }
.evo-chapter__icon-wrap--bad  { background: rgba(239,68,68,0.12); }
.evo-chapter__icon-wrap--mid  { background: rgba(202,138,4,0.12); }
.evo-chapter__icon-wrap--good { background: rgba(89,151,66,0.12); }

.evo-chapter__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.evo-chapter__tag--bad  { background: rgba(239,68,68,0.15); color: #f87171; }
.evo-chapter__tag--mid  { background: rgba(202,138,4,0.15);  color: #fbbf24; }
.evo-chapter__tag--good { background: rgba(89,151,66,0.15);  color: var(--green-light); }

.evo-chapter__title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.evo-chapter__body {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.evo-chapter__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.evo-chapter__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.4;
}
.evo-chapter__item::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.evo-chapter__item--bad  { color: #fca5a5; }
.evo-chapter__item--bad::before  { background-color: rgba(239,68,68,0.2); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2L8 8M8 2L2 8' stroke='%23ef4444' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.evo-chapter__item--mid  { color: #fcd34d; }
.evo-chapter__item--mid::before  { background-color: rgba(202,138,4,0.2); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 2V5M5 7V7.5' stroke='%23ca8a04' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.evo-chapter__item--good { color: #86efac; }
.evo-chapter__item--good::before { background-color: rgba(89,151,66,0.2); background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%23599742' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }

.evo-stepnum {
  position: absolute;
  bottom: 80px;
  right: 8%;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.06em;
  z-index: 5;
}
.evo-stepnum__sep { color: rgba(255,255,255,0.1); }

.evo-progress {
  position: absolute;
  bottom: 60px;
  left: 8%; right: 8%;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  z-index: 5;
}
.evo-progress__fill {
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  width: 0%;
  will-change: width;
}

.evo-scroll-hint {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 600;
  white-space: nowrap;
  animation: bounce-down 2.2s ease-in-out infinite;
  z-index: 5;
}

/* evo-insight override for dark background */
.evo-wrap .evo-insight {
  margin: 0 auto;
  max-width: 800px;
  background: rgba(89,151,66,0.08);
  border-color: rgba(89,151,66,0.2);
}
.evo-wrap .evo-insight p { color: rgba(255,255,255,0.65); }
.evo-wrap .evo-insight strong { color: var(--green-light); }

/* ════════════════════════════════════════
   TOOLS — FULL-SCREEN PINNED SLIDES
════════════════════════════════════════ */
.tools-wrap {
  background: #0c1510;
}
.tools-pin-outer {
  height: 300vh;
  position: relative;
}
.tools-pin-sticky {
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow: hidden;
  isolation: isolate;
}

.tools-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 10%;
  opacity: 0;
  transform: translateX(60px);
  will-change: opacity, transform;
}
.tools-slide__bg-num {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(7rem, 17vw, 15rem);
  font-weight: 900;
  color: rgba(89,151,66,0.055);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
}
.tools-slide__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.tools-slide__eyebrow {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  opacity: 0.7;
  margin-bottom: 18px;
}
.tools-slide__headline {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.tools-slide__body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 32px;
}
.tools-slide__stat {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 26px;
  background: rgba(89,151,66,0.1);
  border: 1px solid rgba(89,151,66,0.25);
  border-radius: var(--radius-lg);
}
.tools-slide__stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
}
.tools-slide__stat-label {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.35;
  max-width: 180px;
}

.tools-dots {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}
.tools-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  transition: all 0.35s ease;
  padding: 0;
}
.tools-dot.tools-dot--active {
  background: var(--green);
  transform: scale(1.5);
}

.tools-progress {
  position: absolute;
  bottom: 44px;
  left: 8%; right: 8%;
  height: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  z-index: 10;
}
.tools-progress__fill {
  height: 100%;
  background: var(--green);
  border-radius: 2px;
  width: 0%;
  will-change: width;
}

/* ════════════════════════════════════════
   KINETIC TEXT
════════════════════════════════════════ */
.k-word {
  display: inline;
  color: rgba(255,255,255,0.1);
  will-change: color;
}

/* ════════════════════════════════════════
   TESTIMONIALS — PHOTO AVATARS
════════════════════════════════════════ */
.testimonial-card__avatar--photo {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* ════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { max-width: 960px; }
  .founding-callout { padding: 32px; }
  .roi-strip { padding: 32px 24px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero__headline { font-size: 2.2rem; }
  .hero__sub { font-size: 0.95rem; }
  .countdown { padding: 16px 20px; }
  .countdown__num { font-size: 1.6rem; }
  .founding-callout__inner { flex-direction: column; }
  .roi-calc { gap: 8px; }
  .roi-calc__block { padding: 12px 14px; min-width: 60px; }
  .roi-calc__num { font-size: 1.3rem; }
  .roi-calc__num--big { font-size: 1.5rem; }
  .section-header h2 { font-size: 1.8rem; }
  .disservice-headline { font-size: 1.8rem; }
  .evo-card { padding: 28px 20px; }
  .register-form-card { box-shadow: var(--shadow-md); }
  .urgency-bar__inner { flex-direction: column; gap: 8px; text-align: center; }
  .discover-section .section-header h2 { font-size: 1.9rem; }

  /* Pin sections — mobile */
  .evo-pin-sticky, .tools-pin-sticky { top: 0; height: 100vh; }
  .evo-pills { width: 90vw; }
  .evo-pill { font-size: 0.7rem; padding: 5px 12px; }
  .evo-chapter { width: calc(100% - 32px); }
  .evo-chapter__card { padding: 28px 20px 24px; }
  .evo-chapter__title { font-size: 1.3rem; }
  .evo-stepnum { bottom: 68px; }
  .evo-progress { bottom: 52px; }
  .tools-slide { padding: 0 6% 80px; align-items: flex-end; }
  .tools-slide__headline { font-size: 2rem; }
  .tools-slide__body { font-size: 0.9rem; }
  .tools-slide__bg-num { font-size: 6rem; right: 4%; opacity: 1; }
  .tools-dots { right: 12px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 1.9rem; }
  .countdown__blocks { gap: 4px; }
  .countdown__block { min-width: 52px; }
  .btn--xl { padding: 14px 28px; font-size: 1rem; }
  .founding-callout { padding: 24px 20px; }
}
