/* =====================================================
   VIBORS — v2 overrides + new sections
   Layered on top of styles.css — adjusts palette to deep
   purple/black, adds real-phone frames, new sections.
   ===================================================== */

:root {
  /* Deeper bg matching app splash */
  --bg-deep: #07021C;
  --bg-1: #0C0320;
  --bg-2: #110438;
  --bg-3: #1A0357;
  --grad-bubble: linear-gradient(135deg, var(--c1, #7B5CFF), var(--c2, #4E00FF));
}

body {
  background: var(--bg-deep);
}

/* ---------- Accent gradient text ---------- */
.accent-grad {
  background: linear-gradient(110deg, #FFFFFF 0%, #D93DBF 45%, #9B6FF4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.heading-xxl {
  font-size: clamp(56px, 8.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

.heading-sm {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* ---------- Nav refresh ---------- */
.nav-logo-img { height: 28px; display: block; }
.nav-link-btn {
  background: transparent;
  border: none;
  color: var(--text-3);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  padding: 8px 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.18s ease;
}
.nav-link-btn:hover { color: var(--text-1); }
.nav-link-btn .caret { font-size: 10px; opacity: 0.7; }

.nav-dropdown { position: relative; }
.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
  pointer-events: none;
}
.nav-dropdown:hover::after,
.nav-dropdown:focus-within::after {
  pointer-events: auto;
}
.nav-dropdown .dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(15, 4, 50, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-dark-2);
  border-radius: 16px;
  padding: 12px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.dropdown-panel a:hover { background: rgba(255,255,255,0.06); }
.dropdown-panel a strong {
  color: var(--text-1);
  font-size: 14px;
  font-weight: 600;
}
.dropdown-panel a span {
  color: var(--text-4);
  font-size: 12px;
}
.nav-ghost {
  color: var(--text-3);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-ghost:hover { color: var(--text-1); }

.btn-sm { padding: 10px 16px; font-size: 13px; }

/* ---------- HERO V2 ---------- */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  padding: clamp(120px, 14vw, 160px) clamp(24px, 4vw, 64px) 0;
  overflow: hidden;
  background: var(--bg-deep);
  isolation: isolate;
}
.hero-bg-v2 {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(107, 48, 217, 0.45), transparent 70%),
    radial-gradient(ellipse 60% 60% at 20% 80%, rgba(217, 61, 191, 0.22), transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(78, 0, 255, 0.4), transparent 70%);
  z-index: -2;
}
.hero-grid-v2 {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
  z-index: -1;
}
.hero-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 8px;
  background: rgba(15, 4, 50, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-dark-2);
  border-radius: 100px;
  animation: floatY 6s ease-in-out infinite;
}
.hero-bubble .bubble-orb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-bubble);
  box-shadow: 0 0 24px rgba(155, 111, 244, 0.5);
}
.hero-bubble .bubble-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-1);
  white-space: nowrap;
}
.hero-bubble.b1 { top: 18%; left: 6%; animation-delay: 0s; }
.hero-bubble.b2 { top: 70%; left: 10%; animation-delay: -2s; }
.hero-bubble.b3 { top: 22%; right: 8%; animation-delay: -4s; }
.hero-bubble.b4 { top: 75%; right: 12%; animation-delay: -1s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

.hero-inner-v2 {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark-2);
  border-radius: 100px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-3);
  width: fit-content;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--vibors-online);
  box-shadow: 0 0 8px var(--vibors-online);
  animation: pulse 1.6s ease-in-out infinite;
}

.hero-copy-v2 .hero-stats {
  display: flex;
  gap: 40px;
  margin-top: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #9B6FF4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat .lbl {
  font-size: 13px;
  color: var(--text-4);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* ---------- PHONE REAL (with screenshot) ---------- */
.hero-phone-v2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-real {
  position: relative;
  width: clamp(260px, 26vw, 360px);
  aspect-ratio: 9 / 19.5;
  filter: drop-shadow(0 50px 80px rgba(78, 0, 255, 0.4));
}
.phone-bezel {
  position: relative;
  width: 100%;
  height: 100%;
  background: #0a0a0e;
  border-radius: 14% / 6.5%;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.04),
    inset 0 0 12px rgba(255,255,255,0.06);
  overflow: hidden;
}
.phone-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12% / 5.5%;
}
.phone-notch-real {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28%;
  height: 22px;
  background: #000;
  border-radius: 100px;
  z-index: 5;
}
.phone-shine {
  position: absolute;
  inset: 0;
  border-radius: 14% / 6.5%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent 30%);
  pointer-events: none;
}

.floating-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 12px;
  background: rgba(15, 4, 50, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line-dark-2);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 4;
}
.floating-pill strong {
  display: block;
  color: var(--text-1);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.floating-pill span {
  display: block;
  color: var(--text-4);
  font-size: 11px;
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.floating-pill .fp-dot {
  width: 10px; height: 10px; border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}
.floating-pill .fp-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: var(--button-grad);
  border-radius: 10px;
  font-size: 16px;
  color: #fff;
}
.floating-pill.p-score {
  top: 12%;
  left: -6%;
  animation: floatY 5s ease-in-out infinite;
}
.floating-pill.p-tier {
  bottom: 14%;
  right: -10%;
  animation: floatY 6s ease-in-out infinite;
  animation-delay: -3s;
}

/* ---------- DEMO TRIO ---------- */
.section-demo {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-deep);
  position: relative;
}
.demo-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.demo-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.demo-screen {
  position: relative;
  aspect-ratio: 9 / 17;
  border-radius: 32px;
  overflow: hidden;
  background: #0a0a0e;
  border: 1px solid var(--line-dark-2);
  box-shadow:
    0 30px 60px rgba(78, 0, 255, 0.18),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}
.demo-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.demo-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px;
}
.demo-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--vibors-violet-soft);
}
.demo-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  margin: 0;
}
.demo-card p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}

/* ---------- HOW V2 ---------- */
.section-how {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-1) 100%);
  position: relative;
}
.how-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
}
.how-step-v2 {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.how-step-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--button-grad);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.how-step-v2:hover {
  border-color: var(--vibors-violet-soft);
  transform: translateY(-4px);
}
.how-step-v2 .step-num {
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  background: linear-gradient(135deg, var(--vibors-violet-soft), var(--vibors-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}
.how-step-v2 h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 12px;
}
.how-step-v2 p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.55;
  margin: 0;
}

/* ---------- SCORE V2 ---------- */
.section-score {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-1);
  position: relative;
}
.score-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(40px, 5vw, 64px);
  max-width: 1240px;
  margin: 0 auto;
}

/* ===== THE LEDGER CARD — score on the left, metric ledger on the right ===== */
.ledger {
  position: relative;
  width: min(1180px, 96vw);
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) auto 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(32px, 4vw, 52px) clamp(28px, 3.5vw, 48px);
  background:
    radial-gradient(ellipse at 0% 50%, rgba(123,92,255,0.10), transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(217,61,191,0.08), transparent 60%),
    rgba(20, 14, 38, 0.55);
  border: 1px solid rgba(155,111,244,0.22);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 80px -30px rgba(78,0,255,0.35);
}

/* Score side */
.lg-score {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateX(-12px);
}
.score-stage.in-view .lg-score {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .6s ease, transform .6s cubic-bezier(.22,.9,.32,1.2);
  transition-delay: 100ms;
}
.lg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 5px 12px;
  background: rgba(123,92,255,0.12);
  border: 1px solid rgba(155,111,244,0.30);
  border-radius: 100px;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vibors-violet-soft);
  font-weight: 700;
}
.lg-dot {
  width: 6px; height: 6px;
  background: #1AC97D;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(26,201,125,0.7);
  animation: lgPulse 1.6s ease-in-out infinite;
}
@keyframes lgPulse { 0%,100%{opacity:1; transform: scale(1)} 50%{opacity:.45; transform: scale(0.8)} }

.lg-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(80px, 10vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  background: linear-gradient(135deg, #fff 0%, #9B6FF4 55%, #D93DBF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 80px rgba(217,61,191,0.25);
}
.lg-foot {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lg-out {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-4);
  letter-spacing: 0.04em;
}
.lg-tier {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(90deg, #9B6FF4, #D93DBF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Vertical divider */
.lg-divider {
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(155,111,244,0.35) 20%,
    rgba(217,61,191,0.35) 80%,
    transparent 100%);
  align-self: stretch;
}

/* Ledger side */
.lg-ledger {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-self: center;
  width: 100%;
  min-width: 0;
}
.lg-head {
  display: flex;
  justify-content: space-between;
  font-family: ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--text-4);
  font-weight: 700;
  padding: 0 4px 8px;
  border-bottom: 1px dashed rgba(155,111,244,0.20);
}
.lg-rows {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lg-row {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: baseline;
  opacity: 0;
  transform: translateX(8px);
}
.score-stage.in-view .lg-row {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .55s ease, transform .55s cubic-bezier(.22,.9,.32,1.2);
  transition-delay: calc(var(--i) * 90ms + 250ms);
}
.lr-no {
  grid-row: 1;
  grid-column: 1;
  font-family: ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--vibors-violet-soft);
  letter-spacing: 0.06em;
}
.lr-name {
  grid-row: 1;
  grid-column: 2;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Dotted leader between name and pct */
.lr-leader {
  grid-row: 1;
  grid-column: 3;
  display: block;
  width: 60px;
  height: 1px;
  border-top: 1px dotted rgba(155,111,244,0.35);
  align-self: end;
  margin-bottom: 6px;
}
.lr-pct {
  grid-row: 1;
  grid-column: 4;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
  min-width: 50px;
  text-align: right;
}
.lr-pct em {
  font-style: normal;
  font-size: 12px;
  color: var(--text-4);
  margin-left: 2px;
  font-weight: 600;
}
.lr-bar {
  grid-row: 2;
  grid-column: 2 / -1;
  display: block;
  height: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  margin-top: 6px;
  overflow: hidden;
}
.lr-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #7B5CFF, #D93DBF);
  border-radius: 100px;
  transition: width 1.3s cubic-bezier(.22,.9,.32,1.2);
}
.score-stage.in-view .lg-row .lr-bar i {
  width: var(--w);
  transition-delay: calc(var(--i) * 90ms + 500ms);
}

.score-cta-link { margin-top: 4px; }

/* Responsive */
@media (max-width: 920px) {
  .ledger {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 22px;
  }
  .lg-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(155,111,244,0.35) 50%,
      transparent 100%);
  }
  .lg-score { align-items: flex-start; }
}
@media (max-width: 480px) {
  .lr-leader { display: none; }
  .lg-row { grid-template-columns: 24px 1fr auto; column-gap: 10px; }
  .lr-name { font-size: 14px; }
  .lr-pct { font-size: 18px; }
}


.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--vibors-violet-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.link-arrow:hover { color: var(--text-1); }

/* ---------- TIERS V2 ---------- */
.section-tiers {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-deep));
}
.tiers-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 32px);
  max-width: 1200px;
  margin: 0 auto;
}
.tier-v2 {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.tier-v2:hover { transform: translateY(-4px); border-color: var(--line-dark-2); }
.tier-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--tier-c, var(--button-grad));
}
.tier-v2.tier-silver { --tier-c: linear-gradient(90deg, #9DA3AE, #DDE1E6); }
.tier-v2.tier-gold { --tier-c: linear-gradient(90deg, #FFB36A, #FFD66B); }
.tier-v2.tier-platinum { --tier-c: linear-gradient(90deg, #9B6FF4, #D93DBF); }
.tier-head {
  display: flex; justify-content: space-between; align-items: center;
}
.tier-badge-v2 {
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tier-silver .tier-badge-v2 { background: rgba(221, 225, 230, 0.16); color: #DDE1E6; }
.tier-gold .tier-badge-v2 { background: rgba(255, 179, 106, 0.16); color: #FFD66B; }
.tier-platinum .tier-badge-v2 { background: var(--button-grad); color: #fff; }
.tier-range {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-4);
}
.tier-v2 h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-1);
  margin: 0;
}
.tier-v2 p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.5;
  margin: 0;
}
.tier-v2 ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-v2 ul li {
  position: relative;
  padding-left: 22px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.45;
}
.tier-v2 ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 12px; height: 2px;
  background: var(--vibors-violet-soft);
  border-radius: 100px;
}

/* ---------- USERS SECTION ---------- */
.section-users {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-deep);
  position: relative;
}
.users-stage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.users-copy { display: flex; flex-direction: column; gap: 20px; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}
.benefit-tile {
  padding: 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bt-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--button-grad);
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}
.benefit-tile strong {
  font-size: 15px;
  color: var(--text-1);
  font-weight: 600;
}
.benefit-tile p {
  font-size: 13px;
  color: var(--text-4);
  line-height: 1.45;
  margin: 0;
}
.users-phone { display: flex; justify-content: center; }

/* ---------- 9 VALUE PROPS ---------- */
.section-vps {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-1);
}
.vps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 24px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.vp {
  background: var(--bg-deep);
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.25s ease;
}
.vp:hover { background: rgba(78, 0, 255, 0.08); }
.vp-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--vibors-violet-soft);
}
.vp h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin: 0;
  letter-spacing: -0.01em;
}
.vp p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.55;
  margin: 0;
}

/* ---------- MAP V2 ---------- */
.section-map {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-deep));
}
.map-stage {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.map-phone { display: flex; justify-content: center; }
.map-features {
  display: flex; flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}
.mf {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mf-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(78, 0, 255, 0.18);
  border: 1px solid rgba(155, 111, 244, 0.3);
  border-radius: 12px;
  color: var(--vibors-violet-soft);
  font-size: 20px;
}
.mf strong {
  display: block;
  color: var(--text-1);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}
.mf p {
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* ---------- REWARDS ---------- */
.section-rewards {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-deep);
}
.rewards-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.rcat {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.rcat:hover {
  border-color: var(--vibors-violet-soft);
  transform: translateY(-2px);
}
.rcat-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(78, 0, 255, 0.2);
  border: 1px solid rgba(155, 111, 244, 0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--vibors-violet-soft);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.rcat h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-1);
  margin: 0 0 10px;
}
.rcat p {
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

/* ---------- SOCIAL ---------- */
.section-social {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-1));
}
.social-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.social-features {
  display: flex; flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.sf-row {
  padding: 16px 18px;
  background: rgba(255,255,255,0.02);
  border-left: 3px solid var(--vibors-violet-soft);
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.5;
}
.sf-row strong {
  color: var(--text-1);
  display: block;
  margin-bottom: 2px;
}
.social-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.phone-stack-back {
  position: absolute;
  transform: rotate(-8deg) translateX(-30%);
  opacity: 0.85;
  filter: drop-shadow(0 30px 60px rgba(217, 61, 191, 0.3));
}
.phone-stack-front {
  position: absolute;
  transform: rotate(6deg) translateX(20%);
  z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(78, 0, 255, 0.5));
}

/* ---------- BRANDS ---------- */
.section-brands {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-1);
}
.brands-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--line-dark);
}
.bl-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line-dark);
}
.bl-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--vibors-violet-soft);
}
.bl-text {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.5;
}
.brands-cta {
  text-align: center;
  margin-top: 60px;
}

/* ---------- PRIVACY · MANIFESTO ---------- */
.section-privacy {
  position: relative;
  padding: clamp(120px, 14vw, 200px) 0;
  background: #050208;
  overflow: hidden;
  isolation: isolate;
}
.section-privacy .container {
  position: relative;
  z-index: 2;
}
.pr-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(155,111,244,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155,111,244,0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center center;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  z-index: 1;
  pointer-events: none;
}
.pr-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.pr-eyebrow-mark {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #9B6FF4);
}
.section-privacy .eyebrow {
  letter-spacing: 0.32em;
  color: #9B6FF4;
}

/* Manifesto lines */
.pr-manifesto {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 16px);
  margin-bottom: clamp(72px, 9vw, 120px);
}
.pr-line {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 9.5vw, 156px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.32em;
  flex-wrap: wrap;
}
.pr-prefix {
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.pr-strike {
  position: relative;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  display: inline-block;
}
.pr-strike::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 52%;
  height: 0.10em;
  background: linear-gradient(90deg, #4E00FF 0%, #D93DBF 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(217, 61, 191, 0.5);
}
.pr-line.is-revealed .pr-strike::after,
.pr-line.reveal.in .pr-strike::after {
  transform: scaleX(1);
}
.pr-verb {
  color: var(--text-1);
  background: linear-gradient(135deg, #ffffff 0%, #d5c5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body[dir="rtl"] .pr-line { font-family: var(--font-arabic-display); letter-spacing: 0; }
body[dir="rtl"] .pr-strike::after { transform-origin: right center; }

/* Footnotes — small annotations under the manifesto */
.pr-footnotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 48px);
  max-width: 1080px;
  border-top: 1px solid rgba(155,111,244,0.18);
  padding-top: clamp(32px, 3.5vw, 48px);
}
.pr-fn {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pr-fn-num {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #9B6FF4;
}
.pr-fn p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-3);
  margin: 0;
}
.pr-fn p strong {
  color: var(--text-1);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

/* Signature line */
.pr-sig {
  margin-top: clamp(48px, 6vw, 80px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-4);
}
.pr-sig-mark { color: #9B6FF4; }

@media (max-width: 720px) {
  .pr-line { font-size: clamp(42px, 12vw, 72px); }
  .pr-footnotes { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   TEAM — editorial banner
   ============================================================ */
.section-team {
  padding: clamp(80px, 10vw, 140px) 0;
  background: linear-gradient(180deg, var(--bg-deep), var(--bg-1));
}
.team-stage {
  position: relative;
  width: min(1400px, 96vw);
  margin: 0 auto;
  border-radius: clamp(24px, 3vw, 40px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(140% 100% at 50% 100%, #2A0A99 0%, #15045E 55%, #07012B 100%);
  box-shadow:
    0 60px 140px -40px rgba(78,0,255,0.6),
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 0 0 1px rgba(155,111,244,0.18);
  padding: clamp(40px, 5vw, 80px) clamp(32px, 4vw, 64px) clamp(32px, 4vw, 64px);
}
.team-stage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.team-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.7;
}
.team-aurora-1 {
  width: 60%; height: 60%;
  left: -10%; top: -20%;
  background: radial-gradient(circle, #4E00FF 0%, transparent 60%);
  animation: teamFloat1 20s ease-in-out infinite alternate;
}
.team-aurora-2 {
  width: 50%; height: 50%;
  right: -10%; top: 20%;
  background: radial-gradient(circle, #D93DBF 0%, transparent 60%);
  animation: teamFloat2 24s ease-in-out infinite alternate;
}
.team-aurora-3 {
  width: 70%; height: 50%;
  left: 20%; bottom: -20%;
  background: radial-gradient(circle, #9B6FF4 0%, transparent 60%);
  animation: teamFloat3 28s ease-in-out infinite alternate;
}
@keyframes teamFloat1 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,40px) scale(1.1); }
}
@keyframes teamFloat2 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-40px,30px) scale(1.15); }
}
@keyframes teamFloat3 {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(20px,-30px) scale(1.08); }
}
.team-stage-grain {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  background-position: 0 0, 1.5px 1.5px;
  opacity: 0.5;
  mix-blend-mode: overlay;
}
.team-stage-mark {
  position: absolute;
  bottom: 22px;
  right: 24px;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
}
.team-stage-head {
  position: relative;
  z-index: 2;
  margin-bottom: clamp(40px, 5vw, 72px);
  max-width: 820px;
}
.team-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  font-weight: 600;
}
.team-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #1FED8C;
  box-shadow: 0 0 8px #1FED8C;
}
.team-title {
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
  font-weight: 700;
  text-wrap: balance;
}

/* lineup */
.team-lineup {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.5vw, 24px);
  align-items: end;
}
.team-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  transition: opacity .4s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
.team-lineup:hover .team-figure { opacity: 0.45; }
.team-lineup:hover .team-figure:hover { opacity: 1; }
.team-figure:hover { transform: translateY(-8px); }

.team-figure-stage {
  position: relative;
  height: clamp(280px, 32vw, 460px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  margin-bottom: 0;
}
.team-figure-num {
  position: absolute;
  top: -8%;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(90px, 10vw, 160px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.06);
  -webkit-text-stroke: 1.5px rgba(155,111,244,0.45);
  pointer-events: none;
  z-index: 1;
  transition: color .4s ease, -webkit-text-stroke-color .4s ease;
}
.team-figure:hover .team-figure-num {
  color: rgba(255,255,255,0.14);
  -webkit-text-stroke-color: rgba(217,61,191,0.7);
}
.team-figure-photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 30px 25px rgba(0,0,0,0.5)) drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  transition: filter .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
.team-figure:hover .team-figure-photo {
  filter: drop-shadow(0 35px 35px rgba(78,0,255,0.6)) drop-shadow(0 4px 8px rgba(0,0,0,0.4));
  transform: translateX(-50%) translateY(-6px);
}
.team-figure-shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -2%;
  height: 14px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.55) 0%, transparent 70%);
  filter: blur(6px);
  z-index: 1;
  transition: opacity .4s ease;
}
.team-figure-cap {
  margin-top: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(155,111,244,0.3);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-figure-cap h4 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  margin: 0;
}
.team-role {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,180,255,0.7);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .team-lineup { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .team-stage { padding: 40px 28px 48px; }
  .team-figure-num { font-size: 100px; }
}
@media (max-width: 560px) {
  .team-lineup { grid-template-columns: 1fr; gap: 40px; }
  .team-figure-stage { max-width: 320px; margin: 0 auto; width: 100%; }
  .team-figure-cap { max-width: 320px; margin-left: auto; margin-right: auto; width: 100%; }
  .team-stage-mark { display: none; }
}

/* ---------- FAQ override use existing ---------- */
.section-faq {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-deep);
}

/* ---------- FINAL CTA V2 ---------- */
.final-cta-v2 {
  position: relative;
  padding: clamp(100px, 12vw, 180px) 24px;
  background: var(--bg-1);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 30%, transparent 80%);
  z-index: -1;
}
.cta-vshape {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse 100% 100% at 50% 100%, rgba(78, 0, 255, 0.5), transparent 70%);
  z-index: -1;
}
.cta-bubbles {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.cta-bubble {
  position: absolute;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad-bubble);
  filter: blur(2px);
  opacity: 0.6;
  animation: floatY 7s ease-in-out infinite;
}
.cta-bubble:nth-child(1) { top: 25%; left: 14%; }
.cta-bubble:nth-child(2) { top: 70%; right: 18%; animation-delay: -3s; width: 80px; height: 80px; }
.cta-bubble:nth-child(3) { top: 30%; right: 10%; animation-delay: -1s; width: 48px; height: 48px; }

.cta-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-inner .heading-xxl {
  margin: 0;
}
.cta-inner .heading-xxl > span { display: inline-block; margin-right: 16px; }

.waitlist-form {
  display: flex;
  gap: 8px;
  max-width: 520px;
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark-2);
  border-radius: 100px;
  padding: 6px;
  margin: 16px auto 0;
}
.waitlist-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 20px;
  color: var(--text-1);
  font-size: 15px;
  font-family: var(--font-body);
}
.waitlist-form input::placeholder { color: var(--text-4); }
.waitlist-form .btn { white-space: nowrap; }

.launch-info {
  margin-top: 16px;
  color: var(--text-4);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ---------- FOOTER V2 ---------- */
.footer-v2 {
  background: var(--bg-deep);
  padding: 80px 24px 40px;
  border-top: 1px solid var(--line-dark);
}
.footer-inner-v2 {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.footer-brand-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 300px;
}
.footer-logo {
  height: 32px;
  display: block;
}
.footer-brand-v2 p {
  color: var(--text-3);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.domain-chip {
  display: inline-block;
  padding: 6px 12px;
  background: var(--button-grad);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  width: fit-content;
}
.footer-col h5 {
  color: var(--text-1);
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col ul a {
  color: var(--text-3);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s ease;
}
.footer-col ul a:hover { color: var(--text-1); }
.footer-bottom-v2 {
  max-width: 1200px;
  margin: 60px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-4);
  font-size: 13px;
}
.footer-social {
  display: flex; gap: 8px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: var(--text-3);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.15s ease;
}
.footer-social a:hover {
  background: var(--button-grad);
  border-color: transparent;
  color: #fff;
}

/* ---------- SECTION HEADS shared ---------- */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 800px;
  margin-bottom: clamp(48px, 5vw, 80px);
}
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(155, 111, 244, 0.12);
  border: 1px solid rgba(155, 111, 244, 0.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--vibors-violet-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}
.section-head .lede {
  color: var(--text-3);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  max-width: 680px;
  margin: 0;
}
.section-head .heading-xl {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(24px, 4vw, 48px); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: all 0.7s cubic-bezier(.4,0,.2,1); }
.reveal.is-visible, .reveal.in { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-inner-v2,
  .score-stage,
  .users-stage,
  .map-stage,
  .social-stage { grid-template-columns: 1fr; }
  .hero-bubbles, .hero-grid-v2 { display: none; }
  .demo-trio,
  .how-grid-v2,
  .tiers-grid-v2,
  .vps-grid { grid-template-columns: 1fr 1fr; }
  .team-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .footer-inner-v2 { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .floating-pill.p-score { left: -2%; }
  .floating-pill.p-tier { right: -2%; }
}
@media (max-width: 640px) {
  .demo-trio,
  .how-grid-v2,
  .tiers-grid-v2,
  .vps-grid,
  .rewards-cats,
  .brands-list,
  .benefits-grid { grid-template-columns: 1fr; }
  .team-grid-v2 { grid-template-columns: 1fr 1fr; }
  .footer-inner-v2 { grid-template-columns: 1fr; }
  .footer-bottom-v2 { flex-direction: column; gap: 16px; text-align: center; }
  .heading-xxl { font-size: clamp(40px, 12vw, 72px); }
  .hero-stats { gap: 24px; }
  .waitlist-form { flex-direction: column; border-radius: 18px; padding: 12px; }
  .waitlist-form .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   IX TRIO (Track Score / Discover Venues / Unlock Rewards)
   Interactive demo cards — no screenshots, all SVG/CSS/JS
   ============================================================ */
.ix-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.ix-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
}
.ix-stage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(78,0,255,0.18) 0%, transparent 60%),
    linear-gradient(180deg, #15083B 0%, #0A0418 100%);
  border: 1px solid rgba(155,111,244,0.18);
  box-shadow:
    0 30px 80px -20px rgba(78,0,255,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08);
  cursor: crosshair;
  user-select: none;
}
.ix-stage[data-ix-stage="rewards"] { cursor: default; }
.ix-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ix-overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 4;
  pointer-events: none;
}
.ix-overlay.top-only { justify-content: flex-start; gap: 0; }
.ix-meter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ix-meter-label {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.ix-meter-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.01em;
}
.ix-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-end;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(155,111,244,0.25);
  backdrop-filter: blur(8px);
}
.ix-hint-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #1FED8C;
  box-shadow: 0 0 8px #1FED8C;
  animation: ixDot 1.4s ease-in-out infinite;
}
@keyframes ixDot { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.ix-hint-text {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}
.ix-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.15;
  margin: 0;
  color: var(--text-1);
  letter-spacing: -0.01em;
}
.ix-card p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
  text-wrap: pretty;
}
.ix-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ix-num {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--vibors-violet-soft);
}

/* ============================================================
   01 TRACK SCORE — sparkline + live counter
   ============================================================ */
.ix-score-readout {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
}
.ix-score-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff 0%, #C8B4FF 60%, #D93DBF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(155,111,244,0.4);
  font-variant-numeric: tabular-nums;
}
.ix-score-delta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31,237,140,0.12);
  border: 1px solid rgba(31,237,140,0.3);
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 12px;
  color: #1FED8C;
  font-weight: 600;
}
.ix-score-delta .ix-arrow { font-size: 14px; }
.ix-delta-label {
  color: rgba(31,237,140,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
}
#ix-spark-line, #ix-spark-area { transition: d 0.08s ease-out; }
#ix-spark-pts circle {
  fill: #fff;
  stroke: #4E00FF;
  stroke-width: 2;
}

/* ============================================================
   02 DISCOVER VENUES — interactive map
   ============================================================ */
#ix-venues g.ix-venue {
  cursor: pointer;
  pointer-events: auto;
}
#ix-venues circle.ix-pin {
  fill: url(#ix-pin);
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(217,61,191,0.7));
  transition: r 0.2s, filter 0.2s;
}
#ix-venues g.ix-venue.is-active circle.ix-pin {
  filter: drop-shadow(0 0 16px #D93DBF);
}
#ix-venues circle.ix-pin-pulse {
  fill: none;
  stroke: #D93DBF;
  stroke-width: 2;
  opacity: 0;
  transform-origin: center;
  transform-box: fill-box;
}
#ix-venues g.ix-venue.is-active circle.ix-pin-pulse {
  animation: ixPinPulse 1.4s ease-out infinite;
}
@keyframes ixPinPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3.5); opacity: 0; }
}
.ix-stage[data-ix-stage="venues"] { pointer-events: auto; }
.ix-stage[data-ix-stage="venues"] .ix-svg { pointer-events: auto; }
.ix-you-aura {
  transform-origin: 160px 160px;
  animation: ixYouAura 2.4s ease-in-out infinite;
}
@keyframes ixYouAura {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.4); opacity: 0.2; }
}
.ix-venue-card {
  position: absolute;
  pointer-events: none;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(15,7,42,0.95);
  border: 1px solid rgba(155,111,244,0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.ix-venue-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4E00FF 0%, #D93DBF 100%);
  font-size: 16px;
}
.ix-venue-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.ix-venue-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.ix-venue-cat { color: #C8B4FF; }
.ix-venue-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.ix-venue-verified { color: #1FED8C; }

/* ============================================================
   03 UNLOCK REWARDS — drag slider
   ============================================================ */
.ix-rewards-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.ix-rewards-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(40% 40% at 30% 30%, rgba(78,0,255,0.25) 0%, transparent 60%),
    radial-gradient(40% 40% at 80% 70%, rgba(217,61,191,0.18) 0%, transparent 60%);
  animation: ixGlowDrift 18s ease-in-out infinite alternate;
}
@keyframes ixGlowDrift {
  0% { transform: translate(0,0); }
  100% { transform: translate(20px,-15px); }
}
.ix-reward-stack {
  position: absolute;
  top: 28px;
  left: 22px;
  right: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.ix-reward {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.4s cubic-bezier(.4,1.4,.6,1);
  overflow: hidden;
}
.ix-reward::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--tier-c1, #6B5BCF) 0%, var(--tier-c2, #4E00FF) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.ix-reward[data-tier="silver"]  { --tier-c1: #B5BCD4; --tier-c2: #6B7299; }
.ix-reward[data-tier="gold"]    { --tier-c1: #F4C75A; --tier-c2: #C18B2A; }
.ix-reward[data-tier="platinum"]{ --tier-c1: #E5C2FF; --tier-c2: #4E00FF; }
.ix-reward.is-unlocked {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateX(0);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.12);
}
.ix-reward.is-unlocked::before { opacity: 0.18; }
.ix-reward-tag {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  align-self: flex-start;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all 0.4s;
}
.ix-reward.is-unlocked .ix-reward-tag {
  background: linear-gradient(135deg, var(--tier-c1) 0%, var(--tier-c2) 100%);
  color: #fff;
  border-color: transparent;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.ix-reward-lock {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0,0,0,0.3);
  color: rgba(255,255,255,0.4);
  transition: all 0.4s cubic-bezier(.34,1.56,.64,1);
}
.ix-reward.is-unlocked .ix-reward-lock {
  background: linear-gradient(135deg, var(--tier-c1) 0%, var(--tier-c2) 100%);
  color: #fff;
  transform: scale(1.05);
}
.ix-reward.is-unlocked .ix-reward-lock svg rect { animation: ixLockPop 0.5s; }
.ix-reward.is-unlocked .ix-reward-lock svg path { animation: ixLockArm 0.5s forwards; }
@keyframes ixLockPop { 0% { transform: scaleY(1); } 40% { transform: scaleY(0.9); } 100% { transform: scaleY(1); } }
@keyframes ixLockArm {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-3px) rotate(-12deg); }
}
.ix-reward-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ix-reward-h {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.ix-reward.is-unlocked .ix-reward-h {
  color: #fff;
}
.ix-reward-p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
  font-family: inherit;
  margin: 0;
}
.ix-reward-min {
  display: none;
}
.ix-reward:not(.is-unlocked) .ix-reward-min {
  display: block;
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}
.ix-reward:not(.is-unlocked) .ix-reward-h,
.ix-reward:not(.is-unlocked) .ix-reward-p {
  opacity: 0.55;
}
/* spark */
.ix-reward.just-unlocked::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 18px 50%, rgba(255,255,255,0.6) 0%, transparent 40%);
  animation: ixSpark 0.7s ease-out forwards;
  pointer-events: none;
}
@keyframes ixSpark {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* slider */
.ix-slider-wrap {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  z-index: 3;
}
.ix-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.ix-slider-label {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
.ix-slider-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #fff 0%, #C8B4FF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.ix-slider {
  position: relative;
  height: 32px;
  cursor: grab;
  display: flex;
  align-items: center;
  touch-action: none;
}
.ix-slider:active { cursor: grabbing; }
.ix-slider-track {
  position: absolute;
  left: 0; right: 0;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.05);
}
.ix-slider-fill {
  position: absolute;
  left: 0;
  height: 6px;
  width: 0;
  border-radius: 3px;
  background: linear-gradient(90deg, #4E00FF 0%, #9B6FF4 60%, #D93DBF 100%);
  box-shadow: 0 0 16px rgba(155,111,244,0.5);
  transition: width 0.05s linear;
}
.ix-slider-tick {
  position: absolute;
  top: 50%;
  width: 2px;
  height: 14px;
  border-radius: 1px;
  background: rgba(255,255,255,0.25);
  transform: translate(-50%, -50%);
}
.ix-slider-handle {
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #4E00FF;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 16px rgba(78,0,255,0.5), 0 0 0 0 rgba(155,111,244,0.4);
  transition: box-shadow 0.2s, left 0.05s linear;
  z-index: 2;
}
.ix-slider:hover .ix-slider-handle,
.ix-slider.is-dragging .ix-slider-handle {
  box-shadow: 0 4px 16px rgba(78,0,255,0.6), 0 0 0 8px rgba(155,111,244,0.18);
}
.ix-handle-grab {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.ix-slider-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .ix-trio { grid-template-columns: 1fr 1fr; gap: 22px; }
  .ix-trio .ix-card:nth-child(3) { grid-column: 1 / -1; max-width: 520px; margin: 0 auto; }
  .ix-score-num { font-size: 76px; }
}
@media (max-width: 640px) {
  .ix-trio { grid-template-columns: 1fr; }
  .ix-trio .ix-card:nth-child(3) { grid-column: auto; max-width: none; margin: 0; }
  .ix-score-num { font-size: 84px; }
}
@media (prefers-reduced-motion: reduce) {
  .ix-card *, .ix-stage * { animation: none !important; transition: none !important; }
}


/* ============================================================
   Arabic / RTL font overrides
   - All display headings → Alexandria
   - Body inherits IBM Plex Sans Arabic from styles.css
   - Mono kept where labels are latin codes/numbers
   ============================================================ */
body[dir="rtl"] .demo-num,
body[dir="rtl"] .demo-card h3,
body[dir="rtl"] .vp-num,
body[dir="rtl"] .bl-num,
body[dir="rtl"] .team-figure-cap h4,
body[dir="rtl"] .ix-card h3,
body[dir="rtl"] .ix-meter-val,
body[dir="rtl"] .ix-score-num,
body[dir="rtl"] .ix-venue-name,
body[dir="rtl"] .ix-reward-h,
body[dir="rtl"] .ix-slider-val,
body[dir="rtl"] .tier-name,
body[dir="rtl"] .audience-num,
body[dir="rtl"] .step-num,
body[dir="rtl"] .marquee-item,
body[dir="rtl"] .nav-logo,
body[dir="rtl"] .hero-stat .num,
body[dir="rtl"] .footer-col h5,
body[dir="rtl"] .signal-name {
  font-family: var(--font-arabic-display);
  letter-spacing: 0;
}

/* Latin numerals/codes inside Arabic context: keep mono */
body[dir="rtl"] .tier-range,
body[dir="rtl"] .ix-num,
body[dir="rtl"] .ix-meter-label,
body[dir="rtl"] .ix-hint-text,
body[dir="rtl"] .ix-reward-tag,
body[dir="rtl"] .ix-slider-label,
body[dir="rtl"] .ix-venue-meta {
  font-family: var(--font-mono, ui-monospace, "SF Mono", Menlo, monospace);
}


/* ============================================================
   SVG icons inside icon containers (replaces glyph text)
   ============================================================ */
.fp-icon img,
.bt-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}
.mf-icon {
  /* keep violet container; tint icon to match */
}
.mf-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(67%) sepia(48%) saturate(2476%) hue-rotate(232deg) brightness(99%) contrast(96%);
  /* approximates --vibors-violet-soft (#9B6FF4) */
}
/* (.pr-icon removed — privacy section now uses manifesto layout) */
