:root {
  --font: "Inter", "SF Pro Display", system-ui, -apple-system, sans-serif;
  --text: #f5f7ff;
  --text-dim: rgba(245, 247, 255, 0.72);
  --text-muted: rgba(245, 247, 255, 0.55);
  --neon-green: #5effb1;
  --neon-red: #ff6b8a;
  --neon-cyan: #7be1ff;
  --neon-violet: #b79cff;
  --glass-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --glass-shadow-lg: 0 40px 120px -30px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--text);
  background: #05021a;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Backgrounds */
.bg { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.bg-mesh-1 {
  background:
    radial-gradient(at 15% 20%, #1e1b6b 0%, transparent 45%),
    radial-gradient(at 85% 10%, #5b2a9e 0%, transparent 50%),
    radial-gradient(at 75% 85%, #ff4fa3 0%, transparent 45%),
    radial-gradient(at 20% 90%, #0a2e7a 0%, transparent 50%),
    radial-gradient(at 50% 50%, #2a1470 0%, #05021a 70%);
  animation: meshDrift 22s ease-in-out infinite alternate;
}
.bg-mesh-2 {
  background:
    radial-gradient(at 60% 30%, rgba(123, 225, 255, 0.35) 0%, transparent 40%),
    radial-gradient(at 30% 70%, rgba(183, 156, 255, 0.28) 0%, transparent 45%);
  animation: meshDrift 30s ease-in-out infinite alternate-reverse;
  mix-blend-mode: screen;
}
.bg-grain {
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.35 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.layer { position: relative; z-index: 1; }

@keyframes meshDrift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-4%, 3%, 0) scale(1.08); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.text-glow {
  text-shadow: 0 0 40px rgba(183, 156, 255, 0.55), 0 0 12px rgba(255, 255, 255, 0.35);
}

/* Glass primitive */
.glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
}
.glass-strong {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

/* Dock */
.dock-wrap {
  position: sticky;
  top: 20px;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 20px 16px 0;
}
.dock {
  border-radius: 999px;
  padding: 10px 14px 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--glass-shadow-lg);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--text);
}
.brand-orb {
  width: 22px; height: 22px; border-radius: 999px;
  background: conic-gradient(from 0deg, #7be1ff, #b79cff, #ff4fa3, #5effb1, #7be1ff);
  box-shadow: 0 0 12px rgba(123, 225, 255, 0.7);
}
.v-divider { width: 1px; height: 18px; background: rgba(255, 255, 255, 0.18); }
.chip-18 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  color: var(--text-dim); text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

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

/* HERO */
.hero { position: relative; margin-top: 20px; }
.rating-orb {
  position: absolute; top: -30px; right: -10px; z-index: 3;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.35), rgba(255,255,255,0.05) 45%, rgba(123,225,255,0.15) 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow: 0 30px 80px -20px rgba(123,225,255,0.55),
    inset 0 2px 8px rgba(255,255,255,0.4),
    inset 0 -20px 40px rgba(183,156,255,0.35);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text);
}
.floaty { animation: floaty 6s ease-in-out infinite; }
.rating-label { font-size: 10px; letter-spacing: 0.2em; color: var(--text-dim); text-transform: uppercase; font-weight: 600; }
.rating-value { font-size: 44px; font-weight: 200; letter-spacing: -0.04em; line-height: 1; margin-top: 4px; }
.rating-max { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

.hero-card { padding: 56px 56px 48px; box-shadow: var(--glass-shadow-lg); position: relative; overflow: hidden; }
.top-highlight {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}
.pill-green {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: rgba(94, 255, 177, 0.12); border: 1px solid rgba(94, 255, 177, 0.35);
  color: var(--neon-green); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-title {
  font-size: clamp(40px, 6.2vw, 84px);
  font-weight: 300; line-height: 1.02; letter-spacing: -0.035em;
  margin: 24px 0 0; max-width: 900px;
}
.grad-text {
  background: linear-gradient(90deg, #7be1ff, #b79cff 40%, #ff9ec7 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 500;
}
.hero-desc {
  margin-top: 24px; max-width: 720px; font-size: 17px; line-height: 1.65;
  color: var(--text-dim); font-weight: 400;
}
.tags-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.bubble {
  display: inline-flex; align-items: center; padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em; color: var(--text-dim);
}
.tag-h-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.14); margin: 0 6px; }
.overview-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: linear-gradient(180deg, rgba(123,225,255,0.15), rgba(183,156,255,0.12));
  border: 1px solid rgba(255,255,255,0.22);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--text);
}
.overview-tag .dot-cyan { width: 6px; height: 6px; border-radius: 999px; background: var(--neon-cyan); box-shadow: 0 0 8px var(--neon-cyan); }

.cta-row { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.cta-open {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  text-decoration: none; color: #0a0524;
  padding: 14px 24px; font-weight: 700; font-size: 16px;
  letter-spacing: 0.08em; text-transform: uppercase; border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #e9edff 45%, #b9c4ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 20px 50px -12px rgba(123,225,255,0.55),
    0 0 0 1px rgba(255,255,255,0.3) inset,
    0 -6px 18px rgba(183,156,255,0.35) inset,
    0 8px 22px rgba(94,255,177,0.15) inset;
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}
.cta-open:hover { transform: translateY(-2px); }
.cta-big { padding: 20px 32px; font-size: 22px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  color: var(--text); font-family: var(--font); font-size: 14px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
}

/* BONUS */
.bonus-section { margin-top: 60px; position: relative; }
.bonus-card { padding: 56px 48px 32px; overflow: hidden; position: relative; }
.bonus-glow {
  position: absolute; top: -80px; right: -60px; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,79,163,0.35), transparent 65%);
  filter: blur(20px);
}
.bonus-inner {
  display: flex; flex-wrap: wrap; gap: 40px;
  align-items: flex-start; justify-content: space-between; position: relative;
}
.bonus-left { flex: 1 1 460px; min-width: 0; }
.eyebrow { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; }
.bonus-amount {
  font-size: clamp(72px, 12vw, 168px); font-weight: 100;
  letter-spacing: -0.06em; line-height: 0.9; margin-top: 12px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bonus-features { margin: 32px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.bonus-features li { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 500; color: var(--text); }
.bonus-features .icon {
  width: 28px; height: 28px; border-radius: 999px;
  background: rgba(94,255,177,0.14); border: 1px solid rgba(94,255,177,0.4);
  display: grid; place-items: center;
  box-shadow: 0 0 16px rgba(94,255,177,0.35); flex-shrink: 0; color: var(--neon-green);
}
.bonus-right { flex: 0 0 auto; display: flex; flex-direction: column; gap: 16px; align-items: stretch; min-width: 260px; }
.logo-box {
  padding: 16px; border-radius: 20px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
}
.logo-box img { height: 40px; width: auto; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.9; }

.payments-rail {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; flex-wrap: wrap; gap: 32px; justify-content: space-between;
}
.payments { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.payments span {
  font-size: 14px; font-weight: 600; letter-spacing: 0.06em; color: var(--text); opacity: 0.9;
}

/* PROS/CONS */
.proscons { margin-top: 80px; position: relative; }
.proscons-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: 0; align-items: start; position: relative; }
.pros-card {
  padding: 36px 36px 32px; z-index: 2; transform: translateY(-8px);
  grid-column: 1 / 2; grid-row: 1;
  box-shadow: var(--glass-shadow-lg), 0 0 60px -20px rgba(94,255,177,0.35);
}
.cons-card {
  padding: 36px 32px; z-index: 1; transform: translate(-40px, 40px);
  grid-column: 2 / 3; grid-row: 1;
  box-shadow: var(--glass-shadow), 0 0 60px -30px rgba(255,107,138,0.4);
}
.row-label { display: flex; align-items: center; gap: 10px; }
.dot { width: 8px; height: 8px; border-radius: 999px; }
.dot-green { background: var(--neon-green); box-shadow: 0 0 12px var(--neon-green); }
.dot-red { background: var(--neon-red); box-shadow: 0 0 12px var(--neon-red); }
.label-green, .label-red, .label-violet, .label-cyan {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
}
.label-green { color: var(--neon-green); }
.label-red { color: var(--neon-red); }
.label-violet { color: var(--neon-violet); }
.label-cyan { color: var(--neon-cyan); }
.col-title { font-size: 32px; font-weight: 300; letter-spacing: -0.02em; margin: 12px 0 24px; color: var(--text); }
.col-title-sm { font-size: 26px; }
.pros-list, .cons-list { padding: 0; list-style: none; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.pros-list li, .cons-list li {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: 14px;
  font-size: 15px; color: var(--text); font-weight: 500;
}
.pros-list li { background: rgba(94,255,177,0.06); border: 1px solid rgba(94,255,177,0.18); }
.cons-list li { background: rgba(255,107,138,0.06); border: 1px solid rgba(255,107,138,0.2); font-size: 14px; }
.pros-list .icon, .cons-list .icon {
  width: 26px; height: 26px; border-radius: 999px;
  display: grid; place-items: center; flex-shrink: 0;
}
.pros-list .icon {
  background: rgba(94,255,177,0.14); border: 1px solid rgba(94,255,177,0.5);
  box-shadow: 0 0 14px rgba(94,255,177,0.6); color: var(--neon-green);
}
.cons-list .icon {
  background: rgba(255,107,138,0.14); border: 1px solid rgba(255,107,138,0.5);
  box-shadow: 0 0 14px rgba(255,107,138,0.55); color: var(--neon-red);
}

/* STEPS */
.steps { margin-top: 100px; }
.steps-head { text-align: center; margin-bottom: 40px; }
.steps-title { font-size: clamp(36px, 5vw, 60px); font-weight: 300; letter-spacing: -0.03em; margin: 12px 0 0; color: var(--text); }
.steps-card { padding: 56px 40px; position: relative; overflow: hidden; }
.steps-path { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.9; }
.steps-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step.step-1 { margin-top: 0; }
.step.step-2 { margin-top: 60px; }
.step.step-3 { margin-top: 20px; }
.step-sphere {
  width: 84px; height: 84px; border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.5), rgba(255,255,255,0.05) 55%, rgba(183,156,255,0.25) 100%);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 20px 50px -10px rgba(183,156,255,0.6), inset 0 2px 6px rgba(255,255,255,0.5);
  display: grid; place-items: center; margin-bottom: 20px;
}
.step-1 .step-sphere { animation: floaty 5s ease-in-out infinite; }
.step-2 .step-sphere { animation: floaty 6s ease-in-out infinite; }
.step-3 .step-sphere { animation: floaty 7s ease-in-out infinite; }
.step-sphere span { font-size: 36px; font-weight: 300; color: var(--text); letter-spacing: -0.03em; }
.step h4 { font-size: 20px; font-weight: 500; color: var(--text); margin: 0 0 10px; letter-spacing: -0.01em; }
.step p { font-size: 14px; line-height: 1.6; color: var(--text-dim); max-width: 260px; margin: 0; }

/* COMPARE */
.compare { margin-top: 100px; }
.compare-card { padding: 48px 40px; }
.compare-head { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: flex-end; }
.compare-title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 300; letter-spacing: -0.02em; margin: 10px 0 0; color: var(--text); }
.analise-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: 999px;
  background: rgba(123,225,255,0.12); border: 1px solid rgba(123,225,255,0.4);
  color: var(--neon-cyan); text-decoration: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.filter-btn {
  padding: 10px 20px; border-radius: 999px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  color: var(--text); font-size: 13px; font-weight: 500; letter-spacing: 0.04em;
  cursor: pointer; font-family: var(--font);
}
.filter-btn.active {
  background: linear-gradient(180deg, rgba(183,156,255,0.3), rgba(123,225,255,0.2));
  border: 1px solid rgba(183,156,255,0.5);
}
.feature-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.feature-card {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 20px; border-radius: 18px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
}
.feature-card .icon-wrap {
  width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; flex-shrink: 0;
}
.feature-card span.label { font-size: 14px; font-weight: 500; color: var(--text); letter-spacing: 0.02em; }

/* FINAL + LEGAL + TICKER */
.final-cta { margin-top: 80px; text-align: center; }
.legal {
  margin: 60px auto 0; text-align: center; font-size: 12px; line-height: 1.7;
  color: rgba(245,247,255,0.4); max-width: 720px;
}
.ticker {
  margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  overflow: hidden; white-space: nowrap; padding: 14px 0;
  font-size: 11px; letter-spacing: 0.24em; color: rgba(245,247,255,0.4); text-transform: uppercase;
}
.ticker-inner { display: inline-block; padding-left: 100%; animation: ticker 50s linear infinite; }
.ticker-inner span { margin-right: 60px; }

@media (max-width: 820px) {
  .proscons-grid { grid-template-columns: 1fr; }
  .pros-card, .cons-card { transform: none; grid-column: 1 / -1; }
  .cons-card { grid-row: 2; }
  .steps-grid { grid-template-columns: 1fr; }
  .step.step-2, .step.step-3 { margin-top: 0; }
  .feature-cards { grid-template-columns: 1fr; }
  .hero-card { padding: 40px 24px; }
  .bonus-card { padding: 40px 24px 24px; }
  .rating-orb { width: 110px; height: 110px; top: -20px; right: 0; }
  .rating-value { font-size: 34px; }
}
