/* ═══════════════════════════════════════════════════════════════
   CHANGE COLORS AND FONTS HERE
   Every color and font on the site is set in this block.
   Change a value here and it changes everywhere.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --bg:        #070906;  /* page background (near-black green) */
  --bg-2:      #0B0E09;  /* alternate section background */
  --card:      rgba(255,255,255,0.03);   /* card fill */
  --card-2:    rgba(255,255,255,0.05);   /* raised card fill */
  --line:      rgba(255,255,255,0.09);   /* hairlines and card borders */
  --text:      #F2F6EA;  /* main text */
  --dim:       #A9B3A0;  /* secondary text */
  --faint:     #8B9583;  /* faintest text (footnotes) */
  --volt:      #C9FF3B;  /* the accent: buttons, highlights, numbers */
  --volt-soft: rgba(201,255,59,0.14);
  --ink-on-volt: #0A0D05;

  --font-display: 'Archivo', sans-serif;      /* headlines */
  --font-body:    'Archivo', sans-serif;      /* running copy */
  --font-quote:   'Newsreader', serif;        /* pull-quotes */
  --font-mono:    'IBM Plex Mono', monospace; /* numbers, labels, captions */

  --r-card: 20px;
  --r-pill: 999px;
}

/* ═══ BASE ═══ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* faint film-grain so large dark areas don't look flat */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header.site, footer.site { position: relative; z-index: 2; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: var(--volt); text-decoration: none; }
a:hover { text-decoration: none; }
p a { text-decoration: underline; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--volt);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--volt); color: var(--ink-on-volt); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; }

/* ═══ TYPE ═══ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-stretch: 118%;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -0.02em; margin-bottom: 20px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); line-height: 1.1; }
p { max-width: 62ch; }
.copy p { color: var(--dim); font-size: 18px; }
.copy p + p { margin-top: 20px; }
.copy strong { color: var(--text); font-weight: 600; }
.accent { color: var(--volt); }

.mono {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dim);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--volt);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--volt);
}
.section-head { margin-bottom: 48px; }
.section-head .lede { color: var(--dim); font-size: 19px; margin-top: 12px; }

/* ═══ HEADER ═══ */
header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 300ms ease, border-color 300ms ease;
  border-bottom: 1px solid transparent;
}
header.site.solid {
  background: rgba(7,9,6,0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.wordmark {
  font-family: var(--font-display);
  font-stretch: 120%;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.wordmark em { font-style: normal; color: var(--volt); }
.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-right .textlink {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 200ms ease;
}
.nav-right .textlink:hover { color: var(--text); }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--volt);
  color: var(--ink-on-volt);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  padding: 15px 30px;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  box-shadow: 0 0 0 0 rgba(201,255,59,0);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px -8px rgba(201,255,59,0.45);
}
.btn::after { content: '→'; font-family: var(--font-body); transition: transform 200ms ease; }
.btn:hover::after { transform: translateX(3px); }
.btn.small { padding: 11px 22px; font-size: 14px; }
.btn.ghost {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}
.btn.ghost:hover { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25); }
.cta-row { display: flex; align-items: center; gap: 18px; margin-top: 38px; flex-wrap: wrap; }
.cta-row .textlink {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 200ms ease, border-color 200ms ease;
}
.cta-row .textlink:hover { color: var(--volt); border-color: var(--volt); }

/* ═══ SECTIONS ═══ */
.section { padding: 110px 0 0; }
.section.tight { padding-top: 90px; }

/* ═══ HERO ═══ */
#hero {
  position: relative;
  padding: 168px 0 40px;
  overflow: clip;
}
.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
}
.hero-glow.g1 {
  width: 560px; height: 560px;
  right: -120px; top: -80px;
  background: radial-gradient(circle, rgba(201,255,59,0.17), transparent 65%);
}
.hero-glow.g2 {
  width: 480px; height: 480px;
  left: -180px; bottom: -180px;
  background: radial-gradient(circle, rgba(72,110,255,0.14), transparent 65%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 40px 64px;
  align-items: center;
  position: relative;
}
.hero-copy .subhead {
  color: var(--dim);
  font-size: 19.5px;
  line-height: 1.6;
  margin-top: 26px;
  max-width: 46ch;
}
.hero-note {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}
.hero-note b { color: var(--volt); font-weight: 500; }

/* the phone holding the hero video */
.hero-video-col { position: relative; justify-self: center; }
.phone {
  position: relative;
  width: min(320px, 78vw);
  border-radius: 44px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.16);
  padding: 10px;
  box-shadow:
    0 40px 90px -20px rgba(0,0,0,0.75),
    0 0 90px -30px rgba(201,255,59,0.35);
  transform: rotate(2.2deg);
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}
.hero-video-col:hover .phone { transform: rotate(0deg) scale(1.01); }
.phone video, .phone img.screen {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 34px;
  background: #000;
}
.stat-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(13,16,10,0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px -12px rgba(0,0,0,0.6);
}
.stat-chip .num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 18px;
  color: var(--volt);
  letter-spacing: -0.02em;
}
.stat-chip .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.stat-chip.c1 { top: 72px; left: -84px; animation: float 7s ease-in-out infinite; }
.stat-chip.c2 { bottom: 96px; right: -70px; animation: float 8s ease-in-out 1.2s infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}
.hero-caption { margin-top: 20px; text-align: center; font-size: 11px; color: var(--faint); }

/* ═══ TICKER ═══ */
.ticker {
  margin-top: 84px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: ticker 46s linear infinite;
}
.ticker span {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.ticker span::after { content: '✦'; color: var(--volt); font-size: 10px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ═══ PROOF BAND ═══ */
.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.proof-item {
  padding: 34px 34px 30px;
  border-radius: var(--r-card);
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.proof-item::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(420px 140px at 20% 0%, rgba(201,255,59,0.07), transparent);
  pointer-events: none;
}
.proof-item .figure {
  font-family: var(--font-display);
  font-stretch: 118%;
  font-weight: 800;
  font-size: clamp(1.7rem, 2.45vw, 2.5rem);
  letter-spacing: -0.03em;
  color: var(--volt);
  line-height: 1.05;
}
.proof-item .figure small {
  display: inline;
  font-size: 0.5em;
  font-weight: 700;
  color: var(--dim);
  margin-left: 6px;
  letter-spacing: 0;
}
.proof-item .figure-label { color: var(--dim); font-size: 15.5px; margin-top: 12px; }
.proof-foot { margin-top: 22px; color: var(--faint); font-size: 11px; }

/* ═══ TWO-UP (who this is for / isn't) ═══ */
.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.two-up .panel {
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 30px 32px;
}
.two-up .panel.yes { border-color: rgba(201,255,59,0.25); background: linear-gradient(180deg, rgba(201,255,59,0.05), var(--card)); }
.two-up .mono { display: block; margin-bottom: 12px; }
.two-up .panel.yes .mono { color: var(--volt); }
.two-up p { color: var(--dim); font-size: 16.5px; }

/* ═══ RECEIPT CARDS (screenshots) ═══ */
.receipt {
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--card);
  overflow: hidden;
  transition: transform 300ms ease, border-color 300ms ease;
}
.receipt:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); }
.receipt img { width: 100%; }
.receipt figcaption {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  line-height: 1.5;
}
.receipt figcaption b { color: var(--volt); font-weight: 500; }

/* ═══ CASE SECTIONS ═══ */
.case-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--volt);
  background: var(--volt-soft);
  border: 1px solid rgba(201,255,59,0.25);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  margin-bottom: 26px;
}
.case-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.case-grid .copy { padding-top: 6px; }
.evidence-stack { display: grid; gap: 24px; }
.evidence-pair {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
  margin-top: 52px;
}
.bento-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.series-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 44px 0 18px;
}
.series-label .mono { color: var(--text); font-size: 12.5px; }
.series-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.grid-note { margin-top: 36px; color: var(--dim); font-size: 17px; }
.grid-note b { color: var(--volt); font-weight: 600; }

/* ═══ HOW IT WORKS ═══ */
.waves {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.wave {
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 28px 28px 26px;
  position: relative;
}
.wave .step {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--volt);
  display: block;
  margin-bottom: 40px;
}
.wave h3 { font-size: 19px; margin-bottom: 8px; letter-spacing: -0.01em; }
.wave p { color: var(--dim); font-size: 15.5px; }
.pullquote {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 30ch;
  margin: 84px auto;
  text-align: center;
  position: relative;
  padding: 0 20px;
}
.pullquote em { font-style: italic; color: var(--volt); }

/* annotated stills */
.stills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.still {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
}
.still img { width: 100%; }
.still svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.still svg text {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  fill: var(--ink-on-volt);
}
.still svg .tag { fill: var(--volt); }
.still svg line, .still svg circle { stroke: var(--volt); }
.retention-aside {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  margin-top: 84px;
}
.retention-aside .copy p { font-size: 19px; color: var(--text); }
.handoff { margin-top: 84px; max-width: 680px; }
.handoff h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 18px; }

/* ═══ OFFERS ═══ */
.offer-flag {
  position: relative;
  border-radius: 26px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(201,255,59,0.55), rgba(201,255,59,0.06) 38%, rgba(255,255,255,0.06) 62%, rgba(201,255,59,0.3));
  margin-top: 8px;
}
.offer-flag-inner {
  border-radius: 25px;
  background: linear-gradient(180deg, #0D110A, #090C07);
  padding: 52px 56px 48px;
  position: relative;
  overflow: hidden;
}
.offer-flag-inner::before {
  content: '';
  position: absolute;
  width: 480px; height: 300px;
  right: -120px; top: -140px;
  background: radial-gradient(circle, rgba(201,255,59,0.1), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.price-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
.offer-price {
  font-family: var(--font-display);
  font-stretch: 118%;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--volt);
}
.offer-price .mono { font-size: 11px; color: var(--dim); margin-left: 8px; letter-spacing: 0.12em; }
.offer-lede { color: var(--dim); font-size: 18.5px; margin-bottom: 40px; max-width: 56ch; }
.offer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 48px;
}
.offer-block .mono { display: block; margin-bottom: 14px; color: var(--volt); }
.offer-block ul { list-style: none; }
.offer-block li {
  color: var(--dim);
  font-size: 16px;
  padding: 11px 0 11px 26px;
  border-top: 1px solid var(--line);
  position: relative;
}
.offer-block li::before {
  content: '+';
  position: absolute;
  left: 2px; top: 10px;
  color: var(--volt);
  font-family: var(--font-mono);
}
.offer-block li strong { color: var(--text); font-weight: 600; }
.offer-block p { color: var(--dim); font-size: 16px; }
.offer-block p + p { margin-top: 14px; }
.offer-block p strong { color: var(--text); }
.offer-fineprint { margin-top: 38px; display: flex; flex-direction: column; gap: 8px; }
.offer-fineprint .mono { color: var(--faint); font-size: 11px; }
.offers-minor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.offer-card {
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 40px 40px 36px;
  display: flex;
  flex-direction: column;
}
.offer-card .offer-price { font-size: 1.5rem; }
.offer-card .offer-lede { margin-bottom: 26px; font-size: 16.5px; }
.offer-card ul { list-style: none; margin-bottom: 8px; }
.offer-card li {
  color: var(--dim);
  font-size: 15.5px;
  padding: 10px 0 10px 24px;
  border-top: 1px solid var(--line);
  position: relative;
}
.offer-card li::before {
  content: '+';
  position: absolute; left: 0; top: 9px;
  color: var(--volt);
  font-family: var(--font-mono);
}
.offer-card li strong { color: var(--text); font-weight: 600; }
.offer-card .offer-fineprint { margin-top: auto; padding-top: 22px; }
.offer-card .offer-fineprint p { color: var(--dim); font-size: 14.5px; }
.offer-card .cta-row { margin-top: 26px; }

/* ═══ OPERATOR ═══ */
.operator {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 64px;
  align-items: center;
}
.portrait-stage {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(140% 110% at 50% 108%, rgba(201,255,59,0.34), rgba(201,255,59,0.05) 55%, transparent 75%),
    linear-gradient(180deg, #0E120B, #080B06);
}
.portrait-stage { padding: 44px 36px 0; }
.portrait-stage img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
}
.operator .copy p:first-of-type { color: var(--text); font-size: 22px; font-weight: 600; }

/* ═══ FAQ ═══ */
.qa { border-radius: var(--r-card); border: 1px solid var(--line); overflow: hidden; }
.qa-item + .qa-item { border-top: 1px solid var(--line); }
.qa-item button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 17px;
  color: var(--text);
  padding: 22px 60px 22px 26px;
  cursor: pointer;
  position: relative;
  transition: background 200ms ease;
}
.qa-item button:hover { background: rgba(255,255,255,0.03); }
.qa-item button::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 18px;
  position: absolute;
  right: 26px; top: 50%;
  transform: translateY(-50%);
  color: var(--volt);
  transition: transform 300ms ease;
}
.qa-item button[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.qa-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms cubic-bezier(.2,.7,.2,1);
}
.qa-item .answer p {
  color: var(--dim);
  font-size: 16px;
  padding: 0 26px 24px;
  max-width: 68ch;
}

/* ═══ FINAL CTA ═══ */
.final-cta { text-align: center; }
.final-cta h2 { max-width: 22ch; margin: 0 auto 16px; }
.final-cta .lede { color: var(--dim); font-size: 19px; max-width: 46ch; margin: 0 auto; }
.calendly-shell {
  margin: 52px auto 0;
  max-width: 920px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 40px 120px -40px rgba(0,0,0,0.8);
}
.calendly-inline-widget { min-height: 700px; }

/* ═══ FOOTER ═══ */
footer.site {
  border-top: 1px solid var(--line);
  margin-top: 130px;
  padding: 44px 0 60px;
}
footer.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
}
footer.site .links { display: flex; gap: 26px; }
footer.site .links a { color: var(--dim); transition: color 200ms ease; }
footer.site .links a:hover { color: var(--volt); }
footer.site .mono { color: var(--faint); }

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(.2,.7,.2,1), transform 700ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .stat-chip.c1, .stat-chip.c2 { animation: none; }
  .phone { transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1080px) {
  .stat-chip.c1 { left: -20px; }
  .stat-chip.c2 { right: -14px; }
}
@media (max-width: 900px) {
  .section { padding-top: 84px; }
  #hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy .subhead { max-width: 60ch; }
  .case-grid, .retention-aside, .operator { grid-template-columns: 1fr; gap: 40px; }
  .offer-cols { grid-template-columns: 1fr; gap: 32px; }
  .offer-flag-inner { padding: 36px 26px 34px; }
  .waves { grid-template-columns: 1fr; }
  .proof-band { grid-template-columns: 1fr; }
  .bento-3, .stills { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav-right .textlink { display: none; }
  .bento-3, .stills, .two-up, .offers-minor, .evidence-pair { grid-template-columns: 1fr; }
  .stat-chip.c1 { top: 30px; left: -8px; }
  .stat-chip.c2 { bottom: 40px; right: -8px; }
  .stat-chip .num { font-size: 15px; }
  .phone { width: min(280px, 82vw); }
  footer.site .wrap { flex-direction: column; }
  .offer-price { font-size: 1.9rem; }
  h1 { font-size: clamp(2.4rem, 10vw, 3rem); }
}
