/* =========================================================
   PULSAR CHEATS DESIGN SYSTEM v3
   Reaper theme shared by all pages.
   Dark purple theme with glass-morphism, animations, and effects.
   ========================================================= */

/* ----- TOKENS ----- */
:root {
  --bg: #08070d;
  --bg2: #0c0a15;
  --surface: rgba(16, 14, 23, 0.88);
  --surface2: rgba(20, 17, 30, 0.85);
  --surface3: rgba(8, 7, 13, 0.7);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(192, 132, 252, 0.32);
  --purple: #a855f7;
  --purple2: #c084fc;
  --purple-dim: rgba(168, 85, 247, 0.14);
  --purple-glow: rgba(168, 85, 247, 0.28);
  --brand: #a855f7;
  --brand2: #c084fc;
  --brand-dim: rgba(168, 85, 247, 0.13);
  --cyan: #22d3ee;
  --cyan-dim: rgba(34, 211, 238, 0.12);
  --green: #34d399;
  --green-bright: #22c55e;
  --red: #ef4444;
  --yellow: #f59e0b;
  --text: #f8f7fb;
  --muted: #938da1;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; color-scheme: dark; }

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 5%, rgba(168, 85, 247, 0.11), transparent 32rem),
    radial-gradient(circle at 85% 60%, rgba(34, 211, 238, 0.06), transparent 28rem),
    radial-gradient(circle at 15% 85%, rgba(168, 85, 247, 0.05), transparent 25rem),
    linear-gradient(180deg, #09080e, #08070b);
  color: var(--text);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.025) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
}

a { color: inherit; }

::selection {
  background: rgba(168, 85, 247, 0.32);
  color: #fff;
}

:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.78);
  outline-offset: 3px;
}

/* ----- UTILITY ----- */
.site-shell { position: relative; z-index: 1; min-height: 100vh; }
.wrap { width: min(1180px, calc(100% - 2rem)); margin: 0 auto; position: relative; z-index: 1; }

/* ----- NAVIGATION ----- */
.site-nav, .navbar, .nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 7, 13, 0.86);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.28));
}

.brand strong {
  display: block;
  font: 800 1.04rem/1 'Syne', sans-serif;
}

.brand small, .brand span span {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--purple2);
}

.nav-links a[aria-current="page"]::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--purple2));
}

.actions, .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

/* ----- BUTTONS ----- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.68rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 800;
  font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition), background var(--transition);
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong);
}

.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(0); }

.btn-purple, .btn.gold, .btn-gold {
  border-color: transparent;
  box-shadow: 0 12px 34px rgba(126, 34, 206, 0.22);
}

.btn-purple {
  background: linear-gradient(135deg, #9333ea, #7e22ce);
}

.btn-purple:hover {
  box-shadow: 0 16px 42px rgba(126, 34, 206, 0.35);
}

.btn.gold, .btn-gold {
  border-color: rgba(192, 132, 252, 0.56);
  background: linear-gradient(135deg, #a855f7, #c084fc);
  color: #fff;
  box-shadow: 0 14px 36px rgba(168, 85, 247, 0.18);
}

.btn.gold:hover, .btn-gold:hover {
  box-shadow: 0 18px 46px rgba(168, 85, 247, 0.3);
}

.btn-sm { min-height: 36px; padding: 0.5rem 0.9rem; font-size: 0.78rem; }
.btn-lg { min-height: 52px; padding: 0.85rem 1.5rem; font-size: 1rem; }

/* ----- HERO ----- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 7rem) 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -4%;
  width: min(560px, 52vw);
  aspect-ratio: 200 / 220;
  transform: translateY(-46%);
  background: url('assets/pulsar-reaper-bg.svg') no-repeat center / contain;
  opacity: 0.13;
  filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.6));
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.35), rgba(34, 211, 238, 0.2), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.36rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple-dim), rgba(34, 211, 238, 0.06));
  color: var(--purple2);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green-bright);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.72);
}

h1, h2, h3, h4 { font-family: 'Syne', sans-serif; letter-spacing: -0.02em; }

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 .accent, h1 span.accent {
  color: var(--purple2);
  text-shadow: 0 0 28px rgba(168, 85, 247, 0.25);
}

.lead {
  max-width: 700px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.72;
}

.lead strong { color: var(--purple2); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 0.78rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.trust-pill strong { color: var(--text); }
.trust-pill i { color: var(--purple2); }

.compat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.3rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.1);
  color: #75e8b9;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.compat-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

/* ----- HERO PANEL ----- */
.hero-panel, .mini-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(20, 17, 30, 0.93), rgba(8, 7, 13, 0.91)), var(--surface);
  box-shadow: var(--shadow);
}

.hero-panel::before, .mini-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.06), transparent),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 38px;
}

.panel-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.panel-title {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
}

.panel-subtitle {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.8rem;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #86efac;
  font-size: 0.8rem;
  font-weight: 800;
}

.status-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-bright);
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.7);
}

.panel-body {
  position: relative;
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

/* ----- SECTIONS ----- */
.section {
  padding: 4.5rem 0;
}

.section-soft {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.012);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--purple2);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.06;
}

.section-title span { color: var(--purple2); }

.section-sub {
  margin-top: 0.7rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ----- GRIDS ----- */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ----- CARDS ----- */
.card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(168, 85, 247, 0.025));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.06), transparent 50%);
  opacity: 0.6;
}

.card > * { position: relative; }

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 132, 252, 0.48);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.card p, .card li {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* ----- FEATURE CARDS (platinum style) ----- */
.features-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  min-height: 180px;
  padding: 1.5rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(168, 85, 247, 0.025));
  transition: transform var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 132, 252, 0.58);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 11px;
  background: var(--purple-dim);
  color: var(--purple2);
  font-size: 1.08rem;
}

.feature-card h3 {
  font: 700 1.05rem 'Syne', sans-serif;
  margin: 0 0 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ----- STEPS ----- */
.steps {
  counter-reset: steps;
  display: grid;
  gap: 0.85rem;
}

.step {
  counter-increment: steps;
  position: relative;
  padding: 1rem 1rem 1rem 3.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface2);
  transition: border-color var(--transition);
}

.step:hover { border-color: var(--border-strong); }

.step::before {
  content: counter(steps);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 1.55rem;
  height: 1.55rem;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--purple), #7e22ce);
  color: #fff;
  font-weight: 900;
  font-size: 0.78rem;
}

.step strong {
  display: block;
  margin-bottom: 0.2rem;
}

.step span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ----- FAQ ----- */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  padding: 1.05rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: var(--border-strong); }

.faq-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ----- PRICING ----- */
.pricing-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 3rem;
  align-items: center;
}

.price-card {
  position: relative;
  padding: 1.7rem;
  border: 2px solid rgba(168, 85, 247, 0.55);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(168, 85, 247, 0.09), rgba(16, 14, 23, 0.95) 38%);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.price-card.featured {
  border-color: rgba(168, 85, 247, 0.5);
}

.price-card.featured::after {
  content: 'mais escolhido';
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.best, .offer-badge {
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-badge {
  position: static;
  display: inline-flex;
  width: fit-content;
  border: 1px solid var(--border-strong);
  background: var(--purple-dim);
  color: var(--purple2);
  margin-bottom: 0.75rem;
}

.price-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.price-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--purple-dim);
  color: var(--purple2);
}

.price-name {
  font: 800 1.1rem 'Syne', sans-serif;
}

.price-line, .price {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  margin: 1rem 0;
  font-family: 'Syne', sans-serif;
}

.price-line strong, .price strong {
  font-size: 2.3rem;
  line-height: 1;
  color: var(--purple2);
}

.price-line span, .price span {
  padding-bottom: 0.2rem;
  color: var(--muted);
  font-weight: 800;
}

.price-value {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.price-value strong {
  color: var(--purple2);
  font: 800 1.5rem 'Syne', sans-serif;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 1.2rem;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 0.5rem;
  color: #d5d0dc;
  font-size: 0.84rem;
  line-height: 1.55;
}

.check-list li::before {
  content: '✓';
  color: var(--purple2);
  font-weight: 900;
}

.check-list i { width: 20px; color: var(--purple2); }

.price-card .btn { width: 100%; }

/* ----- OFFER CARDS ----- */
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(34, 211, 238, 0.05)), var(--surface);
}

.offer-card.featured {
  border-color: rgba(168, 85, 247, 0.48);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.26);
}

.offer-card h2, .offer-card h3 {
  margin: 0;
  font-family: 'Syne', sans-serif;
}

.offer-card .btn { margin-top: auto; }

/* ----- DEMO / PREVIEW ----- */
.demo-shell {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
  padding: 3px;
  border-radius: 22px;
  background: linear-gradient(120deg, var(--purple), rgba(168, 85, 247, 0.18) 40%, var(--purple2));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 48px rgba(168, 85, 247, 0.12);
}

.demo-scene {
  position: relative;
  aspect-ratio: 16/9;
  min-height: 430px;
  overflow: hidden;
  border-radius: 19px;
  background: linear-gradient(to bottom, rgba(9, 8, 14, 0.1), rgba(8, 7, 13, 0.9));
}

.demo-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-caption {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.74rem;
  text-align: center;
}

/* ----- CONVERSION STRIP ----- */
.conversion-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.35rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.14), rgba(34, 211, 238, 0.05)), var(--surface);
}

.conversion-strip h2 {
  margin: 0;
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
}

.conversion-strip p { margin-top: 0.25rem; color: var(--muted); }

/* ----- ASSURANCE GRID ----- */
.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.assurance {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: border-color var(--transition);
}

.assurance:hover { border-color: var(--border-strong); }

.assurance i {
  color: var(--purple2);
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.assurance strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: 'Syne', sans-serif;
}

.assurance span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ----- TESTIMONIALS ----- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.t-card {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  transition: transform var(--transition), border-color var(--transition);
}

.t-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.t-stars {
  color: var(--brand2);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
}

.t-text {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
  margin-bottom: 1.25rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.t-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  color: #fff;
  font-weight: 900;
}

.t-name { font-size: 0.9rem; font-weight: 800; }

/* ----- FINAL NOTE ----- */
.final-note {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

/* ----- FORMS (AUTH) ----- */
.form-box {
  width: 100%;
  max-width: 400px;
}

.form-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.8rem;
  background: var(--purple-dim);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--purple2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.form-title {
  font: 800 1.9rem/1.1 'Syne', sans-serif;
  margin-bottom: 0.4rem;
}

.form-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #fca5a5;
}

.alert-success {
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: #86efac;
}

.field { margin-bottom: 1.15rem; }

.field label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.45rem;
}

.field label i { color: var(--purple2); font-size: 0.7rem; }

.input-wrap { position: relative; display: block; }

.input-wrap i.input-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.85rem;
  pointer-events: none;
  transition: color var(--transition);
}

.auth-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  padding: 0.78rem 1rem 0.78rem 2.7rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.auth-input::placeholder { color: rgba(147, 141, 161, 0.45); }

.auth-input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-dim);
}

.input-wrap:focus-within i.input-icon { color: var(--purple2); }

.submit-btn {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, var(--purple), #7e22ce);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: all var(--transition);
  box-shadow: 0 12px 34px rgba(126, 34, 206, 0.22);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(126, 34, 206, 0.35);
}

.submit-btn:active { transform: translateY(0); }

.form-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.form-divider span {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
}

.form-switch {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

.form-switch a {
  color: var(--purple2);
  text-decoration: none;
  font-weight: 600;
}

.form-switch a:hover { opacity: 0.78; }

/* Strength bar */
.strength-bar {
  display: flex;
  gap: 4px;
  margin-top: 0.5rem;
}

.strength-bar span {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  transition: background 0.3s;
}

.strength-bar.s1 span:nth-child(1) { background: var(--red); }
.strength-bar.s2 span:nth-child(1), .strength-bar.s2 span:nth-child(2) { background: var(--yellow); }
.strength-bar.s3 span:nth-child(1), .strength-bar.s3 span:nth-child(2), .strength-bar.s3 span:nth-child(3) { background: var(--purple2); }
.strength-bar.s4 span { background: var(--green); }

.strength-label { font-size: 0.7rem; color: var(--muted); margin-top: 0.3rem; }

/* Auth split layout */
.auth-layout {
  display: flex;
  min-height: 100vh;
}

.auth-left {
  width: 40%;
  min-height: 100vh;
  background: linear-gradient(160deg, #0d0a18 0%, #08070d 60%, #0a0915 100%);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 3rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.auth-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.auth-left::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  top: -60px;
  right: -60px;
  pointer-events: none;
}

.auth-left-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 300px;
}

.auth-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.35));
  display: block;
  animation: authFloat 4s ease-in-out infinite;
}

@keyframes authFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.auth-brand {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #d8b4fe, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.auth-tagline {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.auth-features {
  list-style: none;
  text-align: left;
  width: 100%;
}

.auth-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}

.auth-features li:last-child { border-bottom: none; }

.auth-fi {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--purple-dim);
  color: var(--purple2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.auth-back {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}

.auth-back a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}

.auth-back a:hover { color: var(--purple2); }

.auth-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
  overflow-y: auto;
}

/* Register steps on auth left */
.register-steps { width: 100%; text-align: left; }

.register-steps-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.register-steps .step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  border: none;
  background: transparent;
  padding: 0.55rem 0;
}

.register-steps .step:last-child { border-bottom: none; }

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--purple-dim);
  color: var(--purple2);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text { font-size: 0.825rem; color: var(--muted); }

/* ----- ARTICLE (terms/privacy) ----- */
.article {
  max-width: 820px;
  padding: 2rem 0 4rem;
}

.article h2 {
  margin-top: 2rem;
  font-size: 1.6rem;
}

.article p, .article li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-top: 0.6rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
  font-size: 0.82rem;
}

.article a {
  color: var(--purple2);
  font-weight: 800;
}

.notice {
  padding: 1rem 1.2rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--purple-dim), rgba(34, 211, 238, 0.05));
  color: rgba(248, 247, 251, 0.88);
}

/* ----- COMPATIBILITY ----- */
.compat-sections, .sections {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.compat-section {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.compat-section:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.compat-section.ok { border-top: 3px solid var(--green); }
.compat-section.bad { border-top: 3px solid var(--red); }
.compat-section.warning { border-top: 3px solid var(--yellow); }

.section-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ok .section-icon-box { background: rgba(52, 211, 153, 0.12); color: var(--green); }
.bad .section-icon-box { background: rgba(239, 68, 68, 0.12); color: var(--red); }
.warning .section-icon-box { background: rgba(245, 158, 11, 0.1); color: var(--yellow); }

.compat-section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}

.compat-section-head:hover { background: rgba(255, 255, 255, 0.02); }

.compat-section-meta { flex: 1; }

.compat-section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.compat-section-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

.compat-section-badge {
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ok .compat-section-badge { background: rgba(52, 211, 153, 0.1); border: 1px solid rgba(52, 211, 153, 0.2); color: #86efac; }
.bad .compat-section-badge { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); color: #fca5a5; }
.warning .compat-section-badge { background: rgba(245, 158, 11, 0.1); border: 1px solid rgba(245, 158, 11, 0.2); color: #fcd34d; }

.compat-chevron {
  color: var(--muted);
  font-size: 0.8rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.compat-section.open .compat-chevron { transform: rotate(180deg); }

.compat-section-body {
  padding: 1.25rem 1.6rem;
}

.compat-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
}

.compat-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--surface2);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}

.compat-item:hover { border-color: var(--border-strong); }

.compat-item-icon { flex-shrink: 0; font-size: 0.85rem; margin-top: 2px; }
.ok .compat-item-icon { color: var(--green); }
.bad .compat-item-icon { color: var(--red); }
.warning .compat-item-icon { color: var(--yellow); }

.compat-item-content { flex: 1; }

.compat-item-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.compat-item-note {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.compat-item-note strong { color: var(--text); }

.build-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.build-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.65rem;
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--purple-dim);
  border: 1px solid var(--border-strong);
  color: var(--purple2);
}

.check-box {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.4rem;
  margin-top: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.check-box-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--purple-dim);
  color: var(--purple2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.check-box-title { font-weight: 700; font-size: 0.85rem; margin-bottom: 0.35rem; }

.check-path {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.path-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.2rem 0.6rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.78rem;
}

.path-arrow { font-size: 0.65rem; color: var(--muted); }

/* Page header */
.page-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.95rem;
  background: var(--purple-dim);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--purple2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}

.page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.page-sub {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ----- FOOTER ----- */
.site-footer, .footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--muted);
  background: rgba(4, 7, 12, 0.46);
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.85rem; }

.footer-links {
  display: flex;
  gap: 1.2rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--purple2); }

/* ----- DISCORD FLOAT ----- */
.discord-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #5865F2;
  color: #fff;
  font-size: 1.35rem;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(88, 101, 242, 0.35);
  transition: transform var(--transition);
}

.discord-float:hover { transform: translateY(-3px) scale(1.08); }

/* ----- STICKY BUY ----- */
.sticky-buy {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 88;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(560px, calc(100% - 2rem));
  padding: 0.75rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(8, 7, 13, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
}

.sticky-buy span {
  flex: 1;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.sticky-buy strong { display: block; color: var(--text); }

/* ----- CONSENT BANNER ----- */
.mdh-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: 560px;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #100e17;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
}

.mdh-consent strong,
.mdh-consent span { display: block; }

.mdh-consent span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.mdh-consent button {
  min-width: 76px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.7rem;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.mdh-consent button[data-consent="grant"] {
  background: linear-gradient(135deg, var(--purple), #7e22ce);
  color: #fff;
}

/* ----- ANIMATIONS ----- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade { animation: fadeIn 0.5s ease-out both; }
.fade-1 { animation-delay: 0.06s; }
.fade-2 { animation-delay: 0.12s; }
.fade-3 { animation-delay: 0.18s; }
.fade-4 { animation-delay: 0.24s; }

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.32); }
  60% { box-shadow: 0 0 0 12px rgba(168, 85, 247, 0); }
}

.pulse-soft { animation: pulse-glow 3s ease-in-out infinite; }

@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.float { animation: float-slow 5s ease-in-out infinite; }

/* ----- AMBIENT PARTICLES ----- */
#premium-particles {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.premium-particle {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  background: var(--purple2);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
  animation: premium-drift var(--drift-dur, 18s) ease-in-out infinite;
}

@keyframes premium-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.12;
  }
  50% {
    transform: translate3d(var(--drift-x, 40px), var(--drift-y, -35px), 0) scale(1.4);
    opacity: 0.38;
  }
}

.premium-scanline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), rgba(34, 211, 238, 0.28), transparent);
  z-index: 60;
  pointer-events: none;
  opacity: 0.14;
  animation: premium-scanline 9s linear infinite;
}

@keyframes premium-scanline {
  0% { transform: translateY(-20vh); }
  100% { transform: translateY(120vh); }
}

.premium-orbs { position: fixed; inset: 0; z-index: -3; pointer-events: none; }

.premium-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbPulse 8s ease-in-out infinite alternate;
}

.premium-orb:nth-child(1) {
  width: 500px; height: 500px;
  top: -150px; left: -100px;
  background: rgba(168, 85, 247, 0.08);
}

.premium-orb:nth-child(2) {
  width: 400px; height: 400px;
  bottom: -100px; right: -80px;
  background: rgba(34, 211, 238, 0.06);
  animation-delay: -4s;
}

.premium-orb:nth-child(3) {
  width: 350px; height: 350px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(168, 85, 247, 0.05);
  animation-delay: -2s;
}

@keyframes orbPulse {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.3); opacity: 1; }
}

/* ----- PROGRESS ----- */
.progress-track {
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.26);
}

/* ----- PLATINUM MINI PREVIEW ----- */
.platinum-mini {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.35rem;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  background:
    linear-gradient(to bottom, rgba(8, 7, 13, 0.05), rgba(8, 7, 13, 0.94)),
    radial-gradient(circle at 68% 35%, rgba(34, 211, 238, 0.2), transparent 20%),
    linear-gradient(145deg, #26343b 0 34%, #665c4d 34% 37%, #252d32 37% 64%, #17131f 64%);
  color: var(--text);
}

.platinum-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 35%, rgba(8, 7, 13, 0.94));
}

.platinum-mini-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platinum-mini-copy {
  position: relative;
  z-index: 3;
}

.platinum-mini-copy span {
  color: var(--purple2);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.platinum-mini-copy h3 {
  margin-top: 0.35rem;
  color: var(--text);
  font: 800 1.5rem 'Syne', sans-serif;
}

.platinum-mini-copy p {
  margin-top: 0.35rem;
  color: #aaa2b5;
  font-size: 0.82rem;
}

/* Demo showcase grid */
.demo-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 1.5rem;
  align-items: center;
}

.preview-demo-card {
  overflow: hidden;
  padding: 0.58rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.preview-demo-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ===== NEW PREMIUM EFFECTS v3 ===== */

/* ----- CURSOR GLOW TRAIL ----- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 300px; height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle, rgba(168,85,247,0.18) 0%, transparent 60%);
  transition: opacity 0.4s;
}

/* ----- GLITCH TEXT EFFECT ----- */
.glitch-text {
  position: relative;
  display: inline-block;
}

.glitch-text:hover {
  animation: glitchShift 0.3s ease-in-out;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.2s;
}

.glitch-text::before {
  color: #0ff;
  z-index: -1;
}

.glitch-text::after {
  color: #f0f;
  z-index: -2;
}

.glitch-text:hover::before {
  opacity: 0.6;
  transform: translate(-2px, 1px);
  animation: glitchSkew 0.3s steps(2) infinite;
}

.glitch-text:hover::after {
  opacity: 0.4;
  transform: translate(2px, -1px);
  animation: glitchSkew 0.3s steps(2) infinite reverse;
}

@keyframes glitchShift {
  0%, 100% { transform: none; }
  20% { transform: translate(-1px, 1px); }
  40% { transform: translate(1px, -1px); }
  60% { transform: translate(-1px, 0); }
  80% { transform: translate(1px, 1px); }
}

@keyframes glitchSkew {
  0%, 100% { transform: none; }
  50% { transform: skew(0.5deg); }
}

/* ----- SHIMMER LOADING SKELETON ----- */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, rgba(168,85,247,0.12) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ----- GLASS TILT CARD ----- */
.glass-tilt {
  transform-style: preserve-3d;
  perspective: 1000px;
}

.glass-tilt:hover {
  transform: perspective(1000px) rotateY(calc(var(--mx) / 2)) rotateX(calc(var(--my) / -2));
}

/* ----- STAGGER REVEAL ---- */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-reveal > .visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- GRADIENT BORDER GLOW ----- */
.gradient-border {
  position: relative;
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--purple), var(--cyan), var(--brand));
  opacity: 0;
  transition: opacity 0.4s;
}

.gradient-border:hover::before {
  opacity: 1;
}

/* ----- PULSE RING ----- */
@keyframes pulse-ring {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(168,85,247,0.6); }
  70% { transform: scale(1.02); box-shadow: 0 0 0 16px rgba(168,85,247,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(168,85,247,0); }
}

.pulse-ring {
  animation: pulse-ring 2.2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ----- TYPEWRITER CURSOR ----- */
.typewriter::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--purple2);
}

@keyframes blink {
  50% { opacity: 0; }
}

/* ----- FLOATING BADGE ----- */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.float-badge {
  animation: floatBadge 3s ease-in-out infinite;
}

/* ----- HOVER REVEAL GLOW ----- */
.glow-reveal {
  position: relative;
  overflow: hidden;
}

.glow-reveal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(168,85,247,0.15), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.glow-reveal:hover::after {
  opacity: 1;
}

/* ----- SCROLL PROGRESS BAR ----- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple2), var(--cyan));
  z-index: 200;
  transition: width 0.1s linear;
}

/* ----- CUSTOM SCROLLBAR ----- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(168,85,247,0.55); }

/* Firefox */
* { scrollbar-width: thin; scrollbar-color: rgba(168,85,247,0.3) var(--bg); }

/* ----- DIVIDER ORNAMENT ----- */
.divider-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  margin: 1.5rem 0;
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.divider-ornament i {
  color: var(--purple2);
  font-size: 0.9rem;
}

/* ----- SECTION DIVIDER GRADIENT ----- */
.section-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
  margin: 0;
}

/* ----- DUAL VERSION COMPARISON ----- */
.dual-version-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: start;
  max-width: 1050px;
  margin: 0 auto;
}

.dual-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(168, 85, 247, 0.025));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.dual-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 132, 252, 0.58);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.dual-card.internal {
  border-top: 3px solid var(--purple);
}

.dual-card.external {
  border-top: 3px solid var(--green);
}

.dual-card h3 {
  font: 800 1.4rem 'Syne', sans-serif;
  margin: 0.6rem 0 0.3rem;
}

.dual-sub {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.dual-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: var(--purple-dim);
  color: var(--purple2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dual-tag.external-tag {
  background: rgba(52, 211, 153, 0.12);
  color: #75e8b9;
}

.dual-tag i {
  font-size: 0.72rem;
}

.dual-preview-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.dual-specs {
  display: grid;
  gap: 0.8rem;
}

.dual-spec {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
}

.dual-spec.plus {
  border-left: 3px solid var(--green);
}

.dual-spec.minus {
  border-left: 3px solid var(--yellow);
}

.dual-spec i {
  font-size: 0.78rem;
  margin-right: 0.35rem;
}

.dual-spec.plus i { color: var(--green); }
.dual-spec.minus i { color: var(--yellow); }

.dual-spec strong {
  display: block;
  margin-bottom: 0.18rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
}

.dual-spec span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.dual-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.dual-or {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), #7e22ce);
  color: #fff;
  font: 800 1.3rem 'Syne', sans-serif;
  box-shadow: 0 8px 28px rgba(126, 34, 206, 0.32);
}

.dual-footer-note {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.dual-footer-note i {
  color: var(--purple2);
  margin-right: 0.35rem;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 980px) {
  h1 { font-size: clamp(2rem, 8vw, 3.2rem); }

  .hero-grid,
  .grid, .grid.two, .grid.four,
  .features-grid, .feature-grid,
  .pricing-wrap,
  .demo-showcase {
    grid-template-columns: 1fr;
  }

  .assurance-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-inner { flex-wrap: wrap; }

  .nav-links {
    order: 3;
    display: flex;
    width: 100%;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 0 0.75rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a, .nav-links li { flex: 0 0 auto; }

  .auth-left { width: 100%; min-height: auto; border-right: none; border-bottom: 1px solid var(--border); }

  .auth-layout { flex-direction: column; }
  .demo-scene { min-height: 370px; }
  .price-card { max-width: 500px; }
  .dual-version-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .dual-divider { padding: 0; }
  .dual-or { width: 40px; height: 40px; font-size: 1.1rem; }
}

@media (max-width: 640px) {
  .wrap { width: min(100% - 1rem, 1180px); }
  .nav-inner { min-height: auto; padding: 0.7rem 0; }
  .actions .btn:not(.gold), .nav-actions .btn:first-child { display: none; }

  .hero { padding: 3.5rem 0 2.5rem; }
  h1 { font-size: clamp(1.8rem, 10vw, 2.8rem); }
  h2 { font-size: 1.8rem; }

  .features-grid, .feature-grid,
  .assurance-grid,
  .testimonials-grid { grid-template-columns: 1fr; }

  .hero-actions .btn,
  .conversion-strip .btn,
  .sticky-buy .btn { width: 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; row-gap: 0.75rem; }
  .discord-float { display: none; }
  .sticky-buy { left: 0.5rem; right: 0.5rem; bottom: 0.5rem; width: auto; transform: none; }

  .demo-scene { min-height: 300px; aspect-ratio: 4/5; }
  .mdh-consent { flex-direction: column; align-items: stretch; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
