/* ============ FONTS ============ */
@font-face {
  font-family: 'Gilroy';
  src: url('assets/Gilroy-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('assets/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('assets/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('assets/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('assets/Gilroy-Heavy.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: pan-x pan-y;
}
body {
  font-family: 'Gilroy', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: url('assets/texture.svg') repeat;
  background-size: 420px;
  opacity: .12;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ============ TOKENS ============ */
:root {
  --primary: #7835fe;
  --primary-2: #a78bfa;
  --primary-dark: #5b21b6;
  --bg: #ffffff;
  --bg-soft: #faf9ff;
  --bg-elev: #ffffff;
  --text: #0f0a1f;
  --text-muted: #5b5470;
  --border: #ececf5;
  --shadow-sm: 0 2px 8px rgba(124, 58, 237, .06);
  --shadow-md: 0 10px 30px rgba(124, 58, 237, .10);
  --shadow-lg: 0 30px 80px rgba(124, 58, 237, .18);
  --grad: linear-gradient(135deg, #7835fe 0%, #4c1d95 100%);
  --radius: 14px;
  --radius-lg: 20px;
}
[data-theme="dark"] {
  --bg: #0a0613;
  --bg-soft: #221947;
  --bg-elev: #15102a;
  --text: #f5f3ff;
  --text-muted: #a39bb8;
  --border: #241a3d;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.4);
  --shadow-md: 0 10px 30px rgba(0,0,0,.5);
  --shadow-lg: 0 30px 80px rgba(124,58,237,.25);
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-block { width: 100%; justify-content: center; }
.btn-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline {
  border: 1.5px solid var(--border);
  background: var(--bg-elev);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-ghost { color: var(--text); }
.btn-ghost:hover { color: var(--primary); }

/* ============ NAVBAR ============ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.navbar.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 32px; width: auto; display: block; flex-shrink: 0; max-width: none; }
.logo-dark { display: none; }
[data-theme="dark"] .logo-light { display: none; }
[data-theme="dark"] .logo-dark { display: block; }
.logo-mark { display: inline-flex; }
.nav-links { display: flex; gap: 28px; font-size: 14px; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.theme-toggle {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: background .2s ease, color .2s ease;
}
.theme-toggle:hover { background: var(--bg-soft); color: var(--text); }
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }
[data-theme="dark"] .icon-moon { display: block; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
  background: #050314;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
}
.hero-glow-r {
  background: radial-gradient(circle, rgba(120,53,254,.55) 0%, rgba(120,53,254,.1) 45%, transparent 70%);
  right: -250px;
  top: 20%;
}
.hero-glow-l {
  background: radial-gradient(circle, rgba(120,53,254,.4) 0%, rgba(120,53,254,.06) 45%, transparent 70%);
  left: -280px;
  top: 40%;
}
.hero-watermark {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 70vw;
  max-width: 1100px;
  opacity: .04;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px 0;
  max-width: 1100px;
}

.users-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px 6px 6px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(120,53,254,.5);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #d8d4f0;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
}
.avatars { display: inline-flex; }
.av {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid #050314;
  margin-left: -8px;
  background: var(--grad);
}
.av:first-child { margin-left: 0; }
.av-1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.av-2 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.av-3 { background: linear-gradient(135deg, #a78bfa, #7835fe); }
.av-4 { background: linear-gradient(135deg, #f472b6, #db2777); }

.hero-title {
  font-size: clamp(36px, 6.5vw, 80px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 28px;
  color: #fff;
}
.hero-title .grad {
  background: linear-gradient(180deg, #c4b5fd 0%, #7835fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 24px rgba(120, 53, 254, .55));
}

.hero-sub {
  font-size: 18px;
  line-height: 1.5;
  color: #a39bb8;
  max-width: 720px;
  margin: 0 auto 40px;
}
.hero-sub strong { color: #fff; font-weight: 600; }

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 80px;
}
.hero .btn-primary {
  background: var(--grad);
  color: #fff;
  padding: 18px 32px;
  font-size: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(120,53,254,.5);
}
.hero .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(120,53,254,.7);
}

.hero-panel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  z-index: 1;
}
.hero-panel img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow:
    0 -10px 60px rgba(120,53,254,.25),
    0 30px 80px rgba(0,0,0,.5);
  display: block;
  will-change: transform;
  transform: translateY(var(--panel-parallax, 0px)) translateZ(0);
  transition: transform .12s linear;
}
@keyframes panelFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Wave + chevron */
.hero-wave-wrap {
  position: relative;
  margin-top: -340px;
  z-index: 3;
  pointer-events: none;
}
.hero-wave {
  display: block;
  width: 100%;
  height: 220px;
}
.hero-wave path {
  fill: #ffffff;
}
.hero-chevron {
  pointer-events: auto;
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  animation: chevBounce 1.8s ease-in-out infinite;
}
[data-theme="dark"] .hero-chevron {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.hero-chevron svg { width: 16px; height: 16px; }
.hero-chevron:hover {
  animation-play-state: paused;
  transform: translateX(-50%) scale(1.12);
}
@keyframes chevBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ============ HERO VISUAL (PHONE) ============ */
.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(180deg, #1a1428 0%, #0a0613 100%);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 8px #0a0613,
    var(--shadow-lg);
  z-index: 2;
}
.phone-notch {
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 3;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #ede9fe 0%, #f5f3ff 100%);
  border-radius: 32px;
  padding: 50px 18px 18px;
  overflow: hidden;
  color: #0f0a1f;
}
.ph-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.ph-logo { display: flex; align-items: center; gap: 6px; font-weight: 800; font-size: 14px; }
.ph-logo-mark {
  width: 18px; height: 18px;
  background: var(--grad);
  border-radius: 5px;
}
.ph-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); }

.ph-balance {
  background: white;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(124,58,237,.08);
}
.ph-balance-label { font-size: 9px; font-weight: 700; letter-spacing: .1em; color: #5b5470; }
.ph-balance-value { font-size: 26px; font-weight: 800; margin: 4px 0 2px; }
.ph-balance-sub { font-size: 11px; color: #22c55e; font-weight: 600; }

.ph-stat {
  background: white;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(124,58,237,.08);
}
.ph-stat-label { font-size: 9px; font-weight: 700; letter-spacing: .1em; color: #5b5470; }
.ph-stat-value { font-size: 22px; font-weight: 800; margin: 2px 0; }
.ph-stat-sub { font-size: 10px; font-weight: 600; }
.ph-stat-sub.up { color: #22c55e; }
.ph-spark { width: 70px; height: 36px; }
.ph-spark svg { width: 100%; height: 100%; }

.ph-section {
  background: white;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(124,58,237,.08);
}
.ph-section-title { font-size: 9px; font-weight: 700; letter-spacing: .1em; color: #5b5470; margin-bottom: 10px; }
.ph-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.ph-bars span {
  flex: 1;
  background: var(--grad);
  border-radius: 4px 4px 2px 2px;
  height: var(--h);
  opacity: .85;
  animation: barRise .8s ease forwards;
  transform-origin: bottom;
}
@keyframes barRise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  z-index: 3;
  animation: float 6s ease-in-out infinite;
}
.card-comm { top: 10%; left: 0; animation-delay: 0s; }
.card-meta { bottom: 18%; left: 6%; animation-delay: -2s; }
.card-cpa { top: 28%; right: 0; animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}
.ico-purple { background: var(--grad); }
.ico-yellow { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.ico-green { background: linear-gradient(135deg, #4ade80, #22c55e); }
.card-label { font-size: 11px; color: var(--text-muted); }
.card-value { font-size: 13px; font-weight: 700; }

/* Trust strip */
.trust {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-logos {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  opacity: .75;
}

/* ============ STATS ============ */
.stats {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { color: var(--text-muted); font-size: 14px; margin-top: 6px; }

/* ============ SECTIONS HEAD ============ */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 17px;
}

/* ============ FEATURES (split layout) ============ */
.features {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.feat-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.feat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  background: rgba(120,53,254,.12);
  border: 1px solid rgba(120,53,254,.35);
  color: #a78bfa;
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.feat-pill-ico {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(120,53,254,.22);
  color: #a78bfa;
}
.feat-left h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
  color: var(--sec-text);
}
.feat-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--sec-text);
  margin-bottom: 16px;
}
.feat-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--sec-muted);
  max-width: 460px;
}

.feat-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feat-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 26px;
  background: var(--sec-card);
  border: 1px solid var(--sec-border);
  border-radius: 16px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feat-row:hover {
  transform: translateX(4px);
  border-color: rgba(120,53,254,.5);
  box-shadow: 0 8px 24px rgba(120,53,254,.1);
}
.feat-row-ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(120,53,254,.12);
  color: #a78bfa;
}
.feat-row h3 { font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--sec-text); }
.feat-row p { color: var(--sec-muted); font-size: 14px; line-height: 1.5; }

/* ============ HOW ============ */
.how { padding: 100px 0; background: var(--bg-soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.step-num {
  font-size: 48px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.04em;
  margin-bottom: 12px;
}
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 14.5px; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 100px 0; }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.t-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.stars { color: #fbbf24; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.t-card p { color: var(--text); font-size: 15px; margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.t-author strong { display: block; font-size: 14px; }
.t-author span { color: var(--text-muted); font-size: 12px; }

/* ============ PRICING ============ */
.pricing { padding: 100px 0; background: var(--bg-soft); }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.plan {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.plan-featured {
  border: 2px solid var(--primary);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.plan h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; color: var(--text-muted); }
.price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 14px; }
.currency { font-size: 18px; font-weight: 600; }
.amount { font-size: 48px; font-weight: 800; letter-spacing: -.02em; }
.per { font-size: 14px; color: var(--text-muted); }
.plan-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 22px; }
.plan ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.plan ul li { font-size: 14px; }

/* ============ FAQ ============ */
.faq {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color .2s ease;
}
.faq details[open] { border-color: var(--primary-2); }
.faq summary {
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 22px;
  color: var(--primary);
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 12px; color: var(--text-muted); font-size: 14.5px; }

/* ============ CTA FINAL ============ */
.cta-final { padding: 100px 0; }
.cta-inner {
  position: relative;
  background: linear-gradient(135deg, #15102a 0%, #050314 100%);
  border: 1px solid rgba(120,53,254,.2);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
  color: #fff;
}
.cta-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 32px;
}
.blob-3 {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120,53,254,.55) 0%, rgba(120,53,254,.15) 45%, transparent 70%);
  opacity: .9;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.cta-bg::after {
  content: '';
  position: absolute;
  width: 80%; height: 1px;
  bottom: 0; left: 10%;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,.6), transparent);
}
.cta-inner h2 {
  position: relative;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.cta-inner p {
  position: relative;
  color: #c4b5fd;
  font-size: 17px;
  margin-bottom: 34px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-final .btn-primary { background: white; color: #0a0613; }
.cta-final .btn-ghost { color: white; }

/* ============ FOOTER ============ */
.footer {
  padding: 70px 0 30px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; margin-top: 14px; max-width: 300px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-cols h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-cols a { display: block; color: var(--text-muted); font-size: 14px; margin-bottom: 10px; transition: color .2s ease; }
.footer-cols a:hover { color: var(--primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.credit {
  margin-left: 6px;
  opacity: .55;
  font-size: 12px;
}
.credit a {
  color: inherit;
  border-bottom: 1px dotted currentColor;
  transition: color .2s ease, opacity .2s ease;
}
.credit a:hover { color: var(--primary); opacity: 1; }
.socials { display: flex; gap: 16px; }
.socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color .2s ease, border-color .2s ease;
}
.socials a:hover { color: var(--primary); border-color: var(--primary); }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ HERO WATERMARK ============ */
.hero-watermark {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  width: 60vw;
  max-width: 900px;
  opacity: .7;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.watermark-dark { display: none; }
[data-theme="dark"] .watermark-light { display: none; }
[data-theme="dark"] .watermark-dark { display: block; opacity: .08; }

/* ============ AWARDS / PREMIAÇÕES ============ */
.awards {
  position: relative;
  padding: 60px 0 30px;
  overflow: hidden;
  background: #050b1f;
  color: #fff;
}
.awards-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #0a0613 0%, #100822 100%);
  pointer-events: none;
  overflow: hidden;
}
.awards-bg::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: url('assets/Placas faturamento 10M.webp') center/cover no-repeat;
  filter: blur(80px) saturate(1.2);
  opacity: .35;
  transform: scale(1.1);
}
.awards-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 90%, rgba(120,53,254,.25), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 10%, rgba(80,60,200,.2), transparent 70%),
    linear-gradient(180deg, rgba(10,6,19,.5) 0%, rgba(16,8,34,.7) 100%);
}
.awards .container { position: relative; z-index: 1; }

.awards-head {
  text-align: center;
  margin-bottom: 24px;
}
.awards-pill {
  display: inline-block;
  padding: 6px 18px;
  border: 1.5px solid rgba(120,53,254,.55);
  border-radius: 999px;
  color: #c4b5fd;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 14px;
  background: rgba(120,53,254,.1);
}
.awards-head h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
}
.awards-title-grad {
  background: linear-gradient(180deg, #7835fe 0%, #4c1d95 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.awards-stage {
  position: relative;
  height: 340px;
  perspective: 1600px;
  margin: 0 auto;
  max-width: 1200px;
  --spread: 0;
}

/* Plaques: cascade left→right, growing in size */
.award {
  --w: calc(140px + var(--i) * 12px);
  --offset: calc((var(--i) - 2.5) * 135px * var(--spread, 1));
  --rise: 0px;
  --rot: 0deg;
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: var(--w);
  aspect-ratio: 2/3;
  border-radius: 0;
  overflow: hidden;
  background: #000;
  border: 8px solid #0a0613;
  box-shadow:
    0 30px 50px -10px rgba(0,0,0,.8),
    0 10px 30px rgba(120,53,254,.15),
    0 0 0 1px rgba(255,255,255,.04) inset;
  transform-origin: bottom center;
  transform: translateX(calc(-50% + var(--offset))) translateY(var(--rise)) rotateY(var(--rot));
  transition: box-shadow .5s ease;
  will-change: transform;
  z-index: calc(var(--i) + 1);
}
.award img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.award { transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease; }
.award:hover {
  transform: translateX(calc(-50% + var(--offset))) translateY(calc(var(--rise) - 14px)) rotateY(var(--rot)) scale(1.05);
  box-shadow:
    0 36px 70px rgba(96,165,250,.35),
    0 0 0 1px rgba(255,255,255,.12) inset;
  z-index: 20;
}

.awards-floor {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(120,53,254,.6) 25%, rgba(167,139,250,.85) 50%, rgba(120,53,254,.6) 75%, transparent);
  border-radius: 50%;
  filter: blur(2px);
}
.awards-floor::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  background: radial-gradient(ellipse at center top, rgba(120,53,254,.35) 0%, rgba(167,139,250,.15) 30%, transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}

/* ============ BRINDES (MERCH) ============ */
.merch {
  position: relative;
  padding: 80px 0;
}

.merch-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(135deg, #15102a 0%, #0a0613 100%);
  border: 1px solid rgba(120,53,254,.18);
  border-radius: 28px;
  padding: 60px 0 60px 60px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.4);
}
.merch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 0% 50%, rgba(120,53,254,.18), transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(76,29,149,.22), transparent 65%);
  pointer-events: none;
}

.merch-card-content {
  position: relative;
  z-index: 2;
  max-width: 460px;
}

.merch-pill {
  display: inline-block;
  padding: 7px 18px;
  background: rgba(120,53,254,.15);
  border: 1px solid rgba(120,53,254,.4);
  color: #c4b5fd;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 24px;
}
.merch-card-content h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.merch-card-content h2 .grad {
  background: linear-gradient(180deg, #7835fe 0%, #4c1d95 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.merch-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #a39bb8;
  margin-bottom: 28px;
}
.merch-cta {
  background: #fff;
  color: #0a0613;
  padding: 14px 24px;
  font-size: 15px;
}
.merch-cta:hover { background: #f5f3ff; transform: translateY(-2px); }

/* Visual column */
.merch-card-visual {
  position: relative;
  height: 100%;
  min-height: 380px;
}
.merch-shape {
  position: absolute;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, z-index 0s .5s;
  cursor: pointer;
}
.merch-shape:hover {
  z-index: 20 !important;
  box-shadow: 0 40px 90px rgba(120,53,254,.45), 0 0 0 1px rgba(167,139,250,.3);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, z-index 0s 0s;
}
.merch-shape-1 { /* Polo — protagonista */
  width: 75%;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
}
.merch-shape-2 { /* Boné */
  width: 45%;
  top: 6%;
  right: -8%;
  z-index: 3;
}
.merch-shape-3 { /* Card */
  width: 38%;
  bottom: 4%;
  right: -4%;
  z-index: 1;
}
.merch-card:hover .merch-shape-1 { transform: translateY(-50%) translateX(-8px); }
.merch-card:hover .merch-shape-2 { transform: translateX(-12px) translateY(-6px); }
.merch-card:hover .merch-shape-3 { transform: translateX(-10px) translateY(4px); }

/* Hover individual: imagem pula pra frente com escala maior */
.merch-shape-1:hover { transform: translateY(-50%) translateX(-8px) scale(1.08); }
.merch-shape-2:hover { transform: translateX(-12px) translateY(-6px) scale(1.12); }
.merch-shape-3:hover { transform: translateX(-10px) translateY(4px) scale(1.15); }

.merch-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.merch-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 5/4;
}
.merch-cell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #15102a;
  border: 1px solid rgba(120,53,254,.2);
  box-shadow: 0 14px 40px rgba(0,0,0,.4);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.merch-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(120,53,254,.55);
  box-shadow: 0 20px 50px rgba(120,53,254,.25);
}
.merch-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.merch-cell:hover img { transform: scale(1.04); }
.merch-cell figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 12px;
  background: rgba(10,6,19,.75);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.merch-cell-main   { grid-row: 1 / span 2; grid-column: 1; }
.merch-cell-top    { grid-row: 1; grid-column: 2; }
.merch-cell-bottom { grid-row: 2; grid-column: 2; }

/* ============ PLATAFORMAS ============ */
.platforms {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background: #ffffff;
  color: #0f0a1f;
}
.platforms-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(120,53,254,.12), transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 100%, rgba(120,53,254,.08), transparent 70%);
}
.platforms .container { position: relative; z-index: 1; }

.platforms-head {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 60px;
}
.platforms-pill {
  display: inline-block;
  padding: 6px 18px;
  border: 1.5px solid rgba(120,53,254,.4);
  background: rgba(120,53,254,.08);
  color: #7835fe;
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.platforms-head h2 {
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 18px;
  color: #0f0a1f;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .platforms-head h2 { white-space: normal; font-size: clamp(24px, 6vw, 32px); }
}
.platforms-head h2 .grad {
  background: linear-gradient(180deg, #7835fe 0%, #4c1d95 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.platforms-head p {
  font-size: 16px;
  color: #5b5470;
  line-height: 1.6;
}

/* Logo cloud — duas linhas com Nemeziz no centro */
.platforms-cloud {
  position: relative;
  margin: 0 auto 40px;
  max-width: 1100px;
  height: 320px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.cloud-row {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  width: 100%;
  /* Clipa apenas horizontal — deixa hover lift visível */
  clip-path: inset(-60px 0 -60px 0);
}
.cloud-row-top    { top: 22px; }
.cloud-row-bottom { bottom: 22px; }
.cloud-track {
  display: flex;
  gap: 28px;
  flex-shrink: 0;
  width: max-content;
  animation: cloud-marquee 18s linear infinite;
  will-change: transform;
}
.cloud-track > .cloud-logo:first-child { margin-left: 28px; }
.cloud-track-reverse {
  animation-name: cloud-marquee-reverse;
  animation-duration: 22s;
}
.cloud-row:hover .cloud-track { animation-play-state: paused; }
@keyframes cloud-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 14px)); }
}
@keyframes cloud-marquee-reverse {
  from { transform: translateX(calc(-50% - 14px)); }
  to   { transform: translateX(0); }
}
.cloud-logo {
  flex-shrink: 0;
  width: 96px; height: 96px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
  border: 1px solid #ececf5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: .85;
  box-shadow: 0 6px 16px rgba(15,10,31,.06);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .3s ease, border-color .3s ease, box-shadow .35s ease;
}
.cloud-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 14px;
  box-sizing: border-box;
}
.cloud-logo:hover {
  transform: translateY(-6px) scale(1.06);
  opacity: 1;
  border-color: rgba(120,53,254,.4);
  box-shadow: 0 18px 40px rgba(120,53,254,.22);
}

/* Centro com a marca Nemeziz em destaque */
.cloud-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 168px; height: 168px;
  border-radius: 32px;
  background: linear-gradient(180deg, #7835fe 0%, #4c1d95 100%);
  border: 1px solid rgba(120,53,254,.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.18) inset,
    0 30px 60px rgba(120,53,254,.4),
    0 0 80px rgba(120,53,254,.25);
  isolation: isolate;
}
.cloud-center img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(0,0,0,.25));
  position: relative;
  z-index: 2;
}
.cloud-center-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle at center, rgba(120,53,254,.45) 0%, rgba(120,53,254,.15) 30%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  filter: blur(10px);
}

.platform-card {
  position: relative;
  width: 260px;
  padding: 44px 28px 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fafaff 100%);
  border: 1px solid #ececf5;
  border-radius: 26px;
  text-align: center;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .35s ease;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,.8) inset, 0 14px 40px rgba(15, 10, 31, .06);
  isolation: isolate;
}
/* dot pattern sutil */
.platform-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(15,10,31,.07) 1px, transparent 0);
  background-size: 14px 14px;
  opacity: .35;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 100%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 100%, black, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* moldura interna luminosa */
.platform-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 25px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.6) 0%, transparent 50%);
  z-index: 0;
}
.platform-card > * { position: relative; z-index: 1; }

.platform-card:hover {
  transform: translateY(-8px);
  border-color: rgba(120,53,254,.35);
  box-shadow: 0 24px 60px rgba(120,53,254,.22), 0 0 0 1px rgba(120,53,254,.08);
}

.platform-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: .6;
  filter: blur(8px);
  transition: opacity .4s ease, transform .5s ease;
  z-index: 0;
}
.platform-card:hover .platform-glow {
  opacity: .85;
  transform: translateX(-50%) translateY(-10px) scale(1.05);
}
.platform-blaze .platform-glow {
  background: radial-gradient(circle, rgba(255,80,40,.55) 0%, rgba(255,140,26,.25) 40%, transparent 70%);
}
.platform-jonbet .platform-glow {
  background: radial-gradient(circle, rgba(34,197,94,.55) 0%, rgba(56,189,248,.25) 40%, transparent 70%);
}
.platform-stake .platform-glow {
  background: radial-gradient(circle, rgba(31,193,165,.55) 0%, rgba(20,184,166,.22) 40%, transparent 70%);
}
.platform-lottu .platform-glow {
  background: radial-gradient(circle, rgba(244,114,182,.55) 0%, rgba(236,72,153,.22) 40%, transparent 70%);
}
.platform-sportingbet .platform-glow {
  background: radial-gradient(circle, rgba(250,204,21,.55) 0%, rgba(234,88,12,.22) 40%, transparent 70%);
}
.platform-superbet .platform-glow {
  background: radial-gradient(circle, rgba(220,38,38,.55) 0%, rgba(239,68,68,.22) 40%, transparent 70%);
}

/* Padding interno para imagens que preenchem o quadro edge-to-edge */
.platform-stake .platform-logo img,
.platform-lottu .platform-logo img,
.platform-sportingbet .platform-logo img,
.platform-superbet .platform-logo img { padding: 14px; box-sizing: border-box; }

.platform-logo {
  position: relative;
  width: 104px; height: 104px;
  margin: 0 auto 24px;
  border-radius: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.6) inset,
    0 18px 40px rgba(0,0,0,.18),
    0 8px 20px rgba(0,0,0,.08);
}
.platform-card:hover .platform-logo {
  transform: scale(1.05) translateY(-2px);
}
.platform-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .5s ease;
}
.platform-card:hover .platform-logo img { transform: scale(1.04); }
/* Blaze image fills the box edge-to-edge — add internal padding to balance with JonBet */
.platform-blaze .platform-logo img { padding: 16px; box-sizing: border-box; }
/* shine sweep on hover */
.platform-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 30%, rgba(255,255,255,.55) 48%, transparent 60%);
  transform: translateX(-120%);
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.platform-card:hover .platform-logo::after { transform: translateX(120%); }

.platform-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.01em;
  color: #0f0a1f;
}
.platform-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 999px;
  font-size: 12px;
  color: #15803d;
  font-weight: 600;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}

.platforms-foot {
  text-align: center;
  background: linear-gradient(180deg, #c4b5fd 0%, #7835fe 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  font-size: 17px;
}

/* ============ NOTIFICAÇÕES ============ */
.notif {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #050314;
  color: #fff;
}
.notif-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.notif-bg::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: url('assets/Placas faturamento 5M.webp') center/cover no-repeat;
  filter: blur(80px) saturate(1.2);
  opacity: .3;
  transform: scale(1.1);
}
.notif-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(120,53,254,.45), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(80,60,200,.3), transparent 60%),
    linear-gradient(180deg, rgba(5,3,20,.4) 0%, rgba(5,3,20,.6) 100%);
}
.notif .container { position: relative; z-index: 1; }
.notif-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.notif-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(120,53,254,.12);
  border: 1px solid rgba(120,53,254,.5);
  color: #c4b5fd;
  font-weight: 600;
  font-size: 13px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.notif-left h2 {
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.notif-left h2 .grad {
  background: linear-gradient(180deg, #7835fe 0%, #4c1d95 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.notif-sub { font-size: 17px; font-weight: 500; color: #d8d4f0; margin-bottom: 14px; }
.notif-desc { font-size: 15px; line-height: 1.6; color: #a39bb8; max-width: 460px; }

.notif-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.notif-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(20,12,40,.6);
  border: 1px solid rgba(120,53,254,.25);
  border-radius: 16px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

/* Flash when a new notification rotates to the top */
@keyframes notifFlash {
  0%   { box-shadow: 0 0 0 0 rgba(120,53,254,.5); border-color: rgba(167,139,250,.8); }
  60%  { box-shadow: 0 0 0 10px rgba(120,53,254,0); }
  100% { box-shadow: 0 0 0 0 rgba(120,53,254,0); border-color: rgba(120,53,254,.25); }
}
.notif-card.notif-flash {
  animation: notifFlash 1.2s ease-out;
}
.notif-ico {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(120,53,254,.4);
  padding: 8px;
}
.notif-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.notif-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.notif-body strong { font-size: 15px; font-weight: 700; color: #fff; }
.notif-body span { font-size: 13px; color: #a39bb8; }
.notif-time { font-size: 12px; color: #8b85a3; }

/* ============ ALTERNATING SECTIONS ============ */
/* Force alternating light/dark sections regardless of theme */
.stats,
.features,
.how,
.testimonials,
.pricing,
.faq {
  --sec-bg: #ffffff;
  --sec-text: #0f0a1f;
  --sec-muted: #5b5470;
  --sec-card: #ffffff;
  --sec-border: #ececf5;
}
.testimonials {
  --sec-bg: #0a0613;
  --sec-text: #f5f3ff;
  --sec-muted: #a39bb8;
  --sec-card: #15102a;
  --sec-border: #241a3d;
}

.stats, .features, .how, .testimonials, .pricing, .faq {
  background: var(--sec-bg);
  color: var(--sec-text);
}
.stats .stat-label,
.features .section-head p,
.how .section-head p,
.testimonials .section-head p,
.pricing .section-head p,
.faq .section-head p,
.features .feat p,
.how .step p,
.testimonials .t-card p,
.pricing .plan-desc,
.faq details p {
  color: var(--sec-muted);
}
.features .feat,
.how .step,
.testimonials .t-card,
.pricing .plan,
.faq details {
  background: var(--sec-card);
  border-color: var(--sec-border);
}
.features .feat h3,
.how .step h3,
.testimonials .t-card p,
.pricing .plan h3,
.pricing .amount,
.pricing .currency,
.pricing .per,
.pricing .plan ul li,
.faq summary {
  color: var(--sec-text);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-actions .btn-ghost { display: none; }
  .hero { padding-top: 50px; }
  .feat-grid, .steps, .t-grid, .plans { grid-template-columns: 1fr 1fr; }
  .feat-split { grid-template-columns: 1fr; gap: 40px; }
  .notif-split { grid-template-columns: 1fr; gap: 40px; }
  .merch-card { grid-template-columns: 1fr; padding: 40px; gap: 30px; }
  .merch-card-visual { min-height: 300px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .plan-featured { transform: none; }
}
@media (max-width: 980px) {
  .award {
    --w: calc(90px + var(--i) * 14px);
    --offset: calc((var(--i) - 2.5) * 72px);
  }
  .awards-stage { height: 340px; }
}
@media (max-width: 768px) {
  /* Pilha de cartas: cards 2+ começam encostados no anterior (margin-top negativo)
     com leve escala/rotação. Conforme você rola, cada um se solta da pilha. */
  .feat-right .feat-row,
  .notif-right .notif-card,
  .faq-list details {
    transition: margin-top .8s cubic-bezier(.2,.8,.2,1),
                transform .8s cubic-bezier(.2,.8,.2,1),
                opacity .5s ease,
                box-shadow .5s ease;
    will-change: margin-top, transform, opacity;
    transform-origin: center top;
  }

  /* Cards 2+ ficam empilhados em cima dos anteriores */
  .feat-right .feat-row:nth-child(2)        { margin-top: -110px; transform: scale(.96) rotate(-1deg); opacity: .75; }
  .feat-right .feat-row:nth-child(3)        { margin-top: -110px; transform: scale(.92) rotate(1.2deg); opacity: .55; }
  .feat-right .feat-row:nth-child(4)        { margin-top: -110px; transform: scale(.88) rotate(-1.5deg); opacity: .4; }

  .notif-right .notif-card:nth-child(2)     { margin-top: -90px; transform: scale(.95) rotate(-1.2deg); opacity: .7; }
  .notif-right .notif-card:nth-child(3)     { margin-top: -90px; transform: scale(.9) rotate(1.5deg); opacity: .5; }

  .faq-list details:nth-child(2)            { margin-top: -68px; transform: scale(.97) rotate(-.8deg); opacity: .75; }
  .faq-list details:nth-child(3)            { margin-top: -68px; transform: scale(.94) rotate(1deg); opacity: .58; }
  .faq-list details:nth-child(4)            { margin-top: -68px; transform: scale(.91) rotate(-1.2deg); opacity: .42; }
  .faq-list details:nth-child(5)            { margin-top: -68px; transform: scale(.88) rotate(1.4deg); opacity: .3; }

  /* Quando entra na viewport, sai da pilha */
  .feat-right .feat-row.detached,
  .notif-right .notif-card.detached,
  .faq-list details.detached {
    margin-top: 14px !important;
    transform: scale(1) rotate(0deg) !important;
    opacity: 1 !important;
    box-shadow: 0 14px 32px rgba(0,0,0,.2);
  }
}

@media (max-width: 640px) {
  .feat-grid, .steps, .t-grid, .plans { grid-template-columns: 1fr; }
  /* Hero panel ocupa toda a largura no mobile pra ficar visível */
  .hero-panel { padding: 0; max-width: 100%; }
  .hero-panel img { border-radius: 14px 14px 0 0; }
  .hero { padding-top: 40px; }
  .hero-title { font-size: clamp(32px, 9vw, 48px); }
  .hero-sub { font-size: 15px; }
  /* Wave menos profundo pra não comer tanto da imagem */
  .hero-wave-wrap { margin-top: -110px; }
  .hero-wave { height: 130px; }
  .hero-chevron { bottom: 28px; }
  .awards-stage { height: 260px; }
  .award {
    --w: calc(70px + var(--i) * 10px);
    --offset: calc((var(--i) - 2.5) * 46px);
  }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { padding: 60px 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .trust { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero { padding-top: 30px; }
  .floating-card { padding: 10px 12px; font-size: 12px; }
  .card-comm { left: -10px; }
  .card-cpa { right: -10px; }
}
