/* =====================================================
   CashCowLab AI Money Machine — Dark Premium Theme
   Brand: Indigo #6366f1 | Cyan #22d3ee | Amber #f59e0b
   Background: Dark Navy #0f172a
   ===================================================== */

:root {
  /* Brand Colors */
  --indigo: #6366f1;
  --indigo-dark: #4f46e5;
  --indigo-glow: rgba(99,102,241,0.25);
  --cyan: #22d3ee;
  --cyan-glow: rgba(34,211,238,0.2);
  --amber: #f59e0b;
  --amber-dark: #d97706;
  --amber-glow: rgba(245,158,11,0.2);
  --red: #ef4444;
  --green: #10b981;
  --green-glow: rgba(16,185,129,0.15);

  /* Dark Theme */
  --bg: #0f172a;
  --bg-alt: #1e293b;
  --card: #1e293b;
  --card-hover: #253347;
  --border: #334155;
  --border-bright: #475569;

  /* Text */
  --text: #f8fafc;
  --text-body: #cbd5e1;
  --text-muted: #64748b;

  /* Shadows */
  --shadow: rgba(0,0,0,0.3);
  --shadow-md: rgba(0,0,0,0.4);
  --shadow-indigo: rgba(99,102,241,0.3);
  --shadow-amber: rgba(245,158,11,0.3);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--indigo), var(--cyan));
  --grad-amber: linear-gradient(135deg, var(--amber), #ef4444);
  --grad-hero: radial-gradient(ellipse at 60% -10%, rgba(99,102,241,0.35) 0%, transparent 60%),
               radial-gradient(ellipse at 10% 80%, rgba(34,211,238,0.15) 0%, transparent 50%);

  /* Radii & Spacing */
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  /* Typography */
  --font-th: 'Noto Sans Thai', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ─── Reset ─────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: var(--font-th);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
strong { font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Top Bar ────────────────────────────────────── */
.top-bar {
  background: linear-gradient(90deg, var(--indigo-dark), var(--indigo), #7c3aed);
  color: #fff;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  letter-spacing: 0.01em;
}
.top-bar-inner { max-width: 800px; margin: 0 auto; }
.top-bar strong { color: var(--amber); }

/* ─── Nav ────────────────────────────────────────── */
.nav {
  position: fixed; top: 37px; left: 0; right: 0; z-index: 100;
  background: rgba(15,23,42,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(99,102,241,0.2);
  transition: all 0.3s;
}
.nav.scrolled {
  background: rgba(15,23,42,0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 0 0 1px rgba(99,102,241,0.1);
}
.nav-inner {
  max-width: 820px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between; height: 58px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-img { height: 34px; width: 34px; object-fit: contain; border-radius: 8px; }
.logo-mark { font-size: 1.3rem; }
.logo-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-token {
  padding: 6px 14px; border-radius: var(--radius-sm);
  background: transparent; border: 1px solid var(--border);
  font-family: var(--font-th); font-size: 0.72rem; font-weight: 600;
  color: var(--text-muted); cursor: pointer; transition: all 0.2s;
}
.nav-token:hover { border-color: var(--indigo); color: var(--indigo); }
.nav-cta {
  padding: 8px 20px; border-radius: var(--radius-sm);
  background: var(--grad-primary); color: #fff;
  font-size: 0.78rem; font-weight: 700; transition: all 0.2s;
  box-shadow: 0 2px 10px var(--shadow-indigo);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px var(--shadow-indigo); }

/* ─── Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; border-radius: var(--radius-sm);
  background: var(--grad-primary); color: #fff;
  font-family: var(--font-th); font-size: 1rem; font-weight: 800;
  border: none; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 4px 18px var(--shadow-indigo);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--shadow-indigo); }
.btn-primary:hover::after { opacity: 1; }
.btn-amber {
  background: var(--grad-amber) !important;
  box-shadow: 0 4px 18px var(--shadow-amber) !important;
}
.btn-amber:hover { box-shadow: 0 8px 28px var(--shadow-amber) !important; }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; }

/* ─── Hero ────────────────────────────────────────── */
.hero {
  padding: 150px 20px 80px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-hero);
  pointer-events: none;
}
/* Glowing orb background */
.hero::after {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 100px;
  border: 1px solid rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.1);
  font-size: 0.72rem; font-weight: 600; color: var(--cyan);
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.dot-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--cyan);
}
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 8px var(--cyan); } 50% { opacity: 0.4; box-shadow: 0 0 4px var(--cyan); } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 900; line-height: 1.1; color: var(--text); margin-bottom: 18px;
}
.highlight {
  background: var(--grad-primary);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-amber {
  background: var(--grad-amber);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1rem; color: var(--text-body); margin-bottom: 32px; line-height: 1.85; }

/* Hero Price Box */
.hero-price-box {
  display: inline-flex; flex-direction: column; align-items: center;
  padding: 22px 36px; border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(99,102,241,0.4);
  box-shadow: 0 4px 30px var(--indigo-glow), inset 0 1px 0 rgba(255,255,255,0.06);
  margin-bottom: 26px;
}
.price-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.price-anchor { font-family: var(--font-mono); font-size: 1rem; color: var(--text-muted); text-decoration: line-through; }
.price-badge {
  padding: 2px 10px; border-radius: 100px;
  background: var(--grad-amber); color: #fff;
  font-size: 0.65rem; font-weight: 700;
}
.price-main {
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 900;
  background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.price-sub { font-size: 0.72rem; color: var(--text-muted); }

.hero-bullets {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 22px;
}
.hero-bullets span {
  padding: 5px 14px; border-radius: 100px; font-size: 0.72rem; font-weight: 600;
  background: var(--green-glow); color: var(--green);
  border: 1px solid rgba(16,185,129,0.2);
}
.hero-image { margin-top: 40px; position: relative; z-index: 1; }
.hero-image img {
  max-width: 100%; height: auto; border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(99,102,241,0.15);
}

/* ─── Sections ────────────────────────────────────── */
.section { padding: 72px 0; }
.section-alt {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-inner { max-width: 940px; margin: 0 auto; padding: 0 24px; }
.section-inner.narrow { max-width: 720px; }
.section-label {
  display: inline-flex; padding: 5px 14px; border-radius: 100px;
  background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.3);
  font-size: 0.68rem; font-weight: 700; color: var(--indigo);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800; color: var(--text); line-height: 1.25; margin-bottom: 14px;
}
.section-sub { font-size: 0.9rem; color: var(--text-muted); max-width: 580px; margin: 0 auto 40px; text-align: center; line-height: 1.8; }

/* ─── Shock Box ───────────────────────────────────── */
.shock-box {
  text-align: center; padding: 44px 32px; border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(239,68,68,0.3);
  box-shadow: 0 4px 24px rgba(239,68,68,0.1);
}
.shock-box h2 { color: var(--red); }
.shock-text { font-size: 1.1rem; margin-bottom: 18px; color: var(--text); }
.shock-box p { font-size: 0.9rem; color: var(--text-body); margin-bottom: 12px; line-height: 1.85; }

/* ─── Problem ─────────────────────────────────────── */
.problem-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.problem-item {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: var(--radius);
  background: var(--bg-alt); border: 1px solid var(--border);
  transition: all 0.25s;
}
.problem-item:hover { border-color: rgba(239,68,68,0.4); transform: translateX(4px); }
.problem-icon { font-size: 1.8rem; flex-shrink: 0; }
.problem-item strong { font-size: 0.92rem; display: block; margin-bottom: 4px; color: var(--text); }
.problem-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ─── Agitate ─────────────────────────────────────── */
.agitate-list { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.agitate-item {
  display: flex; gap: 14px; align-items: center; padding: 18px 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(239,68,68,0.2);
  background: rgba(239,68,68,0.05);
  transition: all 0.2s;
}
.agitate-item:hover { border-color: rgba(239,68,68,0.4); }
.agitate-arrow { font-size: 1.3rem; color: var(--red); font-weight: 700; flex-shrink: 0; }
.agitate-item p { font-size: 0.9rem; color: var(--text-body); }
.agitate-cta {
  text-align: center; margin-top: 28px; padding: 22px;
  border-radius: var(--radius);
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.3);
}
.agitate-cta p { font-size: 1.05rem; color: var(--indigo); }

/* ─── Story ───────────────────────────────────────── */
.story-content p { font-size: 0.92rem; color: var(--text-body); margin-bottom: 16px; line-height: 1.95; }

/* ─── Section Image ───────────────────────────────── */
.section-image { margin: 28px auto; max-width: 640px; text-align: center; }
.section-image img {
  max-width: 100%; height: auto; border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px var(--shadow), 0 0 0 1px var(--border);
}

/* ─── Solution Grid ───────────────────────────────── */
.solution-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 16px; margin-top: 32px; }
.sol-card {
  padding: 26px; border-radius: var(--radius); border: 1px solid var(--border);
  background: var(--card); transition: all 0.3s; text-align: center;
  position: relative; overflow: hidden;
}
.sol-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-primary); opacity: 0; transition: opacity 0.3s;
}
.sol-card:hover { border-color: rgba(99,102,241,0.5); transform: translateY(-4px); box-shadow: 0 8px 28px var(--shadow), 0 0 0 1px rgba(99,102,241,0.1); }
.sol-card:hover::before { opacity: 1; }
.sol-icon { font-size: 2.2rem; margin-bottom: 10px; }
.sol-img { width: 100%; height: 150px; object-fit: cover; border-radius: 8px; margin-bottom: 12px; }
.sol-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.sol-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
.sol-value { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-muted); text-decoration: line-through; }

/* ─── Bullets ─────────────────────────────────────── */
.bullet-grid { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.bullet-item {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: var(--bg-alt); border: 1px solid var(--border);
  transition: all 0.2s;
}
.bullet-item:hover { border-color: rgba(16,185,129,0.3); }
.bullet-item span { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.bullet-item p { font-size: 0.84rem; color: var(--text-body); }

/* ─── Steps ───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-top: 32px; }
.step-card {
  padding: 28px; border-radius: var(--radius); text-align: center;
  border: 1px solid var(--border); background: var(--card); transition: all 0.3s;
  position: relative; overflow: hidden;
}
.step-card::after {
  content: ''; position: absolute; inset: 0;
  background: var(--grad-primary); opacity: 0; transition: opacity 0.3s;
  border-radius: var(--radius);
}
.step-card:hover { border-color: rgba(99,102,241,0.5); transform: translateY(-4px); box-shadow: 0 8px 28px var(--indigo-glow); }
.step-num {
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 900;
  background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.step-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; }
.step-th { font-size: 0.75rem; color: var(--cyan); font-weight: 600; margin-bottom: 8px; }
.step-card > p:last-child { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Reviews ─────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 28px; }
.review-card {
  padding: 26px; border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.25s; position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: 12px; right: 18px;
  font-family: serif; font-size: 4rem; color: rgba(99,102,241,0.15);
  line-height: 1;
}
.review-card:hover { border-color: rgba(99,102,241,0.3); transform: translateY(-3px); }
.review-stars { margin-bottom: 12px; font-size: 0.9rem; }
.review-card p { font-size: 0.84rem; color: var(--text-body); line-height: 1.8; margin-bottom: 14px; }
.review-author { font-size: 0.74rem; color: var(--text-muted); font-weight: 600; }

/* ─── Offer Box ───────────────────────────────────── */
.offer-box {
  max-width: 680px; margin: 32px auto 0;
  border: 1px solid rgba(99,102,241,0.35); border-radius: var(--radius-lg);
  background: var(--card); overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow), 0 0 0 1px rgba(99,102,241,0.1);
}
.offer-section { padding: 26px 26px 18px; }
.offer-section.bonus {
  background: rgba(245,158,11,0.06);
  border-top: 1px dashed rgba(245,158,11,0.25);
}
.offer-section h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 800; margin-bottom: 14px; }
.offer-items { display: flex; flex-direction: column; gap: 8px; }
.offer-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.offer-item:hover { border-color: rgba(99,102,241,0.3); }
.bonus .offer-item { background: rgba(245,158,11,0.04); border-color: rgba(245,158,11,0.15); }
.offer-left { display: flex; align-items: center; gap: 12px; flex: 1; }
.offer-left span:first-child { font-size: 1.3rem; flex-shrink: 0; }
.offer-left strong { font-size: 0.84rem; display: block; }
.offer-left p { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.offer-value { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-muted); text-decoration: line-through; white-space: nowrap; }
.offer-value.bonus-tag { color: var(--green); text-decoration: none; font-weight: 700; font-family: var(--font-th); }

.offer-total { padding: 24px 26px; border-top: 1px solid var(--border); }
.total-row { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.88rem; color: var(--text-muted); }
.total-value { font-family: var(--font-mono); font-weight: 700; text-decoration: line-through; }
.total-row.sale .total-old { font-family: var(--font-mono); text-decoration: line-through; color: var(--red); }
.total-final {
  display: flex; justify-content: space-between; align-items: center;
  margin: 14px 0; padding: 18px 20px; border-radius: var(--radius-sm);
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
}
.total-final span:first-child { font-size: 0.9rem; font-weight: 700; color: var(--text); }
.final-price {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 900;
  background: var(--grad-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.save-text { text-align: center; font-size: 0.82rem; color: var(--green); font-weight: 700; margin-bottom: 22px; }
.offer-note { text-align: center; font-size: 0.72rem; color: var(--text-muted); margin-top: 14px; }

/* ─── Guarantee ───────────────────────────────────── */
.guarantee-box {
  text-align: center; padding: 48px 28px; border-radius: var(--radius-lg);
  border: 1px solid rgba(16,185,129,0.35);
  background: rgba(16,185,129,0.06);
  box-shadow: 0 4px 24px rgba(16,185,129,0.1);
}
.guarantee-badge { font-size: 3rem; margin-bottom: 14px; }
.guarantee-box h2 { color: var(--green); }
.guarantee-box p { font-size: 0.92rem; color: var(--text-body); margin-bottom: 12px; line-height: 1.9; }
.guarantee-note { font-size: 0.82rem; color: var(--text-muted); font-style: italic; }

/* ─── FAQ ─────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-top: 24px; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
  background: var(--card); transition: all 0.2s;
}
.faq-item[open] { border-color: rgba(99,102,241,0.4); box-shadow: 0 4px 16px var(--indigo-glow); }
.faq-item summary {
  padding: 18px 22px; cursor: pointer; font-size: 0.9rem; font-weight: 700;
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  color: var(--text);
}
.faq-item summary::after { content: '+'; font-size: 1.3rem; color: var(--indigo); transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 18px; font-size: 0.84rem; color: var(--text-body); line-height: 1.75; }

/* ─── CTA Section ─────────────────────────────────── */
.section-cta { padding: 64px 0 48px; }
.cta-box {
  text-align: center; padding: 52px 32px; border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(99,102,241,0.3);
  box-shadow: 0 8px 40px var(--indigo-glow);
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(99,102,241,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-box h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--text); position: relative; }
.cta-box p { font-size: 0.95rem; color: var(--text-body); margin-bottom: 28px; position: relative; }
.cta-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 14px; }

/* ─── P.S. Section ────────────────────────────────── */
.ps-section {
  margin-top: 44px; padding: 26px 28px;
  border-left: 3px solid var(--indigo);
  background: rgba(99,102,241,0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.ps-section p { font-size: 0.88rem; color: var(--text-body); margin-bottom: 10px; line-height: 1.85; }

/* ─── Footer ──────────────────────────────────────── */
.footer { border-top: 1px solid var(--border); padding: 28px 0; }
.footer-inner {
  max-width: 820px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; font-size: 0.74rem; color: var(--text-muted); text-align: center;
}
.footer-brand { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--text); }
.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--indigo); }
.footer-disclaimer {
  font-size: 0.68rem; color: var(--text-muted); opacity: 0.6;
  max-width: 600px; line-height: 1.6; margin-top: 4px;
}

/* ─── Token Modal ─────────────────────────────────── */
.token-modal { position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center; }
.token-modal.open { display: flex; }
.token-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); }
.token-dialog {
  position: relative; z-index: 10; width: 90%; max-width: 440px;
  padding: 40px 32px; border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid rgba(99,102,241,0.3);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(99,102,241,0.1);
  text-align: center;
}
.token-close {
  position: absolute; top: 14px; right: 16px; background: none; border: none;
  font-size: 1.2rem; color: var(--text-muted); cursor: pointer; transition: color 0.2s;
}
.token-close:hover { color: var(--text); }
.token-icon { font-size: 3rem; margin-bottom: 10px; }
.token-dialog h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.token-dialog > p { font-size: 0.84rem; color: var(--text-muted); margin-bottom: 20px; }
.token-input {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-mono); font-size: 0.88rem;
  text-align: center; margin-bottom: 12px; outline: none; transition: border-color 0.2s;
}
.token-input:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-glow); }
.token-help { font-size: 0.74rem; color: var(--text-muted); margin-top: 14px; }
.token-help a { color: var(--indigo); font-weight: 600; text-decoration: underline; }

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .top-bar { font-size: 0.68rem; padding: 7px 12px; }
  .nav-inner { padding: 0 14px; height: 52px; }
  .nav-token { display: none; }
  .hero { padding: 120px 16px 52px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-price-box { padding: 18px 26px; }
  .price-main { font-size: 2.4rem; }
  .hero-bullets { gap: 6px; }
  .hero-bullets span { font-size: 0.67rem; padding: 4px 10px; }
  .section { padding: 52px 0; }
  .section h2 { font-size: 1.4rem; }
  .solution-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .offer-box { margin: 22px auto 0; }
  .offer-item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .offer-value { align-self: flex-end; }
  .offer-section { padding: 18px 18px 14px; }
  .offer-total { padding: 18px; }
  .final-price { font-size: 2rem; }
  .cta-box { padding: 36px 22px; }
  .cta-box h2 { font-size: 1.5rem; }
  .ps-section { padding: 18px 20px; }
}
@media (max-width: 480px) {
  .top-bar { font-size: 0.62rem; }
  .hero h1 { font-size: 1.45rem; }
  .hero-price-box { padding: 16px 22px; }
  .price-main { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .total-final { flex-direction: column; text-align: center; gap: 6px; }
  .problem-item { flex-direction: column; }
  .section-label { font-size: 0.62rem; }
  .shock-box { padding: 28px 18px; }
  .guarantee-box { padding: 32px 18px; }
}

/* ─── Scroll Reveal ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Glow Pulse Animation ────────────────────────── */
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px var(--indigo-glow); }
  50% { box-shadow: 0 0 40px var(--indigo-glow), 0 0 80px rgba(99,102,241,0.1); }
}
.glow { animation: glow-pulse 3s ease-in-out infinite; }

/* ─── Countdown Timer ─────────────────────────────── */
.countdown-bar {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 100px;
  background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.3);
  font-size: 0.78rem; font-weight: 700; color: var(--red);
  margin-bottom: 16px;
}
.countdown-timer { font-family: var(--font-mono); font-weight: 800; }
