/* ── FONTS ── */
/* Loaded via <link> in HTML head */

/* ── CSS VARIABLES ── */
:root {
  --bg-darkest:    #0d1225;
  --bg-dark:       #1a2448;
  --bg-mid:        #141d38;
  --bg-card:       #161f3a;
  --green:         #3b82f6;
  --green-light:   #93c5fd;
  --gold:          #f59e0b;
  --gold-light:    #fcd34d;
  --text-white:    #ffffff;
  --text-muted:    #dbeafe;
  --text-dim:      #9ca3af;
  --text-dimmer:   #4b5563;
  --border-green:  rgba(99, 102, 241, 0.2);
  --border-gold:   rgba(245, 158, 11, 0.3);
  --grad-green:    linear-gradient(90deg, #3b82f6, #6366f1);
  --grad-gold:     linear-gradient(90deg, #3b82f6, #f59e0b);
  --grad-text:     linear-gradient(135deg, #a5b4fc 0%, #818cf8 40%, #fcd34d 100%);
  --font-heading:  'Bricolage Grotesque', sans-serif;
  --font-body:     'DM Sans', sans-serif;
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-pill:   100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-darkest);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
/* ── DOT GRID — apply selectively per section ── */
.dot-grid {
  background-image: radial-gradient(rgba(99,102,241,0.28) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── LUCIDE ICONS — global defaults ── */
[data-lucide], svg.lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex-shrink: 0;
  vertical-align: middle;
}
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-white);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.15rem); }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── LAYOUT HELPERS ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 80px 0; position: relative; }
.section-sm { padding: 48px 0; position: relative; }
.centered  { text-align: center; }

/* ── SECTION BACKGROUNDS ── */
.bg-alt {
  background: var(--bg-dark);
}
.bg-glow-left {
  background: var(--bg-darkest);
}
.bg-glow-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at -5% 50%, rgba(99,102,241,0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.bg-glow-right {
  background: var(--bg-darkest);
}
.bg-glow-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 105% 50%, rgba(59,130,246,0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.bg-glow-top {
  background: var(--bg-dark);
}
.bg-glow-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(99,102,241,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.bg-funnel-glow {
  background-color: var(--bg-dark);
}
.bg-funnel-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 30%, rgba(99,102,241,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 50% 45% at 85% 70%, rgba(59,130,246,0.26) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Ensure section content sits above glow pseudo-elements */
.bg-glow-left > *,
.bg-glow-right > *,
.bg-glow-top > *,
.bg-funnel-glow > * { position: relative; z-index: 1; }

/* ── FADE FROM TOP ── */
.fade-top::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(
    to bottom,
    var(--bg-darkest)   0%,
    rgba(13,18,37,0.85) 25%,
    rgba(13,18,37,0.55) 50%,
    rgba(13,18,37,0.2)  75%,
    transparent         100%
  );
  pointer-events: none;
  z-index: 2;
}
.fade-top > * { position: relative; z-index: 3; }

/* ── FADE TOP + BOTTOM (combined, avoids ::before conflict with glow) ── */
.fade-edges::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-darkest)   0%,
    rgba(13,18,37,0.55) 12%,
    transparent         25%,
    transparent         75%,
    rgba(13,18,37,0.55) 88%,
    var(--bg-darkest)   100%
  );
  pointer-events: none;
  z-index: 2;
}
.fade-edges > * { position: relative; z-index: 3; }
#timeline { padding-top: 100px; padding-bottom: 140px; }
#features { padding-bottom: 140px; }

.section-tag {
  display: inline-block;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--green);
  color: var(--green-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 50px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 640px;
  margin: 0 auto 40px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-green);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.btn-primary { box-shadow: 0 0 28px rgba(99,102,241,0.35); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 0 40px rgba(99,102,241,0.5); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green-light);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(99,102,241,0.08); }

/* ── BADGE / PILL ── */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.launch-badge svg.lucide { width: 14px; height: 14px; stroke: #fff; }

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid var(--green);
  color: var(--green-light);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.stat-pill svg.lucide { width: 14px; height: 14px; stroke: currentColor; }

/* ── IMAGE PLACEHOLDERS ── */
.img-placeholder {
  background: rgba(255,255,255,0.03);
  border: 2px dashed rgba(99, 102, 241, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-dimmer);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}
.img-placeholder svg.lucide { width: 32px; height: 32px; opacity: 0.4; stroke: var(--green-light); }

/* ── HIDDEN (for unused video slots) ── */
.hidden { display: none !important; }

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: var(--bg-darkest);
  border-bottom-color: var(--border-green);
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 32px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green-light); }
.nav-cta { font-size: 14px; padding: 10px 22px; }

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* ── HERO ── */
#hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -5%,  rgba(99,102,241,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 15% 60%,  rgba(59,130,246,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 85% 70%,  rgba(245,158,11,0.07) 0%, transparent 55%),
    var(--bg-darkest);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#hero h1 { margin-bottom: 20px; }
.hero-sub {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto 28px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-cta { font-size: 18px; padding: 16px 40px; margin-bottom: 0; }
.hero-video-wrap {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}
.hero-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  min-height: 200px;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 20px;
}
.timeline-line {
  position: absolute;
  top: 66px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  z-index: 0;
}
.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.tl-icon {
  margin-bottom: 14px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid var(--border-green);
  color: var(--green-light);
}
.tl-icon svg.lucide {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
.timeline-item.active .tl-icon {
  background: rgba(99, 102, 241, 0.18);
  border-color: #6366f1;
  color: #a5b4fc;
}
.tl-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-darkest);
  border: 2px solid var(--green);
  margin-bottom: 12px;
  transition: background 0.2s;
}
.timeline-item.active .tl-dot {
  background: #6366f1;
  border-color: #6366f1;
  box-shadow: 0 0 12px rgba(99,102,241,0.6);
  width: 20px; height: 20px;
}
.tl-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}
.timeline-item.active .tl-label { color: #a5b4fc; }
.tl-date {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 4px;
}
.tl-desc { font-size: 12px; color: var(--text-dim); }

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 20px 0;
    width: fit-content;
    margin: 0 auto;
  }
  .timeline-line { display: none; }
  .timeline-item {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    position: relative;
  }
  .timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 60px;
    bottom: -16px;
    width: 2px;
    background: linear-gradient(180deg, rgba(99,102,241,0.5), rgba(99,102,241,0.1));
  }
  .tl-icon { margin-bottom: 0; flex-shrink: 0; }
  .tl-dot { display: none; }
  .tl-label { font-size: 15px; }
  .tl-date { font-size: 13px; }
}

/* ── STATS GRID ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.stat-card:hover { border-color: var(--green); transform: translateY(-4px); }
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--border-green);
  color: var(--green-light);
}
.stat-icon svg.lucide { width: 22px; height: 22px; stroke: currentColor; }
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-dim); line-height: 1.4; }
.why-copy {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}
.why-copy strong { color: var(--green-light); }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ── CTA CARD ── */
.cta-card {
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  border: 1px solid transparent;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)),
                    linear-gradient(135deg, #3b82f6, #6366f1);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.cta-card-title {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: 28px;
}
.cta-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.cta-resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: none;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  min-height: 4rem;
  color: var(--text-white);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.cta-resource-card:hover {
  background: rgba(99,102,241,0.1);
  transform: translateY(-3px);
}
.crc-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(99,102,241,0.12);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
}
.crc-icon svg.lucide { width: 22px; height: 22px; stroke: currentColor; }
.crc-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}
.crc-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 13px !important;
  height: 13px !important;
  stroke: var(--text-dimmer) !important;
}
@media (max-width: 480px) {
  .cta-resources { grid-template-columns: 1fr; }
}
.cta-card-btn {
  font-size: 17px;
  padding: 16px 40px;
  box-shadow: 0 0 32px rgba(59,130,246,0.45) !important;
}
.cta-card-btn:hover { box-shadow: 0 0 48px rgba(59,130,246,0.65) !important; }
.cta-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  white-space: nowrap;
}
.cta-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(99,102,241,0.2);
  color: #818cf8;
  flex-shrink: 0;
}
.cta-stat-icon i { width: 13px; height: 13px; }
.cta-stat-icon.gold { background: rgba(245,158,11,0.15); color: var(--gold-light); }
.cta-stat-icon.recurring { background: rgba(34,197,94,0.15); color: #86efac; }

/* ── FUNNEL & COMMISSIONS ── */
.funnel-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
/* FE spans full width */
.funnel-block.funnel-fe { grid-column: 1 / -1; }

.funnel-card {
  height: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 2px solid rgba(99,102,241,0.4);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.funnel-card:hover {
  border-color: rgba(99,102,241,0.55);
  transform: translateY(-2px);
}
/* Per-tier card border accents */
.funnel-fe        .funnel-card { border-left-color: rgba(245,158,11,0.6); }
.funnel-fe     .fc-list,
.funnel-bundle .fc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.funnel-oto1      .funnel-card { border-left-color: rgba(99,102,241,0.5); }
.funnel-oto2      .funnel-card { border-left-color: rgba(168,85,247,0.5); }
.funnel-oto3      .funnel-card { border-left-color: rgba(6,182,212,0.5); }
.funnel-recurring .funnel-card { border-left-color: rgba(34,197,94,0.5); }

/* OTO2 accent overrides (purple) */
.funnel-oto2 .fc-tier-tag.oto       { background: #a855f7; color: #fff; border: none; }
.funnel-oto2 .fc-price-display      { background: linear-gradient(135deg, #d8b4fe, #a855f7); -webkit-background-clip: text; background-clip: text; }
.funnel-oto2 .fc-list li i          { color: #a855f7; }
.funnel-oto2 .fc-price-pill.fc-highlight { color: #d8b4fe; background: rgba(168,85,247,0.1); border-color: rgba(168,85,247,0.3); }
.funnel-oto2 .funnel-card:hover     { border-color: rgba(168,85,247,0.6); }

/* OTO3 accent overrides (cyan) */
.funnel-oto3 .fc-tier-tag.oto       { background: #06b6d4; color: #fff; border: none; }
.funnel-oto3 .fc-price-display      { background: linear-gradient(135deg, #67e8f9, #06b6d4); -webkit-background-clip: text; background-clip: text; }
.funnel-oto3 .fc-list li i          { color: #06b6d4; }
.funnel-oto3 .fc-price-pill.fc-highlight { color: #67e8f9; background: rgba(6,182,212,0.1); border-color: rgba(6,182,212,0.3); }
.funnel-oto3 .funnel-card:hover     { border-color: rgba(6,182,212,0.6); }

/* Bundle — full width, gradient border */
.funnel-block.funnel-bundle { grid-column: 1 / -1; }
.funnel-bundle .funnel-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
}
.funnel-bundle .funnel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 3px;
  background: linear-gradient(135deg, #f59e0b, #6366f1, #a855f7, #06b6d4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.funnel-bundle .funnel-card { background: rgba(255,255,255,0.03); border: none; }
.fc-tier-tag.bundle { background: #f59e0b; color: #fff; border: none; gap: 6px; }
.funnel-bundle .fc-price-display { background: linear-gradient(135deg, #fcd34d, #93c5fd, #d8b4fe); -webkit-background-clip: text; background-clip: text; }
.funnel-bundle .fc-list li i { color: #93c5fd; }
.funnel-bundle .fc-price-pill.fc-highlight { color: #fcd34d; background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.35); font-size: 0.85rem; }

/* Top row: tier tag + price */
.fc-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.fc-tier-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  padding: 3px 10px;
}
.fc-tier-tag i { width: 13px; height: 13px; flex-shrink: 0; }
.fc-tier-tag.recurring i,
.fc-tier-tag.recurring svg { width: 14px !important; height: 14px !important; }
.fc-tier-tag.fe        { background: #f59e0b; color: #fff; border: none; }
.fc-tier-tag.oto       { background: #6366f1; color: #fff; border: none; }
.fc-tier-tag.recurring { background: #22c55e; color: #fff; border: none; }

.fc-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.fc-price-type {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.7;
}
.fc-price-type.recurring { color: #86efac; opacity: 1; }

.fc-price-display {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #93c5fd, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.funnel-fe        .fc-price-display { background: linear-gradient(135deg, #fcd34d, #f59e0b); -webkit-background-clip: text; background-clip: text; }
.funnel-recurring .fc-price-display { background: linear-gradient(135deg, #86efac, #22c55e); -webkit-background-clip: text; background-clip: text; }
.fc-price-display em { font-size: 0.85rem; font-style: normal; }

.fc-name { font-size: 1.2rem; font-weight: 700; color: var(--text-white); margin-bottom: 8px; }
.fc-desc { font-size: 0.92rem; font-weight: 400; color: var(--text-dim); line-height: 1.65; margin-bottom: 0; }

/* Feature list */
.fc-list {
  list-style: none;
  padding: 0; margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  margin-top: 16px;
  flex: 1;
}
.fc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.55;
}
.fc-list li i { width: 15px; height: 15px; color: #6366f1; flex-shrink: 0; margin-top: 2px; }
.funnel-fe        .fc-list li i { color: #f59e0b; }
.funnel-recurring .fc-list li i { color: #22c55e; }

/* Pricing pills */
.fc-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.fc-price-pill {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 5px 14px;
}
.fc-price-pill em { font-style: normal; color: var(--text-dim); font-weight: 400; }
.fc-price-pill.fc-highlight {
  color: #93c5fd;
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.3);
}
.funnel-fe .fc-price-pill.fc-highlight {
  color: #fcd34d;
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.3);
}
.funnel-recurring .fc-price-pill.fc-highlight {
  color: #86efac;
  background: rgba(34,197,94,0.1);
  border-color: rgba(34,197,94,0.3);
}

@media (max-width: 768px) {
  .funnel-flow { grid-template-columns: 1fr; }
  .funnel-block.funnel-fe,
  .funnel-block.funnel-bundle { grid-column: auto; }
  .funnel-fe .fc-list,
  .funnel-bundle .fc-list { grid-template-columns: 1fr; }
}

/* ── PRODUCT INTRO ── */
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}
.product-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.introducing {
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 12px;
  margin-top: 16px;
}
.product-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-white);
  margin-bottom: 24px;
}
.product-desc {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 14px;
}
.product-cover {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-cover img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 24px 60px rgba(99,102,241,0.3));
}

/* ── AI PARTNERS STRIP ── */
.ai-partners {
  text-align: center;
  border-top: 1px solid var(--border-green);
  padding-top: 48px;
}
.ai-partners-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-bottom: 28px;
}
.ai-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 64px;
  line-height: 0;
}
.ai-logo-wrap {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ai-logo-wrap img {
  height: 100%;
  max-width: 120px;
  width: auto;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(1) brightness(2);
  transition: opacity 0.2s, filter 0.2s;
  display: block;
}
.ai-logo-wrap:hover img {
  opacity: 0.85;
  filter: grayscale(0) brightness(1);
}

@media (max-width: 768px) {
  .product-intro { grid-template-columns: 1fr; gap: 40px; }
  .product-cover { order: -1; }
  .ai-logos { gap: 24px; }
}

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.feature-card:hover { background: rgba(99,102,241,0.08); border-color: rgba(99,102,241,0.35); transform: translateY(-4px); }
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid var(--border-green);
  color: var(--green-light);
  margin-bottom: 16px;
}
.feature-icon svg.lucide { width: 20px; height: 20px; stroke: currentColor; }

/* Per-card icon colours */
.feature-card:nth-child(1) .feature-icon { background: rgba(59,130,246,0.12);  border-color: rgba(59,130,246,0.25);  color: #93c5fd; }
.feature-card:nth-child(2) .feature-icon { background: rgba(168,85,247,0.12);  border-color: rgba(168,85,247,0.25);  color: #d8b4fe; }
.feature-card:nth-child(3) .feature-icon { background: rgba(245,158,11,0.12);  border-color: rgba(245,158,11,0.25);  color: #fcd34d; }
.feature-card:nth-child(4) .feature-icon { background: rgba(34,197,94,0.12);   border-color: rgba(34,197,94,0.25);   color: #86efac; }
.feature-card:nth-child(5) .feature-icon { background: rgba(236,72,153,0.12);  border-color: rgba(236,72,153,0.25);  color: #f9a8d4; }
.feature-card:nth-child(6) .feature-icon { background: rgba(251,146,60,0.12);  border-color: rgba(251,146,60,0.25);  color: #fdba74; }
.feature-card h3 { font-size: 17px; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-dim); line-height: 1.5; }
.oto-badge-card { border-color: rgba(245,158,11,0.25); }
.oto-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: rgba(245,158,11,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 1px;
}

/* ── HOW IT WORKS ── */
#how { padding-top: 60px; }
.steps-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}
.step-block {
  display: flex;
  align-items: stretch;
  gap: 48px;
  width: 65%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 48px;
  backdrop-filter: blur(8px);
  min-height: 300px;
  position: relative;
  z-index: 1;
}
.step-block.step-left  { margin-right: auto; border-left: 2px solid rgba(99,102,241,0.5); }
.step-block.step-right { margin-left: auto;  border-right: 2px solid rgba(99,102,241,0.5); }
.step-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.step-num {
  font-family: var(--font-heading);
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #e0e7ff 0%, #818cf8 40%, rgba(99,102,241,0.15) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.step-content h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step-content p  { font-size: 14px; color: var(--text-dim); line-height: 1.8; margin-bottom: 20px; }
.step-features {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.step-features li i { width: 14px; height: 14px; color: #818cf8; flex-shrink: 0; }


/* ── STEP VISUALS ── */
.step-visual {
  flex-shrink: 0;
  width: 260px;
  align-self: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
}

/* ── Visual 1 — Install ── */
.svi-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.svi-icon {
  width: 36px; height: 36px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #93c5fd; flex-shrink: 0;
}
.svi-icon i { width: 18px; height: 18px; }
.svi-meta { flex: 1; }
.svi-name { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-white); }
.svi-sub  { display: block; font-size: 0.65rem; color: var(--text-dimmer); }
.svi-badge {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: #86efac; background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
  border-radius: 100px; padding: 2px 8px;
}
.svi-progress-wrap { display: flex; flex-direction: column; gap: 6px; }
.svi-progress-top {
  display: flex; justify-content: space-between;
  font-size: 0.65rem; color: var(--text-dimmer);
}
.svi-pct { color: #93c5fd; font-weight: 600; animation: pctCount 2.5s ease-in-out infinite; }
.svi-bar {
  height: 5px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden;
}
.svi-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #3b82f6, #6366f1);
  border-radius: 4px;
  animation: installFill 2.5s ease-in-out infinite;
}
.svi-checklist { display: flex; flex-direction: column; gap: 8px; flex: 1; justify-content: center; }
.svi-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: var(--text-dimmer);
}
.svi-row i { width: 13px; height: 13px; flex-shrink: 0; }
.svi-done { color: #86efac; }
.svi-done i { color: #86efac; }
.svi-active { color: #93c5fd; }
.svi-active i { color: #93c5fd; animation: spin 1.2s linear infinite; }
@keyframes installFill {
  0%   { width: 0%; }   65%  { width: 78%; }
  85%  { width: 100%; } 100% { width: 100%; }
}
@keyframes pctCount {
  0%   { opacity: 1; } 65%  { opacity: 1; }
  85%  { opacity: 0; } 100% { opacity: 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Visual 2 — Optimise ── */
.svo-browser {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.svo-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.svo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.svo-url {
  font-size: 0.6rem; color: var(--text-dimmer);
  background: rgba(255,255,255,0.06);
  border-radius: 4px; padding: 1px 8px; margin-left: 4px;
}
.svo-body {
  flex: 1; padding: 12px 10px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 6px; justify-content: center;
}
.svo-line {
  height: 5px; background: rgba(255,255,255,0.1); border-radius: 3px;
}
.svo-line.w85 { width: 85%; }
.svo-line.w65 { width: 65%; }
.svo-line.w75 { width: 75%; }
.svo-line.w55 { width: 55%; }
.svo-line.w70 { width: 70%; }
.svo-scan {
  position: absolute; left: 0; right: 0; height: 28px;
  background: linear-gradient(180deg, transparent, rgba(99,102,241,0.12), transparent);
  border-top: 1px solid rgba(99,102,241,0.4);
  animation: scanDown 2s ease-in-out infinite;
}
.svo-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.svo-tag {
  display: flex; align-items: center; gap: 4px;
  font-size: 0.62rem; font-weight: 600;
  border-radius: 100px; padding: 3px 9px;
  opacity: 0;
}
.svo-tag i { width: 10px; height: 10px; }
.svo-tag.t1 { background: rgba(59,130,246,0.15);  border: 1px solid rgba(59,130,246,0.3);  color: #93c5fd;  animation: tagIn 2s ease-in-out infinite 0.4s; }
.svo-tag.t2 { background: rgba(168,85,247,0.15);  border: 1px solid rgba(168,85,247,0.3);  color: #d8b4fe;  animation: tagIn 2s ease-in-out infinite 0.7s; }
.svo-tag.t3 { background: rgba(245,158,11,0.12);  border: 1px solid rgba(245,158,11,0.3);  color: #fcd34d;  animation: tagIn 2s ease-in-out infinite 1.0s; }
.svo-tag.t4 { background: rgba(34,197,94,0.12);   border: 1px solid rgba(34,197,94,0.3);   color: #86efac;  animation: tagIn 2s ease-in-out infinite 1.3s; }
@keyframes scanDown {
  0%   { top: -28px; } 100% { top: 100%; }
}
@keyframes tagIn {
  0%, 30%  { opacity: 0; transform: translateY(4px); }
  60%, 90% { opacity: 1; transform: translateY(0); }
  100%     { opacity: 0; }
}

/* ── Visual 3 — Get Cited ── */
.sv-cited {
  justify-content: space-between;
}
.svc-card {
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  padding: 10px 12px;
  opacity: 0;
  transform: translateX(-8px);
}
.svc-engine {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700;
  margin-bottom: 5px;
}
.svc-engine i { width: 12px; height: 12px; }
.svc-text {
  font-size: 0.68rem; color: var(--text-dimmer); line-height: 1.4;
  font-style: italic;
}
.svc-text span { color: #93c5fd; font-style: normal; font-weight: 600; }
.svc-c1 { border-left: 2px solid rgba(59,130,246,0.5); color: #93c5fd; animation: slideIn 3.5s ease-in-out infinite 0s; }
.svc-c2 { border-left: 2px solid rgba(168,85,247,0.5); color: #d8b4fe; animation: slideIn 3.5s ease-in-out infinite 0.5s; }
.svc-c3 { border-left: 2px solid rgba(34,197,94,0.5);  color: #86efac; animation: slideIn 3.5s ease-in-out infinite 1.0s; }
@keyframes slideIn {
  0%, 15%  { opacity: 0; transform: translateX(-8px); }
  30%, 80% { opacity: 1; transform: translateX(0); }
  100%     { opacity: 0; transform: translateX(0); }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── How It Works — mobile ── */
  #how { padding-top: 40px; }
  .steps-flow { gap: 40px; }
  .step-block {
    width: 100%;
    flex-direction: column;
    padding: 28px 20px;
    min-height: unset;
    margin-left: 0;
    margin-right: 0;
  }
  /* All cards get left accent on mobile */
  .step-block.step-right {
    border-right: none;
    border-left: 2px solid rgba(99,102,241,0.5);
    margin-left: 0;
  }
  /* step-right has visual first in DOM — push content above it on mobile */
  .step-block.step-right .step-content { order: -1; }
  .step-visual { width: 100%; height: 200px; }
  .step-num { font-size: 3.5rem; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS ── */
.container-testi { max-width: 1400px; }
.testi-row-vertical {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 36px;
}
.testi-row-horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.video-slot {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.video-slot.hidden { display: none !important; }
.vs-inner { border-radius: var(--radius-md); overflow: hidden; background: #000; }
.vs-ratio { position: relative; height: 0; width: 100%; }
.vs-ratio iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; display: block; }
.vs-name { text-align: center; font-size: 0.88rem; font-weight: 600; color: #fff; margin-top: 6px; letter-spacing: 0.01em; }

@media (max-width: 768px) {
  .testi-row-vertical  { grid-template-columns: repeat(2, 1fr); }
  .testi-row-horizontal { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .testi-row-vertical { grid-template-columns: 1fr; }
}

/* ── RECIPROCATE ── */
.reciprocate-img-wrap { width: 100%; margin-bottom: 0; display: flex; justify-content: center; }
.reciprocate-img { max-width: 100%; height: auto; display: block; }
.reciprocate-quote {
  max-width: 720px;
  margin: 48px auto;
  text-align: center;
  border: none;
  padding: 0;
}
.reciprocate-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.6;
  margin-bottom: 16px;
}
.reciprocate-quote cite {
  font-size: 14px;
  color: var(--green-light);
  font-style: normal;
}

/* ── CONNECT ── */
#connect .section-title { margin-bottom: 12px; }
.connect-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  max-width: 480px;
  margin: 40px auto 0;
  background: var(--bg-card);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius-md);
  padding: 28px 40px;
}
.connect-avatar { flex-shrink: 0; }
.connect-avatar-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  border: none;
  outline: none;
}
.connect-info { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.connect-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}
.connect-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
}
.connect-btn:hover { color: #fff; text-decoration: none; }
.connect-btn-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.connect-btn-icon img { width: 24px; height: 24px; object-fit: cover; display: block; }

/* ── CONNECT BACKGROUND ── */
.bg-connect-glow { background-color: var(--bg-darkest); }
.bg-connect-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 20% 50%, rgba(99,102,241,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 60% 90% at 80% 50%, rgba(59,130,246,0.18) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-green); }
.faq-item:first-child { border-top: 1px solid var(--border-green); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green-light); }
.faq-q[aria-expanded="true"] { color: var(--green-light); }
.faq-icon {
  font-size: 22px;
  color: var(--green-light);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  transition: max-height 0.3s ease;
}
.faq-q[aria-expanded="true"] + .faq-a { padding-bottom: 20px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.reveal-left  { transform: translateX(-28px); }
.reveal.reveal-right { transform: translateX(28px); }
.reveal.reveal-scale { transform: scale(0.96); }
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── TOAST ── */
#geo-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0f172a;
  border: 1px solid #f59e0b;
  color: #f59e0b;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,158,11,0.2);
}
#geo-toast.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── FOOTER ── */
.site-footer {
  background-color: var(--bg-darkest);
  border-top: 1px solid rgba(99,102,241,0.15);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-logo img { height: 32px; width: auto; display: block; }
.footer-copy {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer-copy a { color: var(--green-light); text-decoration: none; }
.footer-copy a:hover { color: #fff; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }

/* ── CONTEST & PRIZES ── */
/* ── PRIZE GRID ── */
.prize-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 0;
  align-content: start;
}
.prize-1st { grid-column: 1 / -1; }
.prize-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 3px solid rgba(255,255,255,0.1);
  text-align: center;
  transition: transform 0.2s;
}
.prize-card:hover { transform: translateY(-3px); }
.pc-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.pc-label i { width: 13px; height: 13px; flex-shrink: 0; }
.pc-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

/* 1st */
.prize-1st { border-top-color: #f59e0b; background: rgba(245,158,11,0.06); padding: 28px 24px; }
.prize-1st .pc-label { color: #fde047; font-size: 0.85rem; }
.prize-1st .pc-label i { color: #f59e0b; width: 15px; height: 15px; }
.prize-1st .pc-amount { font-size: 2.6rem; background: linear-gradient(135deg,#fde047,#f59e0b); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* 2nd */
.prize-2nd { border-top-color: #94a3b8; background: rgba(148,163,184,0.04); }
.prize-2nd .pc-label { color: #cbd5e1; }
.prize-2nd .pc-label i { color: #94a3b8; }
.prize-2nd .pc-amount { background: linear-gradient(135deg,#e2e8f0,#94a3b8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* 3rd */
.prize-3rd { border-top-color: #fb923c; background: rgba(251,146,60,0.04); }
.prize-3rd .pc-label { color: #fb923c; }
.prize-3rd .pc-label i { color: #fb923c; }
.prize-3rd .pc-amount { background: linear-gradient(135deg,#fb923c,#c2410c); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

/* 4th & 5th */
.prize-4th .pc-amount,
.prize-5th .pc-amount { font-size: 1.7rem; background: linear-gradient(135deg,#93c5fd,#818cf8); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

@media (max-width: 900px) {
  .prize-layout {
    display: flex !important;
    flex-direction: column !important;
  }
  .prize-total-banner {
    overflow: visible;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 32px;
    padding: 24px 28px;
    text-align: center;
  }
  .prize-total-amount { font-size: 2.4rem; }
  .prize-total-divider { display: none; }
  .prize-total-window { margin-top: 0; }
  .prize-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) { .prize-grid { grid-template-columns: 1fr !important; } }

.prize-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}

.prize-total-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  max-width: 100%;
  padding: 36px 40px 28px;
  background: rgba(99,102,241,0.07);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Gradient border overlay */
.prize-total-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  padding: 1px;
  background: linear-gradient(135deg, rgba(165,180,252,0.5), rgba(99,102,241,0.2), rgba(59,130,246,0.4));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.prize-total-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(99,102,241,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 20% 80%, rgba(59,130,246,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 80% 20%, rgba(165,180,252,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.prize-total-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(99,102,241,0.15);
  border: 1px solid rgba(99,102,241,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.prize-total-icon i { width: 20px; height: 20px; color: #a5b4fc; }
.prize-total-divider {
  width: 40px;
  height: 1px;
  background: rgba(99,102,241,0.35);
  margin: 8px 0 4px;
}
.prize-total-amount {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #a5b4fc, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.prize-total-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-top: 2px;
}
.prize-total-window {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-top: 14px;
  opacity: 1;
  text-align: center;
  line-height: 1.6;
}
.prize-total-window i { width: 13px; height: 13px; color: #a5b4fc; flex-shrink: 0; margin-top: 3px; }
.prize-total-window span { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 500; color: var(--text-muted); }
.prize-total-window em { font-style: normal; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: #a5b4fc; }

.contest-terms {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.7;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 20px;
  opacity: 0.7;
}
.contest-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: rgba(99,102,241,0.06);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  margin: 0 auto;
  width: fit-content;
}
.contest-footer-note i { width: 15px; height: 15px; color: #a5b4fc; flex-shrink: 0; }



/* ══════════════════════════════════════════
   RESPONSIVE — 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Layout */
  .container { padding: 0 20px; }

  /* Sections */
  .section    { padding: 60px 0; }
  .section-sm { padding: 36px 0; }
  #hero       { padding: 100px 0 60px; }

  /* Typography */
  .section-title { margin-bottom: 36px; }

  /* CTA card */
  .cta-card { padding: 40px 28px; }
  .cta-resources { grid-template-columns: 1fr; gap: 12px; max-width: 300px; }
  .cta-resource-card { padding: 14px 16px; gap: 12px; }
  .crc-icon { width: 40px; height: 40px; }
  .crc-icon i, .crc-icon svg { width: 18px !important; height: 18px !important; }
  .crc-name { font-size: 0.88rem; }

  /* Funnel */
  .funnel-block.funnel-fe .fc-list,
  .funnel-block.funnel-bundle .fc-list { grid-template-columns: 1fr; }

  /* Prize */
  .prize-total-banner { padding: 28px 24px 20px; }

  /* Connect */
  .connect-card { gap: 20px; padding: 28px 28px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════════ */
@media (max-width: 480px) {
  /* Layout */
  .container { padding: 0 16px; }

  /* Sections */
  .section    { padding: 40px 0; }
  .section-sm { padding: 24px 0; }
  #hero       { padding: 80px 0 48px; }

  /* Typography */
  .section-title  { margin-bottom: 20px; }
  .section-sub    { font-size: 14px; }

  /* Stats */
  .stat-card  { padding: 20px 14px; }
  .stat-label { font-size: 11px; }

  /* CTA card */
  .cta-card   { padding: 28px 16px; }
  .cta-resources { grid-template-columns: 1fr; gap: 14px; }
  .cta-stat   { font-size: 0.75rem; padding: 4px 10px; white-space: normal; }

  /* Step blocks */
  .step-block   { padding: 20px 16px; gap: 20px; }
  .step-num     { font-size: 2.5rem; }
  .step-visual  { height: 160px; }

  /* Features */
  .feature-card { padding: 20px 14px; }

  /* Testimonials */
  .testi-row-vertical  { gap: 20px; margin-bottom: 20px; }
  .testi-row-horizontal { gap: 20px; }

  /* AI logos */
  .ai-logos { gap: 16px 28px; }
  .ai-logo-wrap { height: 26px; }

  /* Prize */
  .prize-card           { padding: 24px 14px; }
  .prize-total-banner   { padding: 20px 16px 16px; }
  .prize-total-amount   { font-size: 2.4rem; }

  /* Connect card — switch to column */
  .connect-card {
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    max-width: 100%;
    text-align: center;
  }
  .connect-avatar-img { width: 100px; height: 100px; }
  .connect-info { align-items: center; }

  /* Footer */
  .site-footer { padding: 24px 0; }

  /* Toast */
  #geo-toast {
    left: 16px;
    right: 16px;
    bottom: 20px;
    transform: translateY(20px);
    white-space: normal;
    text-align: center;
  }
  #geo-toast.toast-show { transform: translateY(0); }
}
