/* ================================================================
   HgYperDrive Funnel — funnel.css
   Mobile-first, no frameworks, no JavaScript dependencies.

   Order:
     1. Design System (variables)
     2. Reset & Base
     3. Layout & Utilities
     4. Typography helpers
     5. Card base
     6. Buttons
     7. Header
     8. Hero
     9. Stats Strip
    10. Primary Offer (Tesla referral)
    11. Content (Videos + Instagram)
    12. Tools / Stack (Deals + Apps)
    13. Lead Capture (Contact form)
    14. FAQ
    15. Final CTA
    16. Footer
    17. Reduced motion
   ================================================================ */


/* ================================================================
   1. DESIGN SYSTEM
   ================================================================ */
:root {
  /* — Palette — */
  --c-bg:           #05060A;
  --c-surface:      #0B0C13;
  --c-surface-2:    #111320;
  --c-border:       rgba(255, 255, 255, 0.08);
  --c-border-hover: rgba(255, 255, 255, 0.17);

  --c-primary:      #6366F1;   /* indigo */
  --c-primary-lgt:  #818CF8;
  --c-accent:       #A855F7;   /* fuchsia */
  --c-pink:         #EC4899;
  --c-gold:         #F59E0B;   /* amber — primary CTA */
  --c-red:          #EF4444;
  --c-green:        #10B981;   /* emerald — live/success */
  --c-cyan:         #22D3EE;

  --c-text:         #F1F3FA;
  --c-text-muted:   rgba(241, 243, 250, 0.60);
  --c-text-dim:     rgba(241, 243, 250, 0.35);

  /* — Typography — */
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  --text-xs:   1rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  2rem;       /* 32px */
  --text-4xl:  2.5rem;     /* 40px */
  --text-hero: clamp(2.8rem, 7vw, 4.75rem);

  /* — Spacing (8px base) — */
  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.25rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;

  /* — Layout — */
  --container:   1100px;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-pill: 9999px;

  /* — Motion — */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.3s;
}


/* ================================================================
   2. RESET & BASE
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--c-text);
  background-color: var(--c-bg);
  /* Ambient gradient — fixed so it doesn't scroll */
  background-image:
    radial-gradient(ellipse 80% 55% at 50% -5%,  rgba(99,102,241,0.13), transparent 60%),
    radial-gradient(ellipse 55% 40% at 90% 90%,  rgba(236,72,153,0.07), transparent 55%),
    radial-gradient(ellipse 50% 40% at 0%  55%,  rgba(34,211,238,0.05), transparent 55%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

::selection {
  background: rgba(99, 102, 241, 0.35);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar        { width: 8px; }
::-webkit-scrollbar-track  { background: var(--c-bg); }
::-webkit-scrollbar-thumb  { background: #1A1D29; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #2A2D39; }


/* ================================================================
   3. LAYOUT & UTILITIES
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

@media (min-width: 640px) {
  .container { padding: 0 var(--s-8); }
}


/* ================================================================
   4. TYPOGRAPHY HELPERS
   ================================================================ */
/* Gradient text — used on major headings */
.section-header__title,
.offer__title,
.contact__title,
.final-cta__title {
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section header pattern — reused across all sections */
.section-header {
  margin-bottom: var(--s-10);
}

.section-header__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-3);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--c-primary-lgt);
}

.section-header__line {
  display: block;
  width: 2rem;
  height: 1px;
  background: linear-gradient(to right, var(--c-primary), transparent);
  flex-shrink: 0;
}

.section-header__title {
  font-size: clamp(2rem, 4.1vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-header__desc {
  margin-top: var(--s-3);
  max-width: 540px;
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.75;
}

@media (min-width: 640px) {
  .section-header__desc { font-size: var(--text-base); }
}


/* ================================================================
   5. CARD BASE
   ================================================================ */
.card {
  background: rgba(11, 12, 19, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition:
    transform     var(--duration) var(--ease),
    border-color  var(--duration) var(--ease),
    box-shadow    var(--duration) var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--c-border-hover);
  box-shadow:
    0 20px 40px -12px rgba(0, 0, 0, 0.6),
    0 0 60px -22px rgba(99, 102, 241, 0.25);
}


/* ================================================================
   6. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.7em 1.4em;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  transition:
    opacity    var(--duration) var(--ease),
    transform  var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn__icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* Primary — indigo/purple */
.btn--primary {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-accent) 100%);
  color: #fff;
  box-shadow: 0 4px 16px -4px rgba(99, 102, 241, 0.50);
}
.btn--primary:hover {
  box-shadow: 0 8px 26px -6px rgba(99, 102, 241, 0.70);
}

/* CTA — amber→red (high-contrast, highest-priority action) */
.btn--cta {
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 20px -4px rgba(245, 158, 11, 0.45);
}
.btn--cta:hover {
  box-shadow: 0 8px 32px -6px rgba(245, 158, 11, 0.65);
}

/* Ghost — glass border */
.btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--c-border-hover);
  color: var(--c-text-muted);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--c-text);
}

/* Sizes */
.btn--lg   { font-size: var(--text-base); padding: 0.85em 1.75em; }
.btn--xl   { font-size: var(--text-lg);   padding: 1em 2.25em; }
.btn--full { width: 100%; }


/* ================================================================
   7. HEADER
   ================================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 6, 10, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--c-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  height: 60px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
}

.header__logo-icon {
  font-size: 1.2rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 0.65));
}

.header__logo-text {
  font-size: var(--text-base);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.header__nav {
  display: none;
  align-items: center;
  gap: var(--s-6);
}

.header__nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color var(--duration) var(--ease);
}
.header__nav-link:hover { color: var(--c-text); }

.header__cta {
  font-size: var(--text-xs);
  padding: 0.55em 1.1em;
}

/* Social icons in header */
.header__social-group {
  display: none;
  align-items: center;
  gap: var(--s-2);
}

@media (min-width: 640px) {
  .header__social-group { display: flex; }
}

.header__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  transition:
    transform    var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    background   var(--duration) var(--ease);
}

.header__social svg { width: 15px; height: 15px; }

.header__social:hover { transform: translateY(-2px); }

/* YouTube — red */
.header__social--yt {
  background: rgba(239, 68, 68, 0.10);
  color: #F87171;
  border-color: rgba(239, 68, 68, 0.22);
}
.header__social--yt:hover {
  background: rgba(239, 68, 68, 0.18);
  border-color: rgba(239, 68, 68, 0.42);
  color: #FF4444;
}

/* Instagram — purple/pink */
.header__social--ig {
  background: rgba(217, 70, 239, 0.10);
  color: #D946EF;
  border-color: rgba(217, 70, 239, 0.22);
}
.header__social--ig:hover {
  background: rgba(217, 70, 239, 0.18);
  border-color: rgba(217, 70, 239, 0.42);
  color: #E879F9;
}

/* X — white/silver */
.header__social--x {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.10);
}
.header__social--x:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

@media (min-width: 640px) {
  .header__nav { display: flex; }
}


/* ================================================================
   8. HERO
   ================================================================ */
.hero {
  position: relative;
  padding: var(--s-20) 0 var(--s-16);
  overflow: hidden;
  text-align: center;
}

/* Dot-grid background */
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  pointer-events: none;
}

/* Radial purple glow above the fold */
.hero__glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

/* Live badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.10);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #6EE7B7;
  margin-bottom: var(--s-6);
}

.hero__badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1);   opacity: 1;   }
  50%       { transform: scale(1.3); opacity: 0.65; }
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-text);
  margin-bottom: var(--s-6);
}

.hero__title-accent {
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  max-width: 560px;
  margin: 0 auto var(--s-8);
  font-size: var(--text-base);
  color: var(--c-text-muted);
  line-height: 1.75;
}

@media (min-width: 640px) {
  .hero__subtitle { font-size: var(--text-lg); }
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
  padding: 0 var(--s-4);
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .hero__actions .btn {
    min-width: 200px;
  }
}

.hero__disclaimer {
  font-size: var(--text-xs);
  color: var(--c-text-dim);
  letter-spacing: 0.06em;
}


/* ================================================================
   9. STATS STRIP
   ================================================================ */
.stats {
  padding: var(--s-4) 0 var(--s-12);
}

/* ================================================================
   9B. LATEST (Above-the-fold videos)
   ================================================================ */
.latest {
  padding: 0 0 var(--s-12);
}

.latest__header {
  text-align: left;
  margin-bottom: var(--s-6);
}

.latest__title {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  background: linear-gradient(135deg, #fff 0%, #a5b4fc 55%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.latest__desc {
  margin-top: var(--s-2);
  color: var(--c-text-muted);
  font-size: var(--text-sm);
}

.latest__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

@media (min-width: 900px) {
  .latest__grid { grid-template-columns: 2fr 1fr; gap: var(--s-6); }
}

.latest__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--c-border);
}

.latest__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.latest__side-inner {
  padding: var(--s-8);
}

.latest__side-title {
  font-size: var(--text-lg);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.latest__side-copy {
  margin-top: var(--s-2);
  color: var(--c-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.latest__side-actions {
  margin-top: var(--s-6);
  display: grid;
  gap: var(--s-3);
}

.stats__strip {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--s-1);
  background: rgba(11, 12, 19, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: var(--s-5) var(--s-4);
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-1);
  padding: var(--s-2) var(--s-3);
  border-radius: var(--radius-sm);
  min-width: 76px;
  transition: background var(--duration) var(--ease);
}
.stats__item:hover { background: rgba(255, 255, 255, 0.04); }

.stats__value {
  font-size: var(--text-xl);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Accent colours for stat values */
.stats__value--indigo { color: #818CF8; }
.stats__value--purple { color: #C084FC; }
.stats__value--cyan   { color: #22D3EE; }
.stats__value--red    { color: #F87171; }
.stats__value--rose   { color: #FDA4AF; }
.stats__value--emerald{ color: #34D399; }

.stats__label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-text-dim);
}

.stats__divider {
  display: none;
  width: 1px;
  background: var(--c-border);
  align-self: stretch;
  margin: var(--s-2) 0;
}

.stats__tagline {
  margin-top: var(--s-5);
  text-align: center;
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--c-text-muted);
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .stats__divider { display: block; }
}


/* ================================================================
   10. PRIMARY OFFER — Tesla Referral
   ================================================================ */
.offer {
  padding: var(--s-6) 0 var(--s-16);
}

/* Card with red top-line accent */
.offer__card {
  position: relative;
  background: rgba(11, 12, 19, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(239, 68, 68, 0.18);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  padding: var(--s-8) var(--s-6);
  box-shadow:
    0 0 0 1px rgba(239, 68, 68, 0.06),
    0 32px 64px -20px rgba(0, 0, 0, 0.70),
    0 0 90px -30px rgba(239, 68, 68, 0.13);
}

/* Gradient top line */
.offer__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(239, 68, 68, 0.55), transparent);
}

@media (min-width: 768px) {
  .offer__card { padding: var(--s-12) var(--s-10); }
}

.offer__badge {
  display: inline-flex;
  align-items: center;
  padding: var(--s-1) var(--s-3);
  border-radius: var(--radius-pill);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.30);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #FCA5A5;
  margin-bottom: var(--s-6);
}

.offer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  align-items: center;
}

@media (min-width: 900px) {
  .offer__content { grid-template-columns: 1fr 1fr; gap: var(--s-16); }
}

.offer__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg,
    rgba(239, 68,  68, 0.18),
    rgba(245, 158, 11, 0.12));
  border: 1px solid rgba(239, 68, 68, 0.22);
  margin-bottom: var(--s-5);
}

.offer__icon {
  width: 28px;
  height: 28px;
  color: #FCA5A5;
}

.offer__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FCA5A5;
  margin-bottom: var(--s-3);
}

.offer__title {
  font-size: clamp(1.75rem, 3.5vw, var(--text-4xl));
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-5);
}

.offer__desc {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: var(--s-6);
  max-width: 480px;
}

@media (min-width: 640px) {
  .offer__desc { font-size: var(--text-base); }
}

.offer__benefits {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

.offer__benefit {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
}

.offer__benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #6EE7B7;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.offer__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
}

.offer__cta {
  white-space: nowrap;
}

@media (min-width: 480px) {
  .offer__actions { flex-direction: row; align-items: center; }
}

.offer__code {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.offer__code-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-text-dim);
}

.offer__code-value {
  font-family: var(--mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #FCA5A5;
  background: rgba(239, 68, 68, 0.10);
  border: 1px solid rgba(239, 68, 68, 0.22);
  border-radius: var(--radius-sm);
  padding: var(--s-1) var(--s-3);
  letter-spacing: 0.05em;
}

/* Right side — Tesla visual (desktop only) */
.offer__right { display: none; }

@media (min-width: 900px) {
  .offer__right {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.offer__car-visual {
  position: relative;
  width: 100%;
  max-width: 380px;
  text-align: center;
  padding: var(--s-8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--c-border);
}

.offer__car-glow {
  position: absolute;
  inset: 20%;
  background: radial-gradient(ellipse, rgba(239, 68, 68, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.offer__tesla-logo {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto var(--s-5);
  color: #E31937;
  opacity: 0.80;
}

.offer__tesla-wordmark {
  margin: 0 auto var(--s-5);
  color: #E31937;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1;
  font-size: 44px;
  opacity: 0.9;
  /* Tesla's exact font is proprietary; this uses close, widely available fallbacks */
  font-family: "DIN Condensed", "DIN Alternate", "DIN", "Arial Narrow", "Helvetica Neue Condensed", "Helvetica Neue",
    Helvetica, Arial, ui-sans-serif, system-ui, sans-serif;
}

.offer__model-badge {
  font-size: var(--text-xs);
  color: var(--c-text-dim);
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: var(--s-6);
}

.offer__stats-mini {
  display: flex;
  justify-content: center;
  gap: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-border);
}

.offer__stat-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.offer__stat-mini-val {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #FCA5A5;
  letter-spacing: -0.01em;
}

.offer__stat-mini-lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-text-dim);
}


/* ================================================================
   11. CONTENT — Videos + Instagram
   ================================================================ */
.content {
  padding: var(--s-6) 0 var(--s-16);
}

.content__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}

@media (min-width: 768px) {
  .content__grid { grid-template-columns: 1fr 1fr; }
}

/* YouTube channel card */
.content__channel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  padding: var(--s-10) var(--s-6);
  text-align: center;
}

.content__channel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.22);
}

.content__yt-icon {
  width: 32px;
  height: 32px;
  color: #F87171;
}

.content__channel-name {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: var(--s-2);
}

.content__channel-stats {
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  margin-bottom: var(--s-5);
}

.content__channel-btn {
  width: 100%;
  max-width: 240px;
}

/* Instagram reel card */
.content__reel {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.content__reel-header {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.content__reel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg,
    rgba(168, 85, 247, 0.15),
    rgba(236, 72, 153, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.20);
  color: #D946EF;
  flex-shrink: 0;
}

.content__reel-icon svg { width: 20px; height: 20px; }

.content__reel-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text);
}

.content__reel-handle {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

.content__reel-embed {
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--c-surface-2);
}

.content__reel-embed iframe {
  width: 100%;
  height: 480px;
  border: none;
  display: block;
}

.content__cta-row {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: flex-start;
}

@media (min-width: 640px) {
  .content__cta-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}


/* ================================================================
   12. TOOLS / STACK — Deals + Apps
   ================================================================ */
.tools {
  padding: var(--s-6) 0 var(--s-16);
}

#tools .section-header__title {
  font-size: clamp(2.2rem, 4.8vw, 3.4rem);
}

#tools .section-header__desc {
  font-size: var(--text-base);
  max-width: 62ch;
}

.tools__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
}

@media (min-width: 900px) {
  .tools__layout { grid-template-columns: 1fr 1fr; }
}

.tools__column-title {
  font-size: var(--text-sm);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-muted);
  margin-bottom: var(--s-4);
}

/* Deals — 2-column grid */
.tools__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}

/* Deal card */
.deal-card {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-4);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition:
    transform    var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow   var(--duration) var(--ease);
}

.deal-card:hover {
  transform: translateY(-2px);
  border-color: var(--c-border-hover);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.50);
}

/* Featured deal spans full width */
.deal-card--featured {
  grid-column: 1 / -1;
  border-color: rgba(245, 158, 11, 0.22);
  background: linear-gradient(135deg,
    rgba(245, 158, 11, 0.05),
    rgba(239, 68,  68, 0.05));
}

.deal-card--featured:hover {
  border-color: rgba(245, 158, 11, 0.42);
  box-shadow: 0 8px 30px -8px rgba(245, 158, 11, 0.22);
}

/* Deal icon swatch */
.deal-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.deal-card__icon--indigo  { background: rgba(99,  102, 241, 0.15); }
.deal-card__icon--cyan    { background: rgba(34,  211, 238, 0.12); }
.deal-card__icon--amber   { background: rgba(245, 158, 11,  0.12); }
.deal-card__icon--rose    { background: rgba(239, 68,  68,  0.12); }
.deal-card__icon--emerald { background: rgba(16,  185, 129, 0.12); }
.deal-card__icon--yellow  { background: rgba(234, 179, 8,   0.12); }

.deal-card__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.deal-card__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-card__desc {
  font-size: 11px;
  color: var(--c-text-dim);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-card__badge {
  flex-shrink: 0;
  padding: 2px var(--s-2);
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.deal-card__badge--official {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.30);
  color: var(--c-primary-lgt);
}

.deal-card__badge--discount {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.30);
  color: #6EE7B7;
}

/* Shared diagonal arrow icon */
.deal-card__arrow {
  width: 16px;
  height: 16px;
  color: var(--c-text-dim);
  flex-shrink: 0;
  transition:
    transform var(--duration) var(--ease),
    color     var(--duration) var(--ease);
}

.deal-card:hover .deal-card__arrow,
.app-card:hover  .deal-card__arrow,
.community-card:hover .deal-card__arrow {
  transform: translate(2px, -2px);
  color: var(--c-text-muted);
}

/* App cards (stacked, full-width) */
.tools__apps {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}

.app-card {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  transition:
    transform    var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow   var(--duration) var(--ease);
}

.app-card:hover {
  transform: translateY(-2px);
  border-color: var(--c-border-hover);
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.50);
}

.app-card__logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background: var(--c-surface-2);
}

.app-card__info {
  flex: 1;
  min-width: 0;
}

.app-card__name {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--s-1);
}

.app-card__desc {
  display: block;
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  line-height: 1.5;
}

/* Community card */
.community-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.16);
  border-radius: var(--radius);
  transition:
    transform    var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.community-card:hover {
  transform: translateY(-2px);
  border-color: rgba(59, 130, 246, 0.32);
}

.community-card__left {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.community-card__icon {
  font-size: 1.4rem;
  line-height: 1;
}

.community-card__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 2px;
}

.community-card__desc {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}


/* ================================================================
   13. LEAD CAPTURE
   ================================================================ */
.contact {
  padding: var(--s-6) 0 var(--s-16);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-14);
  align-items: start;
}

@media (max-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
}

.contact__header {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  padding-top: var(--s-2);
}

.contact__title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--c-text-primary);
}

.contact__desc {
  font-size: var(--text-base);
  color: var(--c-text-secondary);
  line-height: 1.7;
  max-width: 36ch;
}

.contact__perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-2);
}

.contact__perks li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-text-secondary);
}

.contact__perks svg {
  flex-shrink: 0;
  color: var(--c-accent);
  opacity: 0.7;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}

@media (min-width: 540px) {
  .contact__row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
}

.form-input {
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--c-text);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: var(--s-3) var(--s-4);
  width: 100%;
  transition:
    border-color var(--duration) var(--ease),
    box-shadow   var(--duration) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder { color: var(--c-text-dim); }

.form-input:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* Custom dropdown arrow */
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='rgba(241,243,250,0.4)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-3) center;
  padding-right: var(--s-10);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Honeypot anti-bot field: hidden for humans, visible to naive bots */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}


/* ================================================================
   14. FAQ
   ================================================================ */
.faq {
  padding: var(--s-6) 0 var(--s-16);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.faq__item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration) var(--ease);
}

.faq__item[open] {
  border-color: rgba(99, 102, 241, 0.25);
}

.faq__item:hover {
  border-color: var(--c-border-hover);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-5);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text);
  cursor: pointer;
  list-style: none;
  -webkit-appearance: none;
  user-select: none;
}

/* Remove native disclosure triangle */
.faq__question::-webkit-details-marker { display: none; }
.faq__question::marker { content: none; }

/* Custom chevron via pseudo-element */
.faq__question::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(241,243,250,0.4)' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--duration) var(--ease);
}

.faq__item[open] .faq__question::after {
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236366F1' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.faq__answer {
  padding: 0 var(--s-5) var(--s-5);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.75;
}

@media (min-width: 640px) {
  .faq__question { font-size: var(--text-base); padding: var(--s-5) var(--s-6); }
  .faq__answer   { font-size: var(--text-base); padding: 0 var(--s-6) var(--s-5); }
}


/* ================================================================
   15. FINAL CTA
   ================================================================ */
.final-cta {
  padding: var(--s-12) 0 var(--s-20);
}

.final-cta__inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #6EE7B7;
}

.final-cta__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: var(--s-5);
}

.final-cta__desc {
  font-size: var(--text-base);
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: var(--s-8);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
  padding: 0 var(--s-4);
}

@media (min-width: 480px) {
  .final-cta__actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
}

.final-cta__note {
  font-family: var(--mono);
  font-size: var(--text-xs);
  color: var(--c-text-dim);
  letter-spacing: 0.03em;
}

.final-cta__note code {
  color: var(--c-text-muted);
}


/* ================================================================
   16. FOOTER
   ================================================================ */
.footer {
  border-top: 1px solid var(--c-border);
  padding: var(--s-8) 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer__brand { justify-content: flex-start; }
}

.footer__coffee {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 158, 11, 0.20);
  background: rgba(245, 158, 11, 0.07);
  font-size: 11px;
  font-weight: 600;
  color: rgba(245, 158, 11, 0.75);
  transition:
    border-color var(--duration) var(--ease),
    color        var(--duration) var(--ease);
}

.footer__coffee:hover {
  border-color: rgba(245, 158, 11, 0.42);
  color: rgba(245, 158, 11, 0.95);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition:
    transform    var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    color        var(--duration) var(--ease);
}

.footer__social:hover {
  transform: translateY(-2px);
  border-color: var(--c-border-hover);
  color: var(--c-text);
}

.footer__social svg { width: 16px; height: 16px; }

.footer__social--tesla:hover {
  border-color: rgba(245, 158, 11, 0.40);
  color: #FCD34D;
}

.footer__meta {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  font-size: var(--text-xs);
  color: var(--c-text-dim);
}

.footer__meta a {
  color: var(--c-text-muted);
  transition: color var(--duration) var(--ease);
}

.footer__meta a:hover { color: var(--c-text); }

.footer__review-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 0.28em 0.7em;
  margin-left: var(--s-1);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(99, 102, 241, 0.38);
  background: rgba(99, 102, 241, 0.12);
  color: #c7d2fe;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer__review-link:hover {
  color: #ffffff;
  border-color: rgba(99, 102, 241, 0.65);
  background: rgba(99, 102, 241, 0.22);
}


/* ================================================================
   17. A/B VARIANT STYLES
   ================================================================ */

/* Hero badge — danger variant (used by hero B) */
.hero__badge--danger {
  background: rgba(239, 68, 68, 0.10);
  border-color: rgba(239, 68, 68, 0.25);
  color: #FCA5A5;
}

.hero__badge--danger .hero__badge-dot {
  background: var(--c-red);
  box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
}

/* Simple email form — hidden by default, activated by JS for lead variants B/C */
.contact__simple-form {
  display: none; /* JS sets display:flex when active */
  align-items: stretch;
  gap: var(--s-3);
  flex-direction: column;
}

@media (min-width: 540px) {
  .contact__simple-form { flex-direction: row; }
  .contact__simple-form .form-input { flex: 1; }
  .contact__simple-form .btn { white-space: nowrap; flex-shrink: 0; }
}

/* Offer — savings-focused (variant B / standalone modifier) */
[data-component="offer"][data-variant="b"] .offer__eyebrow,
.offer__card--savings .offer__eyebrow {
  color: #6EE7B7;
}

[data-component="offer"][data-variant="b"] .offer__card,
.offer__card--savings {
  border-color: rgba(16, 185, 129, 0.18);
  box-shadow:
    0 0 0 1px rgba(16, 185, 129, 0.06),
    0 32px 64px -20px rgba(0, 0, 0, 0.70),
    0 0 90px -30px rgba(16, 185, 129, 0.10);
}

[data-component="offer"][data-variant="b"] .offer__card::before,
.offer__card--savings::before {
  background: linear-gradient(to right, transparent, rgba(16, 185, 129, 0.45), transparent);
}

.offer__badge--savings {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.30);
  color: #6EE7B7;
}

/* Lead magnet — checklist preview list */
.contact__title--lead-magnet {
  background: linear-gradient(135deg, #fff 0%, #6EE7B7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact__inner--lead-magnet {
  max-width: 580px;
}

.contact__preview {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-5);
  margin: var(--s-2) 0 var(--s-4);
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.18);
  border-radius: var(--radius);
}

.contact__preview-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--text-sm);
  color: var(--c-text-muted);
  line-height: 1.5;
}

.contact__preview-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.18);
  color: #6EE7B7;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Force-show simple form for standalone variant pages */
.contact__simple-form--standalone {
  display: flex !important;
}

/* Offer variant C — insider/trust accent */
[data-component="offer"][data-variant="c"] .offer__eyebrow {
  color: var(--c-primary-lgt);
}

[data-component="offer"][data-variant="c"] .offer__code-value {
  color: var(--c-primary-lgt);
  background: rgba(99, 102, 241, 0.10);
  border-color: rgba(99, 102, 241, 0.22);
}

/* Lead variant B/C — kept for compatibility */
[data-component="lead"][data-variant="b"] .contact__title,
[data-component="lead"][data-variant="c"] .contact__title {
  background: linear-gradient(135deg, #fff 0%, #6EE7B7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================================================================
   18. REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .hero__badge-dot { animation: none; }
}


/* ================================================================
   19. REFERRAL SECTION
   ================================================================ */
.referral {
  padding: var(--s-6) 0 var(--s-16);
}

.referral__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-10);
  align-items: center;
}

@media (min-width: 900px) {
  .referral__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-12);
  }
}

.referral__owner-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  font-size: var(--text-xs);
  font-weight: 600;
  color: #6EE7B7;
  margin-bottom: var(--s-5);
  letter-spacing: 0.04em;
}

.referral__owner-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.referral__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FCA5A5;
  margin-bottom: var(--s-3);
}

.referral__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #fca5a5 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--s-4);
}

.referral__desc {
  font-size: var(--text-base);
  color: var(--c-text-muted);
  line-height: 1.75;
  margin-bottom: var(--s-7);
  max-width: 440px;
}

.referral__perks {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  margin-bottom: var(--s-8);
}

.referral__perk {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
}

.referral__perk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.referral__perk-icon svg { width: 18px; height: 18px; }

.referral__perk-icon--fsd {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.20);
  color: #FCA5A5;
}

.referral__perk-icon--solar {
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.20);
  color: #FCD34D;
}

.referral__perk-icon--content {
  background: rgba(99, 102, 241, 0.10);
  border: 1px solid rgba(99, 102, 241, 0.20);
  color: var(--c-primary-lgt);
}

.referral__perk-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 2px;
}

.referral__perk-desc {
  font-size: var(--text-xs);
  color: var(--c-text-dim);
  line-height: 1.5;
}

.referral__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-4);
}

@media (min-width: 480px) {
  .referral__actions { flex-direction: row; align-items: center; }
}

.referral__code-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.referral__code-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-text-dim);
}

.referral__code-val {
  font-family: var(--mono);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #FCA5A5;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.20);
  border-radius: var(--radius-sm);
  padding: var(--s-1) var(--s-3);
  letter-spacing: 0.05em;
}

/* Referral — photo column */
.referral__visual { display: none; }

@media (min-width: 900px) {
  .referral__visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.referral__photo-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  box-shadow:
    0 0 0 1px rgba(239, 68, 68, 0.06),
    0 32px 64px -16px rgba(0, 0, 0, 0.75);
}

.referral__photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.referral__photo-frame:hover .referral__photo {
  transform: scale(1.04);
}

.referral__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.10) 0%,
    transparent 35%,
    rgba(5, 6, 10, 0.65) 72%,
    rgba(5, 6, 10, 0.96) 100%
  );
  pointer-events: none;
}

.referral__photo-badge {
  position: absolute;
  top: var(--s-4);
  left: var(--s-4);
  padding: var(--s-1) var(--s-3);
  background: rgba(5, 6, 10, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
}

.referral__photo-stats {
  position: absolute;
  bottom: var(--s-4);
  left: var(--s-4);
  right: var(--s-4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  padding: var(--s-3) var(--s-5);
  background: rgba(5, 6, 10, 0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.referral__ps-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.referral__ps-val {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #FCA5A5;
  letter-spacing: -0.01em;
}

.referral__ps-lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-text-dim);
}

.referral__ps-div {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.10);
  flex-shrink: 0;
}


/* ================================================================
   20. CONTENT — Featured reel + video grid
   ================================================================ */
.content__featured {
  margin-bottom: var(--s-12);
}

.content__featured-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
  flex-wrap: wrap;
}

.content__featured-label {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-text-muted);
}

.content__live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

.content__featured-handle {
  color: #D946EF;
  font-weight: 700;
  transition: opacity var(--duration) var(--ease);
}
.content__featured-handle:hover { opacity: 0.8; text-decoration: underline; }

.content__featured-follow {
  font-size: 0.75rem;
  padding: 0.45em 1em;
}

/* ── Reels grid ── */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}

@media (max-width: 720px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-2);
  }
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.07);
  transition:
    transform     var(--duration) var(--ease),
    border-color  var(--duration) var(--ease),
    box-shadow    var(--duration) var(--ease);
}

.reel-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(217, 70, 239, 0.30);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.7), 0 0 40px -15px rgba(217, 70, 239, 0.2);
}

/* Cinematic reel backgrounds */
.reel-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease);
}
.reel-card__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.reel-card:hover .reel-card__bg,
.reel-card:hover .reel-card__thumb { transform: scale(1.06); }

.reel-bg--urban   { background: radial-gradient(ellipse at 40% 30%, rgba(217,70,239,0.35) 0%, rgba(99,102,241,0.20) 40%, #08050c 80%); }
.reel-bg--night   { background: radial-gradient(ellipse at 60% 20%, rgba(14,165,233,0.30) 0%, rgba(30,41,59,0.60) 40%, #050810 80%); }
.reel-bg--pothole { background: radial-gradient(ellipse at 50% 60%, rgba(239,68,68,0.40) 0%, rgba(120,40,40,0.30) 40%, #0c0505 80%); }
.reel-bg--park    { background: radial-gradient(ellipse at 35% 70%, rgba(16,185,129,0.30) 0%, rgba(6,78,59,0.30) 40%, #050b08 80%); }

.reel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, transparent 35%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

.reel-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.reel-card__play svg { width: 16px; height: 16px; margin-left: 2px; }
.reel-card:hover .reel-card__play {
  transform: translate(-50%, -55%) scale(1.10);
  box-shadow: 0 0 24px rgba(255,255,255,0.30);
}

.reel-card__footer {
  position: relative;
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.reel-card__caption {
  font-size: var(--text-xs);
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}

.reel-card__views {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

.reel-card__tag {
  position: absolute;
  top: var(--s-2);
  left: var(--s-2);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(217,70,239,0.85);
  color: #fff;
  backdrop-filter: blur(4px);
}

.reel-tag--red { background: rgba(239,68,68,0.90); }

.reels-more {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-text-dim);
  transition: color var(--duration) var(--ease);
  margin-bottom: var(--s-2);
}
.reels-more:hover { color: #D946EF; }


/* Content footer — YouTube CTA + Instagram note */
.content__footer-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-top: var(--s-2);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-border);
}

.content__ig-note {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--text-xs);
  color: var(--c-text-dim);
  transition: color var(--duration) var(--ease);
  line-height: 1.4;
}

.content__ig-note:hover { color: #D946EF; }

/* YouTube channel header */
.content__yt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}

.content__yt-brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.content__yt-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.20);
  flex-shrink: 0;
}

.content__yt-icon-wrap svg {
  width: 20px;
  height: 20px;
  color: #F87171;
}

.content__yt-name {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.01em;
  margin-bottom: 1px;
}

.content__yt-stats {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}

@media (min-width: 900px) {
  .video-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
}

.video-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  text-decoration: none;
  transition:
    transform     var(--duration) var(--ease),
    border-color  var(--duration) var(--ease),
    box-shadow    var(--duration) var(--ease);
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-border-hover);
  box-shadow:
    0 24px 48px -12px rgba(0, 0, 0, 0.70),
    0 0 50px -20px rgba(99, 102, 241, 0.22);
}

.video-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-card__thumb-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.65s var(--ease);
}

.video-card__thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}

.video-card:hover .video-card__thumb-bg,
.video-card:hover .video-card__thumb-img { transform: scale(1.07); }

.vc-bg--red    { background: radial-gradient(ellipse at 30% 50%, rgba(239,68,68,0.30) 0%, #0c0505 60%, #080808 100%); }
.vc-bg--indigo { background: radial-gradient(ellipse at 70% 30%, rgba(99,102,241,0.28) 0%, #05050c 60%, #080808 100%); }
.vc-bg--amber  { background: radial-gradient(ellipse at 50% 65%, rgba(245,158,11,0.25) 0%, #0b0800 60%, #080808 100%); }
.vc-bg--cyan   { background: radial-gradient(ellipse at 25% 70%, rgba(34,211,238,0.22) 0%, #050b0b 60%, #080808 100%); }

.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.video-card__play svg { width: 16px; height: 16px; margin-left: 2px; }

.video-card:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 28px rgba(255,255,255,0.35);
}

.video-card__tag {
  position: absolute;
  bottom: var(--s-2);
  left: var(--s-2);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(239, 68, 68, 0.88);
  color: #fff;
  backdrop-filter: blur(4px);
}

.video-card__tag--amber { background: rgba(245, 158, 11, 0.88); }
.video-card__tag--cyan  { background: rgba(34, 211, 238, 0.88); color: #000; }

.video-card__info {
  padding: var(--s-3) var(--s-4);
}

.video-card__title {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.45;
  margin-bottom: var(--s-1);
}

@media (min-width: 640px) {
  .video-card__title { font-size: var(--text-sm); }
}

.video-card__meta {
  font-size: 10px;
  color: var(--c-text-dim);
}


/* ================================================================
   21. POWERWALL COMMUNITY
   ================================================================ */
.powerwall-community {
  margin-top: var(--s-3);
  padding: var(--s-5);
  background: linear-gradient(135deg,
    rgba(245, 158, 11, 0.04) 0%,
    rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.16);
  border-radius: var(--radius);
  transition:
    transform     var(--duration) var(--ease),
    border-color  var(--duration) var(--ease);
}

.powerwall-community:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.28);
}

.powerwall-community__head {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  margin-bottom: var(--s-4);
}

.powerwall-community__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #FCD34D;
  flex-shrink: 0;
}

.powerwall-community__icon svg { width: 22px; height: 22px; }

.powerwall-community__name {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--c-text);
  margin-bottom: 2px;
}

.powerwall-community__loc {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
}

.powerwall-community__desc {
  font-size: var(--text-xs);
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--s-4);
}

.powerwall-community__stats {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  margin-bottom: var(--s-4);
  padding: var(--s-3) var(--s-4);
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.pc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.pc-stat__val {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #FCD34D;
  letter-spacing: -0.01em;
}

.pc-stat__lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-dim);
}

.pc-stat__div {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.powerwall-community__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.6em 1.2em;
  border-radius: var(--radius-pill);
  background: rgba(59, 130, 246, 0.10);
  border: 1px solid rgba(59, 130, 246, 0.22);
  font-size: var(--text-xs);
  font-weight: 700;
  color: #93C5FD;
  transition:
    background    var(--duration) var(--ease),
    border-color  var(--duration) var(--ease),
    color         var(--duration) var(--ease);
}

.powerwall-community__cta:hover {
  background: rgba(59, 130, 246, 0.18);
  border-color: rgba(59, 130, 246, 0.38);
  color: #BFDBFE;
}


/* ================================================================
   22. CONTACT SENT MESSAGE
   ================================================================ */
.contact__sent {
  margin-top: var(--s-3);
  font-size: var(--text-sm);
  font-weight: 600;
  min-height: 1.5em;
  text-align: center;
}


/* ================================================================
   23. DEAL CARD ICON SVG — override emoji sizing
   ================================================================ */
.deal-card__icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.deal-card__icon--indigo svg { color: #818CF8; }
.deal-card__icon--cyan   svg { color: #22D3EE; }
.deal-card__icon--amber  svg { color: #FCD34D; }
.deal-card__icon--rose   svg { color: #FDA4AF; }
.deal-card__icon--emerald svg { color: #34D399; }
.deal-card__icon--yellow svg { color: #FDE047; }


/* ================================================================
   24. COMMUNITY SECTION — standalone Powerwall community
   ================================================================ */

.community-section {
  padding: var(--s-section) 0;
  margin-bottom: var(--s-10);
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(16, 185, 129, 0.04) 0%, transparent 55%);
  pointer-events: none;
}

.community-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
  align-items: center;
}

@media (max-width: 768px) {
  .community-section__inner {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
}

.community-section__copy {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.community-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--c-text-primary);
}

.community-section__desc {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--c-text-secondary);
  max-width: 38ch;
}

.community-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.community-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3em 0.85em;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--c-text-secondary);
  letter-spacing: 0.01em;
}

.community-section__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 0.75em 1.5em;
  border-radius: var(--radius-pill);
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  font-size: var(--text-sm);
  font-weight: 700;
  color: #93C5FD;
  align-self: flex-start;
  transition:
    background    var(--duration) var(--ease),
    border-color  var(--duration) var(--ease),
    color         var(--duration) var(--ease),
    transform     var(--duration) var(--ease);
}

.community-section__cta:hover {
  background: rgba(59, 130, 246, 0.20);
  border-color: rgba(59, 130, 246, 0.45);
  color: #BFDBFE;
  transform: translateY(-2px);
}

.community-section__cta svg {
  flex-shrink: 0;
}

.community-section__card {
  display: flex;
  justify-content: center;
}

.community-card-v2 {
  width: 100%;
  max-width: 380px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.community-card-v2__top {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-5) var(--s-5) var(--s-4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.community-card-v2__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(251, 191, 36, 0.10);
  border: 1px solid rgba(251, 191, 36, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FCD34D;
}

.community-card-v2__icon svg {
  width: 20px;
  height: 20px;
}

.community-card-v2__name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text-primary);
  line-height: 1.3;
}

.community-card-v2__sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--c-text-dim);
  line-height: 1.3;
  margin-top: 2px;
}

.community-card-v2__stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: var(--s-4) var(--s-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ccv2-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ccv2-stat__val {
  font-size: var(--text-base);
  font-weight: 800;
  color: #FCD34D;
  letter-spacing: -0.01em;
  line-height: 1;
}

.ccv2-stat__lbl {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-text-dim);
}

.ccv2-stat__div {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.community-card-v2__feeds {
  display: flex;
  flex-direction: column;
  padding: var(--s-2) 0;
}

.ccv2-feed-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: var(--s-3) var(--s-5);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--c-text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background var(--duration) var(--ease);
}

.ccv2-feed-item:last-child { border-bottom: none; }
.ccv2-feed-item:hover { background: rgba(255, 255, 255, 0.03); }

.ccv2-feed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ccv2-feed-dot--green { background: #34D399; box-shadow: 0 0 6px rgba(52, 211, 153, 0.5); }
.ccv2-feed-dot--amber { background: #FCD34D; box-shadow: 0 0 6px rgba(252, 211, 77, 0.45); }
.ccv2-feed-dot--blue  { background: #60A5FA; box-shadow: 0 0 6px rgba(96, 165, 250, 0.45); }


/* ================================================================
   25. VIDEO CARD SKELETONS — shown while YouTube feed loads
   ================================================================ */

@keyframes skeleton-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

.video-card--skeleton {
  pointer-events: none;
}

.video-card--skeleton .video-card__thumb-bg {
  opacity: 0.4;
}

.vcs-line {
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.04) 25%,
    rgba(255,255,255,0.10) 50%,
    rgba(255,255,255,0.04) 75%
  );
  background-size: 800px 100%;
  animation: skeleton-shimmer 1.6s infinite linear;
}

.vcs-line--title {
  height: 14px;
  width: 80%;
  margin-bottom: 8px;
}

.vcs-line--meta {
  height: 11px;
  width: 55%;
}
