/* =========================================================
   OCCASIO STUDIO — Marketing Site Styles
   ========================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #070A18;
  color: #F0F2FF;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #070A18; }
::-webkit-scrollbar-thumb { background: rgba(109,66,255,0.3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(109,66,255,0.5); }

::selection { background: rgba(109,66,255,0.4); color: #fff; }

/* ─────────────────────────────────────────
   NAVBAR — Liquid Glass
   ───────────────────────────────────────── */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 32px); max-width: 1240px;
  z-index: 100; padding: 12px 24px;
  border-radius: 100px;
  background: rgba(13, 17, 40, 0.35);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(255,255,255,0.04),
    0 8px 32px rgba(0,0,0,0.3);
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav.scrolled {
  background: rgba(7, 10, 24, 0.75);
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 12px 40px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: #F0F2FF;
  font-weight: 800; letter-spacing: -0.02em;
}
.nav-logo img { height: 26px; filter: brightness(0) invert(1); }
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.nav-links a {
  display: inline-block;
  padding: 8px 16px; border-radius: 100px;
  color: rgba(240,242,255,0.7);
  text-decoration: none; font-size: 14px; font-weight: 500;
  transition: all 0.2s ease;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.nav-cta {
  display: flex; align-items: center; gap: 8px;
}
.nav-cta a { text-decoration: none; }
.btn-ghost {
  padding: 9px 18px; border-radius: 100px;
  background: transparent; color: rgba(240,242,255,0.85);
  font: 600 13px 'Plus Jakarta Sans', sans-serif;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; transition: all 0.2s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.btn-primary {
  position: relative;
  padding: 9px 20px; border-radius: 100px;
  background: linear-gradient(135deg, #8a68ff 0%, #6D42FF 50%, #5430d9 100%);
  color: #fff; font: 600 13px 'Plus Jakarta Sans', sans-serif;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(109,66,255,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(109,66,255,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
}

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

/* ─────────────────────────────────────────
   HERO
   ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(7,10,24,0.4) 60%, #070A18 100%),
    linear-gradient(180deg, transparent 0%, transparent 60%, #070A18 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
  max-width: 920px;
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px 7px 8px; border-radius: 100px;
  background: rgba(109,66,255,0.12);
  border: 1px solid rgba(109,66,255,0.3);
  backdrop-filter: blur(8px);
  margin-bottom: 32px;
  font-size: 13px; font-weight: 500; color: #c5b4ff;
  opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-pill-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(109,66,255,0.4);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-pill-dot::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: #6D42FF;
  animation: pulse-dot 2s ease infinite;
}

.hero-title {
  font-size: clamp(48px, 8vw, 104px);
  font-weight: 800;
  line-height: 0.96; letter-spacing: -0.04em;
  margin-bottom: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 40%, rgba(167, 139, 250, 0.7) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards 0.6s;
}
.hero-title .highlight {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #6D42FF 0%, #2DD4BF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
.hero-subtitle {
  max-width: 640px; margin: 0 auto 40px;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(240,242,255,0.65);
  line-height: 1.5;
  opacity: 0; animation: fadeUp 0.9s ease forwards 0.8s;
}
.hero-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s ease forwards 1s;
}
.btn-hero-primary {
  padding: 15px 28px; border-radius: 12px;
  background: linear-gradient(135deg, #8a68ff 0%, #6D42FF 100%);
  color: #fff; font: 600 15px 'Plus Jakarta Sans', sans-serif;
  border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow:
    0 8px 28px rgba(109,66,255,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.2);
  transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 36px rgba(109,66,255,0.6),
    inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-hero-secondary {
  padding: 15px 28px; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: #fff; font: 600 15px 'Plus Jakarta Sans', sans-serif;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer; backdrop-filter: blur(12px);
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.2s;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

.hero-scroll-cue {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-size: 11px; font-weight: 600;
  color: rgba(240,242,255,0.4);
  letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s ease forwards 1.4s;
}
.hero-scroll-cue::after {
  content: ''; width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scrollCue 2s ease-in-out infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
@keyframes scrollCue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─────────────────────────────────────────
   SECTION SCAFFOLD
   ───────────────────────────────────────── */
section { padding: 120px 24px; position: relative; }
.container { max-width: 1240px; margin: 0 auto; }

.section-overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #c5b4ff; margin-bottom: 16px;
}
.section-overline::before {
  content: ''; width: 24px; height: 1px;
  background: linear-gradient(90deg, transparent, #6D42FF);
}
.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.05; margin-bottom: 20px;
  max-width: 800px;
}
.section-title .accent {
  background: linear-gradient(135deg, #6D42FF 0%, #2DD4BF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  font-size: 18px; color: rgba(240,242,255,0.6);
  max-width: 600px; line-height: 1.6;
}

/* ─────────────────────────────────────────
   LOGOS BAR
   ───────────────────────────────────────── */
.logos-bar {
  padding: 56px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.logos-label {
  text-align: center; font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(240,242,255,0.4); margin-bottom: 32px;
}
.logos-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 56px;
  opacity: 0.5;
}
.logo-item {
  font-size: 22px; font-weight: 700;
  color: rgba(240,242,255,0.7);
  letter-spacing: -0.03em;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.logo-item.serif { font-family: Georgia, serif; font-style: italic; font-weight: 400; }
.logo-item.mono { font-family: 'JetBrains Mono', monospace; font-weight: 500; font-size: 18px; letter-spacing: 0; }

/* ─────────────────────────────────────────
   FEATURES
   ───────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 16px; margin-top: 64px;
}
.feature-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.feature-card:hover {
  border-color: rgba(109,66,255,0.35);
  transform: translateY(-2px);
}
.feature-card.large { grid-column: span 4; min-height: 360px; }
.feature-card.small { grid-column: span 2; min-height: 360px; }
.feature-card.wide { grid-column: span 3; min-height: 280px; }

.feature-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(109,66,255,0.25), rgba(45,212,191,0.15));
  border: 1px solid rgba(109,66,255,0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(109,66,255,0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.feature-title {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px;
  line-height: 1.2;
}
.feature-desc {
  font-size: 15px; color: rgba(240,242,255,0.6);
  line-height: 1.55;
}

/* Feature visual: timeline scene */
.viz-timeline {
  position: absolute; right: -40px; bottom: -40px;
  width: 70%; height: 200px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0.6;
}
.viz-timeline .track {
  height: 24px; border-radius: 4px;
  background: rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
}
.viz-timeline .clip {
  position: absolute; top: 0; bottom: 0;
  border-radius: 3px;
}

/* Feature visual: bars */
.viz-bars {
  position: absolute; right: 24px; bottom: 24px;
  display: flex; align-items: flex-end; gap: 4px;
  height: 80px;
}
.viz-bars .bar {
  width: 6px; background: linear-gradient(180deg, #6D42FF, rgba(109,66,255,0.2));
  border-radius: 3px;
}

/* Feature visual: glow circle */
.viz-glow {
  position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(109,66,255,0.4), transparent 70%);
  filter: blur(20px); pointer-events: none;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.large, .feature-card.small, .feature-card.wide { grid-column: span 2; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { grid-column: span 1 !important; }
}

/* ─────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 64px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 30px; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109,66,255,0.35), transparent);
}
.step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}
.step-number {
  position: relative; z-index: 2;
  width: 60px; height: 60px; margin: 0 auto 24px;
  border-radius: 50%;
  background: #070A18;
  border: 1px solid rgba(109,66,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font: 700 24px 'Plus Jakarta Sans', sans-serif;
  color: #c5b4ff;
  box-shadow: 0 0 32px rgba(109,66,255,0.25), inset 0 1px 0 rgba(255,255,255,0.08);
}
.step-title {
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.step-desc {
  font-size: 14px; color: rgba(240,242,255,0.6);
  line-height: 1.55; max-width: 280px; margin: 0 auto;
}

@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}

/* ─────────────────────────────────────────
   PRODUCT PREVIEW
   ───────────────────────────────────────── */
.preview-section {
  padding: 80px 24px 120px;
}
.preview-frame {
  position: relative;
  margin-top: 56px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(109,66,255,0.18), rgba(45,212,191,0.05));
  padding: 1.5px;
  box-shadow: 0 40px 100px rgba(109,66,255,0.25);
}
.preview-glass {
  background: #0D1128;
  border-radius: 19px;
  overflow: hidden;
  position: relative;
}
.preview-chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.preview-chrome .dot {
  width: 11px; height: 11px; border-radius: 50%;
}
.preview-chrome .dot.r { background: #FF5F56; }
.preview-chrome .dot.y { background: #FFBD2E; }
.preview-chrome .dot.g { background: #27C93F; }
.preview-chrome .url {
  flex: 1; text-align: center;
  font: 500 12px 'JetBrains Mono', monospace;
  color: rgba(240,242,255,0.4);
}
.preview-body {
  position: relative;
  height: 540px;
  overflow: hidden;
}
.preview-body iframe {
  width: 100%; height: 100%;
  border: 0;
}

/* ─────────────────────────────────────────
   PRICING — Sparkles + Glow stage
   ───────────────────────────────────────── */
#pricing {
  position: relative;
  padding: 0; /* contained; inner stage handles spacing */
  background: #050715;
  overflow: hidden;
  isolation: isolate;
}
.pricing-stage {
  position: relative;
  padding: 140px 24px 140px;
  min-height: 100vh;
  overflow: hidden;
}

/* Top half — radial-masked grid + sparkle particles */
.pricing-fx-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 480px;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(50% 60% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(50% 60% at 50% 40%, #000 30%, transparent 100%);
  z-index: 1;
}
.pricing-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 70px 80px;
}
.pricing-sparkles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}

/* Big violet ellipse glow at the bottom */
.pricing-fx-glow {
  position: absolute;
  left: -10%; right: -10%;
  top: -120px;
  height: 1200px;
  z-index: 0;
  pointer-events: none;
  display: flex; justify-content: center;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
}
.pricing-fx-glow::before,
.pricing-fx-glow::after {
  content: '';
  position: absolute;
  top: 240px;
  width: 1900px; height: 1100px;
  border-radius: 50%;
  border: 120px solid #5430d9;
  filter: blur(60px);
  opacity: 0.5;
  will-change: auto;
}
.pricing-fx-glow::after {
  border-color: #6D42FF;
  width: 1500px; height: 900px;
  top: 320px;
  opacity: 0.45;
}

/* Header */
.pricing-header {
  position: relative; z-index: 5;
  text-align: center;
  max-width: 720px; margin: 0 auto 40px;
}
.pricing-overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #c5b4ff; margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(109,66,255,0.35);
  border-radius: 100px;
  background: rgba(109,66,255,0.08);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.pricing-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 18px;
}
.pricing-title .accent,
.pricing-title .cut-reveal.accent .word > span {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, #c5b4ff 0%, #6D42FF 50%, #2DD4BF 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Vertical cut reveal — per-word slide-up */
.cut-reveal { display: inline-flex; flex-wrap: wrap; gap: 0.22em; justify-content: center; }
.cut-reveal .word {
  display: inline-flex; overflow: hidden;
  vertical-align: bottom;
  line-height: 1.05;
}
.cut-reveal .word > span {
  display: inline-block;
  transform: translateY(110%);
  animation: cutRevealUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes cutRevealUp {
  to { transform: translateY(0); }
}
.pricing-subtitle {
  font-size: 17px; color: rgba(240,242,255,0.65);
  line-height: 1.55; margin-bottom: 32px;
  opacity: 0; animation: revealFade 0.7s ease forwards 0.6s;
}
@keyframes revealFade {
  from { opacity: 0; transform: translateY(8px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Toggle pill */
.pricing-toggle {
  position: relative;
  display: inline-flex;
  background: rgba(13,17,40,0.85);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px;
  margin: 0 auto;
  opacity: 0; animation: revealFade 0.7s ease forwards 0.85s;
}
.pricing-toggle button {
  position: relative; z-index: 2;
  background: transparent; border: none;
  padding: 9px 22px; height: 40px;
  border-radius: 100px;
  color: rgba(240,242,255,0.7);
  font: 600 13px 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.3s ease;
}
.pricing-toggle button.active { color: #fff; }
.pricing-toggle .pill {
  position: absolute;
  top: 4px; bottom: 4px;
  border-radius: 100px;
  background: linear-gradient(180deg, #8a68ff, #5430d9);
  border: 2px solid #6D42FF;
  box-shadow: 0 4px 20px rgba(109,66,255,0.55), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: left 0.45s cubic-bezier(0.5, 1.4, 0.4, 1), width 0.45s cubic-bezier(0.5, 1.4, 0.4, 1);
  z-index: 1;
}
.pricing-toggle .save-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  padding: 2px 6px; border-radius: 100px;
  background: rgba(45,212,191,0.2);
  color: #2DD4BF;
  letter-spacing: 0.04em;
}

/* Pricing grid */
.pricing-grid {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 64px auto 0;
}
.plan {
  position: relative;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(20,22,40,0.95) 0%, rgba(13,15,32,0.95) 100%);
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  opacity: 0; transform: translateY(20px) scale(0.98);
  filter: blur(6px);
  z-index: 1;
}
.plan.in {
  opacity: 1; transform: translateY(0) scale(1);
  filter: blur(0);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
}
.plan.featured {
  background: linear-gradient(180deg, rgba(30,28,60,1) 0%, rgba(20,18,50,1) 100%);
  border-color: rgba(109,66,255,0.5);
  box-shadow: 0 -13px 200px 0px #4a25cc, 0 30px 60px -20px rgba(109,66,255,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
  z-index: 2;
}
.plan.featured:hover {
  transform: translateY(-6px);
}

.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: 100px;
  background: linear-gradient(135deg, #6D42FF, #2DD4BF);
  color: #fff; font: 700 11px 'Plus Jakarta Sans', sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(109,66,255,0.5);
  white-space: nowrap;
}
.plan-name {
  font-size: 28px; font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.plan-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 6px;
}
.plan-price .currency { font-size: 28px; color: #fff; font-weight: 700; line-height: 1; }
.plan-price .amount {
  font: 700 44px/1 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 60px;
  transition: opacity 0.2s ease;
}
.plan-price .amount.flipping { opacity: 0; }
.plan-price .period { font-size: 15px; color: rgba(240,242,255,0.6); margin-left: 6px; }
.plan-tagline {
  font-size: 14px; color: rgba(240,242,255,0.6);
  margin-bottom: 28px; line-height: 1.5;
  min-height: 42px;
}
.plan-cta {
  display: block; width: 100%;
  padding: 16px;
  border-radius: 12px;
  font: 600 17px 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; text-align: center;
  margin-bottom: 28px;
  transition: all 0.2s;
}
.plan-cta.primary {
  background: linear-gradient(180deg, #8a68ff, #5430d9);
  color: #fff;
  border: 1px solid #6D42FF;
  box-shadow: 0 8px 24px rgba(109,66,255,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
}
.plan-cta.primary:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(109,66,255,0.65); }
.plan-cta.outline {
  background: linear-gradient(180deg, #1a1c2e, #0a0c18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.plan-cta.outline:hover { background: linear-gradient(180deg, #232540, #14162a); border-color: rgba(255,255,255,0.18); }

.plan-features {
  list-style: none; display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}
.plan-includes-title {
  font-size: 15px; font-weight: 600; color: #fff;
  margin-bottom: 8px;
}
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(240,242,255,0.75);
  line-height: 1.5;
}
.plan-features .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}
.plan.featured .plan-features .dot {
  background: linear-gradient(135deg, #a78eff, #6D42FF);
  box-shadow: 0 0 8px rgba(109,66,255,0.6);
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 64px auto 0; }
  .pricing-fx-top { height: 360px; }
}

/* ─────────────────────────────────────────
   CTA / FINAL
   ───────────────────────────────────────── */
.cta-final {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(109,66,255,0.18), transparent 60%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto;
}

/* ─────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────── */
.footer {
  padding: 64px 24px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand img { height: 28px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(240,242,255,0.55); max-width: 320px; line-height: 1.5; }
.footer-col-title {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(240,242,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  text-decoration: none; color: rgba(240,242,255,0.7);
  font-size: 14px; transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px; color: rgba(240,242,255,0.4);
}

@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ─────────────────────────────────────────
   LOGIN MODAL
   ───────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(7,10,24,0.7);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  width: 100%; max-width: 420px;
  background: rgba(13,17,40,0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: none;
  color: rgba(240,242,255,0.7); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }
.modal-logo {
  display: block; height: 28px; filter: brightness(0) invert(1);
  margin: 0 auto 24px;
}
.modal-title {
  text-align: center;
  font-size: 24px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 6px;
}
.modal-subtitle {
  text-align: center; font-size: 14px;
  color: rgba(240,242,255,0.55); margin-bottom: 28px;
}
.modal-input {
  display: block; width: 100%;
  padding: 13px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #F0F2FF;
  font: 400 14px 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 12px;
  outline: none;
  transition: all 0.2s;
}
.modal-input:focus {
  border-color: #6D42FF;
  box-shadow: 0 0 0 3px rgba(109,66,255,0.18);
  background: rgba(255,255,255,0.06);
}
.modal-input::placeholder { color: rgba(240,242,255,0.35); }
.modal-cta {
  width: 100%; margin-top: 8px;
  padding: 13px;
  background: linear-gradient(135deg, #8a68ff, #6D42FF);
  color: #fff; border: none; border-radius: 10px;
  font: 600 14px 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(109,66,255,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.2s;
}
.modal-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(109,66,255,0.55); }
.modal-divider {
  display: flex; align-items: center; gap: 14px;
  margin: 24px 0; font-size: 11px;
  color: rgba(240,242,255,0.35);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.modal-divider::before, .modal-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08);
}
.modal-oauth {
  display: flex; gap: 8px;
}
.modal-oauth button {
  flex: 1; padding: 11px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #F0F2FF; font: 500 13px 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
}
.modal-oauth button:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); }
.modal-footer {
  text-align: center; margin-top: 24px;
  font-size: 13px; color: rgba(240,242,255,0.55);
}
.modal-footer a {
  color: #c5b4ff; text-decoration: none; font-weight: 600;
}
.modal-footer a:hover { color: #fff; }

/* ─────────────────────────────────────────
   PAGE SHELL — Sub pages (FAQ, Sobre, Contato, Termos)
   ───────────────────────────────────────── */
.page-shell {
  position: relative;
  padding: 160px 0 80px;
  min-height: 100vh;
  overflow: hidden;
}
.page-aurora {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(109,66,255,0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 30%, rgba(45,212,191,0.10), transparent 60%);
  pointer-events: none; z-index: 0;
}
.page-container { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; padding: 0 24px; }
.page-overline {
  display: inline-block; padding: 6px 14px; border-radius: 100px;
  background: rgba(109,66,255,0.12); border: 1px solid rgba(109,66,255,0.25);
  color: #c5b4ff; font: 600 12px 'JetBrains Mono', monospace;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.page-title {
  font-size: clamp(40px, 6vw, 68px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.05;
  background: linear-gradient(180deg, #fff 0%, rgba(240,242,255,0.7) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.page-title .accent {
  background: linear-gradient(135deg, #a78eff 0%, #6D42FF 50%, #2DD4BF 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-lede {
  font-size: 18px; color: rgba(240,242,255,0.72);
  max-width: 640px; line-height: 1.6; margin-bottom: 56px;
}
.page-section { margin-top: 56px; }
.page-section h2 {
  font-size: 26px; font-weight: 700; letter-spacing: -0.01em;
  color: #fff; margin-bottom: 16px;
}
.page-section h3 {
  font-size: 18px; font-weight: 600; color: #fff;
  margin: 24px 0 10px;
}
.page-section p, .page-section li {
  color: rgba(240,242,255,0.78); font-size: 15px; line-height: 1.7;
  margin-bottom: 12px;
}
.page-section ul { padding-left: 22px; }
.page-section a { color: #c5b4ff; text-decoration: none; border-bottom: 1px solid rgba(197,180,255,0.3); }
.page-section a:hover { color: #fff; border-color: #fff; }

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(13, 17, 40, 0.5);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item[open] {
  border-color: rgba(109,66,255,0.35);
  background: rgba(109,66,255,0.06);
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font: 600 16px 'Plus Jakarta Sans', sans-serif;
  color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0;
  width: 22px; height: 22px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c5b4ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-size: contain; background-repeat: no-repeat;
  transition: transform 0.3s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-answer {
  padding: 0 24px 22px; color: rgba(240,242,255,0.78);
  font-size: 15px; line-height: 1.65;
}

/* Contact card */
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 32px;
}
.contact-card {
  padding: 24px; border-radius: 18px;
  background: rgba(13,17,40,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: rgba(109,66,255,0.35);
  transform: translateY(-2px);
}
.contact-card .label {
  font: 600 12px 'JetBrains Mono', monospace;
  color: #c5b4ff; text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.contact-card .value { color: #fff; font-size: 17px; font-weight: 600; }
.contact-card .value a { border: none; }

.plan-price-sub { margin: 6px 0 14px; font-size: 13px; color: rgba(240,242,255,0.72); }
