/* ═══════════════════════════════════════════════════
   HOPE DEALERS NOT DOPE DEALERS — hope-dealers.css
   Palette: Near-black · Raw concrete · Neon seafoam · Bone
   Type: Bebas Neue (impact) + Space Mono (coded) + DM Sans
   Signature: Animated DOPE→HOPE headline swap on load
   Audience: Addiction & recovery community
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Mono:ital,wght@0,400;0,700;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --black:      #080808;
  --near-black: #0E0E0E;
  --concrete:   #1C1C1C;
  --concrete-lt:#2A2A2A;
  --wire:       #3A3A3A;
  --wire-lt:    #505050;
  --bone:       #F0EBE0;
  --bone-lt:    #FAF7F2;
  --dim:        rgba(240,235,224,.45);
  --dimmer:     rgba(240,235,224,.2);
  --neon:       #00D4AA;
  --neon-lt:    #3DDDBB;
  --neon-dim:   rgba(0,212,170,.15);
  --neon-glow:  rgba(0,212,170,.35);
  --red:        #E03030;

  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md:   1.1875rem;
  --fs-lg:   1.5rem;
  --fs-xl:   2rem;
  --fs-2xl:  2.75rem;
  --fs-3xl:  4rem;
  --fs-disp: clamp(4rem, 11vw, 10rem);

  --gut:   clamp(1.5rem, 5vw, 5rem);
  --max-w: 1280px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── CONTAINER ─────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--near-black);
  color: var(--bone);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }
img, svg { display: block; max-width: 100%; }

/* ── CURSOR ─────────────────────────────────────── */
.cur-dot {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--neon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease);
  box-shadow: 0 0 12px var(--neon-glow);
}
.cur-ring {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid rgba(0,212,170,.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .4s var(--ease), height .4s var(--ease);
}
.cur-dot.hov  { width: 16px; height: 16px; }
.cur-ring.hov { width: 48px; height: 48px; border-color: rgba(0,212,170,.5); }

/* ── NAV ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.5rem var(--gut);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .5s, padding .4s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 1rem; padding-bottom: 1rem;
  border-bottom-color: rgba(255,255,255,.05);
}
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .1em;
  color: var(--wire-lt);
  transition: color .2s;
}
.nav-back:hover { color: var(--neon); }
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .12em;
  color: var(--bone);
}
.nav-brand em {
  color: var(--neon);
  font-style: normal;
}
.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--neon);
  padding: .6rem 1.4rem;
  transition: background .2s, box-shadow .2s;
}
.nav-cta:hover {
  background: var(--neon-lt);
  box-shadow: 0 0 20px var(--neon-glow);
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  border: 1px solid var(--wire);
  cursor: pointer;
  transition: border-color .2s;
}
.nav-burger:hover { border-color: var(--neon); }
.b-bar {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--bone);
  transition: transform .35s var(--ease), opacity .25s, width .35s;
  transform-origin: center;
}
.nav-burger.open .b-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open .b-bar:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open .b-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ────────────────────────────────── */
.mob-menu {
  position: fixed; inset: 0;
  z-index: 190;
  background: var(--black);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 1.5rem var(--gut);
  border-left: 2px solid var(--neon);
}
.mob-menu.open { transform: translateX(0); }
.mob-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--wire);
  margin-bottom: 2.5rem;
}
.mob-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .12em;
  color: var(--bone);
}
.mob-brand em { color: var(--neon); font-style: normal; }
.mob-close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wire-lt);
  border: 1px solid var(--wire);
  transition: border-color .2s, color .2s;
}
.mob-close:hover { border-color: var(--neon); color: var(--neon); }
.mob-nav { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mob-nav-link {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 10vw, 4rem);
  letter-spacing: .06em;
  color: rgba(240,235,224,.6);
  padding: .3rem 0;
  border-bottom: 1px solid var(--wire);
  transition: color .2s, padding-left .3s var(--ease);
  line-height: 1.1;
}
.mob-nav-link:hover { color: var(--neon); padding-left: 1rem; }
.mob-foot {
  padding-top: 2rem;
  border-top: 1px solid var(--wire);
  margin-top: 1.5rem;
}
.mob-back-lnk {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .1em;
  color: var(--wire-lt);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}
.mob-back-lnk:hover { color: var(--neon); }

/* ═══════════════════════════════════════════════
   HERO — the DOPE/HOPE animated swap is the signature
═══════════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Scanline texture — CRT/street feel */
.hero-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0,0,0,.08) 2px,
    rgba(0,0,0,.08) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Neon ground glow */
.hero-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(0,212,170,.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Concrete texture */
.hero-texture {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 120px;
  padding-bottom: 4rem;
}

.hero-kicker {
  opacity: 0;
  animation: fadeUp .8s var(--ease) .2s forwards;
  margin-bottom: 1.5rem;
}
.hero-kicker-tag {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--neon);
}
.hero-kicker-tag::before {
  content: '> ';
  opacity: .5;
}

/* ── THE SIGNATURE ELEMENT: DOPE → HOPE animated swap ── */
.hero-swap-wrap {
  overflow: hidden;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}

.hero-swap-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-disp);
  letter-spacing: .04em;
  line-height: .92;
  display: flex;
  align-items: baseline;
  gap: .12em;
  white-space: nowrap;
}

/* DOPE — starts visible, gets crossed out then fades */
.word-dope {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.word-dope::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  top: 50%;
  height: 3px;
  background: var(--red);
  animation: strikeThrough 0.4s var(--ease) 1.2s forwards;
}
.word-dope-wrap {
  overflow: hidden;
  display: inline-block;
  animation: fadeOutWord 0.3s var(--ease) 1.8s forwards;
}

/* HOPE — starts hidden, slides in after DOPE fades */
.word-hope-wrap {
  overflow: hidden;
  display: inline-block;
  width: 0;
  animation: revealHope 0.5s var(--ease) 1.9s forwards;
}
.word-hope {
  color: var(--neon);
  text-shadow: 0 0 40px rgba(0,212,170,.4);
  white-space: nowrap;
  display: inline-block;
  transform: translateX(-20px);
  animation: slideHope 0.5s var(--ease) 1.9s forwards;
}

.hero-swap-dealers {
  font-family: 'Bebas Neue', sans-serif;
  font-size: var(--fs-disp);
  letter-spacing: .04em;
  line-height: .92;
  color: var(--bone);
  opacity: 0;
  animation: fadeUp .8s var(--ease) .4s forwards;
}

.hero-swap-not {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 3.5rem);
  letter-spacing: .08em;
  color: var(--wire-lt);
  margin-top: .2em;
  margin-bottom: .1em;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .5s forwards;
}

@keyframes strikeThrough {
  from { right: 100%; }
  to   { right: 0; }
}
@keyframes fadeOutWord {
  from { opacity: 1; max-width: 999px; }
  to   { opacity: 0; max-width: 0; overflow: hidden; }
}
@keyframes revealHope {
  from { width: 0; }
  to   { width: 12ch; }
}
@keyframes slideHope {
  from { transform: translateX(-20px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* Hero bottom strip */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wire);
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s forwards;
}
.hero-desc {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--dim);
  line-height: 1.85;
}
.hero-desc strong { color: var(--bone); font-weight: 400; }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--wire);
  align-content: start;
}
.hero-stat {
  background: var(--concrete);
  padding: 1.25rem;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: .04em;
  color: var(--neon);
  line-height: 1;
  display: block;
  text-shadow: 0 0 20px rgba(0,212,170,.3);
}
.hero-stat-lbl {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--wire-lt);
  margin-top: .3rem;
  display: block;
  line-height: 1.4;
}

.hero-scroll {
  position: relative; z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.1s forwards;
}
.hero-scroll span {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dimmer);
}
.hero-scroll-bar {
  width: 40px; height: 1px;
  background: linear-gradient(to right, var(--neon), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite 1.5s;
}
@keyframes scrollPulse { 0%,100%{width:28px;opacity:.3} 50%{width:56px;opacity:.8} }

/* ═══════════════════════════════════════════════
   WHAT'S ON THE TABLE — the product comparison
═══════════════════════════════════════════════ */
.product {
  background: var(--concrete);
  border-top: 1px solid var(--wire);
  padding: 6rem 0;
}
.product-head {
  margin-bottom: 4rem;
}
.product-tag {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.product-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--neon);
}
.product-hl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--bone);
}
.product-hl em {
  color: var(--neon);
  font-style: normal;
}

/* Two-column product comparison — dope vs hope */
.product-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--wire);
}
.product-col {
  background: var(--near-black);
  padding: 3rem 2.5rem;
}
.product-col-header {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: .08em;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--wire);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product-col-dope .product-col-header { color: var(--red); border-bottom-color: var(--red); }
.product-col-hope .product-col-header { color: var(--neon); border-bottom-color: var(--neon); }

.product-col-price {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .12em;
  color: var(--wire-lt);
  margin-bottom: 2rem;
  padding: .75rem 1rem;
  border: 1px solid var(--wire);
}
.product-col-price strong { color: var(--bone); }

.product-rows { display: flex; flex-direction: column; gap: 1px; }
.product-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--wire);
  align-items: start;

  transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .2s;
}
.product-row:last-child { border-bottom: none; }
.product-row-icon {
  font-size: 1rem;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
}
.product-row-text {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--dim);
  line-height: 1.5;
}
.product-row-text strong {
  font-weight: 500;
  color: var(--bone);
  display: block;
  margin-bottom: .2rem;
}

/* ═══════════════════════════════════════════════
   TESTIMONY — raw words from recovery
═══════════════════════════════════════════════ */
.testimony {
  background: var(--black);
  padding: 6rem 0;
  border-top: 1px solid var(--wire);
  position: relative;
  overflow: hidden;
}
.testimony-neon-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--neon), transparent);
  opacity: .4;
}
.testimony-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.testimony-tag {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.testimony-tag::before { content: ''; width: 24px; height: 1px; background: var(--neon); }
.testimony-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  letter-spacing: .03em;
  line-height: 1.15;
  color: var(--bone);
  margin-bottom: 2rem;
}
.testimony-quote em {
  color: var(--neon);
  font-style: normal;
}
.testimony-attrib {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wire-lt);
}

/* ═══════════════════════════════════════════════
   THE DEAL — what's being offered
═══════════════════════════════════════════════ */
.deal {
  background: var(--concrete-lt);
  padding: 6rem 0;
  border-top: 1px solid var(--wire);
}
.deal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.deal-left {}
.deal-tag {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.deal-tag::before { content: ''; width: 24px; height: 1px; background: var(--neon); }
.deal-hl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 1.5rem;
}
.deal-hl em { color: var(--neon); font-style: normal; }
.deal-p {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--dim);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.deal-p strong { color: var(--bone); font-weight: 400; }

/* Deal terms — styled like a street contract */
.deal-terms {
  background: var(--black);
  border: 1px solid var(--wire);
  border-left: 3px solid var(--neon);
  padding: 2rem 2rem 2rem 2.5rem;
}
.deal-terms-header {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--neon);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--wire);
}
.deal-term {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  align-items: start;
}
.deal-term:last-child { border-bottom: none; }
.deal-term-check {
  color: var(--neon);
  font-size: .9rem;
  margin-top: .1rem;
}
.deal-term-text {
  font-size: var(--fs-sm);
  font-weight: 300;
  color: var(--dim);
  line-height: 1.5;
}
.deal-term-text strong { color: var(--bone); font-weight: 500; }

/* ═══════════════════════════════════════════════
   ERIC
═══════════════════════════════════════════════ */
.eric {
  background: var(--near-black);
  padding: 6rem 0;
  border-top: 1px solid var(--wire);
}
.eric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.eric-tag {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.eric-tag::before { content: ''; width: 24px; height: 1px; background: var(--neon); }
.eric-hl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 1.5rem;
}
.eric-hl em { color: var(--neon); font-style: normal; }
.eric-p {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--dim);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.eric-p strong { color: var(--bone); font-weight: 400; }
.eric-pull {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  letter-spacing: .04em;
  line-height: 1.15;
  color: var(--neon);
  border-left: 3px solid var(--neon);
  padding-left: 1.5rem;
  margin: 2rem 0;
  text-shadow: 0 0 30px rgba(0,212,170,.25);
}

/* Eric's address card */
.eric-card {
  background: var(--concrete);
  border: 1px solid var(--wire);
  padding: 2.5rem;
}
.eric-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: var(--bone);
  margin-bottom: .5rem;
}
.eric-card-sub {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .14em;
  color: var(--wire-lt);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--wire);
  line-height: 1.6;
}
.eric-card-stat {
  margin-bottom: 1rem;
}
.eric-card-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: .04em;
  color: var(--neon);
  line-height: 1;
  display: block;
  text-shadow: 0 0 20px rgba(0,212,170,.2);
}
.eric-card-stat-lbl {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--wire-lt);
  display: block;
  margin-top: .25rem;
}

/* ═══════════════════════════════════════════════
   CONNECT
═══════════════════════════════════════════════ */
.connect {
  background: var(--black);
  padding: 6rem 0;
  border-top: 2px solid var(--neon);
  position: relative;
}
.connect-neon {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--neon-lt), transparent);
  box-shadow: 0 0 20px var(--neon-glow);
}
.connect-inner {
  max-width: 680px;
  margin: 0 auto;
}
.connect-tag {
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--neon);
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.connect-tag::before { content: ''; width: 24px; height: 1px; background: var(--neon); }
.connect-hl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: .04em;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 1rem;
}
.connect-hl em { color: var(--neon); font-style: normal; }
.connect-sub {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--dim);
  line-height: 1.8;
  margin-bottom: 3rem;
}
.connect-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wire-lt);
}
.form-input,
.form-textarea {
  background: var(--concrete);
  border: 1px solid var(--wire);
  color: var(--bone);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 300;
  padding: .85rem 1.1rem;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  width: 100%;

  min-height: 120px; resize: vertical;
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--wire-lt); }
.form-input:focus,
.form-textarea:focus {
  border-color: var(--neon);
  background: var(--concrete-lt);
  box-shadow: 0 0 0 3px rgba(0,212,170,.08);
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.5rem;
  background: var(--neon);
  color: var(--black);
  font-family: 'Space Mono', monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--neon);
  transition: background .2s, box-shadow .2s, transform .2s;
  align-self: flex-start;
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--neon-lt);
  transform: translateX(-101%);
  transition: transform .4s var(--ease);
}
.form-submit:hover::before { transform: none; }
.form-submit:hover { box-shadow: 0 0 24px var(--neon-glow); transform: translateY(-2px); }
.form-submit span, .form-submit svg { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--wire);
  padding: 2.5rem 0 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--wire);
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .1em;
  color: var(--wire-lt);
}
.footer-brand em { color: var(--neon); font-style: normal; }
.footer-back {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .12em;
  color: var(--wire-lt);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s;
}
.footer-back:hover { color: var(--neon); }
.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: .06em;
  color: rgba(240,235,224,.15);
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.rev {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.rev.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-split   { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats   { grid-template-columns: repeat(4, 1fr); }
  .product-compare { grid-template-columns: 1fr; }
  .deal-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .eric-grid    { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 700px) {
  :root { --gut: 1.25rem; }
  body  { cursor: auto; }
  .cur-dot, .cur-ring { display: none; }
  .nav-cta    { display: none; }
  .nav-burger { display: flex; }
  body.mob-open { overflow: hidden; }
  .hero-inner { padding-top: 100px; padding-bottom: 3rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .product    { padding: 4rem 0; }
  .product-col { padding: 2rem 1.5rem; }
  .testimony  { padding: 4rem 0; }
  .deal       { padding: 4rem 0; }
  .eric       { padding: 4rem 0; }
  .connect    { padding: 4rem 0; }
  .form-row   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .product-compare { grid-template-columns: 1fr; }
}

/* Product row stagger — JS-toggled class */
.row-hidden { opacity: 0; transform: translateX(-12px); }

