/* ═══════════════════════════════════════════════════════════════
   LUMARIO — Marketing Site v2
   Combina todos os níveis: vanilla solidez + GSAP cinematic +
   3D WebGL + bento moderno + Apple/Linear-grade animations.
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --purple: #A78BFA;
  --violet-600: #8B5CF6;
  --pink: #EC4899;
  --orange: #F97316;
  --green: #22C55E;
  --blue: #0EA5E9;
  --yellow: #FBBF24;
  --red: #EF4444;

  /* Neutrals */
  --bg-0: #050507;
  --bg-1: #0A0A0F;
  --bg-2: #14141B;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --ink: #FAFAFA;
  --ink-2: #D4D4D8;
  --ink-3: #A1A1AA;
  --ink-4: #71717A;

  /* Gradients */
  --grad-h: linear-gradient(90deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
  --grad: linear-gradient(135deg, #8B5CF6, #EC4899, #F97316);
  --grad-soft: linear-gradient(135deg, rgba(167,139,250,0.18), rgba(236,72,153,0.14), rgba(249,115,22,0.14));

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Shadows */
  --shadow-glow: 0 20px 60px rgba(139, 92, 246, 0.35), 0 8px 24px rgba(236, 72, 153, 0.20);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-deep: 0 30px 80px rgba(0,0,0,0.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--bg-0);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

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

@media (max-width: 768px) {
  body, a, button { cursor: auto; }
  .cursor, .cursor-trail { display: none !important; }
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.grad {
  background: var(--grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stroke {
  -webkit-text-stroke: 2px var(--ink);
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

/* ─── CURSOR (Level 1+4) ─── */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}
.cursor-trail {
  position: fixed; top: 0; left: 0;
  width: 44px; height: 44px;
  border: 1px solid rgba(167, 139, 250, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, border-color 0.3s;
}
.cursor.hover { width: 56px; height: 56px; mix-blend-mode: difference; }
.cursor-trail.hover { width: 90px; height: 90px; border-color: rgba(236, 72, 153, 0.6); }

/* ─── BG SHADER (Level 4) ─── */
.bg-shader {
  position: fixed; inset: 0; z-index: -2;
  background: var(--bg-0);
  overflow: hidden;
}
.bg-shader-inner {
  position: absolute; inset: -20%;
  background:
    conic-gradient(from 45deg at 25% 30%, #8B5CF6 0deg, transparent 60deg, #EC4899 120deg, transparent 200deg, #F97316 280deg, transparent 360deg);
  filter: blur(140px);
  opacity: 0.35;
  animation: shaderSpin 40s linear infinite;
}
@keyframes shaderSpin {
  0% { transform: rotate(0) scale(1); }
  50% { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}
.bg-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at var(--mx, 30%) var(--my, 40%), rgba(167,139,250,0.25), transparent 30%);
  opacity: 0.6;
  transition: background 0.5s;
  pointer-events: none;
}
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 100%);
  pointer-events: none;
}

/* ─── NAV ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 32px;
  padding: 14px var(--gutter);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  background: rgba(5, 5, 7, 0.55);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.nav.scrolled {
  background: rgba(5, 5, 7, 0.85);
  border-bottom-color: var(--border);
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 900; letter-spacing: -0.3px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 32px; width: 32px; border-radius: 8px;
  object-fit: cover;
}
.nav-links {
  display: flex; gap: 4px;
  flex: 1; justify-content: center;
}
.nav-links a {
  position: relative;
  padding: 8px 14px;
  font-size: 13.5px; font-weight: 500;
  color: var(--ink-3);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
  background: var(--surface-2);
}
.nav-cta { display: flex; gap: 10px; }
.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  border: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, background 0.2s;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: var(--grad-h);
  color: white;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(139, 92, 246, 0.6); }
.btn-ghost {
  background: var(--surface-2);
  color: var(--ink);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn.full { width: 100%; padding: 16px 24px; font-size: 15px; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg-pin {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  height: 80vh;
  max-height: 700px;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-pin canvas { width: 100%; height: 100%; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 48px;
  padding: 6px 6px 6px 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  align-self: flex-start;
}
.hero-kicker > span:nth-child(2) {
  font-size: 13px; font-weight: 600; color: var(--ink-2);
  padding-right: 6px;
}
.hero-kicker .ring {
  width: 30px; height: 30px; border-radius: 50%;
  background: conic-gradient(from 0deg, #8B5CF6, #EC4899, #F97316, #8B5CF6);
  padding: 2px;
  animation: ringSpin 5s linear infinite;
}
.hero-kicker .ring-inner {
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--bg-0);
  display: flex; align-items: center; justify-content: center;
}
.hero-kicker .ring-inner .material-symbols-rounded {
  font-size: 14px; color: var(--purple);
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.hero-kicker .dot-live {
  width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  animation: pulseDot 2s infinite;
  margin-right: 10px;
}
@keyframes pulseDot { 50% { opacity: 0.3; } }

.hero-title {
  font-size: clamp(60px, 11vw, 160px);
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.9;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line-inner { display: block; }

.hero-meta {
  display: flex;
  gap: 60px;
  margin-top: 56px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.hero-meta-left { max-width: 520px; flex: 1; min-width: 280px; }
.hero-meta-left p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  line-height: 1.55;
}
.hero-meta-right { flex-shrink: 0; }

.cta-circle {
  width: 132px; height: 132px;
  border-radius: 50%;
  background: var(--grad);
  color: white;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border: 0;
  font-weight: 800; font-size: 12px;
  text-transform: uppercase; letter-spacing: 1.2px;
  box-shadow: 0 24px 60px rgba(139, 92, 246, 0.5);
  position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-circle::before {
  content: '';
  position: absolute; inset: 0;
  background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: ctaShine 3s linear infinite;
}
@keyframes ctaShine { to { transform: rotate(360deg); } }
.cta-circle .material-symbols-rounded {
  font-size: 28px; margin-bottom: 4px;
  position: relative; z-index: 1;
}
.cta-circle .lbl { position: relative; z-index: 1; }
.cta-circle:hover { transform: scale(1.08); }

.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 48px;
}
.trust {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-3);
}
.trust .material-symbols-rounded { font-size: 18px; }

.scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink-3);
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--ink-3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.3); transform-origin: top; }
}

/* ─── MARQUEE ─── */
.marquee {
  display: flex;
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  gap: 80px; white-space: nowrap;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
}
.marquee-track {
  display: flex; gap: 80px;
  animation: marqueeMove 40s linear infinite;
  flex-shrink: 0;
}
@keyframes marqueeMove { to { transform: translateX(-50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px;
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  letter-spacing: -2px;
}
.marquee-item .star {
  color: var(--orange); font-size: 0.5em;
}

/* ─── SECTIONS ─── */
.section { padding: 140px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

.section-head { max-width: 1000px; margin-bottom: 80px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  color: var(--purple);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.section-label .material-symbols-rounded { font-size: 14px; }
.section-title {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.98;
  margin-bottom: 24px;
}
.section-title .line { display: block; overflow: hidden; }
.section-title .line-inner { display: block; }
.section-lead {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 720px;
}
.section-lead strong { color: var(--ink); font-weight: 600; }

/* ─── MANIFESTO QUOTES ─── */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }
.quote {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
}
.quote::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity 0.4s;
}
.quote:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.4);
}
.quote:hover::before { opacity: 1; }
.quote > * { position: relative; z-index: 1; }
.quote-num {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: 3px;
  color: var(--purple);
  margin-bottom: 18px;
}
.quote h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
}
.quote p {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.65;
}
.quote p strong { color: var(--ink); font-weight: 600; }
.quote-icon {
  position: absolute;
  top: 32px; right: 32px;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.quote-icon .material-symbols-rounded { font-size: 22px; }

/* ─── BENTO ─── */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(240px, auto);
  gap: 18px;
}
@media (max-width: 900px) { .bento { grid-template-columns: 1fr; } }

.bento-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
  display: flex; flex-direction: column;
  justify-content: space-between;
}
.bento-cell:hover {
  border-color: rgba(167, 139, 250, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}
.bento-cell.large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.10), rgba(236, 72, 153, 0.06));
}
.bento-cell.tall { grid-row: span 2; }
.bento-cell.wide { grid-column: span 2; }
@media (max-width: 900px) {
  .bento-cell.large, .bento-cell.tall, .bento-cell.wide {
    grid-column: auto; grid-row: auto;
  }
}
.b-mesh {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--ic) 18%, transparent), transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}
.b-content { position: relative; z-index: 1; }
.b-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--ic) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--ic) 45%, transparent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  transform: translateZ(40px);
}
.b-icon .material-symbols-rounded {
  font-size: 28px;
  color: var(--ic);
}
.bento-cell h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.bento-cell.large h3 { font-size: 28px; letter-spacing: -0.8px; }
.bento-cell p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.bento-cell.large p { font-size: 16px; }

.b-preview {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
.preview-map {
  position: relative;
  height: 200px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(167,139,250,0.2), transparent 50%),
    repeating-linear-gradient(45deg, transparent 0, transparent 18px, rgba(167,139,250,0.05) 18px, rgba(167,139,250,0.05) 19px),
    rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  overflow: hidden;
}
.preview-pin {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: white;
  border: 3px solid var(--bg-0);
}
.preview-pin.p1 { background: var(--violet-600); top: 20%; left: 30%; }
.preview-pin.p2 { background: var(--pink); top: 50%; left: 60%; }
.preview-pin.p3 { background: var(--orange); top: 70%; left: 25%; }
.preview-pulse {
  position: absolute;
  top: 50%; left: 60%;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  animation: previewPulse 2s ease-out infinite;
}
@keyframes previewPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3); opacity: 0; }
}

.preview-interests {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.preview-interests span {
  padding: 8px 14px;
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: var(--pink);
}

/* ─── STEPS ─── */
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(167, 139, 250, 0.3); }
.step-num {
  flex-shrink: 0;
  font-size: 48px; font-weight: 900;
  letter-spacing: -2px;
  background: var(--grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.step-body { flex: 1; }
.step-body h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.step-body p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.step-icon {
  position: absolute;
  bottom: 24px; right: 24px;
  opacity: 0.15;
}
.step-icon .material-symbols-rounded { font-size: 64px; }

/* ─── STATS ─── */
.stats {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, transparent, rgba(167, 139, 250, 0.04), transparent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
@media (max-width: 800px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 50px 30px; } }
.stat-num {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1;
  background: var(--grad-h);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 13px;
  color: var(--ink-3);
  max-width: 200px;
  margin: 0 auto;
  line-height: 1.4;
}

/* ─── PRICING ─── */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; } }
.plan {
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.plan:hover { transform: translateY(-4px); border-color: rgba(167, 139, 250, 0.3); }
.plan.featured {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.20), rgba(236, 72, 153, 0.12));
  border-color: rgba(167, 139, 250, 0.5);
  transform: scale(1.04);
}
.plan.featured:hover { transform: scale(1.04) translateY(-4px); }
.popular {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--grad-h);
  border-radius: 999px;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px;
  color: white;
}
.plan-name {
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 18px;
}
.plan-price {
  font-size: 52px; font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1;
}
.plan-price small {
  font-size: 14px; font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
  margin-left: 4px;
}
.plan > p {
  font-size: 14px;
  color: var(--ink-2);
  margin: 14px 0 28px;
  line-height: 1.5;
}
.plan ul {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.plan li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink);
}
.plan li .material-symbols-rounded {
  font-size: 18px;
  color: var(--green);
}

/* ─── FAQ ─── */
.faq { max-width: 820px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] {
  border-color: rgba(167, 139, 250, 0.4);
  background: rgba(167, 139, 250, 0.04);
}
.faq-item summary {
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: 'expand_more';
  font-family: 'Material Symbols Rounded';
  font-size: 26px;
  color: var(--purple);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p {
  padding: 0 26px 22px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}
.faq-item p strong { color: var(--ink); font-weight: 600; }

/* ─── FINAL CTA ─── */
.final-cta {
  padding: 200px var(--gutter);
  position: relative;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(167, 139, 250, 0.12), transparent 60%);
  z-index: -1;
}
.final-cta-inner { max-width: 900px; margin: 0 auto; }
.cta-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
}
.cta-eyebrow .material-symbols-rounded { font-size: 14px; }
.cta-title {
  font-size: clamp(48px, 9vw, 140px);
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.9;
  margin-bottom: 32px;
}
.cta-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-2);
  margin: 0 auto 48px;
  max-width: 560px;
  line-height: 1.6;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto 16px;
  flex-wrap: wrap;
}
.cta-form input {
  flex: 1;
  min-width: 240px;
  padding: 16px 22px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-form input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(167, 139, 250, 0.15);
}
.cta-form input::placeholder { color: var(--ink-4); }
.cta-form .btn { padding: 16px 28px; font-size: 14px; }
.form-status {
  font-size: 13px;
  color: var(--green);
  margin-bottom: 32px;
  min-height: 22px;
}
.stores {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.store-badge {
  display: inline-flex; align-items: center;
  gap: 14px;
  padding: 16px 28px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: 18px;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.store-badge:hover {
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}
.store-badge .material-symbols-rounded { font-size: 32px; }
.store-badge div { display: flex; flex-direction: column; text-align: left; }
.store-sm { font-size: 10px; color: var(--ink-3); }
.store-lg { font-size: 17px; font-weight: 700; }

/* ─── FOOTER ─── */
.footer {
  padding-top: 100px;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
  position: relative;
  z-index: 1;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 60px;
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-brand { max-width: 340px; }
.footer-brand p {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.65;
  margin: 18px 0 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--purple);
  color: var(--purple);
}
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--ink-3);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  display: flex; justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--ink-4);
  flex-wrap: wrap; gap: 12px;
}

/* ─── REVEAL ─── */
[data-fade-up] {
  opacity: 0;
  transform: translateY(40px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-bg-pin { display: none; }
}
@media (max-width: 720px) {
  .nav-cta { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-logo span { display: none; }
  .hero-title { letter-spacing: -3px; }
  .hero-meta { gap: 32px; }
  .cta-circle { width: 110px; height: 110px; font-size: 11px; }
  .marquee-item { font-size: 32px; }
}
