/* ═════════════════════════════════════════════════════════════
   SCOTT HENDERSON REAL ESTATE - Marketing Matters.
   Shared design system. Synthwave. Hot magenta. Neon cyan.
   ═════════════════════════════════════════════════════════════ */

:root {
  --pink:       #E91E8C;
  --pink-hot:   #FF2D95;
  --cyan:       #00D9FF;
  --purple:     #9B2C8A;
  --orange:     #FF6B35;
  --green:      #39FF14;
  --navy:       #0B0B1E;
  --navy-deep:  #050510;
  --navy-mid:   #1A1A2E;
  --white:      #FFFFFF;
  --grey-soft:  #C9D8FF;
  --grey-muted: rgba(201, 216, 255, .55);
  --shadow-pink: 0 0 24px rgba(233, 30, 140, .55);
  --shadow-cyan: 0 0 24px rgba(0, 217, 255, .55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--navy-deep);
  color: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ── NAVIGATION ────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 18px 36px;
  display: flex; align-items: center; justify-content: space-between;
  z-index: 100;
  background: rgba(11, 11, 30, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233, 30, 140, .2);
}
.nav-brand {
  font-family: 'Bungee', cursive;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--pink-hot);
  text-shadow: 0 0 12px rgba(255, 45, 149, .8);
  display: flex; align-items: center; gap: 6px;
}
.nav-brand span { color: var(--cyan); text-shadow: 0 0 10px var(--cyan); }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--grey-soft);
  transition: color .2s, text-shadow .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--cyan); text-shadow: 0 0 8px var(--cyan);
}
.nav-cta {
  padding: 10px 20px;
  border: 2px solid var(--pink-hot);
  border-radius: 999px;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white) !important;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  box-shadow: var(--shadow-pink);
  transition: transform .2s, box-shadow .2s;
  text-shadow: none !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(255,45,149,.8); }

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--pink-hot);
  box-shadow: 0 0 4px var(--pink-hot);
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav { padding: 14px 20px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(11, 11, 30, .98);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-bottom: 2px solid var(--pink-hot);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px; border-bottom: 1px solid rgba(233, 30, 140, .15); width: 100%; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { width: 100%; text-align: center; margin-top: 8px; }
}

/* ── HERO BACKGROUND SYSTEM ───────────────────────────── */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-sun {
  position: absolute;
  top: 32%; left: 50%;
  transform: translate(-50%, -50%);
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, #FF6B35 0%, #E91E8C 35%, #9B2C8A 65%, transparent 80%);
  filter: blur(4px);
  z-index: 0;
  animation: pulse-sun 6s ease-in-out infinite;
}
.hero-sun::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg,
    transparent 0px, transparent 18px,
    rgba(11, 11, 30, .9) 18px, rgba(11, 11, 30, .9) 22px);
  border-radius: 50%; opacity: .65;
}
@keyframes pulse-sun {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: .9; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}
.grid-floor {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 200vw; height: 50vh;
  perspective: 800px; z-index: 1;
}
.grid-floor::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--cyan) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: rotateX(62deg);
  transform-origin: center bottom;
  animation: grid-scroll 4s linear infinite;
  box-shadow: 0 0 60px rgba(0, 217, 255, .6);
  opacity: .55;
}
@keyframes grid-scroll {
  0% { background-position: 0 0; }
  100% { background-position: 0 60px; }
}
.grid-floor::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    var(--navy-deep) 0%, rgba(5, 5, 16, .3) 40%, transparent 100%);
}
.stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: .2; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ── HERO LAYOUTS ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(155, 44, 138, .35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(0, 217, 255, .18) 0%, transparent 45%),
    linear-gradient(180deg, #1a0a2e 0%, #0b0b1e 60%, #050510 100%);
}
.hero-short {
  min-height: 60vh;
  padding: 140px 24px 60px;
}
.hero-content { position: relative; z-index: 10; max-width: 1100px; }
.hero-eyebrow {
  display: inline-block;
  padding: 8px 22px;
  border: 1.5px solid var(--cyan);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan);
  margin-bottom: 28px;
  background: rgba(0, 217, 255, .06);
  animation: fade-up 1s ease-out;
}
.hero h1 {
  font-family: 'Monoton', cursive;
  font-size: clamp(48px, 10vw, 156px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: 2px;
  color: var(--white);
  text-shadow:
    0 0 12px rgba(255, 255, 255, .9),
    0 0 28px rgba(255, 45, 149, .8),
    0 0 60px rgba(255, 45, 149, .6),
    0 0 100px rgba(155, 44, 138, .4);
  margin-bottom: 8px;
  animation: fade-up 1.1s .15s ease-out backwards;
}
.hero h1 .period {
  color: var(--cyan);
  text-shadow:
    0 0 12px var(--cyan),
    0 0 28px rgba(0, 217, 255, .8),
    0 0 60px rgba(0, 217, 255, .5);
}
.hero-script {
  font-family: 'Caveat', cursive;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--pink-hot);
  text-shadow: 0 0 10px var(--pink-hot);
  margin-bottom: 24px;
  animation: fade-up 1.1s .35s ease-out backwards;
}
.hero-sub {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--grey-soft);
  line-height: 1.65;
  animation: fade-up 1.1s .55s ease-out backwards;
}
.hero-sub strong { color: var(--white); font-weight: 700; }
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fade-up 1.1s .75s ease-out backwards;
}
.hero-press {
  position: relative; z-index: 10;
  display: flex; gap: 18px; align-items: center; justify-content: center;
  flex-wrap: wrap;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(201, 216, 255, .5);
  animation: fade-up 1.1s .95s ease-out backwards;
}
.hero-press span:first-child { color: var(--cyan); }
.hero-press .divider {
  width: 4px; height: 4px;
  background: var(--pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--pink);
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn {
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary {
  background: linear-gradient(90deg, var(--pink-hot), var(--purple));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 45, 149, .4), 0 0 30px rgba(255, 45, 149, .3);
  border: 2px solid var(--pink-hot);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 45, 149, .6), 0 0 40px rgba(255, 45, 149, .5);
}
.btn-ghost {
  background: transparent;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan);
  box-shadow: 0 0 20px rgba(0, 217, 255, .2);
}
.btn-ghost:hover {
  background: rgba(0, 217, 255, .1);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 217, 255, .4);
}
.btn-large { padding: 20px 40px; font-size: 14px; }

/* ── DECORATIONS ───────────────────────────────────────── */
.bolt {
  position: absolute;
  width: 60px; height: 60px;
  z-index: 5;
  filter: drop-shadow(0 0 12px var(--cyan));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}
.sparkle {
  position: absolute;
  width: 14px; height: 14px;
  z-index: 6;
  filter: drop-shadow(0 0 6px var(--pink));
  animation: sparkle-twirl 3s ease-in-out infinite;
}
@keyframes sparkle-twirl {
  0%, 100% { transform: scale(.7) rotate(0); opacity: .5; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* ── MARQUEE ───────────────────────────────────────────── */
.marquee {
  background: var(--pink);
  color: var(--navy-deep);
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  box-shadow: 0 0 30px rgba(233, 30, 140, .4);
}
.marquee-track {
  display: inline-flex; gap: 60px;
  animation: marquee 30s linear infinite;
  font-family: 'Bungee', cursive;
  font-size: 28px;
  letter-spacing: 4px;
}
.marquee-item { display: inline-flex; align-items: center; gap: 60px; }
.marquee-dot { color: var(--cyan); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── SECTIONS ──────────────────────────────────────────── */
section { position: relative; padding: 110px 24px; }
section.tight { padding: 70px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.container-wide { max-width: 1400px; margin: 0 auto; }
.container-narrow { max-width: 880px; margin: 0 auto; }
.text-center { text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 5px; text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
  margin-bottom: 20px;
}
.section-eyebrow.pink { color: var(--pink-hot); text-shadow: 0 0 10px var(--pink-hot); }
.section-eyebrow.orange { color: var(--orange); text-shadow: 0 0 10px var(--orange); }
.section-title {
  font-family: 'Bungee', cursive;
  font-size: clamp(36px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 1px;
  margin-bottom: 28px;
  color: var(--white);
}
.section-title.medium { font-size: clamp(28px, 4.5vw, 56px); }
.section-title .accent {
  background: linear-gradient(90deg, var(--pink-hot), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(255, 45, 149, .4));
}
.section-lead {
  font-size: clamp(16px, 1.8vw, 21px);
  color: var(--grey-soft);
  max-width: 760px;
  line-height: 1.6;
  margin-bottom: 60px;
}
.section-lead.centered { margin-left: auto; margin-right: auto; }
.section-lead strong { color: var(--white); font-weight: 700; }
.section-lead .pink-accent { color: var(--pink-hot); font-weight: 600; }

/* Section backgrounds */
.bg-thesis {
  background: radial-gradient(ellipse at 20% 30%, rgba(155, 44, 138, .15) 0%, transparent 50%), var(--navy-deep);
}
.bg-music {
  background:
    radial-gradient(ellipse at 70% 50%, rgba(0, 217, 255, .12) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-deep) 0%, #0a0820 100%);
}
.bg-about {
  background: radial-gradient(ellipse at 30% 60%, rgba(255, 45, 149, .12) 0%, transparent 60%), var(--navy-deep);
}
.bg-paths {
  background: linear-gradient(180deg, var(--navy-deep) 0%, #1a0a2e 100%);
}
.bg-deep { background: var(--navy-deep); }
.bg-stripe {
  background:
    linear-gradient(180deg, transparent 0%, rgba(155, 44, 138, .08) 50%, transparent 100%),
    var(--navy-deep);
}

/* ── VIDEO EMBED FRAMES ────────────────────────────────── */
.video-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-mid);
  border: 2px solid var(--pink-hot);
  box-shadow: 0 0 40px rgba(255, 45, 149, .35), 0 0 0 6px rgba(11, 11, 30, .8), 0 0 0 8px var(--cyan);
  aspect-ratio: 16 / 9;
}
.video-frame.cyan-first {
  border-color: var(--cyan);
  box-shadow: 0 0 40px rgba(0, 217, 255, .35), 0 0 0 6px rgba(11, 11, 30, .8), 0 0 0 8px var(--pink-hot);
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-frame.vertical {
  aspect-ratio: 9 / 16;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 24px;
}

/* Featured hero video */
.featured-video {
  max-width: 1080px;
  margin: 0 auto;
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.video-card {
  background: rgba(26, 26, 46, .6);
  border: 1.5px solid rgba(0, 217, 255, .2);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink-hot);
  box-shadow: 0 12px 40px rgba(255, 45, 149, .3);
}
.video-card-frame {
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--navy-mid);
}
.video-card-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}
.video-card-body {
  padding: 18px 22px 22px;
}
.video-card-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 6px var(--cyan);
  margin-bottom: 8px;
}
.video-card-tag.pink { color: var(--pink-hot); text-shadow: 0 0 6px var(--pink-hot); }
.video-card-tag.orange { color: var(--orange); text-shadow: 0 0 6px var(--orange); }
.video-card h3 {
  font-family: 'Bungee', cursive;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 6px;
  color: var(--white);
}
.video-card p {
  font-size: 13.5px;
  color: var(--grey-muted);
  line-height: 1.5;
}

/* Vertical reel grid */
.reel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.reel-card {
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-mid);
  border: 2px solid var(--pink-hot);
  box-shadow: 0 0 24px rgba(255, 45, 149, .25);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.reel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(255, 45, 149, .5);
}
.reel-card iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* Channel embed (auto-pulls latest videos) */
.channel-embed {
  background: rgba(26, 26, 46, .5);
  border: 2px solid var(--cyan);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 217, 255, .3);
  aspect-ratio: 16 / 9;
  position: relative;
}
.channel-embed iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* ── CARDS ─────────────────────────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.scottie-card {
  padding: 32px 28px;
  background: rgba(26, 26, 46, .6);
  border: 1.5px solid rgba(0, 217, 255, .2);
  border-radius: 16px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.scottie-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255, 45, 149, .12) 0%, transparent 40%);
  opacity: 0;
  transition: opacity .4s;
}
.scottie-card:hover {
  transform: translateY(-6px);
  border-color: var(--pink-hot);
  box-shadow: 0 12px 40px rgba(255, 45, 149, .3);
}
.scottie-card:hover::before { opacity: 1; }
.card-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--pink-hot), var(--purple));
  box-shadow: 0 0 20px rgba(255, 45, 149, .5);
  color: white;
  position: relative; z-index: 1;
}
.card-icon.cyan {
  background: linear-gradient(135deg, var(--cyan), #0072FF);
  box-shadow: 0 0 20px rgba(0, 217, 255, .5);
}
.scottie-card h3 {
  font-family: 'Bungee', cursive;
  font-size: 18px;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  color: var(--white);
  position: relative; z-index: 1;
}
.scottie-card p {
  font-size: 14.5px;
  color: var(--grey-soft);
  line-height: 1.6;
  position: relative; z-index: 1;
}

/* ── ABOUT SECTION ─────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.about-photo {
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(233, 30, 140, .3), rgba(0, 217, 255, .2)),
    linear-gradient(180deg, #2a0a40, #0b0b1e);
  border: 2px solid var(--pink-hot);
  box-shadow: 0 20px 60px rgba(233, 30, 140, .4), 0 0 0 8px rgba(11, 11, 30, .8), 0 0 0 10px var(--cyan);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
}
.about-photo::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 107, 53, .2), transparent 50%),
    repeating-linear-gradient(0deg, transparent 0, transparent 28px, rgba(0, 217, 255, .04) 28px, rgba(0, 217, 255, .04) 30px);
  pointer-events: none;
}
.about-photo-label {
  font-family: 'Bungee', cursive;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, .4);
  text-align: center;
  padding: 16px;
  position: relative; z-index: 1;
}
.about-photo-label small {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 8px;
  opacity: .7;
}
.about-sticker {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink-hot));
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: 'Bungee', cursive;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--navy-deep);
  box-shadow: 0 0 30px rgba(0, 217, 255, .6);
  transform: rotate(-12deg);
  line-height: 1.1;
  padding: 10px;
  animation: wobble 4s ease-in-out infinite;
}
@keyframes wobble {
  0%, 100% { transform: rotate(-12deg); }
  50% { transform: rotate(-8deg) scale(1.04); }
}
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  font-size: 16.5px;
  color: var(--grey-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about-text p strong { color: var(--white); font-weight: 600; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.stat-num {
  font-family: 'Bungee Shade', cursive;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--pink-hot);
  text-shadow: 0 0 18px rgba(255, 45, 149, .6);
  line-height: 1;
}
.stat-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan);
  margin-top: 8px;
}

/* ── 100 vs 100K ──────────────────────────────────────── */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 50px;
}
@media (max-width: 880px) {
  .vs-grid { grid-template-columns: 1fr; }
  .vs-divider { display: none; }
}
.vs-card {
  padding: 40px 36px;
  border-radius: 18px;
  position: relative;
  transition: transform .3s;
}
.vs-card:hover { transform: translateY(-6px); }
.vs-card-old {
  background: rgba(35, 35, 55, .5);
  border: 1.5px solid rgba(150, 150, 170, .25);
  color: #aab0c4;
}
.vs-card-new {
  background: linear-gradient(135deg, rgba(233, 30, 140, .15) 0%, rgba(155, 44, 138, .08) 100%);
  border: 2px solid var(--pink);
  box-shadow: var(--shadow-pink), inset 0 0 40px rgba(233, 30, 140, .05);
  color: var(--white);
}
.vs-label {
  font-family: 'Bungee', cursive;
  font-size: 14px; letter-spacing: 3px;
  margin-bottom: 16px;
}
.vs-card-old .vs-label { color: #888da3; }
.vs-card-new .vs-label { color: var(--cyan); text-shadow: 0 0 8px var(--cyan); }
.vs-number {
  font-family: 'Bungee Shade', cursive;
  font-size: clamp(56px, 9vw, 110px);
  line-height: 1;
  margin-bottom: 8px;
}
.vs-card-old .vs-number { color: #6b7088; }
.vs-card-new .vs-number { color: var(--pink-hot); text-shadow: 0 0 28px rgba(255, 45, 149, .8); }
.vs-unit {
  font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px; opacity: .7;
}
.vs-list { list-style: none; }
.vs-list li {
  padding: 12px 0;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex; align-items: start; gap: 10px;
}
.vs-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  margin-top: 8px;
  border-radius: 50%;
}
.vs-card-old .vs-list li::before { background: #555a72; }
.vs-card-new .vs-list li::before { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

.vs-divider {
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bungee Shade', cursive;
  font-size: 64px;
  color: var(--cyan);
  text-shadow: 0 0 20px var(--cyan);
}
.thesis-punchline {
  text-align: center;
  font-family: 'Caveat', cursive;
  font-size: clamp(28px, 4vw, 42px);
  color: var(--pink-hot);
  text-shadow: 0 0 16px rgba(255, 45, 149, .6);
  margin-top: 30px;
}
.thesis-punchline span { color: var(--white); }

/* ── PATHS / CTA ──────────────────────────────────────── */
.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 880px) { .paths-grid { grid-template-columns: 1fr; } }
.path-card {
  padding: 50px 36px;
  border-radius: 20px;
  text-align: left;
  text-decoration: none;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.path-card:hover { transform: translateY(-8px); }
.path-sell {
  background: linear-gradient(135deg, var(--pink-hot) 0%, var(--purple) 100%);
  box-shadow: 0 16px 40px rgba(255, 45, 149, .4);
}
.path-sell:hover { box-shadow: 0 24px 60px rgba(255, 45, 149, .6); }
.path-buy {
  background: linear-gradient(135deg, var(--cyan) 0%, #0072FF 100%);
  color: var(--navy-deep);
  box-shadow: 0 16px 40px rgba(0, 217, 255, .4);
}
.path-buy:hover { box-shadow: 0 24px 60px rgba(0, 217, 255, .6); }
.path-chat {
  background: linear-gradient(135deg, #FF6B35 0%, #E91E8C 100%);
  box-shadow: 0 16px 40px rgba(255, 107, 53, .4);
}
.path-chat:hover { box-shadow: 0 24px 60px rgba(255, 107, 53, .6); }
.path-icon {
  font-family: 'Bungee', cursive;
  font-size: 11px;
  letter-spacing: 4px;
  margin-bottom: 16px;
  opacity: .85;
}
.path-card h3 {
  font-family: 'Bungee', cursive;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: 1px; line-height: 1;
  margin-bottom: 14px;
}
.path-card p {
  font-size: 15px; line-height: 1.55;
  opacity: .92; margin-bottom: 24px;
}
.path-arrow {
  font-family: 'Bungee', cursive;
  font-size: 13px;
  letter-spacing: 3px;
  display: inline-flex; align-items: center; gap: 10px;
}
.path-arrow::after {
  content: '→'; font-size: 22px;
  transition: transform .3s;
}
.path-card:hover .path-arrow::after { transform: translateX(6px); }

/* ── INSTAGRAM SECTION ────────────────────────────────── */
.ig-banner {
  background: linear-gradient(90deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ig-banner::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, .15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .1) 0%, transparent 40%);
}
.ig-banner-inner {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 24px;
  flex-wrap: wrap; justify-content: center;
  max-width: 900px;
}
.ig-banner-text {
  font-family: 'Bungee', cursive;
  font-size: clamp(18px, 2.5vw, 28px);
  letter-spacing: 1px;
  color: var(--white);
  text-shadow: 0 0 12px rgba(0, 0, 0, .3);
}
.ig-handle {
  color: var(--white);
  background: rgba(0, 0, 0, .25);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-decoration: none;
  border: 2px solid white;
  transition: transform .2s, background .2s;
  display: inline-block;
}
.ig-handle:hover { background: rgba(0, 0, 0, .45); transform: translateY(-2px); }
.ig-stats {
  display: flex; gap: 20px;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  align-items: center;
}
.ig-stats strong { font-size: 18px; }

/* ── PROCESS STEPS ─────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 50px;
}
.process-step {
  position: relative;
  padding: 32px 24px;
  background: rgba(26, 26, 46, .5);
  border-radius: 16px;
  border-top: 3px solid var(--pink-hot);
  transition: transform .3s;
}
.process-step:hover {
  transform: translateY(-4px);
  border-top-color: var(--cyan);
}
.process-num {
  font-family: 'Bungee Shade', cursive;
  font-size: 56px;
  line-height: 1;
  color: var(--pink-hot);
  text-shadow: 0 0 18px rgba(255, 45, 149, .5);
  margin-bottom: 12px;
}
.process-step h3 {
  font-family: 'Bungee', cursive;
  font-size: 16px;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: var(--white);
}
.process-step p {
  font-size: 14px;
  color: var(--grey-soft);
  line-height: 1.55;
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial {
  padding: 32px;
  background: rgba(26, 26, 46, .6);
  border: 1.5px solid rgba(255, 45, 149, .25);
  border-radius: 16px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-family: 'Bungee Shade', cursive;
  font-size: 80px;
  color: var(--pink-hot);
  text-shadow: 0 0 14px rgba(255, 45, 149, .5);
  line-height: 1;
  opacity: .25;
}
.testimonial-quote {
  font-size: 15.5px;
  color: var(--grey-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
  position: relative; z-index: 1;
}
.testimonial-author {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 6px var(--cyan);
}

/* ── PRESS LOGOS ──────────────────────────────────────── */
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.press-card {
  padding: 36px 24px;
  background: rgba(26, 26, 46, .4);
  border: 1.5px solid rgba(0, 217, 255, .2);
  border-radius: 14px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}
.press-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-hot);
}
.press-card-name {
  font-family: 'Bungee', cursive;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
}
.press-card-desc {
  font-size: 12.5px;
  color: var(--grey-muted);
  letter-spacing: 1px;
}

/* ── FORMS ─────────────────────────────────────────────── */
.form {
  background: rgba(26, 26, 46, .6);
  border: 1.5px solid rgba(255, 45, 149, .3);
  border-radius: 20px;
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}
.form-row { margin-bottom: 22px; }
.form-row label {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan);
  text-shadow: 0 0 6px var(--cyan);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(11, 11, 30, .6);
  border: 1.5px solid rgba(0, 217, 255, .2);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  transition: border-color .2s, box-shadow .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--pink-hot);
  box-shadow: 0 0 0 3px rgba(255, 45, 149, .15);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .form-grid-2 { grid-template-columns: 1fr; } }

/* ── FOOTER ───────────────────────────────────────────── */
.footer {
  background: #050510;
  padding: 80px 24px 30px;
  border-top: 2px solid var(--pink);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: -2px; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink-hot), var(--cyan), transparent);
  box-shadow: 0 0 20px var(--pink-hot);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand {
  font-family: 'Bungee', cursive;
  font-size: 22px;
  color: var(--pink-hot);
  text-shadow: 0 0 10px var(--pink-hot);
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.footer-tagline {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  color: var(--cyan);
  text-shadow: 0 0 10px var(--cyan);
  margin-bottom: 18px;
}
.footer p, .footer a { color: rgba(201, 216, 255, .65); font-size: 14px; line-height: 1.7; }
.footer a:hover { color: var(--cyan); }
.footer h4 {
  font-family: 'Bungee', cursive;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer-socials {
  display: flex; gap: 12px; margin-top: 16px;
}
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 45, 149, .15);
  border: 1.5px solid var(--pink-hot);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
}
.footer-socials a:hover {
  transform: translateY(-3px);
  background: var(--pink-hot);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font-size: 12px; color: rgba(201, 216, 255, .4);
}
.footer-bottom .disclaimer { max-width: 700px; }

/* ── SCROLL REVEAL ─────────────────────────────────────── */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease-out, transform .8s ease-out;
}
html.reveal-ready .reveal { opacity: 0; transform: translateY(40px); }
html.reveal-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* ── UTILITIES ─────────────────────────────────────────── */
.spacer-sm { height: 40px; }
.spacer-md { height: 80px; }
.spacer-lg { height: 120px; }
.text-pink { color: var(--pink-hot); }
.text-cyan { color: var(--cyan); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .grid-floor::before, .hero-sun, .bolt, .sparkle, .marquee-track { animation: none !important; }
}

/* ── BOOMSHAKALAKA STICKER (as image) ──────────────── */
.boom-sticker-img {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: auto;
  z-index: 10;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .6));
  transform: rotate(8deg);
  transition: transform .3s;
}
.boom-sticker-img:hover { transform: rotate(0deg) scale(1.05); }
@media (max-width: 700px) {
  .boom-sticker-img { width: 90px; bottom: -15px; right: -10px; }
}

/* ── SCOTT HENDERSON RETRO BRAND GRAPHIC ────────────── */
.retro-brand-graphic {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow:
    0 20px 60px rgba(233, 30, 140, .35),
    0 0 0 4px rgba(11, 11, 30, .8),
    0 0 0 6px var(--cyan);
}

/* ── PHOTOS - for hero and about portraits ─────────── */
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(233, 30, 140, .4), 0 0 0 6px rgba(11, 11, 30, .8), 0 0 0 8px var(--cyan);
  background: linear-gradient(180deg, #2a0a40, #0b0b1e);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 11, 30, .4) 100%);
  pointer-events: none;
}

.unicorn-hero {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(255, 45, 149, .5),
    0 0 0 6px rgba(11, 11, 30, .9),
    0 0 0 10px var(--cyan),
    0 0 0 14px var(--pink-hot);
  background: linear-gradient(180deg, #ffb3d9, #87ceeb);
  transform: rotate(-2deg);
  transition: transform .4s;
}
.unicorn-hero:hover { transform: rotate(0deg); }
.unicorn-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.unicorn-hero-tag {
  position: absolute;
  bottom: -18px; left: -10px;
  font-family: 'Bungee Shade', cursive;
  font-size: clamp(20px, 2.5vw, 30px);
  background: linear-gradient(90deg, var(--cyan), var(--pink-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .8));
  transform: rotate(-6deg);
  letter-spacing: 2px;
  pointer-events: none;
  z-index: 5;
}

/* ── EMBEDSOCIAL WIDGETS ─────────────────────────────── */
.embedsocial-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .98);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 40px rgba(0, 217, 255, .25), 0 0 0 4px rgba(11, 11, 30, .8), 0 0 0 6px var(--pink-hot);
  padding: 8px;
  min-height: 500px;
}
.embedsocial-wrap.pink-first {
  border-color: var(--pink-hot);
  box-shadow: 0 0 40px rgba(255, 45, 149, .35), 0 0 0 4px rgba(11, 11, 30, .8), 0 0 0 6px var(--cyan);
}
.embedsocial-wrap iframe { background: white; border-radius: 12px; width: 100%; min-height: 500px; border: 0; }
.embedsocial-hashtag { min-height: 500px; }

/* ── INSTAGRAM SHOWCASE SECTION ─── */
.bg-ig-showcase {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(253, 29, 29, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(252, 176, 69, .08) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, #1a0a20 100%);
}

/* Contact page portrait grid responsive */
@media (max-width: 720px) {
  .contact-portrait-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .contact-portrait-grid .hero-portrait {
    margin: 0 auto;
  }
}

/* ── EMBEDSOCIAL WIDGETS ─────────────────────────────── */
.embedsocial-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(11, 11, 30, .4);
  border: 2px solid var(--cyan);
  box-shadow: 0 0 40px rgba(0, 217, 255, .25), 0 0 0 6px rgba(11, 11, 30, .8), 0 0 0 8px var(--pink-hot);
  padding: 6px;
  min-height: 400px;
}
.embedsocial-wrap.pink-first {
  border-color: var(--pink-hot);
  box-shadow: 0 0 40px rgba(255, 45, 149, .35), 0 0 0 6px rgba(11, 11, 30, .8), 0 0 0 8px var(--cyan);
}
.embedsocial-wrap iframe { background: white; border-radius: 12px; }
.embedsocial-hashtag { min-height: 400px; }

/* ── HERO PORTRAIT (replaces about-photo placeholder when image present) ─── */
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(233, 30, 140, .4), 0 0 0 8px rgba(11, 11, 30, .8), 0 0 0 10px var(--cyan);
  background: linear-gradient(180deg, #2a0a40, #0b0b1e);
}
.hero-portrait img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-portrait::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 11, 30, .5) 100%);
  pointer-events: none;
}

/* ── UNICORN HERO (the iconic photo as a full-bleed hero element) ─── */
.unicorn-hero {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(255, 45, 149, .5),
    0 0 0 6px rgba(11, 11, 30, .9),
    0 0 0 10px var(--cyan),
    0 0 0 14px var(--pink-hot);
  background: linear-gradient(180deg, #ffb3d9, #87ceeb);
  transform: rotate(-2deg);
  transition: transform .4s;
}
.unicorn-hero:hover { transform: rotate(0deg); }
.unicorn-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.unicorn-hero-tag {
  position: absolute;
  bottom: -18px; right: -10px;
  font-family: 'Bungee Shade', cursive;
  font-size: clamp(28px, 4vw, 44px);
  background: linear-gradient(90deg, var(--cyan), var(--pink-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, .6));
  transform: rotate(-6deg);
  letter-spacing: 2px;
  pointer-events: none;
}

/* ── INSTAGRAM SHOWCASE SECTION ─── */
.ig-showcase {
  background:
    radial-gradient(ellipse at 30% 40%, rgba(253, 29, 29, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(252, 176, 69, .08) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, #1a0a20 100%);
}

/* ═══════════════════════════════════════════════════════════
   LEAD CAPTURE SYSTEM
   ═══════════════════════════════════════════════════════════ */

/* ── Multi-step form container ─── */
.lead-form {
  background: rgba(11, 11, 30, 0.6);
  border: 2px solid rgba(255, 45, 149, .3);
  border-radius: 18px;
  padding: 36px 30px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}
@media (max-width: 600px) {
  .lead-form { padding: 24px 18px; border-radius: 14px; }
}

/* Progress bar */
.lead-progress {
  margin-bottom: 30px;
}
.lead-progress-text {
  font-family: 'Bungee', cursive;
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--cyan);
  text-shadow: 0 0 6px var(--cyan);
  margin-bottom: 10px;
  text-align: center;
}
.lead-progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.lead-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--pink-hot), var(--cyan));
  width: 25%;
  transition: width 0.4s ease;
  box-shadow: 0 0 10px var(--pink-hot);
}

/* Step container */
.lead-step {
  animation: leadFadeIn 0.4s ease;
}
@keyframes leadFadeIn {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}
.lead-step-title {
  font-family: 'Bungee', cursive;
  font-size: clamp(20px, 3vw, 26px);
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}
.lead-step-title .accent {
  background: linear-gradient(90deg, var(--pink-hot), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead-step-sub {
  font-family: 'Caveat', cursive;
  font-size: 19px;
  color: var(--cyan);
  text-shadow: 0 0 6px var(--cyan);
  margin-bottom: 22px;
}

/* Field groups */
.lead-field {
  margin-bottom: 18px;
}
.lead-field label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 6px;
}
.lead-field label .req {
  color: var(--pink-hot);
}
.lead-field input[type="text"],
.lead-field input[type="email"],
.lead-field input[type="tel"],
.lead-field input[type="number"],
.lead-field select,
.lead-field textarea {
  width: 100%;
  background: rgba(0, 0, 0, .4);
  border: 1.5px solid rgba(0, 217, 255, .25);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.lead-field input::placeholder,
.lead-field textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}
.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: none;
  border-color: var(--pink-hot);
  box-shadow: 0 0 0 3px rgba(255, 45, 149, .2);
}
.lead-field input.invalid,
.lead-field select.invalid,
.lead-field textarea.invalid {
  border-color: #ff5050;
  box-shadow: 0 0 0 3px rgba(255, 80, 80, .15);
}
.lead-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}
.lead-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath fill='%2300D9FF' d='M7 8L0 0h14z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field-error {
  display: block;
  color: #ff5050;
  font-size: 13px;
  margin-top: 6px;
  min-height: 18px;
}
.field-helper {
  display: block;
  color: var(--grey-soft);
  font-size: 13px;
  margin-top: 6px;
  font-style: italic;
}

/* Two-column row */
.lead-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) {
  .lead-row { grid-template-columns: 1fr; }
}

/* Pill option grid (timeline, intent, etc) */
.lead-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.lead-pill {
  flex: 1 1 calc(50% - 10px);
  min-width: 140px;
}
.lead-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lead-pill label {
  display: block;
  text-align: center;
  background: rgba(0, 0, 0, .3);
  border: 1.5px solid rgba(0, 217, 255, .25);
  border-radius: 12px;
  padding: 14px 14px;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-transform: none;
  letter-spacing: 0;
  transition: all .2s;
  margin: 0;
}
.lead-pill input:checked + label {
  border-color: var(--pink-hot);
  background: rgba(255, 45, 149, .15);
  color: var(--white);
  box-shadow: 0 0 0 2px rgba(255, 45, 149, .3), 0 0 16px rgba(255, 45, 149, .2);
}
.lead-pill label:hover {
  border-color: var(--cyan);
}
.lead-pill .pill-icon {
  display: block;
  font-size: 24px;
  margin-bottom: 4px;
}
.lead-pill .pill-sub {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--grey-soft);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 3px;
}

/* Step navigation buttons */
.lead-nav {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}
.lead-nav .btn { flex: 1 1 auto; min-width: 140px; }
.lead-nav .btn-back {
  flex: 0 0 auto;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: var(--grey-soft);
}
.lead-nav .btn-back:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* Submit summary on final step */
.lead-summary {
  background: rgba(255, 45, 149, .08);
  border-left: 3px solid var(--pink-hot);
  padding: 16px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  color: var(--white);
  line-height: 1.7;
}
.lead-summary strong {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px;
  font-weight: 700;
}

/* Trust badges */
.lead-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 217, 255, .15);
  font-size: 12px;
  color: var(--grey-soft);
}
.lead-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lead-trust .check {
  color: #39FF14;
  font-weight: 900;
}

/* ── Newsletter modal ─── */
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11, 11, 30, .85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.newsletter-modal.open {
  display: flex;
  opacity: 1;
}
.newsletter-modal-inner {
  background: linear-gradient(160deg, #1a0a30 0%, #0b0b1e 100%);
  border: 2px solid var(--pink-hot);
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 80px rgba(255, 45, 149, .35), 0 0 0 4px rgba(0, 217, 255, .25);
  animation: leadFadeIn .35s ease;
}
@media (max-width: 600px) {
  .newsletter-modal-inner { padding: 30px 22px; }
}
.newsletter-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--grey-soft);
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 6px;
  transition: color .2s;
}
.newsletter-close:hover { color: var(--pink-hot); }
.newsletter-modal h3 {
  font-family: 'Monoton', cursive;
  font-size: clamp(28px, 5vw, 38px);
  letter-spacing: 2px;
  background: linear-gradient(180deg, #FFD700 0%, #FF2D95 60%, #00D9FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.newsletter-modal .modal-script {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--cyan);
  text-shadow: 0 0 8px var(--cyan);
  margin-bottom: 18px;
}
.newsletter-modal p {
  color: var(--grey-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* ── Sticky bottom CTA ─── */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 100;
  background: linear-gradient(135deg, #1a0a30 0%, #0b0b1e 100%);
  border-top: 2px solid var(--pink-hot);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  transition: bottom .4s ease;
  box-shadow: 0 -10px 40px rgba(255, 45, 149, .25);
}
.sticky-cta.visible { bottom: 0; }
.sticky-cta-text {
  font-family: 'Bungee', cursive;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--white);
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
}
.sticky-cta-text .accent {
  color: var(--pink-hot);
  text-shadow: 0 0 8px var(--pink-hot);
}
.sticky-cta-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sticky-cta .btn {
  padding: 10px 18px;
  font-size: 12px;
}
.sticky-cta-close {
  background: transparent;
  border: none;
  color: var(--grey-soft);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.sticky-cta-close:hover { color: var(--pink-hot); }
@media (max-width: 600px) {
  .sticky-cta-text { display: none; }
}

/* ── Lead form section wrap ─── */
.lead-section {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 45, 149, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(0, 217, 255, .1) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, #1a0a20 100%);
  padding: 70px 0;
}
.lead-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ═══════════════════════════════════════════════════════════════
   DOPAMINE BRIGHT - V3 GLOW LAYER  (overrides the dark base)
   Brighter, higher-energy, multi-colour neon. "Marketing Matters."
   ═══════════════════════════════════════════════════════════════ */
:root{
  --yellow:    #FFE600;
  --yellow-hot:#FAFF00;
  --lime:      #6BFF3C;
  --sky:       #38E1FF;
  --grape:     #B537F2;
  --coral:     #FF5E8A;
  --ink:       #14062e;            /* dark text for light cards */
  --rainbow: linear-gradient(90deg,#FF2D95 0%,#FF6B35 20%,#FFE600 40%,#39FF14 58%,#00D9FF 76%,#B537F2 100%);
  --glass: rgba(255,255,255,.07);
  --shadow-yellow: 0 0 24px rgba(255,230,0,.55);
  --shadow-lime:   0 0 24px rgba(107,255,60,.5);
}

/* ── Brighter, living background (replaces near-black void) ── */
body{
  background:
    radial-gradient(1100px 700px at 8% -6%, rgba(255,45,149,.30), transparent 60%),
    radial-gradient(1000px 680px at 100% 4%, rgba(0,217,255,.26), transparent 60%),
    radial-gradient(900px 700px at 50% 108%, rgba(181,55,242,.30), transparent 62%),
    radial-gradient(760px 560px at 92% 96%, rgba(107,255,60,.16), transparent 60%),
    linear-gradient(165deg,#241055 0%,#3a1370 24%,#5a1a86 44%,#34228c 64%,#142e74 84%,#0f2a66 100%);
  background-attachment: fixed;
}
/* drifting neon aurora blobs for extra life */
body::before{
  content:""; position:fixed; inset:-20% -10% -10% -10%; z-index:-2; pointer-events:none;
  background:
    radial-gradient(420px 420px at 18% 30%, rgba(255,230,0,.16), transparent 60%),
    radial-gradient(520px 520px at 82% 24%, rgba(0,217,255,.18), transparent 62%),
    radial-gradient(480px 480px at 70% 82%, rgba(255,45,149,.20), transparent 62%),
    radial-gradient(400px 400px at 26% 78%, rgba(107,255,60,.14), transparent 60%);
  animation: auroraDrift 26s ease-in-out infinite alternate;
}
@keyframes auroraDrift{ from{transform:translate3d(-2%,-1%,0) scale(1)} to{transform:translate3d(3%,2%,0) scale(1.08)} }

/* ── Section backgrounds: let the bright base glow through ── */
.bg-deep, .bg-grad-1, .bg-grad-2, .bg-grad-3, .bg-navy, .bg-mid{
  background: transparent !important;
}
section{ position: relative; }

/* ── Glass cards, brighter + neon-edged ── */
.card, .stat-card, .neighbourhood-card, .hood-card, .info-card, .step-card, .value-card, .press-card{
  background: var(--glass) !important;
  border: 1.5px solid rgba(255,255,255,.16) !important;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  box-shadow: 0 10px 34px rgba(10,4,30,.34), inset 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover, .neighbourhood-card:hover, .hood-card:hover, .step-card:hover, .value-card:hover{
  transform: translateY(-4px);
  border-color: var(--cyan) !important;
  box-shadow: 0 18px 44px rgba(0,217,255,.22), var(--shadow-pink);
}

/* ── Brighter nav + rainbow underline ── */
.nav{ background: rgba(36,16,85,.55) !important; -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.12); }
.nav::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background: var(--rainbow); opacity:.9; }

/* ── Buttons: brighter, glossier, more glow ── */
.btn-primary{ background: linear-gradient(90deg,var(--pink-hot),var(--grape) 60%,var(--cyan)); box-shadow: 0 8px 26px rgba(255,45,149,.5); }
.btn-primary:hover{ box-shadow: 0 0 30px rgba(255,45,149,.85), 0 0 50px rgba(0,217,255,.5); transform: translateY(-2px); }
.btn-ghost{ border-color: var(--cyan); color: var(--cyan); box-shadow: 0 0 16px rgba(0,217,255,.35) inset; }
.btn-ghost:hover{ background: var(--cyan); color: #08203a; box-shadow: var(--shadow-cyan); }

/* ── Headings pop: gradient accents brighter ── */
.section-title .accent, .hero h1 .accent{
  background: var(--rainbow); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.rainbow-text{
  background: var(--rainbow); background-size: 220% auto; -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; color:transparent;
  animation: rainbowSlide 6s linear infinite;
}
@keyframes rainbowSlide{ to{ background-position: 220% center; } }

/* ── AEO answer panel (for AI citations) ── */
.aeo-panel{
  background: linear-gradient(135deg, rgba(0,217,255,.10), rgba(255,45,149,.08));
  border: 1px solid rgba(0,217,255,.4); border-left: 5px solid var(--cyan);
  border-radius: 16px; padding: 22px 26px; margin: 22px 0;
  box-shadow: var(--shadow-cyan);
}
.aeo-panel .q{ font-family:'Bungee',sans-serif; font-size: clamp(15px,2.4vw,20px); color: var(--sky); margin-bottom: 8px; letter-spacing:.3px; }
.aeo-panel .a{ font-size: clamp(15px,2.2vw,18px); color: #fff; }
.aeo-panel .a strong{ color: var(--yellow-hot); }

/* ── Bright (light) content card - max readability + pop ── */
.bright-card{
  background: #fff; color: var(--ink); border-radius: 18px; padding: 28px 30px;
  box-shadow: 0 14px 40px rgba(255,45,149,.30), 0 0 0 3px rgba(255,255,255,.5);
}
.bright-card h3{ color: var(--pink); }
.bright-card a{ color: var(--grape); font-weight:700; }

/* ── 100 vs 100,000 contrast grid ── */
.vs-wrap{ display:grid; grid-template-columns:1fr auto 1fr; gap:18px; align-items:stretch; margin:30px 0; }
.vs-col{ border-radius:18px; padding:26px 24px; position:relative; overflow:hidden; }
.vs-col.cold{ background: rgba(255,255,255,.05); border:1.5px solid rgba(201,216,255,.3); }
.vs-col.hot{ background: linear-gradient(160deg, rgba(255,45,149,.18), rgba(181,55,242,.14)); border:1.5px solid var(--pink-hot); box-shadow: var(--shadow-pink); }
.vs-col h4{ font-family:'Bungee',sans-serif; font-size:14px; letter-spacing:1px; margin-bottom:6px; }
.vs-col.cold h4{ color: var(--grey-soft); }
.vs-col.hot h4{ color: var(--yellow-hot); }
.vs-num{ font-family:'Monoton',sans-serif; font-size: clamp(34px,7vw,68px); line-height:1; margin:6px 0 4px; }
.vs-col.cold .vs-num{ color:#9fb0d8; }
.vs-col.hot .vs-num{ background:var(--rainbow); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.vs-mid{ display:flex; align-items:center; justify-content:center; font-family:'Bungee',sans-serif; color:var(--cyan); font-size:22px; text-shadow:var(--shadow-cyan); }
@media(max-width:760px){ .vs-wrap{ grid-template-columns:1fr; } .vs-mid{ padding:6px 0; } }

/* exposure meter bar */
.expo{ height:16px; border-radius:999px; background:rgba(255,255,255,.12); overflow:hidden; margin-top:10px; border:1px solid rgba(255,255,255,.2); }
.expo > i{ display:block; height:100%; border-radius:999px; background:var(--rainbow); box-shadow:0 0 16px rgba(255,45,149,.6); }

/* chips / tags */
.chip{ display:inline-block; padding:6px 14px; border-radius:999px; font-family:'Bungee',sans-serif; font-size:11px; letter-spacing:1px; margin:4px 6px 4px 0; border:1.5px solid; }
.chip.pink{ color:var(--pink-hot); border-color:var(--pink-hot); box-shadow:0 0 12px rgba(255,45,149,.4); }
.chip.cyan{ color:var(--sky); border-color:var(--sky); box-shadow:0 0 12px rgba(0,217,255,.4); }
.chip.lime{ color:var(--lime); border-color:var(--lime); box-shadow:0 0 12px rgba(107,255,60,.4); }
.chip.yellow{ color:var(--yellow-hot); border-color:var(--yellow-hot); box-shadow:0 0 12px rgba(255,230,0,.4); }
.chip.grape{ color:#d79bff; border-color:var(--grape); box-shadow:0 0 12px rgba(181,55,242,.4); }

/* neon divider */
.neon-divider{ height:3px; border:0; border-radius:999px; background:var(--rainbow); box-shadow:0 0 18px rgba(255,45,149,.5); margin:34px auto; max-width:280px; }

/* glow text utils */
.glow-pink{ color:var(--pink-hot); text-shadow:0 0 12px rgba(255,45,149,.7); }
.glow-cyan{ color:var(--sky); text-shadow:0 0 12px rgba(0,217,255,.7); }
.glow-lime{ color:var(--lime); text-shadow:0 0 12px rgba(107,255,60,.7); }
.glow-yellow{ color:var(--yellow-hot); text-shadow:0 0 12px rgba(255,230,0,.7); }

/* mini data table for market pages */
.mkt-table{ width:100%; border-collapse:collapse; margin:18px 0; font-size:15px; background:var(--glass); border-radius:14px; overflow:hidden; }
.mkt-table th{ background:rgba(255,45,149,.22); color:#fff; font-family:'Bungee',sans-serif; font-size:11px; letter-spacing:.5px; padding:12px 14px; text-align:left; }
.mkt-table td{ padding:11px 14px; border-top:1px solid rgba(255,255,255,.1); }
.mkt-table tr:hover td{ background:rgba(0,217,255,.08); }

/* footer brighten */
.footer{ border-top:1px solid rgba(255,255,255,.12); }
.footer::before{ content:""; display:block; height:3px; background:var(--rainbow); opacity:.85; margin-bottom:28px; border-radius:999px; }

@media (prefers-reduced-motion: reduce){
  body::before{ animation:none; } .rainbow-text{ animation:none; }
}

/* ── Brighten the HERO (first impression) - vibrant, not near-black ── */
.hero{
  background:
    radial-gradient(ellipse at 50% 22%, rgba(255,45,149,.42) 0%, transparent 55%),
    radial-gradient(ellipse at 84% 64%, rgba(0,217,255,.30) 0%, transparent 48%),
    radial-gradient(ellipse at 14% 78%, rgba(107,255,60,.18) 0%, transparent 46%),
    radial-gradient(ellipse at 20% 18%, rgba(255,230,0,.16) 0%, transparent 44%),
    linear-gradient(180deg,#3a1270 0%,#5a1a86 38%,#2a1a78 70%,#142e74 100%) !important;
}
.hero-sun{ box-shadow: 0 0 70px rgba(255,45,149,.7), 0 0 120px rgba(181,55,242,.4); }
.hero-eyebrow{ background: rgba(255,255,255,.10) !important; border-color: rgba(255,255,255,.35) !important; }
/* keep hero text crisp on the brighter wash */
.hero h1{ text-shadow: 0 4px 30px rgba(10,2,30,.55); }
.hero-sub{ text-shadow: 0 2px 12px rgba(10,2,30,.5); }

/* ── Prominent tool feature card (Buy/Sell top-of-page) ── */
.tool-feature{ display:grid; grid-template-columns:auto 1fr; gap:26px; align-items:center; max-width:1000px; margin:0 auto;
  background:linear-gradient(135deg, rgba(255,45,149,.18), rgba(181,55,242,.12)); border:2px solid var(--pink-hot);
  border-radius:22px; padding:30px 34px; box-shadow:0 0 38px rgba(255,45,149,.45), inset 0 0 0 1px rgba(255,255,255,.06);
  transition:transform .2s ease, box-shadow .2s ease; text-decoration:none; }
.tool-feature:hover{ transform:translateY(-4px); box-shadow:0 0 52px rgba(0,217,255,.5), 0 0 64px rgba(255,45,149,.4); }
.tool-feature .tf-icon{ font-size:64px; line-height:1; filter:drop-shadow(0 0 14px rgba(255,230,0,.6)); }
.tool-feature h2{ font-family:'Bungee',sans-serif; font-size:clamp(22px,3.6vw,34px); line-height:1.08; margin:10px 0 10px; color:#fff; }
.tool-feature p{ color:var(--grey-soft); margin-bottom:18px; max-width:640px; }
.tool-feature .btn{ pointer-events:none; }
.tool-feature.cyan{ border-color:var(--cyan); background:linear-gradient(135deg, rgba(0,217,255,.18), rgba(57,255,20,.10)); box-shadow:0 0 38px rgba(0,217,255,.45), inset 0 0 0 1px rgba(255,255,255,.06); }
.tool-feature.cyan:hover{ box-shadow:0 0 52px rgba(57,255,20,.45), 0 0 64px rgba(0,217,255,.45); }
@media(max-width:640px){ .tool-feature{ grid-template-columns:1fr; text-align:center; } .tool-feature p{ margin-left:auto; margin-right:auto; } }
