/* ══════════════════════════════════════════════════════════════
   RecurHub JV Page — 2026 Premium Redesign
   Brand: linear-gradient(90deg, #771AFF 0%, #F072AF 100%)
   ══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Brand */
  --brand-start:   #771AFF;
  --brand-mid:     #B148D8;
  --brand-end:     #F072AF;
  --brand:         linear-gradient(90deg, #771AFF 0%, #F072AF 100%);
  --brand-135:     linear-gradient(135deg, #771AFF 0%, #F072AF 100%);
  --brand-soft:    linear-gradient(135deg, rgba(119,26,255,0.14), rgba(240,114,175,0.14));

  /* Dark surface */
  --bg:            #08060F;
  --bg-elev:       #0F0B1D;
  --bg-card:       #130E26;
  --glass:         rgba(255,255,255,0.04);
  --glass-strong:  rgba(255,255,255,0.08);
  --border:        rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text:          #FFFFFF;
  --text-muted:    #B4B0C7;
  --text-dim:      #7A7590;

  /* Light surface */
  --light-bg:      #F7F5FB;
  --light-elev:    #FFFFFF;
  --light-text:    #0B0618;
  --light-muted:   #4A4458;
  --light-dim:     #8B8798;
  --light-border:  rgba(11,6,24,0.08);
  --light-border-strong: rgba(11,6,24,0.14);

  /* Utility */
  --success:       #10B981;
  --gold:          #F59E0B;

  /* Type */
  --font-h: 'Google Sans', 'Plus Jakarta Sans', 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-b: 'Inter', 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;

  /* Radii */
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm:       0 2px 8px rgba(0,0,0,0.18);
  --shadow-md:       0 12px 32px rgba(0,0,0,0.25);
  --shadow-lg:       0 24px 60px rgba(0,0,0,0.35);
  --shadow-brand:    0 10px 32px rgba(119,26,255,0.35);
  --shadow-brand-lg: 0 18px 52px rgba(119,26,255,0.45);
  --shadow-light-md: 0 10px 30px rgba(119,26,255,0.1), 0 2px 8px rgba(11,6,24,0.05);
  --shadow-light-lg: 0 20px 60px rgba(119,26,255,0.14), 0 6px 16px rgba(11,6,24,0.06);

  /* Motion */
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s var(--ease);
  --t-base: 0.35s var(--ease);
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
[data-lucide], svg.lucide { width: 18px; height: 18px; stroke-width: 2; flex-shrink: 0; vertical-align: middle; }

/* ── REMOVE FOCUS STYLES — hover-only interactions ────────────
   Strips browser default focus rings / outlines from every clickable
   element. Hover states defined elsewhere remain untouched. */
*:focus,
*:focus-visible,
*:focus-within,
button:focus,
button:focus-visible,
button:active,
a:focus,
a:focus-visible,
a:active,
input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible,
[role="button"]:focus,
[role="button"]:focus-visible {
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none;
}
/* Restore intentional focus shadows on form fields (legal contact form) */
.cf input:focus,
.cf textarea:focus,
.cf select:focus { box-shadow: 0 0 0 3px rgba(119,26,255,0.14); }
* { -webkit-tap-highlight-color: transparent; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-h);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.028em;
  color: var(--text);
}
h1 { font-size: clamp(2.7rem, 5.8vw, 4.95rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.04em; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); font-weight: 700; letter-spacing: -0.035em; }
h3 { font-size: clamp(1.25rem, 2.1vw, 1.65rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
h4 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }

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

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; }
.section    { padding: 90px 0; position: relative; overflow: hidden; }
.section-sm { padding: 90px 0; position: relative; }
.centered   { text-align: center; }

/* Consistent section-title spacing */
.section-title { margin-bottom: 52px; }

/* ── SECTION THEMES ─────────────────────────────────────────── */
/* Light sections: apply to <section class="section section-light"> */
.section-light {
  background: var(--light-bg);
  color: var(--light-text);
}
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: var(--light-text); }

.bg-alt { background: var(--bg-elev); }

.bg-glow-left::before,
.bg-glow-right::before,
.bg-glow-top::before,
.bg-funnel-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-glow-left::before  { background: radial-gradient(ellipse 60% 60% at -5% 50%, rgba(119,26,255,0.22), transparent 70%); }
.bg-glow-right::before { background: radial-gradient(ellipse 60% 60% at 105% 50%, rgba(240,114,175,0.2), transparent 70%); }
.bg-glow-top::before   { background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(119,26,255,0.22), transparent 70%); }
.bg-funnel-glow::before {
  background:
    radial-gradient(ellipse 50% 55% at 12% 20%, rgba(119,26,255,0.38), transparent 65%),
    radial-gradient(ellipse 50% 55% at 88% 80%, rgba(240,114,175,0.3), transparent 65%);
}
.bg-glow-left > *,
.bg-glow-right > *,
.bg-glow-top > *,
.bg-funnel-glow > * { position: relative; z-index: 1; }

.dot-grid {
  background-image: radial-gradient(rgba(119,26,255,0.28) 1.4px, transparent 1.4px);
  background-size: 32px 32px;
}
.section-light.dot-grid {
  background-color: var(--light-bg);
  background-image: radial-gradient(rgba(119,26,255,0.12) 1.2px, transparent 1.2px);
}
.fade-edges::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, transparent 14%, transparent 86%, var(--bg) 100%);
  pointer-events: none;
  z-index: 2;
}
.section-light.fade-edges::after {
  background: linear-gradient(to bottom, var(--light-bg) 0%, transparent 14%, transparent 86%, var(--light-bg) 100%);
}
.fade-edges > * { position: relative; z-index: 3; }

/* ── SECTION LABELS ─────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: var(--brand-soft);
  border: 1px solid rgba(119,26,255,0.3);
  color: #D8B4FE;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.section-light .section-tag {
  background: linear-gradient(135deg, rgba(119,26,255,0.08), rgba(240,114,175,0.08));
  border-color: rgba(119,26,255,0.22);
  color: var(--brand-start);
}
.section-title { margin-bottom: 50px; }
.section-sub {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.65;
}
.section-light .section-sub { color: var(--light-muted); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-b);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 16px 32px;
  border-radius: var(--r-pill);
  background: var(--brand);
  background-size: 200% 100%;
  background-position: 0% 0%;
  box-shadow: var(--shadow-brand-lg);
  transition: var(--t-base);
  letter-spacing: 0.01em;
  isolation: isolate;
  white-space: nowrap;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #F072AF 0%, #771AFF 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand-lg);
  color: #fff;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg.lucide { width: 16px; height: 16px; stroke: currentColor; transition: transform 0.3s var(--ease); }
.btn-primary:hover svg.lucide { transform: translateX(3px); }

/* ── BADGES & PILLS ─────────────────────────────────────────── */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 18px 8px 14px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  color: #fff;
  margin-bottom: 32px;
}
.launch-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-end);
  box-shadow: 0 0 14px var(--brand-end);
  animation: pulseDot 1.8s ease-in-out infinite;
}
.launch-badge svg.lucide { display: none; }
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.4); }
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  backdrop-filter: blur(12px);
  transition: var(--t-fast);
}
.stat-pill:hover {
  border-color: rgba(240,114,175,0.5);
  color: #fff;
  transform: translateY(-2px);
}
.stat-pill svg.lucide { width: 14px; height: 14px; stroke: var(--brand-end); }

/* ── NAV ────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--t-base);
  padding: 10px 0;
}
#navbar.scrolled {
  padding: 6px 0;
  background: rgba(8,6,15,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img { height: 36px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  position: relative;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { font-size: 13px; padding: 10px 20px; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--t-fast);
  backdrop-filter: blur(12px);
}
.nav-toggle:hover {
  border-color: rgba(240,114,175,0.35);
  background: rgba(255,255,255,0.07);
}
.nav-toggle-icon {
  position: relative;
  width: 18px;
  height: 12px;
  display: inline-block;
  flex-shrink: 0;
}
.nav-toggle-icon span {
  position: absolute;
  left: 0;
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle-icon span:nth-child(1) { top: 0; }
.nav-toggle-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle-icon span:nth-child(3) { bottom: 0; }
#navbar.nav-open .nav-toggle-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
#navbar.nav-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}
#navbar.nav-open .nav-toggle-icon span:nth-child(3) {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(-45deg);
}

@media (max-width: 992px) {
  .nav-inner {
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }
  .nav-logo { flex-shrink: 0; }
  .nav-logo img { height: 30px; }
  .nav-actions {
    margin-left: auto;
    flex-shrink: 0;
    gap: 8px;
    align-items: center;
  }
  .nav-toggle { display: inline-flex; }
  .nav-cta {
    font-size: 11px;
    padding: 8px 12px;
    white-space: nowrap;
  }
  .nav-toggle {
    height: 38px;
    padding: 0 12px;
  }
  .nav-toggle-icon {
    width: 16px;
    height: 11px;
  }
  .nav-links {
    order: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0 20px;
    margin-top: 0;
    border-radius: 18px;
    background: rgba(8,6,15,0);
    border: 1px solid transparent;
    box-shadow: none;
    backdrop-filter: blur(18px);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.35s var(--ease), opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  #navbar.nav-open .nav-links {
    max-height: 360px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 18px 20px 20px;
    margin-top: 2px;
    background: rgba(8,6,15,0.96);
    border-color: rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
  }
  .nav-links a {
    font-size: 15px;
    color: #fff;
    width: 100%;
  }
  .nav-links a::after {
    left: 0;
    right: auto;
    width: 24px;
  }
  .nav-links a::after { bottom: -4px; }
}

@media (max-width: 480px) {
  .nav-logo img { height: 26px; }
  .nav-actions { gap: 6px; }
  .nav-cta {
        font-size: 11px!important;
        padding: 8px 12px!important;
  }
  .nav-toggle {
    height: 34px;
    padding: 0 10px;
  }
  .nav-toggle-icon {
    width: 14px;
    height: 10px;
  }
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  padding: 168px 0 112px;
  overflow: hidden;
  text-align: center;
  background: var(--bg);
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(119,26,255,0.45) 0%, transparent 50%),
    radial-gradient(ellipse 70% 60% at 15% 85%, rgba(240,114,175,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 25%, rgba(119,26,255,0.28) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(240,114,175,0.15) 0%, transparent 65%),
    var(--bg);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 85% 65% at 50% 50%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 85% 65% at 50% 50%, #000 25%, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1030px;
  margin: 0 auto;
}
#hero h1 {
  margin-bottom: 24px;
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4.55rem);
  letter-spacing: -0.04em;
}
.hero-sub {
  color: var(--text-muted);
  font-size: clamp(15px, 1.15vw, 18px);
  max-width: 960px;
  margin: 0 auto 40px;
  line-height: 1.55;
  text-wrap: balance;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.hero-cta {
  font-size: 16px;
  padding: 18px 40px;
  margin-bottom: 0;
}
span.head-box {
    background: linear-gradient(135deg, #771AFF 0%, #F072AF 100%);
    box-shadow: 0px 0px 20px 0px rgba(255, 255, 255, 0.8) inset;
    border-radius: 20px;
    display: inline-block;
    padding: 10px 15px;
    font-weight: 800;
    text-align: center;
    position: relative;
}

/* ── COUNTDOWN ──────────────────────────────────────────────── */
.countdown-wrap {
  margin-top: 56px;
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
.countdown-wrap::before {
  content: '';
  position: absolute;
  inset: -30px -60px;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(240,114,175,0.14), transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.countdown-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: rgba(240,114,175,0.1);
  border: 1px solid rgba(240,114,175,0.3);
  backdrop-filter: blur(10px);
}
.countdown-label svg.lucide { width: 13px; height: 13px; stroke: var(--brand-end); }
.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}
.cd-unit {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 18px 10px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 8px 24px rgba(0,0,0,0.28);
  isolation: isolate;
  overflow: hidden;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.cd-unit::before {
  content: '';
  position: absolute;
  top: 0; left: 12px; right: 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,114,175,0.7), transparent);
}
.cd-unit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 0%, rgba(119,26,255,0.14), transparent 72%);
  z-index: -1;
}
.cd-unit:hover { transform: translateY(-2px); border-color: rgba(240,114,175,0.28); }
.cd-num {
  font-family: var(--font-h);
  font-size: clamp(1.85rem, 4.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.035em;
  background: var(--brand-135);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-variant-numeric: tabular-nums;
}
/* Gentle pulse on the seconds digit for subtle urgency */
.cd-unit:last-child .cd-num {
  animation: cdPulse 1.1s ease-in-out infinite;
}
@keyframes cdPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.72; }
}
.cd-lbl {
  font-family: var(--font-h);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.cd-sep { display: none; }

@media (max-width: 520px) {
  .countdown-wrap { margin-top: 40px; max-width: 100%; }
  .countdown { gap: 8px; }
  .cd-unit   { padding: 14px 4px 10px; gap: 4px; }
  .cd-lbl    { font-size: 9px; letter-spacing: 0.14em; }
  .countdown-label { font-size: 11px; letter-spacing: 0.16em; padding: 6px 14px; }
}

/* ── TIMELINE (card style) ──────────────────────────────────── */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.timeline-line { display: none; }
.timeline-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px 26px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  backdrop-filter: blur(14px);
  transition: var(--t-base);
  overflow: hidden;
  isolation: isolate;
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(119,26,255,0.5);
  opacity: 0.6;
}
.timeline-item:hover { transform: translateY(-4px); border-color: rgba(240,114,175,0.35); }

.tl-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(119,26,255,0.12);
  border: 1px solid rgba(119,26,255,0.3);
  color: #D8B4FE;
  transition: var(--t-base);
}
.tl-icon svg.lucide { width: 22px; height: 22px; stroke: currentColor; }
.tl-dot { display: none; }

.tl-content { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.tl-label {
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.tl-date {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.tl-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Active date card — highlighted */
.timeline-item.active {
  background: linear-gradient(160deg, rgba(119,26,255,0.14), rgba(240,114,175,0.08));
  border-color: rgba(240,114,175,0.35);
  box-shadow: 0 16px 48px rgba(119,26,255,0.2);
}
.timeline-item.active::before {
  height: 4px;
  background: var(--brand);
  opacity: 1;
}
/* Live dot indicator on the active card — replaces the 'LIVE' badge */
.timeline-item.active::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-end);
  box-shadow: 0 0 0 0 rgba(240,114,175,0.55);
  animation: liveDot 1.6s ease-in-out infinite;
}
@keyframes liveDot {
  0%   { box-shadow: 0 0 0 0 rgba(240,114,175,0.55); opacity: 1; }
  70%  { box-shadow: 0 0 0 10px rgba(240,114,175,0); opacity: 0.85; }
  100% { box-shadow: 0 0 0 0 rgba(240,114,175,0); opacity: 1; }
}
.timeline-item.active .tl-icon {
  background: var(--brand);
  border: none;
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.timeline-item.active .tl-label { color: #FBCFE8; }
.timeline-item.active .tl-date {
  background: var(--brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 560px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ── STATS GRID (used by Why section) ───────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.stat-card {
  padding: 40px 32px;
  border-radius: var(--r-lg);
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-light-md);
  transition: var(--t-base);
  text-align: left;
}
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-light-lg);
  border-color: rgba(119,26,255,0.25);
}
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.stat-icon svg.lucide { width: 22px; height: 22px; stroke: currentColor; }
.stat-num {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--light-muted); line-height: 1.55; }

.why-copy {
  text-align: center;
  font-size: 18px;
  color: var(--light-muted);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
}
.why-copy strong { color: var(--light-text); font-weight: 600; }

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

/* ── PERFECT FOR YOU IF — Marketer Cards ────────────────────── */
#perfect-for { background: var(--light-bg); }
#perfect-for::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 45% 60% at 15% 20%, rgba(119,26,255,0.06), transparent 60%),
    radial-gradient(ellipse 45% 60% at 85% 85%, rgba(240,114,175,0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
#perfect-for > * { position: relative; z-index: 1; }

.marketer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.marketer-card {
  position: relative;
  padding: 32px 28px 30px;
  border-radius: 20px;
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  transition: var(--t-base);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  text-align: left;
}
/* Gradient border on hover — masked pseudo-element */
.marketer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(119,26,255,0.55), rgba(240,114,175,0.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}
/* Soft hover-background tint */
.marketer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(119,26,255,0.04), rgba(240,114,175,0.03));
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: -1;
}
.marketer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -12px rgba(119,26,255,0.18), 0 4px 12px rgba(11,6,24,0.06);
}
.marketer-card:hover::before { opacity: 1; }
.marketer-card:hover::after { opacity: 1; }

/* Dual-tone icon tile — tinted square with colored icon inside */
.marketer-icon {
  display: inline-flex;
  /*align-items: center;*/
  /*justify-content: center;*/
  /*width: 100px;*/
  height: 100px;
  /*border-radius: 14px;*/
  /*background: linear-gradient(135deg, rgba(119,26,255,0.12), rgba(240,114,175,0.12));*/
  /*color: var(--brand-start);*/
  /*flex-shrink: 0;*/
  /*transition: var(--t-base);*/
}
.marketer-icon svg.lucide {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}
.marketer-card:hover .marketer-icon {
  /*background: var(--brand);*/
  /*color: #fff;*/
  /*box-shadow: 0 8px 18px rgba(119,26,255,0.35);*/
  transform: scale(1.05);
}

.marketer-card h3 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--light-text);
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.25;
}
.marketer-card p {
  font-size: 14.5px;
  color: var(--light-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) { .marketer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px)  { .marketer-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 520px)  { .marketer-grid { grid-template-columns: 1fr; } }

/* ── PRODUCT INTRO ──────────────────────────────────────────── */
.product-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-content { display: flex; flex-direction: column; }
.product-section .product-title {
  color: var(--text);
}
.product-section .product-desc {
  color: var(--text-muted);
}
.product-section .product-desc em {
  color: #fff;
}
.introducing {
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--brand);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-light .introducing {
  background: var(--brand);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.introducing::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.product-title {
  font-family: var(--font-h);
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.section-light .product-title { color: var(--light-text); }
.product-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.section-light .product-desc { color: var(--light-muted); }
.product-desc em {
  color: #FBCFE8;
  font-style: normal;
  font-weight: 600;
}
.section-light .product-desc em { color: var(--brand-start); }
.product-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-cover::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(119,26,255,0.22), transparent 70%);
  z-index: 0;
}
.product-cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  border-radius: var(--r-lg);
}

/* AI partners */
.ai-partners {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 60px;
}
.ai-partners-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.ai-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px 60px;
  line-height: 0;
}
.ai-logo-wrap { height: 50px; display: flex; align-items: center; justify-content: center; }
.ai-logo-wrap img {
  height: 100%;
  max-width: 160px;
  width: auto;
  object-fit: contain;
  opacity: 0.4;
  filter: grayscale(1);
  transition: var(--t-base);
}
.ai-logo-wrap:hover img { opacity: 0.9; filter: grayscale(0); transform: scale(1.05); }

@media (max-width: 860px) {
  .product-intro { grid-template-columns: 1fr; gap: 48px; }
  .product-cover { order: -1; }
  .ai-logos { gap: 20px 36px; }
}

/* ── CTA CARD ───────────────────────────────────────────────── */
.cta-card {
  position: relative;
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
  background: linear-gradient(135deg, #13091F 0%, #1C0D2E 55%, #2A0E3B 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  isolation: isolate;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 0%, rgba(119,26,255,0.32), transparent 60%),
    radial-gradient(ellipse 60% 70% at 100% 100%, rgba(240,114,175,0.26), transparent 60%);
  z-index: -1;
}
.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(119,26,255,0.45), rgba(240,114,175,0.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.cta-card-title {
  font-family: var(--font-h);
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 36px;
  letter-spacing: -0.03em;
  line-height: 1.12;
}
.cta-resources {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto 40px;
  max-width: 720px;
}
.cta-resource-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: 22px 20px;
  min-height: 4rem;
  color: #fff;
  transition: var(--t-base);
}
.cta-resource-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  border-color: rgba(240,114,175,0.4);
}
.crc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.crc-icon svg.lucide { width: 22px; height: 22px; stroke: currentColor; }
.crc-name { font-family: var(--font-h); font-size: 14px; font-weight: 600; }
.crc-arrow {
  position: absolute;
  top: 14px; right: 14px;
  width: 13px !important;
  height: 13px !important;
  stroke: rgba(255,255,255,0.35) !important;
  transition: var(--t-fast);
}
.cta-resource-card:hover .crc-arrow { stroke: #fff !important; transform: translate(2px, -2px); }
.cta-card-btn {
  font-size: 16px;
  padding: 18px 42px;
}
.cta-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 32px;
}
.cta-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  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: var(--r-pill);
  padding: 7px 16px 7px 8px;
  white-space: nowrap;
}
.cta-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  flex-shrink: 0;
}
.cta-stat-icon i, .cta-stat-icon svg { width: 12px; height: 12px; }
.cta-stat-icon.gold { background: linear-gradient(135deg,#FBBF24,#F59E0B); }
.cta-stat-icon.recurring { background: linear-gradient(135deg,#34D399,#10B981); }

@media (max-width: 760px) {
  .cta-card { padding: 48px 28px; }
  .cta-resources { grid-template-columns: 1fr; max-width: 360px; }
}

/* ── FEATURES ───────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  position: relative;
  padding: 40px 32px;
  border-radius: var(--r-lg);
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-light-md);
  transition: var(--t-base);
  overflow: hidden;
  isolation: isolate;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(119,26,255,0.06), rgba(240,114,175,0.06));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-light-lg);
  border-color: rgba(119,26,255,0.25);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  display: inline-flex;
  /*align-items: center;*/
  /*justify-content: center;*/
  /*width: 100px;*/
  height: 100px;
  /*border-radius: 16px;*/
  /*background: var(--brand);*/
  /*color: #fff;*/
  /*margin-bottom: 22px;*/
  /*box-shadow: var(--shadow-brand);*/
}
.feature-icon svg.lucide { width: 22px; height: 22px; stroke: currentColor; }
.feature-card h3 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--light-text);
  letter-spacing: -0.015em;
}
.feature-card p {
  font-size: 15px;
  color: var(--light-muted);
  line-height: 1.65;
}
/* Per-card icon color variations */
/*.feature-card:nth-child(2) .feature-icon { background: linear-gradient(135deg, #F072AF, #EC4899); }*/
/*.feature-card:nth-child(3) .feature-icon { background: linear-gradient(135deg, #A855F7, #7C3AED); }*/
/*.feature-card:nth-child(4) .feature-icon { background: linear-gradient(135deg, #8B5CF6, #C026D3); }*/
/*.feature-card:nth-child(5) .feature-icon { background: linear-gradient(135deg, #E879F9, #A855F7); }*/
/*.feature-card:nth-child(6) .feature-icon { background: linear-gradient(135deg, #771AFF, #F072AF); }*/

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

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.steps-flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.step-block {
  display: flex;
  align-items: stretch;
  gap: 48px;
  width: 78%;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 56px;
  backdrop-filter: blur(14px);
  min-height: 300px;
  position: relative;
  z-index: 1;
  transition: var(--t-base);
  isolation: isolate;
}
.step-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(119,26,255,0.35), transparent 50%, rgba(240,114,175,0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}
.step-block.step-left  { margin-right: auto; }
.step-block.step-right { margin-left: auto; }

/* Decorative side arrows that sit in the empty space alongside steps 2 & 3. */
.step-arrow {
  position: absolute;
  width: 180px;
  height: auto;
  pointer-events: none;
  z-index: 2;
  opacity: 0.9;
  filter: drop-shadow(0 0 12px rgba(240,114,175,0.18));
}
/* Arrow 1 — inside card 2 (step-right), placed in the empty space on its LEFT */
.step-arrow-1 {
  right: calc(100% + 24px);
  transform: translateY(-50%);
}
/* Arrow 2 — inside card 3 (step-left), placed in the empty space on its RIGHT */
.step-arrow-2 {
  left: calc(100% + 24px);
  transform: translateY(-50%);
}
@media (max-width: 1100px) {
  .step-arrow { width: 140px; }
}
@media (max-width: 900px) {
  /* Cards become full-width on mobile — hide side arrows entirely */
  .step-arrow { display: none; }
}

.step-content { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.step-num {
  font-family: var(--font-h);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  letter-spacing: -0.04em;
}
.step-content h3 {
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.step-content p  { font-size: 15px; color: var(--text-muted); line-height: 1.75; margin-bottom: 22px; }
.step-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.step-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.step-features li i {
  width: 16px; height: 16px;
  color: var(--brand-end);
  flex-shrink: 0;
}

/* STEP VISUALS (dark cards w/ animations) */
.step-visual {
  flex-shrink: 0;
  width: 280px;
  align-self: stretch;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 12px;
}

/* Visual 1 — Install/Build */
.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: 38px; height: 38px;
  background: var(--brand);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
  box-shadow: var(--shadow-brand);
}
.svi-icon i { width: 18px; height: 18px; }
.svi-meta { flex: 1; }
.svi-name { display: block; font-size: 0.82rem; font-weight: 600; color: #fff; }
.svi-sub  { display: block; font-size: 0.68rem; color: var(--text-dim); }
.svi-progress-wrap { display: flex; flex-direction: column; gap: 8px; }
.svi-progress-top {
  display: flex; justify-content: space-between;
  font-size: 0.68rem; color: var(--text-dim);
}
.svi-pct { color: #D8B4FE; font-weight: 600; animation: pctCount 2.5s ease-in-out infinite; }
.svi-bar { height: 6px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.svi-fill {
  height: 100%; width: 0%;
  background: var(--brand);
  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.74rem; color: var(--text-dim);
}
.svi-row i { width: 14px; height: 14px; flex-shrink: 0; }
.svi-done { color: var(--brand-end); }
.svi-done i { color: var(--brand-end); }
.svi-active { color: var(--brand-mid); }
.svi-active i { color: var(--brand-mid); 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 — AI generate */
.svo-browser {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.svo-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.svo-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.svo-url {
  font-size: 0.62rem; color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  border-radius: 4px; padding: 2px 10px; margin-left: 6px;
}
.svo-body {
  flex: 1; padding: 14px 12px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 7px; 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: 32px;
  background: linear-gradient(180deg, transparent, rgba(119,26,255,0.25), transparent);
  border-top: 1px solid rgba(240,114,175,0.6);
  animation: scanDown 2s ease-in-out infinite;
}
.svo-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.svo-tag {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.64rem; font-weight: 600;
  border-radius: var(--r-pill); padding: 4px 10px;
  opacity: 0;
}
.svo-tag i { width: 10px; height: 10px; }
.svo-tag.t1 { background: rgba(119,26,255,0.15); border: 1px solid rgba(119,26,255,0.35); color: #D8B4FE;  animation: tagIn 2s ease-in-out infinite 0.4s; }
.svo-tag.t2 { background: rgba(240,114,175,0.12); border: 1px solid rgba(240,114,175,0.35); color: #FBCFE8; animation: tagIn 2s ease-in-out infinite 0.7s; }
.svo-tag.t3 { background: rgba(168,85,247,0.12);  border: 1px solid rgba(168,85,247,0.35); color: #E9D5FF;  animation: tagIn 2s ease-in-out infinite 1.0s; }
.svo-tag.t4 { background: rgba(16,185,129,0.12);  border: 1px solid rgba(16,185,129,0.35); color: #6EE7B7; animation: tagIn 2s ease-in-out infinite 1.3s; }
@keyframes scanDown { 0% { top: -32px; } 100% { top: 100%; } }
@keyframes tagIn {
  0%, 30%  { opacity: 0; transform: translateY(4px); }
  60%, 90% { opacity: 1; transform: translateY(0); }
  100%     { opacity: 0; }
}

/* Visual 3 — Leads captured */
.sv-cited { justify-content: space-between; }
.svc-card {
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  padding: 12px 14px;
  opacity: 0;
  transform: translateX(-8px);
  border-left: 2px solid transparent;
}
.svc-engine {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 700;
  margin-bottom: 6px;
}
.svc-engine i { width: 12px; height: 12px; }
.svc-text { font-size: 0.7rem; color: var(--text-dim); line-height: 1.45; font-style: italic; }
.svc-text span { color: #fff; font-style: normal; font-weight: 600; }
.svc-c1 { border-left-color: var(--brand-start); color: #D8B4FE; animation: slideIn 3.5s ease-in-out infinite 0s; }
.svc-c2 { border-left-color: var(--brand-mid);   color: #FBCFE8; animation: slideIn 3.5s ease-in-out infinite 0.5s; }
.svc-c3 { border-left-color: var(--brand-end);   color: #6EE7B7; animation: slideIn 3.5s ease-in-out infinite 1.0s; }
.svc-c3 .svc-engine i { color: var(--success); }
.svc-c3 .svc-text span { color: var(--success); }
@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: 900px) {
  .step-block {
    width: 100%;
    flex-direction: column;
    padding: 36px 24px;
    gap: 28px;
  }
  .step-block.step-right { margin-left: 0; }
  .step-block.step-right .step-content { order: -1; }
  .step-visual { width: 100%; height: 220px; }
  .step-num { font-size: 3.25rem; }
}
@media (max-width: 520px) { .step-num { font-size: 2.75rem; } }

/* ── DEMO VIDEO ─────────────────────────────────────────────── */
#demo {
  background: var(--light-bg);
  color: var(--light-text);
}
#demo h2 { color: var(--light-text); }
#demo .section-tag {
  background: linear-gradient(135deg, rgba(119,26,255,0.08), rgba(240,114,175,0.08));
  border-color: rgba(119,26,255,0.22);
  color: var(--brand-start);
}
.demo-video-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-light-lg);
}

/* ── FUNNEL ─────────────────────────────────────────────────── */
.funnel-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.funnel-block.funnel-fe { grid-column: 1 / -1; }
.funnel-block.funnel-oto4 { grid-column: 1 / -1; }

.funnel-card {
  position: relative;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  transition: var(--t-base);
  overflow: hidden;
  isolation: isolate;
}
.funnel-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(119,26,255,0.35);
}
.funnel-fe   .funnel-card::before { background: linear-gradient(90deg, var(--gold), #FBBF24); }
.funnel-oto1 .funnel-card::before { background: var(--brand-start); }
.funnel-oto2 .funnel-card::before { background: var(--brand-mid); }
.funnel-oto3 .funnel-card::before { background: var(--brand); height: 4px; }
.funnel-card:hover { transform: translateY(-4px); border-color: rgba(240,114,175,0.3); box-shadow: 0 20px 60px rgba(119,26,255,0.15); }

/* FE/OTO3 full width cards get multi-column feature lists */
.funnel-fe .fc-list,
.funnel-oto3 .fc-list { display: grid; grid-template-columns: 1fr ; gap: 10px 32px; }

/* OTO3 premium gradient border */
.funnel-oto3 .funnel-card {
  background: linear-gradient(135deg, rgba(119,26,255,0.08), rgba(240,114,175,0.06));
}
.funnel-oto3 .funnel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: var(--brand-135);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: -1;
}

/* Top row: tier tag + price */
.fc-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.fc-tier-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--r-pill);
  padding: 6px 12px;
}
.fc-tier-tag i { width: 13px; height: 13px; flex-shrink: 0; }
.fc-tier-tag.fe        { background: linear-gradient(135deg, #FBBF24, #F59E0B); color: #1A1300; }
.fc-tier-tag.oto       { background: rgba(119,26,255,0.18); color: #D8B4FE; border: 1px solid rgba(119,26,255,0.4); }
.fc-tier-tag.bundle    { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.fc-tier-tag.recurring { background: linear-gradient(135deg,#34D399,#10B981); color: #fff; }

/* OTO2 purple accent */
.funnel-oto2 .fc-tier-tag.oto    { background: rgba(168,85,247,0.18); color: #E9D5FF; border-color: rgba(168,85,247,0.4); }
.funnel-oto2 .fc-list li i       { color: #A855F7; }
.funnel-oto2 .fc-price-display   { background: linear-gradient(135deg, #E9D5FF, #A855F7); -webkit-background-clip:text; background-clip:text; }

.fc-price-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.fc-price-type {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.fc-price-type.recurring { color: #6EE7B7; }
.fc-price-display {
  font-family: var(--font-h);
  font-size: clamp(2.1rem, 3.8vw, 2.8rem);
  font-weight: 800;
  background: var(--brand-135);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.funnel-fe .fc-price-display { background: linear-gradient(135deg, #FDE047, #F59E0B); -webkit-background-clip: text; background-clip: text; }
.fc-price-display em { font-size: 0.5em; font-style: normal; font-weight: 700; }

.fc-name {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.fc-desc {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}
.fc-list {
  list-style: none;
  padding: 22px 0 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex: 1;
}
.fc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.fc-list li i {
  width: 16px; height: 16px;
  color: var(--brand-end);
  flex-shrink: 0;
  margin-top: 2px;
}
.funnel-fe .fc-list li i { color: var(--gold); }

.fc-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.fc-price-pill {
  font-size: 15px;
  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: var(--r-pill);
  padding: 7px 16px;
}
.fc-price-pill em { font-style: normal; color: var(--text-dim); font-weight: 400; }
.fc-price-pill.fc-highlight {
  color: #fff;
  background: var(--brand-soft);
  border-color: rgba(119,26,255,0.45);
}
.funnel-fe .fc-price-pill.fc-highlight {
  color: #FDE047;
  background: rgba(245,158,11,0.1);
  border-color: rgba(245,158,11,0.3);
}

@media (max-width: 860px) {
  .funnel-flow { grid-template-columns: 1fr; }
  .funnel-fe .fc-list, .funnel-oto3 .fc-list { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .funnel-card { padding: 28px 22px; }
  .fc-price-display { font-size: 2rem; }
  .fc-name { font-size: 1.3rem; }
  .fc-desc { font-size: 14px; }
}

/* ── CONTEST ────────────────────────────────────────────────── */
.prize-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 44px;
}
.prize-total-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 40px 36px;
  background: linear-gradient(135deg, #13091F 0%, #1C0D2E 55%, #2A0E3B 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
  color: #fff;
}
.prize-total-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 30%, rgba(119,26,255,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 20% 100%, rgba(240,114,175,0.22) 0%, transparent 65%);
  z-index: -1;
}
.prize-total-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(119,26,255,0.55), rgba(240,114,175,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-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: var(--shadow-brand);
}
.prize-total-icon i { width: 24px; height: 24px; color: #fff; }
.prize-total-divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(119,26,255,0.6), rgba(240,114,175,0.6));
  border-radius: 2px;
  margin: 10px 0 6px;
}
.prize-total-amount {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  background: var(--brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -0.035em;
}
.prize-total-label {
  font-family: var(--font-h);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #D8B4FE;
  margin-top: 6px;
}
.prize-total-window {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
}
.prize-total-window span {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: #fff;
}
.prize-total-window em { font-style: normal; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: #D8B4FE; font-weight: 600; }

.prize-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  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(--r-md);
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-light-md);
  text-align: center;
  transition: var(--t-base);
  position: relative;
  overflow: hidden;
}
.prize-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(11,6,24,0.12);
}
.prize-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-light-lg); }
.pc-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-muted);
}
.pc-label i { width: 14px; height: 14px; flex-shrink: 0; }
.pc-amount {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--light-text);
}
.prize-1st { padding: 36px 24px; }
.prize-1st::before { background: linear-gradient(90deg, #F59E0B, #FBBF24); height: 4px; }
.prize-1st .pc-label { color: #B45309; font-size: 13px; }
.prize-1st .pc-label i { color: #F59E0B; width: 16px; height: 16px; }
.prize-1st .pc-amount { font-size: 2.8rem; background: linear-gradient(135deg,#F59E0B,#FBBF24); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.prize-2nd::before { background: linear-gradient(90deg, #94A3B8, #CBD5E1); }
.prize-2nd .pc-label { color: #64748B; }
.prize-2nd .pc-label i { color: #94A3B8; }

.prize-3rd::before { background: linear-gradient(90deg, #FB923C, #FDBA74); }
.prize-3rd .pc-label { color: #C2410C; }
.prize-3rd .pc-label i { color: #FB923C; }

.prize-4th .pc-amount,
.prize-5th .pc-amount { font-size: 1.65rem; background: var(--brand); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }

.contest-terms {
  font-size: 13px;
  color: var(--light-dim);
  line-height: 1.7;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 24px;
}
.contest-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--light-text);
  background: var(--brand-soft);
  border: 1px solid rgba(119,26,255,0.2);
  border-radius: var(--r-pill);
  padding: 12px 24px;
  margin: 0 auto;
  width: fit-content;
}
.contest-footer-note i { width: 16px; height: 16px; color: var(--brand-start); flex-shrink: 0; }

@media (max-width: 900px) {
  .prize-layout { grid-template-columns: 1fr; }
  .prize-total-banner { flex-direction: column; }
}
@media (max-width: 480px) {
  .prize-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: 48px;
}
.testi-row-horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.video-slot { display: flex; flex-direction: column; gap: 12px; }
.video-slot.hidden { display: none !important; }
.vs-inner {
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-light-md);
  transition: var(--t-base);
}
.video-slot:hover .vs-inner { transform: translateY(-4px); box-shadow: var(--shadow-light-lg); }
.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-family: var(--font-h);
  font-size: 14px;
  font-weight: 600;
  color: var(--light-text);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

@media (max-width: 860px) {
  .testi-row-vertical  { grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 20px; }
  .testi-row-horizontal { grid-template-columns: 1fr; gap: 20px; }
}
@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;
  border-radius: var(--r-lg);}

/* ── CONNECT ────────────────────────────────────────────────── */
#connect .section-title { margin-bottom: 14px; }
.connect-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 540px;
  margin: 48px auto 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 36px 44px;
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.connect-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 0% 50%, rgba(119,26,255,0.18), transparent 65%);
  z-index: -1;
}
.connect-avatar { flex-shrink: 0; position: relative; }
.connect-avatar::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--brand);
  z-index: 0;
}
.connect-avatar-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  display: block;
  position: relative;
  z-index: 1;
  border: 3px solid var(--bg);
}
.connect-info { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.connect-name {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.connect-btns { display: flex; flex-direction: column; gap: 10px; }
.connect-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color var(--t-fast);
}
.connect-btn:hover { color: #fff; }
.connect-btn-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.connect-btn-icon img { width: 26px; height: 26px; object-fit: cover; display: block; }

.bg-connect-glow {
  background: var(--bg);
  position: relative;
}
.bg-connect-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 20% 50%, rgba(119,26,255,0.24), transparent 60%),
    radial-gradient(ellipse 60% 90% at 80% 50%, rgba(240,114,175,0.22), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.bg-connect-glow > * { position: relative; z-index: 1; }

@media (max-width: 520px) {
  .connect-card { flex-direction: column; padding: 32px 24px; gap: 20px; text-align: center; }
  .connect-avatar-img { width: 110px; height: 110px; }
  .connect-info { align-items: center; }
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--light-border);
  border-radius: var(--r-md);
  margin-bottom: 18px;
  background: var(--light-elev);
  overflow: hidden;
  transition: var(--t-base);
}
.faq-item:hover { border-color: rgba(119,26,255,0.25); box-shadow: var(--shadow-light-md); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 600;
  color: var(--light-text);
  text-align: left;
  letter-spacing: -0.015em;
  transition: var(--t-fast);
  background: transparent;
  background-color: transparent;
  border: 0;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-q:focus,
.faq-q:focus-visible,
.faq-q:active { outline: 0; box-shadow: none; }
.faq-q[aria-expanded="true"] { color: var(--brand-start); }
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-start);
  flex-shrink: 0;
  transition: var(--t-base);
  padding: 0;
  line-height: 0;
}
.faq-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  stroke: currentColor;
}
.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(90deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--light-muted);
  line-height: 1.75;
  padding: 0 32px;
  transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
}
.faq-q[aria-expanded="true"] + .faq-a { padding: 8px 32px 40px; }

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.reveal-left  { transform: translateX(-24px); }
.reveal.reveal-right { transform: translateX(24px); }
.reveal.reveal-scale { transform: scale(0.96); }
.reveal.visible { opacity: 1; transform: none;box-shadow: none !important; }

/* ── TOAST ──────────────────────────────────────────────────── */
#geo-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0F0B1D;
  border: 1px solid rgba(240,114,175,0.4);
  color: #FBCFE8;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 9999;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,114,175,0.15);
}
#geo-toast.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0 36px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(119,26,255,0.6), rgba(240,114,175,0.6), transparent);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo img { height: 36px; width: auto; display: block; }
.footer-copy {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
}
.footer-copy a {
  background: var(--brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: #fff; }
/*bonus css start*/
.rec_problem_wrapper {
  background-image: url(../images/checks_blue.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  border: 1px solid #EBDAEE;
  box-shadow: 0px 0px 30px 0px #6C45970F;
  background: #FFFFFF;
      display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
    min-height: 209px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-radius:20px;
}
.rec_problem_wrapper h5 {
  background: var(--brand);
  width: fit-content;
  line-height: normal;
  border-radius: 50px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 15px;
  font-family: "Google Sans", sans-serif;
}
.rec_problem_imgs {
  text-align: center;
}
.rec_problem_wrapper .geo_problem_imgs img {
  margin: 0;
}
.rec_problem_wrapper img {
  margin-bottom: 40px;
  min-height: 130px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
/*.rec_problem_wrapper:hover img {*/
/*animation:iconBounce .45s ease;}*/
/*@keyframes iconBounce{*/
/*  0%{transform:scale(1);}*/
/*  35%{transform:scale(1.1) rotate(-5deg);}*/
/*  65%{transform:scale(.94) rotate(3deg);}*/
/*  100%{transform:scale(1);}*/
/*}*/
.rec_problem_wrapper h4 {
     margin: 12px 0 10px;
    font-size: 20px;
    font-weight: 700;
}
.rec_problem_wrapper.flex img {
  margin-bottom: 0;
  min-height: auto;
}
.bonus-sect .row{
    /*max-width:950px;*/
    /*width:100%;*/
    /*margin:0 auto;*/
    justify-content:center;
    
}
.bonus-val-tag {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 800;
    color: #059669;
    background: rgba(5,150,105,0.08);
    border: 1px solid rgba(5,150,105,0.22);
    border-radius: var(--r-pill);
    padding: 4px 12px;
    margin-top: 15px;
    letter-spacing: 0.03em;
    width: fit-content;
    
}
.row > div:last-child .rec_problem_wrapper{
  margin-bottom: 0;
}
.rec_howtwo_section .rec_problem_wrapper::after {
  /* position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, #d7e4ff 0%, #f5f9ff 100%);
  z-index: -1;
  border-radius: 20px; */
}
.rec_howtwo_section .rec_problem_wrapper.flex h4 {
  margin: 12px 0 10px;
}
.bonus-total-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(119,26,255,0.07), rgba(240,114,175,0.05));
    /* border: 1px solid rgba(119,26,255,0.2); */
    border-radius: var(--r-lg);
    padding: 36px 36px;
    gap: 16px;
    flex-wrap: wrap;
    background: url(./assets/opt-bg.webp);
    background: var(--brand);
    background-size: 200% 100%;
    background-position: 0% 0%;
    box-shadow: var(--shadow-brand-lg);
    max-width: 950px;
    width: 100%;
}
.bonus-total-left, .bonus-total-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.bonus-total-right {
    align-items: flex-end;
}
.bonus-total-value {
    font-size: 30px;
    font-weight: 900;
    /* font-family: var(--font-h); */
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.bonus-total-free-tag {
    font-size: 16px;
    color: #16f9f0;
    font-weight: 700;
    margin-top: 5px;
}
.bonus-total-label {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ffffff;
}
.bonus-total-sub {
    font-size: 16px;
    color: #ededed;
}


/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section    { padding: 70px 0; }
  .section-sm { padding: 70px 0; }
  #hero       { padding: 140px 0 80px; }
  #platforms  { padding: 70px 0; }
  .section-title { margin-bottom: 40px; }
  .nav-inner { padding: 10px 20px; }
}
@media (max-width: 480px) {
    .nav-inner {
    padding: 10px 10px;
    gap: 8px;
  }
  .container { padding: 0 20px; }
  .section    { padding: 56px 0; }
  .section-sm { padding: 56px 0; }
  #hero       { padding: 120px 0 64px; }
  #platforms  { padding: 56px 0; }
  .section-title  { margin-bottom: 28px; }
  .section-sub    { font-size: 15px; }
  .stat-card  { padding: 24px 20px; }
  .cta-card   { padding: 36px 20px; }
  .cta-stat   { font-size: 12px; padding: 5px 12px; white-space: normal; }
  .feature-card { padding: 24px 20px; }
  .prize-card { padding: 24px 16px; }
  .prize-total-banner { padding: 32px 20px 24px; }
  .btn-primary { padding: 13px 24px; font-size: 14px; }
  .site-footer { padding: 40px 0 24px; }
}

/* ── PLATFORMS MARQUEE CAROUSEL ─────────────────────────────── */
#platforms { padding: 90px 0; }
.logo-marquee {
  --gap: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  margin-top: 16px;
}
.marquee-row {
  display: flex;
  overflow: hidden;
  width: 100%;
  gap: var(--gap);
}
.marquee-track {
  display: flex;
  gap: var(--gap);
  flex-shrink: 0;
  padding-right: var(--gap);
  will-change: transform;
}
.marquee-left .marquee-track  { animation: marqueeL 55s linear infinite; }
.marquee-right .marquee-track { animation: marqueeR 65s linear infinite; }
.marquee-row:nth-child(3) .marquee-track { animation-duration: 70s; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeL {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - var(--gap))); }
}
@keyframes marqueeR {
  from { transform: translateX(calc(-100% - var(--gap))); }
  to   { transform: translateX(0); }
}
.marquee-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  width: 220px;
  height: 96px;
  transition: var(--t-base);
}
.marquee-item:hover {
  border-color: rgba(240,114,175,0.4);
  background: rgba(255,255,255,0.07);
  box-shadow:
    0 0 0 1px rgba(240,114,175,0.18),
    0 8px 28px rgba(119,26,255,0.28),
    0 4px 14px rgba(240,114,175,0.18);
}
.marquee-item img {
  max-height: 44px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.78;
  filter: grayscale(1) brightness(1.6) contrast(1.05);
  transition: var(--t-fast);
}
.marquee-item:hover img {
  opacity: 1;
  filter: grayscale(0) brightness(1) contrast(1)
    drop-shadow(0 0 10px rgba(240,114,175,0.35));
}
/* Optional text-only chip kept for back-compat */
.marquee-item span {
  font-family: var(--font-h);
  font-weight: 600;
  color: var(--text-muted);
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color var(--t-fast);
}
.marquee-item:hover span { color: #fff; }
.marquee-item.text-only {
  width: auto;
  min-width: 180px;
  padding: 18px 28px;
}
.marquee-item.logo-only { width: 220px; }

@media (max-width: 768px) {
  .marquee-item { height: 80px; width: 180px; padding: 16px 22px; }
  .marquee-item.logo-only { width: 180px; }
  .marquee-item img { max-height: 36px; max-width: 130px; }
  .marquee-item span { font-size: 14px; }
}
@media (max-width: 480px) {
  .marquee-item { height: 72px; width: 160px; padding: 14px 18px; }
  .marquee-item.logo-only { width: 160px; }
  .marquee-item img { max-height: 32px; max-width: 110px; }
}

/* FAQ spacing fix: keep padding inside an inner wrapper so expansion height is stable. */
.faq-a {
  padding: 0;
  overflow: hidden;
  font-size: 0;
  transition: max-height 0.35s var(--ease);
}
.faq-a-inner {
  font-size: 15px;
  color: var(--light-muted);
  line-height: 1.75;
}
.faq-a-inner > :first-child { margin-top: 0; }
.faq-a-inner > :last-child { margin-bottom: 0; }

@media(max-width:768px){
    .rec_problem_wrapper.flex {
    min-height: auto;
    flex-direction: column;
}
}
