:root {
  --purple:  #6600ff;
  --purple2: #cc00ff;
  --red:     #ff0055;
  --blue:    #0088ff;
  --bg:      #03000a;
  --bg2:     #07000f;
  --panel:   #0d0020;
  --border:  #1a0035;
  --text:    #e8e0ff;
  --muted:   #7060a0;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  cursor: none;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 3px; }

.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple)44, var(--purple2)66, var(--purple)44, transparent);
}

.section-tag {
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.section-tag::before {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--red); box-shadow: 0 0 6px var(--red);
}

.btn-primary {
  display: inline-block; padding: 14px 36px; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  border: none; color: #fff; text-decoration: none;
  box-shadow: 0 0 24px var(--purple2)66, 0 0 60px var(--purple)22;
  transition: box-shadow .2s, transform .2s; cursor: none;
}
.btn-primary:hover { box-shadow: 0 0 36px var(--purple2)88; transform: translateY(-2px); }

.btn-ghost {
  display: inline-block; padding: 14px 36px; border-radius: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: transparent; border: 1px solid var(--blue)88; color: var(--blue);
  text-decoration: none; transition: background .2s, box-shadow .2s, transform .2s; cursor: none;
}
.btn-ghost:hover { background: var(--blue)11; box-shadow: 0 0 24px var(--blue)44; transform: translateY(-2px); }

#main-nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(3,0,10,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: border-color .3s, box-shadow .3s;
}
#main-nav.scrolled {
  border-color: var(--purple)44;
  box-shadow: 0 4px 24px rgba(102,0,255,.1);
}
.nav-logo img { display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 13px; letter-spacing: .05em; text-transform: uppercase;
  transition: color .2s; cursor: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.btn-nav-cta {
  padding: 8px 20px; border-radius: 6px;
  background: transparent; border: 1px solid var(--purple);
  color: var(--purple2); font-size: 12px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; transition: all .2s; cursor: none;
  box-shadow: 0 0 12px var(--purple)22;
}
.btn-nav-cta:hover { background: var(--purple)22; box-shadow: 0 0 20px var(--purple2)44; }
.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--text); font-size: 20px; cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .nav-hamburger { display: block; }
}

.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 80px 40px 60px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, #1a003a44 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 80%, #0033aa22 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 20%, #55000022 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .06;
  background-image: linear-gradient(var(--purple)33 1px, transparent 1px),
                    linear-gradient(90deg, var(--purple)33 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--red); margin-bottom: 20px; position: relative; z-index: 1;
  display: flex; align-items: center; gap: 10px; justify-content: center;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 30px; height: 1px;
  background: var(--red); box-shadow: 0 0 6px var(--red);
}
h1 {
  font-size: clamp(40px, 7vw, 86px); font-weight: 900; line-height: 1.05;
  font-family: 'Arial Black', sans-serif; letter-spacing: -1px;
  position: relative; z-index: 1; margin-bottom: 8px;
}
.line1 { color: var(--text); display: block; }
.line2 {
  display: block;
  background: linear-gradient(90deg, var(--purple2), var(--red), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px var(--purple2)66);
}
.hero-sub {
  font-size: 16px; color: var(--muted); max-width: 560px;
  margin: 24px auto 40px; line-height: 1.7; position: relative; z-index: 1;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; }
.hero-stats {
  display: flex; gap: 48px; justify-content: center; flex-wrap: wrap;
  margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border);
  position: relative; z-index: 1;
}
.stat-num {
  font-size: 32px; font-weight: 900; font-family: 'Arial Black', sans-serif;
  background: linear-gradient(135deg, var(--purple2), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-num span { font-size: 18px; }
.stat-label { font-size: 11px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 4px; }

.chart-section { padding: 80px 40px; max-width: 1200px; margin: 0 auto; }
.chart-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 16px;
}
.chart-header h2 {
  font-size: clamp(22px, 3vw, 34px); font-weight: 900;
  font-family: 'Arial Black', sans-serif;
}
.grad {
  background: linear-gradient(90deg, var(--purple2), var(--blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.chart-header-right { display: flex; align-items: center; gap: 12px; }
.live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 20px;
  background: var(--red)22; border: 1px solid var(--red)44;
  font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: .15em;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 8px var(--red);
  animation: pulse-dot 1.2s ease infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.8)} }
.tv-credit { font-size: 12px; color: var(--muted); }
.chart-wrap {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 40px var(--purple)11;
}

.features-section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  font-family: 'Arial Black', sans-serif; line-height: 1.1; margin-bottom: 16px;
}
.section-sub { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 560px; margin-bottom: 56px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feat-card {
  padding: 28px; border-radius: 12px; background: var(--panel);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.feat-card:hover { transform: translateY(-3px); }
.feat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; border-radius: 2px 2px 0 0;
}
.accent-p::before { background: linear-gradient(90deg, var(--purple), var(--purple2)); box-shadow: 0 0 10px var(--purple2); }
.accent-r::before { background: linear-gradient(90deg, var(--red), var(--purple2)); box-shadow: 0 0 10px var(--red); }
.accent-b::before { background: linear-gradient(90deg, var(--blue), var(--purple)); box-shadow: 0 0 10px var(--blue); }
.accent-p:hover { border-color: var(--purple)66; }
.accent-r:hover { border-color: var(--red)66; }
.accent-b:hover { border-color: var(--blue)66; }
.feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 18px;
}
.icon-p { background: var(--purple)22; border: 1px solid var(--purple)44; }
.icon-r { background: var(--red)22;    border: 1px solid var(--red)44; }
.icon-b { background: var(--blue)22;   border: 1px solid var(--blue)44; }
.feat-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.feat-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .features-grid { grid-template-columns: 1fr; } }

.pricing-section { background: var(--bg2); padding: 100px 40px; }
.pricing-inner   { max-width: 1200px; margin: 0 auto; }
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 800px; margin: 0 auto;
}
.price-card {
  padding: 36px; border-radius: 16px; background: var(--panel);
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: transform .2s, border-color .2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-featured {
  border-color: var(--purple2)88;
  box-shadow: 0 0 40px var(--purple2)22, 0 0 80px var(--purple)11;
}
.price-featured::after {
  content: 'BEST VALUE';
  position: absolute; top: 18px; right: -28px;
  background: linear-gradient(135deg, var(--purple), var(--red));
  font-size: 9px; letter-spacing: .2em; font-weight: 700;
  padding: 4px 36px; transform: rotate(45deg); color: #fff;
}
.price-period { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.price-amount { font-size: 52px; font-weight: 900; font-family: 'Arial Black', sans-serif; line-height: 1; }
.price-amount span { font-size: 18px; font-weight: 400; color: var(--muted); }
.price-purple { background: linear-gradient(135deg, var(--purple2), var(--blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.price-red    { background: linear-gradient(135deg, var(--red), var(--purple2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.price-save   { font-size: 12px; color: var(--red); font-weight: 600; margin: 8px 0 20px; }
.price-features { list-style: none; margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.price-features li::before { content: '◆'; font-size: 7px; color: var(--purple2); }
.btn-price {
  display: block; width: 100%; padding: 13px; text-align: center;
  border-radius: 8px; font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; cursor: none; transition: all .2s;
}
.btn-outline { background: transparent; border: 1px solid var(--purple)66; color: var(--purple2); }
.btn-outline:hover { background: var(--purple)11; }
.btn-filled {
  background: linear-gradient(135deg, var(--purple), var(--purple2));
  border: none; color: #fff;
  box-shadow: 0 0 20px var(--purple2)44;
}
.btn-filled:hover { box-shadow: 0 0 32px var(--purple2)66; }
.price-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

.activate-strip {
  padding: 80px 40px; text-align: center;
  background: linear-gradient(135deg, var(--bg3, #0a0018), var(--bg2));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.activate-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 80% at 50% 50%, var(--purple)11, transparent);
}
.activate-strip h2 {
  font-size: 28px; font-weight: 900; margin-bottom: 10px;
  font-family: 'Arial Black', sans-serif; position: relative; z-index: 1;
}
.activate-strip p { color: var(--muted); font-size: 14px; margin-bottom: 28px; position: relative; z-index: 1; }
.activate-badge {
  display: inline-block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 20px;
  background: var(--purple)22; border: 1px solid var(--purple)44; color: var(--purple2);
  position: relative; z-index: 1;
}
footer {
  padding: 48px 40px; background: var(--bg);
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-tagline { font-size: 12px; color: var(--muted); }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

.modal-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(3, 0, 10, .85); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-overlay[hidden] { display: none; }
.modal-box {
  background: var(--panel); border: 1px solid var(--purple)66;
  border-radius: 16px; padding: 36px; width: 100%; max-width: 480px;
  position: relative;
  box-shadow: 0 0 60px var(--purple)22, 0 0 120px var(--purple)11;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--muted);
  font-size: 16px; cursor: pointer; transition: color .2s;
}
.modal-close:hover { color: var(--text); }
.modal-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.modal-price { font-size: 28px; font-weight: 900; color: var(--purple2); margin-bottom: 20px; font-family: 'Arial Black', sans-serif; }
.modal-sub { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.modal-methods { display: flex; flex-direction: column; gap: 12px; }
.method-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: 10px; cursor: none;
  border: 1px solid var(--border); background: var(--bg2);
  text-align: left; transition: border-color .2s, background .2s;
}
.method-btn:hover { border-color: var(--purple)66; background: var(--purple)0a; }
.method-midtrans:hover { border-color: var(--blue)66; }
.method-binance:hover  { border-color: #f0b90b66; }
.method-icon { font-size: 24px; }
.method-name { font-size: 14px; font-weight: 600; color: var(--text); }
.method-desc { font-size: 11px; color: var(--muted); margin-top: 2px; }
.qr-label { font-size: 12px; color: var(--muted); text-align: center; margin: 20px 0 12px; }
#binance-qr { display: flex; justify-content: center; }
.qr-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; letter-spacing: .05em; }

@media (max-width: 768px) {
  #nav-links-list.nav-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(3, 0, 10, .97); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--purple)44;
    padding: 12px 0; z-index: 99;
  }
  #nav-links-list.nav-open li a {
    display: block; padding: 13px 32px;
    font-size: 14px; border-bottom: 1px solid var(--border);
  }
  #nav-links-list.nav-open li:last-child a { border-bottom: none; }
}
