﻿/* ============================================================
   ASURIX — Main Stylesheet
   ============================================================ */

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-900:   #06080f;
  --bg-800:   #090c15;
  --bg-700:   #0d1120;
  --bg-600:   #121828;
  --bg-500:   #18202e;
  --bg-400:   #1e2a3a;
  --accent:        #00e5a0;
  --accent-hover:  #00ffb3;
  --accent-dim:    rgba(0, 229, 160, 0.12);
  --accent-border: rgba(0, 229, 160, 0.30);
  --accent-glow:   0 0 30px rgba(0, 229, 160, 0.25);
  --purple:        #7c6af7;
  --purple-dim:    rgba(124, 106, 247, 0.12);
  --purple-border: rgba(124, 106, 247, 0.30);
  --red:           #f87171;
  --yellow:        #fbbf24;
  --text-100: #f1f5f9;
  --text-200: #cbd5e1;
  --text-300: #94a3b8;
  --text-400: #64748b;
  --text-500: #475569;
  --border:    rgba(255,255,255,0.07);
  --border-md: rgba(255,255,255,0.13);
  --border-lg: rgba(255,255,255,0.20);
  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-full: 9999px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.35);
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.65);
  --ease: cubic-bezier(0.4,0,0.2,1);
  --t: all 0.25s var(--ease);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-900);
  color: var(--text-200);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

.gradient-text {
  background: linear-gradient(120deg, var(--accent) 0%, #00bcd4 50%, #7c6af7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-300);
  max-width: 540px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ============================================================
   LAYOUT
   ============================================================ */

.container { max-width: 1360px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.section { padding: 96px 0; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--t);
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--accent);
  color: #000;
  border-color: var(--accent);
  box-shadow: var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 0 40px rgba(0,229,160,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-100);
  border-color: var(--border-md);
}
.btn-outline:hover {
  background: var(--bg-500);
  border-color: var(--border-lg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-300);
  border-color: transparent;
  padding: 10px 16px;
}
.btn-ghost:hover { color: var(--text-100); background: var(--bg-600); }

.btn-purple {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  box-shadow: 0 0 28px rgba(124,106,247,0.3);
}
.btn-purple:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 40px rgba(124,106,247,0.45);
  transform: translateY(-2px);
}

.btn-danger { background: var(--red); color: #fff; border-color: var(--red); }
.btn-danger:hover { filter: brightness(1.1); transform: translateY(-1px); }

.btn-lg  { padding: 15px 38px; font-size: 15px; border-radius: var(--r-lg); }
.btn-md  { padding: 12px 28px; font-size: 14px; border-radius: var(--r-md); font-weight: 600; }
.btn-sm  { padding: 7px 14px;  font-size: 13px; border-radius: var(--r-sm); }
.btn-full { width: 100%; }

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(6,8,15,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(6,8,15,0.95);
  box-shadow: 0 4px 32px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: linear-gradient(120deg, var(--accent), #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-300);
  transition: var(--t);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-100);
  background: var(--bg-600);
}

.nav-links a.nav-buy {
  color: #030508;
  font-weight: 800;
  letter-spacing: 0.03em;
  background: linear-gradient(145deg, #7fffd4 0%, var(--accent) 42%, #00c9a0 100%);
  border: 1px solid rgba(0, 255, 200, 0.55);
  box-shadow:
    0 0 22px rgba(0, 229, 160, 0.4),
    0 0 48px rgba(0, 229, 160, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.nav-links a.nav-buy:hover {
  color: #030508;
  background: linear-gradient(145deg, #a8fff0 0%, #5fffd4 45%, var(--accent-hover) 100%);
  box-shadow:
    0 0 32px rgba(0, 229, 160, 0.55),
    0 0 64px rgba(0, 229, 160, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}
.nav-links a.nav-buy.active {
  color: #030508;
  background: linear-gradient(145deg, #bafff5 0%, #7fffd4 35%, var(--accent) 100%);
  box-shadow:
    0 0 0 2px rgba(0, 229, 160, 0.65),
    0 0 36px rgba(0, 229, 160, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-200);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(6,8,15,0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-200);
  transition: var(--t);
}
.mobile-menu a:hover { background: var(--bg-600); color: var(--text-100); }
.mobile-menu a.nav-buy {
  color: #030508;
  font-weight: 800;
  background: linear-gradient(145deg, #7fffd4 0%, var(--accent) 42%, #00c9a0 100%);
  border: 1px solid rgba(0, 255, 200, 0.45);
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.mobile-menu a.nav-buy:hover {
  color: #030508;
  background: linear-gradient(145deg, #a8fff0 0%, #5fffd4 50%, var(--accent-hover) 100%);
  box-shadow: 0 0 28px rgba(0, 229, 160, 0.45);
}
.mobile-menu .mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 112px;
  padding-bottom: 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 20%, rgba(0,229,160,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 85% 75%, rgba(124,106,247,0.07) 0%, transparent 55%),
    var(--bg-900);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 100%);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Two-column hero layout */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 56px;
  align-items: center;
  padding: 24px 0 32px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-100);
  margin-bottom: 16px;
  letter-spacing: -2px;
}

.hero-sub {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-300);
  margin-bottom: 14px;
  line-height: 1.7;
}

.hero-features-line {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-500);
  margin-bottom: 28px;
  line-height: 1.9;
}

.hero-features-line--mobile {
  display: none;
}

.hero-mobile-br {
  display: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─── Hero Image ─────────────────────────────────────────── */

.hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.15),
    0 0 40px rgba(0, 229, 160, 0.18),
    0 0 80px rgba(0, 229, 160, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.55);
}

.hero-panel-inner {
  background: rgba(9,12,21,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,229,160,0.07),
    0 20px 52px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.panel-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.pdot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.pdot-red    { background: #f87171; }
.pdot-yellow { background: #fbbf24; }
.pdot-green  { background: var(--accent); box-shadow: 0 0 6px rgba(0,229,160,0.5); }

.panel-title-bar {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-500);
  letter-spacing: 0.5px;
}

.panel-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-md);
  transition: var(--t);
}
.panel-item:hover {
  border-color: var(--accent-border);
  background: rgba(0,229,160,0.04);
}

.panel-item-icon {
  font-size: 17px;
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.panel-item-text { flex: 1; min-width: 0; }
.panel-item-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-100);
}
.panel-item-sub {
  font-size: 11px;
  color: var(--text-500);
  margin-top: 1px;
}

.panel-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(0,229,160,0.12);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-full);
  flex-shrink: 0;
}

.panel-progress-block {
  padding: 11px 13px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-row {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-500);
}
.pp-val { color: var(--text-300); }

.pp-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-full);
  overflow: hidden;
}
.pp-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #00bcd4);
  border-radius: var(--r-full);
  box-shadow: 0 0 6px rgba(0,229,160,0.4);
  transition: width 1.2s var(--ease);
}
.pp-fill-purple {
  background: linear-gradient(90deg, var(--purple), #a78bfa);
  box-shadow: 0 0 6px rgba(124,106,247,0.4);
}

.panel-status-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--text-500);
  padding: 8px 12px;
  background: rgba(0,229,160,0.03);
  border: 1px solid rgba(0,229,160,0.08);
  border-radius: var(--r-md);
}
.panel-status-row strong { color: var(--accent); }
.ps-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(0,229,160,0.7);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* ─── Stats bar ─────────────────────────────────────────── */

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 0;
  padding: 22px 40px;
  background: rgba(9,12,21,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  flex-wrap: wrap;
  row-gap: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-100);
  line-height: 1;
  background: linear-gradient(120deg, var(--accent), #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 11px;
  color: var(--text-500);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.stat-icon {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 2px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ============================================================
   FEATURE CARDS
   ============================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.feature-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  opacity: 0;
  transition: var(--t);
}
.feature-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), var(--accent-glow);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-300);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ============================================================
   PRICING / PRODUCT SECTION
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 60px auto 0;
}

.pricing-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  transition: var(--t);
}
.pricing-card:hover {
  border-color: var(--border-md);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.popular {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, rgba(0,229,160,0.05) 0%, var(--bg-700) 40%);
}
.pricing-card.popular:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg), var(--accent-glow);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--r-full);
}

.plan-name {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-400);
  margin-bottom: 10px;
}
.popular .plan-name { color: var(--accent); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.plan-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-200);
  align-self: flex-start;
  margin-top: 8px;
}
.plan-amount {
  font-size: 54px;
  font-weight: 900;
  color: var(--text-100);
  line-height: 1;
  letter-spacing: -2px;
}
.plan-period { font-size: 14px; color: var(--text-400); }

.plan-desc {
  font-size: 13px;
  color: var(--text-400);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-200);
}
.plan-feature .check {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-feature .cross {
  color: var(--text-500);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-feature.disabled { color: var(--text-500); }

/* ============================================================
   TRUST SECTION
   ============================================================ */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t);
}
.trust-item:hover {
  border-color: var(--border-md);
  transform: translateY(-3px);
}

.trust-icon {
  font-size: 28px;
  width: 56px; height: 56px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-100);
}
.trust-item p {
  font-size: 13px;
  color: var(--text-400);
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--bg-800);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: linear-gradient(120deg, var(--accent), #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-400);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-300);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-400);
  transition: var(--t);
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-500); }
.footer-bottom .footer-disclaimer {
  font-size: 12px;
  color: var(--text-500);
  max-width: 500px;
  text-align: right;
  line-height: 1.5;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */

.product-hero {
  padding-top: 112px;
  padding-bottom: 52px;
  background:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(0,229,160,0.06) 0%, transparent 60%),
    var(--bg-900);
  border-bottom: 1px solid var(--border);
}

.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-400);
  margin-bottom: 20px;
}
.product-breadcrumb a:hover { color: var(--accent); }
.product-breadcrumb span { color: var(--text-500); }

.product-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--text-100);
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.stars { color: var(--yellow); font-size: 15px; letter-spacing: 2px; }
.rating-text { font-size: 13px; color: var(--text-400); }

.product-desc {
  font-size: 15px;
  color: var(--text-300);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 480px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.product-price-main {
  font-size: 34px;
  font-weight: 900;
  color: var(--text-100);
}
.product-price-sub {
  font-size: 14px;
  color: var(--text-400);
}

/* Trust badges (under price) */
.prod-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.prod-trust-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--text-300);
  letter-spacing: 0.3px;
}
.prod-trust-badge--accent {
  background: var(--accent-dim);
  border-color: var(--accent-border);
  color: var(--accent);
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Category cards section */
.prod-categories {
  padding: 32px 0 48px;
  border-bottom: 1px solid var(--border);
}

.prod-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.prod-cat-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--t);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.prod-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 70%);
  opacity: 0;
  transition: var(--t);
}
.prod-cat-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), var(--accent-glow);
}
.prod-cat-card:hover::before { opacity: 1; }

.prod-cat-icon {
  font-size: 28px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.prod-cat-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.prod-cat-desc {
  font-size: 12px;
  color: var(--text-400);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.prod-cat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.prod-cat-tags span {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  color: var(--text-400);
  letter-spacing: 0.3px;
  transition: var(--t);
}
.prod-cat-card:hover .prod-cat-tags span {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-dim);
}

/* Preview gallery */
.product-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.gallery-main {
  background: var(--bg-600);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-video-second {
  position: relative;
  margin-top: 10px;
  background: var(--bg-600);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.gallery-video-second video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.gallery-mute-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}
.gallery-mute-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: scale(1.1);
}

.gallery-thumb-row {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.gallery-thumb-row .gallery-thumb {
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
}

.gallery-thumb {
  background: var(--bg-600);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
  transition: var(--t);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-thumb:hover { border-color: var(--accent-border); }
.gallery-thumb.active { border-color: var(--accent); }

/* Mock screenshot visuals */
.mock-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1a0d 0%, #0a1628 50%, #1a0d28 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-screen::before {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,160,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.mock-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: var(--r-full);
  border: 1px solid var(--accent-border);
  position: relative;
  z-index: 1;
}

/* Tabs */
.tabs-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}
.tab-btn {
  padding: 12px 20px;
  background: none;
  border: none;
  color: var(--text-400);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--t);
}
.tab-btn:hover { color: var(--text-200); }
.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Feature list */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--t);
}
.feature-item:hover { border-color: var(--accent-border); }
.feature-item .fi-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item h4 { font-size: 14px; font-weight: 600; color: var(--text-100); margin-bottom: 3px; }
.feature-item p { font-size: 12px; color: var(--text-400); line-height: 1.5; }

/* FAQ */
/* ============================================================
   MODULE CATEGORIES (Features tab)
   ============================================================ */

.modules-header {
  margin-bottom: 40px;
}

.module-category {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.module-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.module-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.module-cat-icon {
  font-size: 18px;
  line-height: 1;
}

.module-cat-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-100);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.module-cat-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-500);
  background: var(--bg-600);
  border: 1px solid var(--border);
  padding: 2px 10px;
  border-radius: var(--r-full);
}

.module-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.module-card {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-300);
  padding: 6px 14px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--t);
  cursor: default;
  letter-spacing: 0.2px;
}
.module-card:hover {
  border-color: var(--accent-border);
  color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────────────── */

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text-100);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: var(--t);
}
.faq-question:hover { background: var(--bg-600); }
.faq-question.open { color: var(--accent); }
.faq-icon {
  font-size: 18px;
  color: var(--text-400);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-question.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 14px;
  color: var(--text-300);
  line-height: 1.7;
}

/* ============================================================
   BUY / CHECKOUT PAGE
   ============================================================ */

/* ─── How-to section top spacing ───────────────────────── */
.buy-how-section {
  padding-top: 112px;
  padding-bottom: 56px;
}

.checkout-page.buy-how-section {
  padding-top: 72px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.checkout-page.buy-how-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 45% at 50% -15%, rgba(0, 229, 160, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 12% 35%, rgba(124, 106, 247, 0.07), transparent 55%),
    radial-gradient(ellipse 45% 35% at 88% 55%, rgba(0, 188, 212, 0.06), transparent 50%),
    radial-gradient(ellipse 35% 30% at 70% 15%, rgba(244, 114, 182, 0.04), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.checkout-page.buy-how-section > .container {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .checkout-page.buy-how-section {
    padding-top: 68px;
    padding-bottom: 16px;
  }
}

/* ─── Pricing ───────────────────────────────────────────── */
.buy-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}

.buy-pricing-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
  position: relative;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.3s var(--ease);
}
.buy-pricing-card:hover {
  border-color: var(--border-md);
  transform: translateY(-5px) scale(1.018);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.buy-pricing-card--featured {
  border-color: var(--accent-border);
  background: linear-gradient(160deg, rgba(0,229,160,0.06) 0%, var(--bg-700) 50%);
  box-shadow: 0 0 40px rgba(0,229,160,0.07);
}
.buy-pricing-card--featured:hover {
  border-color: var(--accent);
  transform: translateY(-5px) scale(1.018);
  box-shadow: var(--shadow-lg), var(--accent-glow), 0 0 48px rgba(0, 229, 160, 0.12);
}

.buy-featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--r-full);
  white-space: nowrap;
  z-index: 4;
}

.buy-plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-400);
  margin-bottom: 12px;
}
.buy-pricing-card--featured .buy-plan-name { color: var(--accent); }

.buy-plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 4px;
}
.buy-plan-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-200);
  align-self: flex-start;
  margin-top: 10px;
}
.buy-plan-amount {
  font-size: 56px;
  font-weight: 900;
  color: var(--text-100);
  line-height: 1;
  letter-spacing: -2px;
}
.buy-plan-period {
  font-size: 13px;
  color: var(--text-500);
  margin-bottom: 24px;
}

.buy-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.buy-plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-200);
}
.buy-plan-features .check {
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
}

.nowpay-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 4px;
}
.nowpay-link {
  display: inline-flex;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.nowpay-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.nowpay-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--r-sm);
}

.payment-followup {
  max-width: 640px;
  margin: 24px auto 0;
  padding: 12px 16px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  text-align: center;
}
.payment-followup p {
  font-size: 13px;
  color: var(--text-300);
  line-height: 1.55;
  margin: 0;
}
.payment-followup strong { color: var(--text-100); }

.payment-followup--footer {
  margin-top: 22px;
  box-shadow: 0 0 0 1px rgba(0, 229, 160, 0.08), 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ─── Checkout: global notice + step-by-step flow (compact + variety) ─ */
.checkout-global-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto 16px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(145deg, rgba(0, 229, 160, 0.1) 0%, rgba(13, 17, 32, 0.92) 42%, rgba(18, 28, 44, 0.88) 100%);
  border: 1px solid rgba(0, 229, 160, 0.38);
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.checkout-global-notice::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -8%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 160, 0.22) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.checkout-global-notice::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 5px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 70%);
}
.checkout-global-notice__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 13px;
  color: #000;
  background: linear-gradient(145deg, #5fffd4 0%, var(--accent) 55%, #00c9a0 100%);
  box-shadow:
    0 0 16px rgba(0, 229, 160, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  position: relative;
  z-index: 1;
}
.checkout-global-notice__text {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-100);
  position: relative;
  z-index: 1;
}
.checkout-global-notice__text strong {
  color: var(--accent-hover);
  font-weight: 800;
}

.checkout-option-mega {
  margin: 0 0 6px;
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.1;
  color: var(--text-100);
}

.checkout-coins-tip {
  margin: 12px auto 0;
  max-width: 520px;
  padding: 8px 12px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-300);
  background: rgba(0, 229, 160, 0.06);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: var(--r-md);
}
.checkout-coins-tip a {
  color: var(--accent-hover);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkout-coins-tip a:hover {
  color: #7dd3fc;
}

.checkout-howto {
  margin-top: 18px;
  padding: 14px 12px 16px;
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 55% at 100% 0%, rgba(0, 229, 160, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(0, 188, 212, 0.05), transparent 50%),
    rgba(8, 12, 24, 0.65);
  border: 1px solid rgba(0, 229, 160, 0.32);
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.08),
    0 10px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.checkout-howto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 229, 160, 0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 100%);
}

.checkout-howto--gumroad {
  margin-top: 18px;
  text-align: left;
  background:
    radial-gradient(ellipse 65% 50% at 95% 0%, rgba(244, 114, 182, 0.12), transparent 52%),
    radial-gradient(ellipse 45% 40% at 5% 100%, rgba(0, 229, 160, 0.1), transparent 50%),
    rgba(8, 12, 24, 0.65);
  border-color: rgba(244, 114, 182, 0.28);
  box-shadow:
    0 0 0 1px rgba(244, 114, 182, 0.1),
    0 10px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.checkout-howto--gumroad::before {
  background-image: radial-gradient(rgba(244, 114, 182, 0.08) 1px, transparent 1px);
}

.checkout-howto--crypto {
  margin-top: 18px;
  background:
    radial-gradient(ellipse 70% 55% at 100% 20%, rgba(167, 139, 250, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 45% at 0% 90%, rgba(0, 229, 160, 0.08), transparent 50%),
    rgba(8, 12, 24, 0.65);
  border-color: rgba(167, 139, 250, 0.35);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.12),
    0 10px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.checkout-howto--crypto::before {
  background-image: radial-gradient(rgba(167, 139, 250, 0.09) 1px, transparent 1px);
}

.checkout-howto--spawners {
  margin-top: 16px;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(124, 106, 247, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 100%, rgba(0, 229, 160, 0.06), transparent 50%),
    rgba(8, 12, 24, 0.65);
  border-color: rgba(124, 106, 247, 0.38);
  box-shadow:
    0 0 0 1px rgba(124, 106, 247, 0.2),
    0 10px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.checkout-howto--spawners::before {
  background-image: radial-gradient(rgba(124, 106, 247, 0.12) 1px, transparent 1px);
}

.checkout-howto-title {
  margin: 0 0 12px;
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-100);
  line-height: 1.2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px 14px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.checkout-howto-title::before,
.checkout-howto-title::after {
  content: "";
  height: 2px;
  border-radius: 2px;
  min-width: 0;
}
.checkout-howto-title::before {
  background: linear-gradient(90deg, transparent, rgba(0, 229, 160, 0.55), rgba(0, 229, 160, 0.2));
}
.checkout-howto-title::after {
  background: linear-gradient(90deg, rgba(0, 229, 160, 0.2), rgba(0, 229, 160, 0.55), transparent);
}
.checkout-howto--gumroad .checkout-howto-title::before {
  background: linear-gradient(90deg, transparent, rgba(244, 114, 182, 0.55), rgba(244, 114, 182, 0.15));
}
.checkout-howto--gumroad .checkout-howto-title::after {
  background: linear-gradient(90deg, rgba(244, 114, 182, 0.15), rgba(244, 114, 182, 0.55), transparent);
}
.checkout-howto--crypto .checkout-howto-title::before {
  background: linear-gradient(90deg, transparent, rgba(167, 139, 250, 0.65), rgba(167, 139, 250, 0.2));
}
.checkout-howto--crypto .checkout-howto-title::after {
  background: linear-gradient(90deg, rgba(167, 139, 250, 0.2), rgba(167, 139, 250, 0.65), transparent);
}
.checkout-howto--spawners .checkout-howto-title::before {
  background: linear-gradient(90deg, transparent, rgba(124, 106, 247, 0.65), rgba(124, 106, 247, 0.2));
}
.checkout-howto--spawners .checkout-howto-title::after {
  background: linear-gradient(90deg, rgba(124, 106, 247, 0.2), rgba(124, 106, 247, 0.65), transparent);
}

.checkout-howto-title__center {
  grid-column: 2;
  text-align: center;
  text-wrap: balance;
}
.checkout-howto-title__accent {
  display: inline-block;
  margin-left: 4px;
  background: linear-gradient(120deg, var(--accent), #5eead4, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.checkout-howto--gumroad .checkout-howto-title__accent {
  background: linear-gradient(120deg, #f9a8d4, #f472b6, #fb7185);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.checkout-howto--crypto .checkout-howto-title__accent {
  background: linear-gradient(120deg, #c4b5fd, #a78bfa, #7dd3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.checkout-howto--spawners .checkout-howto-title__accent {
  background: linear-gradient(120deg, #a78bfa, #7c6af7, #00e5a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 520px) {
  .checkout-howto-title {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .checkout-howto-title::before,
  .checkout-howto-title::after {
    display: none;
  }
  .checkout-howto-title__center {
    grid-column: 1;
  }
}

.checkout-step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  position: relative;
  z-index: 1;
}

@media (min-width: 780px) {
  .checkout-step-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    align-items: stretch;
  }
}

.checkout-step-card {
  display: grid;
  grid-template-columns: 34px 30px 1fr;
  gap: 6px 10px;
  align-items: center;
  padding: 8px 10px 8px 8px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, var(--bg-700) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid rgba(0, 229, 160, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.checkout-step-list .checkout-step-card:nth-child(4n + 2) {
  border-left-color: rgba(0, 188, 212, 0.55);
}
.checkout-step-list .checkout-step-card:nth-child(4n + 3) {
  border-left-color: rgba(124, 106, 247, 0.5);
}
.checkout-step-list .checkout-step-card:nth-child(4n + 4) {
  border-left-color: rgba(244, 114, 182, 0.45);
}

.checkout-howto--gumroad .checkout-step-card {
  border-left-color: rgba(244, 114, 182, 0.5);
}
.checkout-howto--gumroad .checkout-step-list .checkout-step-card:nth-child(4n + 2) {
  border-left-color: rgba(0, 229, 160, 0.5);
}
.checkout-howto--gumroad .checkout-step-list .checkout-step-card:nth-child(4n + 3) {
  border-left-color: rgba(251, 191, 36, 0.55);
}
.checkout-howto--gumroad .checkout-step-list .checkout-step-card:nth-child(4n + 4) {
  border-left-color: rgba(244, 114, 182, 0.45);
}

.checkout-howto--crypto .checkout-step-card {
  border-left-color: rgba(167, 139, 250, 0.55);
}
.checkout-howto--crypto .checkout-step-list .checkout-step-card:nth-child(4n + 2) {
  border-left-color: rgba(0, 229, 160, 0.48);
}
.checkout-howto--crypto .checkout-step-list .checkout-step-card:nth-child(4n + 3) {
  border-left-color: rgba(125, 211, 252, 0.55);
}
.checkout-howto--crypto .checkout-step-list .checkout-step-card:nth-child(4n + 4) {
  border-left-color: rgba(167, 139, 250, 0.45);
}

.checkout-howto--spawners .checkout-step-card {
  border-left-color: rgba(124, 106, 247, 0.55);
}
.checkout-howto--spawners .checkout-step-list .checkout-step-card:nth-child(4n + 2) {
  border-left-color: rgba(0, 229, 160, 0.48);
}
.checkout-howto--spawners .checkout-step-list .checkout-step-card:nth-child(4n + 3) {
  border-left-color: rgba(167, 139, 250, 0.5);
}
.checkout-howto--spawners .checkout-step-list .checkout-step-card:nth-child(4n + 4) {
  border-left-color: rgba(124, 106, 247, 0.45);
}

.checkout-step-card:hover {
  border-color: rgba(0, 229, 160, 0.28);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 229, 160, 0.08);
  transform: translateY(-1px);
}

.checkout-step-card__num {
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0, 229, 160, 0.25);
  justify-self: start;
  padding-top: 0;
}

.checkout-step-card__icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.22);
  flex-shrink: 0;
}
.checkout-step-card__icon svg {
  width: 15px;
  height: 15px;
}

.checkout-step-card__body {
  min-width: 0;
}

.checkout-step-card__text {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-200);
}

.checkout-kw {
  display: inline;
  padding: 0 5px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 0.92em;
  letter-spacing: 0.02em;
  color: var(--accent-hover);
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid rgba(0, 229, 160, 0.28);
  box-shadow: none;
}

.checkout-warning-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: var(--r-md);
  background: rgba(251, 191, 36, 0.07);
  border: 1px solid rgba(251, 191, 36, 0.4);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.08);
  text-align: left;
}
.checkout-warning-box__icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.checkout-warning-box p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: #fde68a;
}
.checkout-warning-box strong {
  color: #fff;
  font-weight: 800;
}
.checkout-warning-box--strong {
  margin-top: 16px;
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(251, 191, 36, 0.09);
}
.checkout-warning-box--crypto {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4px;
}

.checkout-cta-main {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: normal !important;
  text-align: center;
  line-height: 1.25;
  max-width: min(100%, 480px);
  padding: 10px 18px !important;
  min-height: 0;
}
.checkout-cta-sub {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-400);
  letter-spacing: 0.02em;
}

.nowpay-hint {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text-300);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .checkout-step-card {
    grid-template-columns: 30px 28px 1fr;
    gap: 6px 8px;
    padding: 8px 8px;
  }
  .checkout-step-card__icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }
  .checkout-step-card__icon svg {
    width: 14px;
    height: 14px;
  }
  .checkout-step-card__text {
    font-size: 12.5px;
  }
  .checkout-step-card__num {
    font-size: 16px;
  }
  .checkout-global-notice {
    padding: 10px 12px;
  }
  .checkout-global-notice__text {
    font-size: 12.5px;
  }
}

.checkout-howto + .checkout-discord-cta {
  margin-top: 16px;
}

.checkout-gumroad-panel .checkout-discord-cta {
  margin-top: 14px;
}

.checkout-option--secondary .checkout-howto + .checkout-discord-cta {
  margin-top: 18px;
}

/* ─── Checkout page (multi-method) ───────────────────────── */
.checkout-page .container {
  max-width: 1040px;
}

.checkout-page__hero {
  position: relative;
  margin-bottom: 10px;
  padding: 4px 0 4px;
}

.checkout-page__hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  width: min(520px, 92vw);
  height: 140px;
  background: radial-gradient(ellipse 70% 55% at 50% 50%, rgba(0, 229, 160, 0.1), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.checkout-page__hero .checkout-hero-eyebrow,
.checkout-page__hero .checkout-page__title,
.checkout-page__hero .checkout-hero-panel {
  position: relative;
  z-index: 1;
}

.checkout-hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.95;
  margin-bottom: 6px;
}

.checkout-page__title {
  font-size: clamp(26px, 3.6vw, 40px);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.checkout-hero-panel {
  display: inline-block;
  max-width: 540px;
  margin: 0 auto;
  padding: 12px 18px 14px;
  background: rgba(13, 17, 32, 0.65);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.checkout-hero-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-100);
  font-weight: 500;
}

.checkout-hero-sub__line {
  display: block;
}

.checkout-hero-sub__line:first-child {
  color: #e8fff7;
  font-weight: 700;
}

.checkout-hero-sub--headline {
  max-width: 640px;
  margin: 0 auto 2px;
  color: var(--text-200);
  font-size: 15px;
}

.checkout-method-grid {
  margin: 10px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  max-width: 980px;
  text-align: left;
}

.checkout-method-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 146px;
  padding: 14px 14px 12px;
  border-radius: var(--r-lg);
  background: rgba(13, 17, 32, 0.72);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform 0.22s var(--ease), border-color 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.checkout-method-card:hover {
  transform: scale(1.03);
  border-color: rgba(0, 229, 160, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 229, 160, 0.14), 0 10px 30px rgba(0, 0, 0, 0.35);
}

.checkout-method-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.checkout-method-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid rgba(0, 229, 160, 0.22);
  flex-shrink: 0;
}

.checkout-option-chip {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--text-300);
}

.checkout-method-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-100);
}

.checkout-method-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-300);
}

.checkout-method-badge {
  margin-top: auto;
  width: fit-content;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent-hover);
  background: rgba(0, 229, 160, 0.12);
  border: 1px solid rgba(0, 229, 160, 0.35);
  border-radius: var(--r-full);
  padding: 3px 10px;
}

.checkout-method-card--primary {
  border-color: rgba(0, 229, 160, 0.3);
  background: linear-gradient(165deg, rgba(0, 229, 160, 0.1) 0%, rgba(13, 17, 32, 0.88) 65%);
}

.checkout-method-card--tone-card {
  border-color: rgba(244, 114, 182, 0.22);
  background: linear-gradient(165deg, rgba(244, 114, 182, 0.08) 0%, rgba(13, 17, 32, 0.88) 70%);
}
.checkout-method-card--tone-card .checkout-method-icon {
  color: #f9a8d4;
  background: rgba(244, 114, 182, 0.12);
  border-color: rgba(244, 114, 182, 0.28);
}
.checkout-method-card--tone-card:hover {
  border-color: rgba(244, 114, 182, 0.45);
  box-shadow: 0 0 0 1px rgba(244, 114, 182, 0.12), 0 10px 28px rgba(0, 0, 0, 0.35);
}

.checkout-method-card--tone-crypto {
  border-color: rgba(167, 139, 250, 0.28);
  background: linear-gradient(165deg, rgba(167, 139, 250, 0.1) 0%, rgba(13, 17, 32, 0.88) 68%);
}
.checkout-method-card--tone-crypto .checkout-method-icon {
  color: #c4b5fd;
  background: rgba(167, 139, 250, 0.12);
  border-color: rgba(167, 139, 250, 0.3);
}
.checkout-method-card--tone-crypto:hover {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 0 0 1px rgba(167, 139, 250, 0.14), 0 10px 28px rgba(0, 0, 0, 0.35);
}

.checkout-method-card--tone-spawn {
  border-color: rgba(124, 106, 247, 0.3);
  background: linear-gradient(165deg, rgba(124, 106, 247, 0.12) 0%, rgba(13, 17, 32, 0.88) 65%);
}
.checkout-method-card--tone-spawn .checkout-method-icon {
  color: #a78bfa;
  background: rgba(124, 106, 247, 0.14);
  border-color: rgba(124, 106, 247, 0.32);
}
.checkout-method-card--tone-spawn:hover {
  border-color: rgba(124, 106, 247, 0.48);
  box-shadow: 0 0 0 1px rgba(124, 106, 247, 0.15), 0 10px 28px rgba(0, 0, 0, 0.35);
}

.checkout-option--primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  padding: 16px 14px 18px;
  background:
    radial-gradient(ellipse 90% 50% at 50% -25%, rgba(0, 229, 160, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(18, 24, 40, 0.97) 0%, var(--bg-900) 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(0, 229, 160, 0.06);
}

.checkout-option--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 40px;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, transparent 55%);
}

.checkout-option--primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 160, 0.55), rgba(0, 255, 200, 0.35), transparent);
  pointer-events: none;
  z-index: 1;
}

.checkout-option--primary > * {
  position: relative;
  z-index: 2;
}

@media (min-width: 640px) {
  .checkout-option--primary {
    padding: 18px 20px 20px;
  }
}

@media (max-width: 480px) {
  .checkout-option--primary {
    padding: 18px 14px 20px;
    border-radius: var(--r-md);
  }

  .checkout-hero-panel {
    padding: 10px 14px;
  }
}

@media (max-width: 1024px) {
  .checkout-method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .checkout-method-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-top: 14px;
    gap: 10px;
  }

  .checkout-method-card {
    min-height: 0;
    padding: 12px 12px 10px;
  }

  .checkout-page__hero {
    margin-bottom: 14px;
  }

  .checkout-option--primary,
  .checkout-option--gumroad,
  .checkout-option--secondary,
  .checkout-option--spawners,
  .checkout-stack,
  .payment-followup--footer {
    margin-top: 20px;
  }

  .checkout-section-divider {
    margin-bottom: 12px;
  }
}

.checkout-option__head {
  margin-bottom: 10px;
}

.checkout-badge-popular {
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.28) 0%, var(--accent-dim) 100%);
  border-color: var(--accent);
  color: var(--accent-hover);
  margin-bottom: 10px;
  box-shadow:
    0 0 28px rgba(0, 229, 160, 0.35),
    0 0 56px rgba(0, 229, 160, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.checkout-option__title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--text-100);
  line-height: 1.22;
  letter-spacing: -0.3px;
  max-width: 640px;
  margin: 0 auto;
}

.checkout-option__lede {
  margin: 8px auto 0;
  max-width: 480px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-400);
}

.checkout-option__title--secondary {
  font-size: clamp(18px, 2.6vw, 24px);
}

.checkout-option__sub {
  margin-top: 14px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-option-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
  opacity: 0.95;
}

.checkout-option--primary .checkout-option-label {
  margin-bottom: 8px;
}

.checkout-option--gumroad {
  margin-top: 22px;
}

.checkout-option--spawners {
  margin-top: 22px;
}

.checkout-option--primary-alt {
  max-width: 820px;
  margin: 0 auto;
  padding-top: 18px;
  padding-bottom: 18px;
}

.checkout-option--spawners .checkout-option__head {
  margin-bottom: 14px;
}

.checkout-option--spawners .checkout-option__lede {
  max-width: 560px;
  font-size: 12.5px;
  line-height: 1.45;
}

.checkout-option--spawners .checkout-pricing-grid--coins {
  gap: 12px;
}

.checkout-option--spawners .buy-pricing-card--coins {
  padding: 14px 13px 12px;
}

.checkout-option--spawners .buy-coin-amount {
  font-size: clamp(28px, 4.2vw, 36px);
}

.checkout-option--spawners .buy-coin-suffix {
  font-size: 13px;
}

.checkout-option--spawners .buy-plan-period {
  font-size: 12px;
  margin-bottom: 8px;
}

.checkout-option--spawners .buy-plan-features {
  gap: 0;
  padding-top: 8px;
  margin-bottom: 4px;
}

.checkout-option--spawners .buy-plan-features li {
  font-size: 12px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.checkout-option--spawners .checkout-stack--compact {
  margin-top: 16px;
}

.checkout-option--spawners .how-it-works-box {
  max-width: 560px;
  padding: 14px 14px;
}

.checkout-option--spawners .how-it-works-title {
  margin-bottom: 10px;
}

.checkout-option--spawners .how-it-works-list {
  gap: 7px;
}

.checkout-option--spawners .how-it-works-list li {
  font-size: 12px;
  line-height: 1.4;
}

.checkout-option--spawners .checkout-discord-cta {
  margin-top: 12px;
}

.checkout-badge-alt {
  background: linear-gradient(135deg, rgba(124, 106, 247, 0.22) 0%, rgba(124, 106, 247, 0.08) 100%);
  border-color: rgba(124, 106, 247, 0.45);
  color: #b8afff;
  box-shadow: 0 0 24px rgba(124, 106, 247, 0.2);
}

.checkout-stack--compact {
  margin-top: 28px;
}

.checkout-gumroad-panel {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 16px 18px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(ellipse 85% 80% at 50% 0%, rgba(0, 229, 160, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(22, 28, 44, 0.95) 0%, rgba(13, 17, 32, 0.92) 100%);
  border: 1px solid var(--accent-border);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 16px 56px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(0, 229, 160, 0.08);
}

.checkout-gumroad-panel__title {
  font-size: clamp(20px, 2.8vw, 26px);
  line-height: 1.2;
  margin-bottom: 0;
}

.checkout-gumroad-panel__sub {
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  max-width: 520px;
  font-size: 14px;
  color: var(--text-300);
}

.checkout-gumroad-panel__sub strong {
  color: var(--text-100);
  font-weight: 600;
}

.checkout-gumroad-cta-shell {
  margin-top: 14px;
  padding: 12px 12px 14px;
  border-radius: var(--r-lg);
  background: rgba(8, 12, 24, 0.65);
  border: 1px solid rgba(0, 229, 160, 0.28);
  box-shadow:
    inset 0 0 0 1px rgba(0, 229, 160, 0.08),
    0 0 24px rgba(0, 229, 160, 0.08);
}

.checkout-gumroad-actions {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

/* Large Gumroad CTA — !important beats Gumroad default dark widget */
.checkout-gumroad-actions .checkout-gumroad-mega-btn.gumroad-button,
.checkout-gumroad-actions a.gumroad-button.checkout-gumroad-mega-btn {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: 100% !important;
  max-width: 560px !important;
  min-height: 64px !important;
  padding: 14px 18px 12px !important;
  margin: 0 auto !important;
  border-radius: var(--r-lg) !important;
  text-decoration: none !important;
  text-align: center !important;
  background: linear-gradient(180deg, #1a2f3d 0%, #193644 52%, #18313f 100%) !important;
  color: #f8fffd !important;
  border: 1px solid rgba(112, 245, 197, 0.35) !important;
  box-shadow:
    0 8px 26px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(0, 229, 160, 0.12),
    inset 0 1px 0 rgba(194, 255, 234, 0.12) !important;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), filter 0.22s var(--ease) !important;
}

.checkout-gumroad-mega-btn__main {
  display: block;
  font-size: clamp(15px, 2vw, 17px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.25 !important;
  color: #e8fff7 !important;
}

.checkout-gumroad-mega-btn__hint {
  display: block;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: rgba(182, 255, 227, 0.78) !important;
}

.checkout-gumroad-actions .checkout-gumroad-mega-btn:hover,
.checkout-gumroad-actions a.gumroad-button.checkout-gumroad-mega-btn:hover {
  filter: brightness(1.08) !important;
  transform: translateY(-2px) scale(1.006) !important;
  box-shadow:
    0 0 26px rgba(0, 229, 160, 0.24),
    0 12px 30px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(216, 255, 242, 0.18) !important;
}

.checkout-gumroad-actions .checkout-gumroad-mega-btn img,
.checkout-gumroad-actions a.gumroad-button img {
  height: 22px !important;
  width: auto !important;
  margin: 8px 0 0 !important;
  opacity: 1 !important;
  filter: none !important;
}

@media (max-width: 520px) {
  .checkout-gumroad-panel {
    padding: 14px 12px 16px;
  }

  .checkout-gumroad-cta-shell {
    padding: 10px 10px 12px;
  }

  .checkout-gumroad-actions .checkout-gumroad-mega-btn.gumroad-button,
  .checkout-gumroad-actions a.gumroad-button.checkout-gumroad-mega-btn {
    min-height: 58px !important;
    padding: 12px 12px 10px !important;
  }
}

.checkout-option--secondary {
  margin-top: 22px;
  padding-top: 0;
  border-top: none;
}

.checkout-option--secondary .buy-pricing-card {
  padding: 16px 16px 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.checkout-stack {
  margin-top: 40px;
}

.checkout-section-divider {
  height: 2px;
  max-width: min(900px, 100%);
  margin: 0 auto 14px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(124, 106, 247, 0.15) 12%,
    rgba(0, 229, 160, 0.35) 35%,
    rgba(0, 188, 212, 0.3) 50%,
    rgba(0, 229, 160, 0.35) 65%,
    rgba(244, 114, 182, 0.12) 88%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(0, 229, 160, 0.12);
  opacity: 0.95;
}

.checkout-page .buy-pricing-grid.checkout-pricing-grid {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  gap: 12px;
}

.checkout-page .nowpay-wrap img {
  max-height: 44px;
  width: auto;
}

.checkout-page .buy-pricing-grid.checkout-pricing-grid.checkout-pricing-grid--coins {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .checkout-page .buy-pricing-grid.checkout-pricing-grid {
    max-width: 520px;
  }

  .checkout-page .buy-pricing-grid.checkout-pricing-grid.checkout-pricing-grid--coins {
    max-width: 520px;
  }
}

.buy-coin-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
  margin-bottom: 6px;
}

.buy-coin-amount {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 900;
  color: var(--text-100);
  line-height: 1;
  letter-spacing: -1.5px;
}

.buy-coin-suffix {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* Coin plan cards — richer checkout presentation */
.checkout-pricing-grid--coins {
  gap: 10px;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .checkout-pricing-grid--coins {
    gap: 12px;
  }
}

.checkout-option--primary .buy-pricing-card--coins {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 14px 12px 12px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04) 0%, var(--bg-700) 38%, var(--bg-600) 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 48px rgba(0, 0, 0, 0.45);
}

.checkout-option--primary .buy-pricing-card--coins:hover {
  border-color: rgba(0, 229, 160, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 56px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(0, 229, 160, 0.1);
}

.checkout-option--primary .buy-pricing-card--coins.buy-pricing-card--featured {
  background: linear-gradient(165deg, rgba(0, 229, 160, 0.12) 0%, rgba(13, 17, 32, 0.98) 45%, var(--bg-700) 100%);
  border-color: rgba(0, 229, 160, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 56px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(0, 229, 160, 0.12);
}

.checkout-option--primary .buy-pricing-card--coins.buy-pricing-card--featured:hover {
  border-color: var(--accent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    var(--shadow-lg),
    var(--accent-glow),
    0 0 56px rgba(0, 229, 160, 0.18);
}

.buy-pricing-card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    118deg,
    transparent 0%,
    transparent 42%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 58%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.buy-pricing-card--coins > *:not(.buy-pricing-card-shine) {
  position: relative;
  z-index: 1;
}

.checkout-option--primary .buy-pricing-card--coins .buy-plan-name {
  margin-bottom: 8px;
}

.checkout-option--primary .buy-pricing-card--coins .buy-plan-period {
  color: var(--text-400);
  font-size: 13px;
  margin-bottom: 12px;
}

.checkout-option--primary .buy-pricing-card--coins .buy-plan-features {
  flex: 1;
  margin-bottom: 8px;
  padding-top: 8px;
  border-top-color: rgba(255, 255, 255, 0.08);
  gap: 2px;
}

.checkout-option--primary .buy-pricing-card--coins .buy-plan-features li {
  padding: 6px 8px;
  margin: 0 -4px;
  font-size: 13px;
  border-radius: var(--r-sm);
  transition: background 0.2s var(--ease);
}

.checkout-option--primary .buy-pricing-card--coins .buy-plan-features li:hover {
  background: rgba(255, 255, 255, 0.04);
}

.buy-pricing-card-cta {
  margin-top: auto;
  padding-top: 4px;
}

.buy-pricing-card-cta__btn {
  font-weight: 700;
  letter-spacing: 0.2px;
  min-height: 40px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.buy-pricing-card-cta__btn--featured {
  box-shadow: var(--accent-glow), 0 6px 24px rgba(0, 229, 160, 0.18);
}

.buy-pricing-card-cta__btn--featured:hover {
  box-shadow: 0 0 40px rgba(0, 229, 160, 0.4), 0 8px 28px rgba(0, 0, 0, 0.35);
}

.checkout-page .how-it-works-box {
  padding: 18px 20px;
  background: linear-gradient(145deg, rgba(18, 24, 40, 0.92) 0%, var(--bg-700) 100%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.checkout-page .how-it-works-title {
  margin-bottom: 14px;
  font-size: 14px;
}

.checkout-page .how-it-works-list {
  gap: 10px;
}

.checkout-page .how-it-works-list li {
  font-size: 13px;
  padding-left: 38px;
}

.checkout-page .how-it-works-list li::before {
  width: 26px;
  height: 26px;
  font-size: 11px;
}

.checkout-option--secondary__intro {
  padding: 12px 14px 8px;
  margin-bottom: 12px;
  border-radius: var(--r-md);
  background: rgba(13, 17, 32, 0.55);
  border: 1px solid var(--border-md);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 8px 28px rgba(0, 0, 0, 0.22);
}

.how-it-works-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 26px;
  background: var(--bg-700);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--accent);
}

.how-it-works-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-100);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.how-it-works-list {
  list-style: none;
  counter-reset: hiw;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.how-it-works-list li {
  counter-increment: hiw;
  position: relative;
  padding-left: 42px;
  font-size: 14px;
  color: var(--text-300);
  line-height: 1.55;
}

.how-it-works-list li::before {
  content: counter(hiw);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkout-discord-cta {
  margin-top: 18px;
}

.checkout-discord-cta--primary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.checkout-cta-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-300);
  opacity: 0.82;
}

.checkout-btn-primary-flow {
  min-width: 320px;
}

.checkout-cta-alt-link {
  font-size: 12px;
  color: var(--text-300);
  opacity: 0.86;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}

.checkout-cta-alt-link:hover {
  color: var(--accent);
  opacity: 1;
}

@media (max-width: 768px) {
  .checkout-btn-primary-flow {
    width: 100%;
    min-width: 0;
  }
}

.checkout-btn-glow {
  box-shadow: var(--accent-glow), 0 4px 24px rgba(0, 229, 160, 0.2);
}

.checkout-btn-glow:hover {
  box-shadow: 0 0 44px rgba(0, 229, 160, 0.45), 0 8px 28px rgba(0, 0, 0, 0.35);
}

/* ─── How-to Steps ──────────────────────────────────────── */
.buy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.buy-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  transition: var(--t);
  position: relative;
  z-index: 1;
}
.buy-step:hover {
  border-color: var(--accent-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.buy-step-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.buy-step-body { flex: 1; }
.buy-step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 6px;
}
.buy-step-desc {
  font-size: 14px;
  color: var(--text-400);
  line-height: 1.65;
}
.buy-step-desc strong { color: var(--text-200); }

.buy-step-connector {
  width: 1px;
  height: 16px;
  background: var(--border);
  margin: 0 0 0 47px;
}

.buy-link {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(0,229,160,0.4);
  text-underline-offset: 2px;
}
.buy-link:hover { text-decoration-color: var(--accent); }

/* ─── Important Note ────────────────────────────────────── */
.buy-important-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 24px;
  background: rgba(251,191,36,0.05);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: var(--r-lg);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.buy-note-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.buy-important-note p {
  font-size: 14px;
  color: var(--text-300);
  line-height: 1.65;
}
.buy-important-note strong { color: var(--yellow); }

/* ─── Important Rules Box ───────────────────────────────── */
.buy-rules-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 24px 32px;
  background: rgba(251, 191, 36, 0.04);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-left: 4px solid #fbbf24;
  border-radius: var(--r-lg);
}
.buy-rules-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.buy-rules-header span { font-size: 20px; }
.buy-rules-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #fbbf24;
  margin: 0;
  letter-spacing: 0.3px;
}
.buy-rules-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.buy-rules-list > li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-200);
  line-height: 1.6;
}
.buy-rules-list > li strong { color: var(--text-100); }
.buy-rules-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  flex-shrink: 0;
  margin-top: 7px;
}
.buy-rules-sub {
  list-style: none;
  padding: 0;
  margin: 8px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.buy-rules-sub li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-300);
}
.buy-rules-sub li strong { color: #f87171; }
.buy-rules-sub .cross {
  color: #f87171;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Alternative Payment Method ────────────────────────── */
.buy-alt-method {
  max-width: 760px;
  margin: 24px auto 0;
}
.buy-alt-method-inner {
  padding: 28px 32px;
  background: rgba(0, 229, 160, 0.03);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.buy-alt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-full);
  width: fit-content;
}
.buy-alt-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-100);
  margin: 0;
}
.buy-alt-desc {
  font-size: 14px;
  color: var(--text-300);
  line-height: 1.65;
  margin: 0;
}
.buy-alt-desc strong { color: var(--text-100); }

/* ─── Video Placeholder ─────────────────────────────────── */
.buy-video-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.buy-video-inner {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.buy-video-badge {
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-400);
  text-transform: uppercase;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.buy-video-placeholder {
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg-800);
  cursor: default;
}

.buy-video-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 4px;
  box-shadow: 0 0 24px rgba(0,229,160,0.12);
}

.buy-video-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-300);
}
.buy-video-sub {
  font-size: 13px;
  color: var(--text-500);
}

/* ─── Wallet Address Box ────────────────────────────────── */
.wallet-box {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-600);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 0 32px rgba(0,229,160,0.06);
}

.wallet-box-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--accent-dim);
  border-bottom: 1px solid var(--accent-border);
}

.wallet-box-icon { font-size: 18px; }

.wallet-box-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.wallet-row {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wallet-row-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-500);
  margin-bottom: 8px;
}

.wallet-address-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-800);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 10px 14px;
}

.wallet-address {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  color: var(--text-200);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  user-select: all;
}

.wallet-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: var(--t);
  flex-shrink: 0;
  font-family: inherit;
}
.wallet-copy-btn:hover {
  background: rgba(0,229,160,0.2);
  box-shadow: 0 0 12px rgba(0,229,160,0.2);
}

.wallet-meta-row {
  display: flex;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wallet-meta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.wallet-meta-item:last-child { border-right: none; }

.wallet-meta-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-500);
}
.wallet-meta-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-200);
}
.wallet-meta-value--accent { color: var(--accent); }

.wallet-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--yellow);
  background: rgba(251,191,36,0.04);
}

/* ─── Bottom Grid (What You Get + License) ──────────────── */
.buy-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.buy-includes-card,
.buy-warning-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
}

.buy-warning-card {
  border-color: rgba(248,113,113,0.2);
  background: rgba(248,113,113,0.03);
}

.buy-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.buy-includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.buy-includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.buy-includes-list .check {
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}
.buy-includes-list strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 2px;
}
.buy-includes-list p {
  font-size: 12px;
  color: var(--text-400);
  line-height: 1.5;
}

.buy-warning-text {
  font-size: 14px;
  color: var(--text-300);
  line-height: 1.7;
  margin-bottom: 20px;
}
.buy-warning-text strong { color: var(--red); }

.buy-warning-rules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.buy-warning-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-400);
}
.buy-warning-rule .cross { color: var(--red); font-size: 14px; }
.buy-warning-rule .check { color: var(--accent); font-size: 14px; }
.buy-warning-rule--ok { color: var(--text-200); }

.buy-terms-link {
  font-size: 12px;
  color: var(--text-500);
  transition: var(--t);
}
.buy-terms-link:hover { color: var(--accent); }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-200);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  background: var(--bg-800);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-100);
  font-family: inherit;
  transition: var(--t);
  outline: none;
}
.form-input:focus {
  border-color: var(--accent-border);
  background: var(--bg-700);
  box-shadow: 0 0 0 3px rgba(0,229,160,0.08);
}
.form-input::placeholder { color: var(--text-500); }

.form-hint { font-size: 12px; color: var(--text-500); margin-top: 6px; }

.checkout-sidebar { position: sticky; top: 90px; }

.order-summary {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.order-summary-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.order-summary-head h3 { font-size: 16px; font-weight: 700; color: var(--text-100); }
.order-product {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}
.order-product-img {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.order-product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 2px;
}
.order-product-plan { font-size: 12px; color: var(--text-400); }
.order-lines { padding: 20px 24px; border-bottom: 1px solid var(--border); }
.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}
.order-line:last-child { margin-bottom: 0; }
.order-line-label { color: var(--text-400); }
.order-line-value { font-weight: 600; color: var(--text-200); }
.order-total {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.order-total-label { font-size: 15px; font-weight: 700; color: var(--text-100); }
.order-total-price { font-size: 24px; font-weight: 900; color: var(--accent); }

.secure-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: rgba(0,229,160,0.04);
  border-top: 1px solid var(--accent-border);
  font-size: 12px;
  color: var(--text-400);
}
.secure-notice span { color: var(--accent); font-size: 14px; }

/* ============================================================
   AUTH PAGES (LOGIN / REGISTER)
   ============================================================ */

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 40px;
  background:
    radial-gradient(ellipse 60% 60% at 50% 20%, rgba(124,106,247,0.07) 0%, transparent 60%),
    var(--bg-900);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
}

.auth-logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1.5px;
  background: linear-gradient(120deg, var(--accent), #00bcd4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 6px;
}
.auth-tagline {
  text-align: center;
  font-size: 13px;
  color: var(--text-400);
  margin-bottom: 32px;
}

.auth-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-100);
  margin-bottom: 6px;
}
.auth-sub { font-size: 13px; color: var(--text-400); margin-bottom: 28px; }

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--text-500);
  font-size: 12px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-footer {
  text-align: center;
  font-size: 13px;
  color: var(--text-400);
  margin-top: 24px;
}
.auth-footer a { color: var(--accent); }
.auth-footer a:hover { text-decoration: underline; }

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-400);
}
.terms-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  cursor: pointer;
}
.terms-check a { color: var(--accent); }

/* ============================================================
   DASHBOARD
   ============================================================ */

.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0;
  min-height: 100vh;
  padding-top: 68px;
}

.dash-sidebar {
  background: var(--bg-800);
  border-right: 1px solid var(--border);
  padding: 32px 16px;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
}

.dash-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--bg-600);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 28px;
}
.dash-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), #00bcd4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.dash-user-name { font-size: 14px; font-weight: 700; color: var(--text-100); }
.dash-user-email { font-size: 12px; color: var(--text-400); }

.dash-nav { display: flex; flex-direction: column; gap: 4px; }
.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-300);
  cursor: pointer;
  transition: var(--t);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.dash-nav-item:hover { background: var(--bg-600); color: var(--text-100); }
.dash-nav-item.active { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent-border); }
.dash-nav-item .nav-icon { font-size: 16px; flex-shrink: 0; }

.dash-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 4px;
}

.dash-main { padding: 40px; background: var(--bg-900); }
.dash-header { margin-bottom: 36px; }
.dash-header h1 { font-size: 26px; font-weight: 800; color: var(--text-100); margin-bottom: 4px; }
.dash-header p { font-size: 14px; color: var(--text-400); }

.dash-section { display: none; }
.dash-section.active { display: block; }

/* Stats row */
.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.dash-stat {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 24px;
}
.dash-stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-400);
  margin-bottom: 8px;
}
.dash-stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--text-100);
}
.dash-stat-sub { font-size: 12px; color: var(--text-500); margin-top: 3px; }

/* Purchase cards */
.purchase-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 16px;
}
.purchase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.purchase-product {
  display: flex;
  align-items: center;
  gap: 14px;
}
.purchase-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.purchase-name { font-size: 16px; font-weight: 700; color: var(--text-100); margin-bottom: 2px; }
.purchase-meta { font-size: 12px; color: var(--text-400); }
.purchase-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-full);
}
.status-unlocked {
  background: rgba(0,229,160,0.12);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}
.status-locked {
  background: rgba(248,113,113,0.1);
  color: var(--red);
  border: 1px solid rgba(248,113,113,0.25);
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
}
.purchase-body { padding: 20px 24px; }
.purchase-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.purchase-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-600);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text-300);
}
.purchase-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.lock-overlay {
  position: relative;
  overflow: hidden;
}
.lock-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(248,113,113,0.06);
  border: 1px solid rgba(248,113,113,0.2);
  border-radius: var(--r-md);
  font-size: 13px;
  color: var(--red);
  margin-bottom: 16px;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

/* ─── Nav Important Link ─────────────────────────────────── */
.nav-important {
  color: var(--accent) !important;
  font-weight: 600 !important;
}
.nav-important:hover { color: var(--text-100) !important; }

/* ─── Important Page — Premium Cards ────────────────────── */
.imp-only {
  color: var(--accent);
  font-weight: 700;
}

.imp-card {
  background: var(--bg-800);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow:
    0 0 0 1px rgba(0, 229, 160, 0.04),
    0 4px 32px rgba(0, 0, 0, 0.3);
}

.imp-card--license {
  border-color: rgba(248, 113, 113, 0.18);
  box-shadow:
    0 0 0 1px rgba(248, 113, 113, 0.08),
    0 0 28px rgba(248, 113, 113, 0.06),
    0 4px 32px rgba(0, 0, 0, 0.3);
}

.imp-license-warning {
  margin-top: 4px;
  padding: 16px 0 0 18px;
  border-left: 3px solid rgba(248, 113, 113, 0.55);
}
.imp-license-warning-lead {
  font-size: 13px;
  font-weight: 600;
  color: #f87171;
  margin: 0 0 8px;
  line-height: 1.5;
}
.imp-license-warning-body {
  font-size: 14px;
  font-weight: 500;
  color: #f87171;
  margin: 0;
  line-height: 1.65;
}
.imp-license-warning-body strong {
  font-weight: 800;
  color: #fca5a5;
}

.imp-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.imp-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-100);
  margin: 0 0 16px;
  line-height: 1.2;
}

.imp-card-desc {
  font-size: 14px;
  color: var(--text-300);
  line-height: 1.75;
  margin: 0 0 20px;
}
.imp-card-desc strong { color: var(--text-100); }

.imp-channels {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.imp-channel-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-200);
  font-weight: 500;
}
.imp-channel-item strong { color: var(--text-100); }
.imp-channel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(0, 229, 160, 0.5);
  flex-shrink: 0;
}

.imp-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 24px 0;
}

.imp-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 16px 20px;
  margin-top: 20px;
}
.imp-callout-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-500);
  flex-shrink: 0;
  margin-top: 7px;
}
.imp-callout p {
  font-size: 13px;
  color: var(--text-400);
  line-height: 1.7;
  margin: 0;
}
.imp-callout p strong { color: var(--text-200); }

.imp-rules {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.imp-rule-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-300);
}
.imp-rule-dash {
  color: var(--text-600);
  font-weight: 600;
  flex-shrink: 0;
  width: 12px;
}

.imp-footer-note {
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(0, 229, 160, 0.03);
  border: 1px solid rgba(0, 229, 160, 0.1);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--text-400);
  line-height: 1.6;
}
.imp-footer-note strong { color: var(--text-200); }
.imp-footer-note a { color: var(--accent); text-decoration: none; }
.imp-footer-note a:hover { text-decoration: underline; }

.legal-hero {
  padding-top: 120px;
  padding-bottom: 48px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(0,229,160,0.05) 0%, transparent 60%),
    var(--bg-900);
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.legal-hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--text-100);
  margin-bottom: 10px;
}
.legal-hero p { font-size: 14px; color: var(--text-400); }

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.legal-content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-100);
  margin: 40px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 15px;
  color: var(--text-300);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-content ul { padding-left: 20px; list-style: disc; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content strong { color: var(--text-200); }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }
.legal-updated {
  font-size: 13px;
  color: var(--text-500);
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 18px;
  margin-bottom: 36px;
  display: inline-block;
}

/* ============================================================
   CONTACT PAGE — Discord CTA
   ============================================================ */

.contact-discord-hero {
  position: relative;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 80px;
  text-align: center;
}

.contact-discord-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 20%, rgba(88,101,242,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 30% 70%, rgba(0,229,160,0.07) 0%, transparent 55%),
    var(--bg-900);
  z-index: 0;
}

.contact-discord-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.contact-discord-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  color: var(--text-100);
  letter-spacing: -2px;
  line-height: 1.06;
  margin-bottom: 18px;
  margin-top: 16px;
}

.contact-discord-sub {
  font-size: 17px;
  color: var(--text-300);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--r-lg);
  background: #5865F2;
  color: #fff;
  border-color: #5865F2;
  box-shadow: 0 0 32px rgba(88,101,242,0.35);
  transition: var(--t);
  margin-bottom: 20px;
}
.contact-discord-btn:hover {
  background: #4752c4;
  border-color: #4752c4;
  box-shadow: 0 0 48px rgba(88,101,242,0.5);
  transform: translateY(-2px);
}

.contact-discord-tagline {
  font-size: 13px;
  color: var(--text-500);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.contact-form-card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px;
}

textarea.form-input {
  resize: vertical;
  min-height: 130px;
}

/* ============================================================
   PAGE HEADER (generic)
   ============================================================ */

.page-header {
  padding-top: 110px;
  padding-bottom: 40px;
}

/* ============================================================
   ALERT / TOAST
   ============================================================ */

.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toast {
  background: var(--bg-500);
  border: 1px solid var(--border-md);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text-100);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 260px;
  max-width: 360px;
  animation: slideInRight 0.3s var(--ease);
}
.toast.success { border-color: var(--accent-border); }
.toast.success .toast-icon { color: var(--accent); }
.toast.error { border-color: rgba(248,113,113,0.3); }
.toast.error .toast-icon { color: var(--red); }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast-out { animation: slideOutRight 0.3s var(--ease) forwards; }

@keyframes slideInRight {
  from { transform: translateX(120%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(120%); opacity: 0; }
}

/* ============================================================
   MISC UTILITIES
   ============================================================ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
}
.badge-green { background: rgba(0,229,160,0.12); color: var(--accent); border: 1px solid var(--accent-border); }
.badge-purple { background: var(--purple-dim); color: var(--purple); border: 1px solid var(--purple-border); }
.badge-yellow { background: rgba(251,191,36,0.1); color: var(--yellow); }

.divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.card {
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.scroll-fade.visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1200px) {
  .hero-inner { grid-template-columns: 1fr 460px; gap: 44px; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { justify-content: flex-start; }
  .hero-image img { max-width: 500px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-hero-inner { grid-template-columns: 1fr; }
  .prod-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-bottom-grid { grid-template-columns: 1fr; }
  .buy-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-actions .btn-outline { display: none; }
  .hamburger { display: flex; }
  .prod-cat-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .buy-intro-inner { flex-direction: column; gap: 12px; }
  .buy-step { padding: 18px 20px; }
  .buy-step-connector { margin-left: 37px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom .footer-disclaimer { text-align: center; }
  .hero-stats { padding: 18px 24px; gap: 0; }
  .stat-sep { height: 30px; }

  /* ─── Hero: mobile-only (≤768px) — compact, centered, conversion-focused ─── */
  .hero {
    padding-top: 72px;
    padding-bottom: 36px;
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 12px 0 16px;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-badge {
    margin-bottom: 12px;
  }
  .hero h1 {
    font-size: clamp(40px, 10vw, 52px);
    margin-bottom: 12px;
    letter-spacing: -1.5px;
    color: var(--text-100);
  }
  .hero-sub {
    max-width: 34ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    line-height: 1.55;
  }
  .hero-mobile-br {
    display: block;
  }
  .hero-features-line--desktop {
    display: none !important;
  }
  .hero-features-line--mobile {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 18px;
    max-width: 38ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
    color: var(--text-400);
  }
  .hero-actions {
    width: 100%;
    max-width: 400px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions .btn {
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
    white-space: normal;
    text-align: center;
  }
  .hero-actions .btn-primary:hover,
  .hero-actions .btn-primary:focus-visible {
    transform: scale(1.02);
    box-shadow:
      0 0 28px rgba(0, 229, 160, 0.55),
      0 0 48px rgba(0, 229, 160, 0.22);
  }
  .hero-actions .btn-outline:hover,
  .hero-actions .btn-outline:focus-visible {
    transform: scale(1.02);
  }
  .hero-image {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }
  .hero-image img {
    max-width: min(100%, 320px);
    max-height: 230px;
    width: auto;
    height: auto;
    object-fit: contain;
  }
  .hero-stats {
    margin-top: 6px;
    padding: 14px 16px;
    row-gap: 12px;
  }

  .feature-list { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .dash-sidebar { position: static; height: auto; }
  .dash-main { padding: 24px 16px; }
  .plan-select-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-sep { display: none; }
  .stat-item { flex: 1 1 40%; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero h1 { letter-spacing: -1px; }
  .auth-card { padding: 28px 20px; }
  .contact-form-card { padding: 24px 20px; }
}

/* ============================================================
   EARN WITH US PAGE (compact layout)
   ============================================================ */

.earn-page {
  --earn-section-y: 36px;
}

.earn-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(0, 229, 160, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 15% 60%, rgba(124, 106, 247, 0.1), transparent 50%),
    radial-gradient(ellipse 40% 35% at 85% 40%, rgba(0, 188, 212, 0.08), transparent 50%),
    var(--bg-900);
  z-index: 0;
}
.earn-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 40px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 75%);
}

/* Top: hero + steps in one row (desktop) */
.earn-top {
  position: relative;
  padding-top: 88px;
  padding-bottom: var(--earn-section-y);
  overflow: hidden;
}
.earn-top__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.earn-hero-col {
  padding-top: 4px;
}
.earn-hero__eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  padding: 5px 12px;
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.earn-hero__title {
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-100);
  line-height: 1.1;
  margin-bottom: 10px;
}
.earn-hero__lead {
  font-size: 14px;
  color: var(--text-400);
  line-height: 1.55;
  max-width: 42ch;
  margin: 0 0 16px;
}
.earn-hero__lead strong {
  color: var(--text-200);
  font-weight: 700;
}
.earn-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--accent-glow), 0 6px 24px rgba(0, 229, 160, 0.18);
}
.earn-hero__cta:hover {
  box-shadow: 0 0 40px rgba(0, 229, 160, 0.4), 0 10px 28px rgba(0, 0, 0, 0.35);
}

.earn-steps-wrap {
  min-width: 0;
}
.earn-inline-head {
  margin-bottom: 14px;
}
.earn-inline-head__title {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text-100);
  margin: 0;
  line-height: 1.2;
}

.earn-section-head__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.earn-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.earn-steps--compact .earn-step-card {
  padding: 14px 14px 14px 12px;
  gap: 8px;
  border-radius: var(--r-md);
}
.earn-steps--compact .earn-step-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}
.earn-steps--compact .earn-step-card__icon svg {
  width: 18px;
  height: 18px;
}
.earn-steps--compact .earn-step-card__num {
  top: 10px;
  right: 10px;
  font-size: 11px;
}
.earn-steps--compact .earn-step-card__text {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.4;
  padding-right: 22px;
}
.earn-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 20px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t);
}
.earn-step-card:hover {
  border-color: var(--accent-border);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), var(--accent-glow);
  transform: translateY(-2px);
}
.earn-step-card--highlight {
  border-color: rgba(0, 229, 160, 0.35);
  background: linear-gradient(165deg, rgba(0, 229, 160, 0.08) 0%, var(--bg-700) 100%);
}
.earn-step-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
}
.earn-step-card__num {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-500);
  letter-spacing: 0.05em;
}
.earn-step-card__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-200);
  line-height: 1.45;
  margin: 0;
  padding-right: 28px;
}
.earn-mono {
  font-family: ui-monospace, monospace;
  font-size: 0.92em;
  color: var(--accent);
  font-weight: 700;
}

.earn-section {
  padding-top: var(--earn-section-y);
  padding-bottom: var(--earn-section-y);
}
.earn-section--panel {
  background: rgba(9, 12, 21, 0.45);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 32px;
  padding-bottom: 32px;
}

.earn-panel-head {
  text-align: center;
  margin-bottom: 20px;
}
.earn-panel-head__title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-100);
  margin: 0;
  line-height: 1.15;
}

.earn-requirements {
  margin-bottom: 18px;
}
.earn-requirements__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 960px;
  margin: 0 auto;
}
.earn-requirements__card {
  padding: 14px 16px;
  background: rgba(9, 12, 21, 0.65);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t);
}
.earn-requirements__card:hover {
  border-color: rgba(0, 229, 160, 0.22);
}
.earn-requirements__card--highlight {
  background: linear-gradient(145deg, rgba(0, 229, 160, 0.1) 0%, rgba(9, 12, 21, 0.85) 100%);
  border-color: rgba(0, 229, 160, 0.35);
}
.earn-requirements__label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.earn-requirements__text {
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--text-300);
  margin: 0;
}
.earn-requirements__text strong {
  color: var(--text-200);
}
.earn-requirements__link {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.earn-requirements__link:hover {
  color: #5fffc8;
}
.earn-requirements__stat {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 800;
  color: var(--text-100);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.earn-requirements__stat strong {
  color: var(--accent);
  font-weight: 900;
}
.earn-requirements__fine {
  font-size: 11px;
  line-height: 1.4;
  color: var(--text-500);
  margin: 0;
}

.earn-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto 12px;
}
.earn-content-grid--compact .earn-reward-card {
  padding: 18px 14px;
  border-radius: var(--r-lg);
}
.earn-content-grid--compact .earn-reward-card__emoji {
  font-size: 26px;
  margin-bottom: 8px;
}
.earn-content-grid--compact .earn-reward-card__title {
  font-size: 14px;
  margin-bottom: 6px;
}
.earn-content-grid--compact .earn-reward-card__reward {
  margin-bottom: 6px;
}
.earn-content-grid--compact .earn-reward-card__reward strong {
  font-size: 18px;
}
.earn-content-grid--compact .earn-reward-card__req {
  font-size: 12px;
}

.earn-reward-card {
  padding: 28px 22px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  text-align: center;
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.earn-reward-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.06) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.earn-reward-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 229, 160, 0.1);
}
.earn-reward-card:hover::before {
  opacity: 1;
}
.earn-reward-card__emoji {
  font-size: 36px;
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.earn-reward-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-100);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.earn-reward-card__reward {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.earn-reward-card__reward strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.earn-reward-card__req {
  font-size: 13px;
  color: var(--text-400);
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.earn-note {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-500);
  margin: 0 0 22px;
}

/* Views / referrals / communities — one row */
.earn-extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.earn-extra-tile {
  padding: 16px 16px 18px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t);
}
.earn-extra-tile:hover {
  border-color: rgba(0, 229, 160, 0.28);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.earn-extra-tile--accent {
  background: linear-gradient(145deg, rgba(0, 229, 160, 0.07) 0%, var(--bg-700) 100%);
  border-color: var(--accent-border);
}
.earn-extra-tile--purple {
  border-color: rgba(124, 106, 247, 0.3);
  background: linear-gradient(145deg, rgba(124, 106, 247, 0.1) 0%, var(--bg-700) 100%);
}
.earn-extra-tile--purple:hover {
  border-color: rgba(124, 106, 247, 0.45);
}
.earn-extra-tile__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
}
.earn-extra-tile__icon--purple {
  color: #c4b5fd;
  background: rgba(124, 106, 247, 0.15);
  border-color: rgba(124, 106, 247, 0.35);
}
.earn-extra-tile__emoji {
  font-size: 28px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.earn-extra-tile__title {
  font-size: 15px;
  font-weight: 900;
  color: var(--text-100);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.earn-extra-tile__lead {
  font-size: 13px;
  color: var(--text-300);
  line-height: 1.45;
  margin: 0 0 6px;
}
.earn-extra-tile__lead strong {
  color: var(--text-100);
}
.earn-extra-tile__reward {
  font-size: 14px;
  color: var(--accent);
  margin: 0;
  font-weight: 700;
}
.earn-extra-tile__reward strong {
  font-size: 16px;
  font-weight: 900;
}
.earn-extra-tile__meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-400);
  margin: 0;
}
.earn-extra-tile__fine {
  font-size: 11px;
  color: var(--text-500);
  margin: 6px 0 0;
  line-height: 1.4;
}

.earn-example-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bg-900);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: var(--r-full);
  margin-right: 6px;
  vertical-align: middle;
}

/* Bottom: rules + CTA */
.earn-bottom {
  position: relative;
  padding: 32px 0 28px;
  overflow: hidden;
}
.earn-bottom__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 70% 100%, rgba(0, 229, 160, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 50% at 15% 20%, rgba(124, 106, 247, 0.08), transparent 50%),
    var(--bg-900);
  z-index: 0;
}
.earn-bottom__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 20px;
  align-items: stretch;
}
.earn-rules-box {
  margin: 0;
  padding: 20px 22px;
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.1) 0%, rgba(18, 24, 40, 0.95) 100%);
  border: 1px solid rgba(251, 191, 36, 0.45);
  border-radius: var(--r-xl);
  box-shadow:
    0 0 0 1px rgba(251, 191, 36, 0.12),
    0 12px 36px rgba(0, 0, 0, 0.4),
    0 0 48px rgba(251, 191, 36, 0.06);
}
.earn-rules-box__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(251, 191, 36, 0.25);
}
.earn-rules-box__warn {
  font-size: 22px;
  line-height: 1;
}
.earn-rules-box__title {
  font-size: 18px;
  font-weight: 900;
  color: #fde68a;
  margin: 0;
  letter-spacing: -0.02em;
}
.earn-rules-box__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.earn-rules-box__list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-200);
  line-height: 1.45;
}
.earn-rules-box__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.6);
}
.earn-rules-box__list strong {
  color: #fef3c7;
}

.earn-final-cta__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  background: var(--bg-700);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: 0 0 0 1px rgba(0, 229, 160, 0.06), 0 16px 44px rgba(0, 0, 0, 0.35);
}
.earn-final-cta__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  color: var(--text-100);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.earn-final-cta__text {
  font-size: 14px;
  color: var(--text-400);
  line-height: 1.5;
  margin-bottom: 16px;
}
.earn-final-cta__btn {
  align-self: flex-start;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: var(--accent-glow), 0 6px 24px rgba(0, 229, 160, 0.22);
}
.earn-final-cta__hint {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-500);
  margin-bottom: 0;
}

.earn-trust-line {
  padding: 0 24px 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-500);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .earn-top__inner {
    grid-template-columns: 1fr;
  }
  .earn-hero-col {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
  }
  .earn-hero__lead {
    max-width: none;
  }
  .earn-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .earn-extras-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .earn-requirements__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .earn-top {
    padding-top: 80px;
    padding-bottom: 28px;
  }
  .earn-section--panel {
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .earn-steps {
    grid-template-columns: 1fr;
  }
  .earn-content-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .earn-bottom__grid {
    grid-template-columns: 1fr;
  }
  .earn-final-cta__inner {
    text-align: center;
    align-items: center;
  }
  .earn-final-cta__btn {
    align-self: center;
  }
}
