:root{
  --primary:#0a0a0b;
  --bg:#F7F5F0;
  --highlight:#3CE000;
  --highlight-dim:#7ebe2a;
  --text:#212121;
  --muted:#666;
  --border:#E5E3DE;
  --radius:14px;
  --radius-lg:22px;
  --transition:0.22s cubic-bezier(0.4,0,0.2,1);
  --font-display:'Google Sans Flex','Google Sans',sans-serif;
  --font-body:'Google Sans','Google Sans Flex',sans-serif;
  --red:#d93025;
  --red-bg:#fff5f5;
  --red-border:#ffd0d0;
  --green-bg:#f0fff0;
  --green-border:#b8edaa;
  --green-text:#2a6b10;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-body);
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
h1,h2,h3,h4{font-family:var(--font-display);font-weight:600;line-height:1.15}

::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:var(--bg)}
::-webkit-scrollbar-thumb{background:#cfcabf;border-radius:4px}

/* ── HERO ── */
.hero-wrap{
  position:relative;overflow:hidden;
  background:#ffffff;
  padding:140px 24px 80px;
}
.hero-wrap::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 70% 50% at 50% 0%,rgba(60,224,0,0.07) 0%,transparent 65%);
}
.hero-wrap::after{
  content:'';position:absolute;bottom:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(60,224,0,0.2),transparent);
}
.hero{
  position:relative;z-index:1;
  max-width:820px;margin:0 auto;text-align:center;
}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:11.5px;font-weight:600;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--highlight-dim);margin-bottom:24px;
  border:1px solid rgba(60,224,0,0.3);
  background:rgba(60,224,0,0.08);
  padding:6px 14px;border-radius:100px;
}
.pulse{
  display:inline-block;width:7px;height:7px;background:var(--highlight);border-radius:50%;
  animation:pulse 2s ease-in-out infinite;will-change:box-shadow;
}
@keyframes pulse{0%,100%{box-shadow:0 0 0 0 rgba(100,180,0,0.5)}50%{box-shadow:0 0 0 7px rgba(100,180,0,0)}}
.hero h1{
  font-size:clamp(30px,5vw,60px);font-weight:800;line-height:1.08;
  letter-spacing:-0.035em;margin-bottom:24px;
  color:var(--text);
}
.hero h1 em{font-style:normal;color:var(--highlight-dim)}
.lede{
  font-size:17px;color:var(--muted);line-height:1.65;
  max-width:540px;margin:0 auto 36px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:center}
.btn-primary{
  display:inline-flex;align-items:center;
  background:var(--highlight);color:#0a0a0b;
  font-family:var(--font-body);font-size:14px;font-weight:700;
  padding:13px 26px;border-radius:100px;
  transition:background var(--transition),transform var(--transition),box-shadow var(--transition);
}
.btn-primary:hover{background:#2fd100;transform:translateY(-1px);box-shadow:0 8px 28px rgba(60,224,0,0.35)}
.btn-ghost-hero{
  display:inline-flex;align-items:center;
  background:transparent;color:var(--text);
  border:1.5px solid rgba(0,0,0,0.18);
  font-family:var(--font-body);font-size:14px;font-weight:600;
  padding:13px 26px;border-radius:100px;
  transition:background var(--transition),border-color var(--transition);
}
.btn-ghost-hero:hover{background:rgba(0,0,0,0.05);border-color:rgba(0,0,0,0.3)}

/* ── TRUST BAR ── */
.trust{
  background:var(--primary);color:rgba(255,255,255,0.8);
  padding:14px 24px;display:flex;justify-content:center;flex-wrap:wrap;gap:28px;
  font-size:13.5px;
}
.trust span{display:flex;align-items:center;gap:7px}
.trust svg{width:14px;height:14px;fill:var(--highlight);flex-shrink:0}
.trust strong{color:#fff}

/* ── PAGE INTRO ── */
.page-intro{
  max-width:820px;margin:72px auto 0;padding:0 24px;text-align:center;
}
.page-intro h2{
  font-size:clamp(26px,3vw,38px);font-weight:800;letter-spacing:-0.025em;line-height:1.1;
  margin-bottom:16px;
}
.page-intro h2 span{color:var(--highlight-dim)}
.page-intro p{font-size:16.5px;color:var(--muted);line-height:1.7;max-width:680px;margin:0 auto}

/* ── MAIN COMPARISON SECTION ── */
.comparison-section{
  max-width:1160px;margin:64px auto;padding:0 24px;
}

/* column headers */
.col-headers{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0;margin-bottom:0;
}
.col-head{
  padding:20px 32px;
  font-family:var(--font-display);font-size:clamp(18px,1.8vw,22px);font-weight:800;
  letter-spacing:-0.01em;
}
.col-head--bad{
  background:var(--red-bg);
  border:1px solid var(--red-border);
  border-radius:var(--radius-lg) 0 0 0;
  color:var(--red);
}
.col-head--good{
  background:var(--green-bg);
  border:1px solid var(--green-border);
  border-left:none;
  border-radius:0 var(--radius-lg) 0 0;
  color:var(--green-text);
}
.col-head-divider{
  background:#fff;
  border-top:1px solid var(--border);
  border-bottom:none;
  display:flex;align-items:center;justify-content:center;
  font-size:11px;font-weight:700;color:var(--muted);letter-spacing:0.06em;
}

/* rows */
.compare-rows{display:flex;flex-direction:column;gap:0}
.compare-row-wrap{
  display:grid;grid-template-columns:1fr 1fr;
  gap:0;
}
.compare-row-wrap:last-child .cell--bad{border-radius:0 0 0 var(--radius-lg)}
.compare-row-wrap:last-child .cell--good{border-radius:0 0 var(--radius-lg) 0}
.cell{
  padding:20px 32px;
  border:1px solid transparent;
  border-top:none;
  display:flex;flex-direction:column;gap:6px;
}
.cell--bad{
  background:#fff;
  border-color:var(--red-border);
  border-right:1px solid var(--red-border);
}
.cell--good{
  background:#fff;
  border-color:var(--green-border);
  border-left:1px solid var(--green-border);
}
.cell--bad:last-of-type,.cell--good:last-of-type{}
.cell-divider-strip,.col-head-divider,.outcome-divider{display:none}
.cell-label{
  font-size:10.5px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  color:var(--muted);
}
.cell-value{
  font-family:var(--font-display);font-size:clamp(15px,1.6vw,18px);font-weight:700;
  color:var(--text);line-height:1.25;
}
.cell--bad .cell-value{color:var(--red)}
.cell--good .cell-value{color:var(--green-text)}
.cell-note{font-size:13px;color:var(--muted);line-height:1.5;margin-top:2px}

/* funnel rows - special emphasis */
.cell-value.funnel-big{
  font-size:clamp(22px,2.4vw,30px);font-weight:800;
  letter-spacing:-0.02em;
}
.cell--good .cell-value.funnel-big{color:var(--green-text)}
.cell--bad .cell-value.funnel-big{color:var(--red)}

/* outcome row */
.outcome-row{
  margin-top:2px;
  display:grid;grid-template-columns:1fr 1fr;
}
.outcome-cell{
  padding:28px 32px;
  display:flex;flex-direction:column;gap:6px;
}
.outcome-cell--bad{
  background:var(--red-bg);
  border:1px solid var(--red-border);
  border-top:none;
  border-radius:0 0 0 var(--radius-lg);
}
.outcome-cell--good{
  background:var(--green-bg);
  border:1px solid var(--green-border);
  border-top:none;
  border-left:none;
  border-radius:0 0 var(--radius-lg) 0;
}
.outcome-divider{
  background:#f3f3f3;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.outcome-label{
  font-size:10.5px;font-weight:700;letter-spacing:0.1em;text-transform:uppercase;
  margin-bottom:4px;
}
.outcome-cell--bad .outcome-label{color:var(--red)}
.outcome-cell--good .outcome-label{color:var(--green-text)}
.outcome-value{
  font-family:var(--font-display);font-size:clamp(22px,2.6vw,34px);font-weight:800;
  letter-spacing:-0.025em;line-height:1.1;
}
.outcome-cell--bad .outcome-value{color:var(--red)}
.outcome-cell--good .outcome-value{color:var(--green-text)}
.outcome-sub{font-size:14px;color:var(--muted);margin-top:6px;line-height:1.5}

/* ── PROSPECT QUALITY CARDS ── */
.quality-section{
  max-width:1160px;margin:80px auto 0;padding:0 24px;
}
.quality-section-header{
  margin-bottom:40px;
}
.quality-section-header h2{
  font-size:clamp(24px,2.8vw,36px);font-weight:800;letter-spacing:-0.025em;line-height:1.1;
  margin-bottom:12px;
}
.quality-section-header p{font-size:15.5px;color:var(--muted);max-width:600px}

.quality-grid{
  display:grid;grid-template-columns:1fr 1fr;gap:24px;
}
.quality-card{
  border-radius:var(--radius-lg);
  border:1px solid var(--border);
  background:#fff;
  overflow:hidden;
}
.quality-card-head{
  padding:22px 28px 16px;
  display:flex;align-items:center;gap:14px;
}
.quality-card-icon{
  width:44px;height:44px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.quality-card-icon--bad{background:rgba(217,48,37,0.08)}
.quality-card-icon--good{background:rgba(60,224,0,0.1)}
.quality-card-icon svg{width:20px;height:20px}
.quality-card-icon--bad svg{stroke:var(--red)}
.quality-card-icon--good svg{stroke:var(--highlight-dim)}
.quality-card-title{
  font-family:var(--font-display);font-size:17px;font-weight:700;
  color:var(--text);
}
.quality-card-subtitle{font-size:12.5px;color:var(--muted);margin-top:2px}
.quality-card-body{
  padding:0 28px 24px;
  border-top:1px solid var(--border);
  margin-top:0;
}
.quality-list{
  list-style:none;margin-top:16px;display:flex;flex-direction:column;gap:0;
}
.quality-list li{
  display:flex;align-items:flex-start;gap:12px;
  padding:10px 0;
  border-bottom:1px solid var(--border);
  font-size:14.5px;color:var(--text);line-height:1.5;
}
.quality-list li:last-child{border-bottom:none}
.quality-list li::before{
  content:'';flex-shrink:0;
  width:18px;height:18px;border-radius:50%;
  margin-top:1px;
}
.quality-list--bad li::before{
  background:rgba(217,48,37,0.1);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23d93025' d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
  background-size:11px;background-repeat:no-repeat;background-position:center;
}
.quality-list--good li::before{
  background:var(--highlight);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%230a0a0b' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E");
  background-size:11px;background-repeat:no-repeat;background-position:center;
}

/* ── PULLQUOTE / INSIGHT BAND ── */
.insight-band{
  background:var(--primary);
  margin:80px 0 0;
  padding:72px 24px;
  position:relative;
  overflow:hidden;
}
.insight-band::before{
  content:'';position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 60% 80% at 100% 50%,rgba(60,224,0,0.08) 0%,transparent 65%);
}
.insight-inner{max-width:900px;margin:0 auto;position:relative;z-index:1}
.insight-tag{
  display:inline-block;
  font-size:10.5px;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;
  color:var(--highlight);margin-bottom:20px;
}
.insight-quote{
  font-family:var(--font-display);font-size:clamp(22px,3vw,38px);font-weight:800;
  letter-spacing:-0.025em;line-height:1.15;color:#fff;margin-bottom:24px;
  max-width:800px;
}
.insight-quote em{font-style:normal;color:var(--highlight)}
.insight-body{font-size:15.5px;color:rgba(255,255,255,0.55);line-height:1.72;max-width:720px}
.insight-body strong{color:rgba(255,255,255,0.85);font-weight:600}

/* ── THE PATH SECTION ── */
.path-section{
  max-width:1160px;margin:0 auto 0;padding:80px 24px;
  background:transparent;
}
.path-section-header{
  margin-bottom:48px;
}
.path-section-header h2{
  font-size:clamp(24px,2.8vw,36px);font-weight:800;letter-spacing:-0.025em;line-height:1.1;
  margin-bottom:12px;
}
.path-section-header p{font-size:15.5px;color:var(--muted);max-width:620px}

.path-steps{
  display:flex;flex-direction:column;gap:0;
}
.path-step{
  display:grid;grid-template-columns:56px 1fr;gap:0;
  padding:40px 0;
  border-top:1px solid var(--border);
}
.path-step:last-child{border-bottom:1px solid var(--border)}
.step-num{
  font-family:var(--font-display);
  font-size:clamp(42px,5vw,64px);
  font-weight:900;letter-spacing:-0.04em;
  color:var(--text);opacity:0.07;
  line-height:1;padding-top:4px;
  transition:opacity var(--transition);
  user-select:none;
}
.path-step:hover .step-num{opacity:0.18}
.step-body{padding-left:36px}
.step-tag{
  display:inline-block;font-size:11px;font-weight:700;letter-spacing:0.09em;text-transform:uppercase;
  color:var(--muted);margin-bottom:10px;
}
.step-title{
  font-family:var(--font-display);font-size:clamp(18px,2vw,24px);font-weight:800;
  letter-spacing:-0.02em;line-height:1.15;margin-bottom:14px;
  color:var(--text);
}
.step-copy{font-size:15px;color:var(--muted);line-height:1.72;max-width:680px}
.step-copy strong{color:var(--text);font-weight:600}

/* ── CTA SECTION ── */
.cta-section{
  background:var(--primary);
  padding:80px 24px;text-align:center;
}
.cta-section h2{
  font-size:clamp(26px,3.5vw,42px);font-weight:800;letter-spacing:-0.025em;
  color:#fff;margin-bottom:16px;
}
.cta-section p{font-size:16px;color:rgba(255,255,255,0.6);margin-bottom:36px;max-width:520px;margin-left:auto;margin-right:auto}
.cta-btns{display:flex;justify-content:center;flex-wrap:wrap;gap:14px}
.btn-cta-green{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--highlight);color:var(--primary);
  font-family:var(--font-body);font-size:14px;font-weight:700;
  padding:14px 28px;border-radius:100px;transition:transform var(--transition),box-shadow var(--transition);
}
.btn-cta-green:hover{transform:translateY(-2px);box-shadow:0 8px 28px rgba(60,224,0,0.4)}
.btn-cta-ghost{
  display:inline-flex;align-items:center;
  background:rgba(255,255,255,0.08);color:#fff;
  border:1px solid rgba(255,255,255,0.2);
  font-family:var(--font-body);font-size:14px;font-weight:600;
  padding:14px 28px;border-radius:100px;transition:background var(--transition);
}
.btn-cta-ghost:hover{background:rgba(255,255,255,0.14)}

/* ── REVEAL ANIMATION ── */
.reveal{opacity:0;transform:translateY(24px);transition:opacity 0.6s ease,transform 0.6s ease;will-change:opacity,transform}
.reveal.visible{opacity:1;transform:none;will-change:auto}
@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;will-change:auto}
  .pulse{animation:none;will-change:auto}
}
@media(max-width:742px){

  .hero-wrap{padding:110px 16px 60px}

  .col-headers,.compare-row-wrap,.outcome-row{
    grid-template-columns:1fr;
  }
  .col-head--bad{border-radius:var(--radius) var(--radius) 0 0;border-right:1px solid var(--red-border);margin-bottom:0}
  .col-head--good{border-radius:0;margin-top:0;border-left:1px solid var(--green-border);border-top:none}
  .col-head-divider,.cell-divider-strip,.outcome-divider{display:none}
  .cell--bad{border-right:1px solid var(--red-border)}
  .cell--good{border-left:1px solid var(--green-border);border-top:none}
  .compare-row-wrap:last-child .cell--bad{border-radius:0}
  .compare-row-wrap:last-child .cell--good{border-radius:0}
  .outcome-cell--bad{border-radius:0;border-right:1px solid var(--red-border)}
  .outcome-cell--good{border-radius:0 0 var(--radius) var(--radius);border-left:1px solid var(--green-border);border-top:none}

  .quality-grid{grid-template-columns:1fr}
  .path-step{grid-template-columns:44px 1fr;padding:28px 0}
  .step-body{padding-left:20px}
  .step-num{font-size:36px}
}
@media(max-width:480px){
  .page-intro,.comparison-section,.quality-section,.path-section{padding:0 16px}
}
