:root {
  --navy: #05091a;
  --deep: #080d24;
  --surface: #131c42;
  --card: #171f47;
  --blue1: #1a3a8f;
  --blue4: #7fa8ff;
  --purple2: #4a27a8;
  --purple3: #7b4ff0;
  --purple4: #a67fff;
  --accent: #6c3fff;
  --accent2: #4b78f5;
  --border2: rgba(75,120,245,0.15);
  --text: #e8edf8;
  --muted: #8a9abf;
  --dim: #4a5580;
  --border: rgba(108,63,255,0.18);
  --green: #00d4a0;
  --red: #ff4d6a;
  --gold: #f5c84a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(75,120,245,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75,120,245,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.glow-orb { position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.orb1 { width: 500px; height: 500px; background: rgba(108,63,255,0.12); top: -100px; right: -100px; }
.orb2 { width: 400px; height: 400px; background: rgba(75,120,245,0.09); bottom: 20%; left: -100px; }
.orb3 { width: 300px; height: 300px; background: rgba(108,63,255,0.07); top: 60%; right: 10%; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: rgba(5,9,26,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); padding: 0 48px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.5px; background: linear-gradient(135deg, var(--blue4), var(--purple4)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; letter-spacing: 0.01em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; }
.nav-mobile-menu { display: none; position: sticky; top: 68px; z-index: 99; background: rgba(5,9,26,0.98); border-bottom: 1px solid var(--border); padding: 16px 24px; flex-direction: column; gap: 16px; }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { color: var(--muted); text-decoration: none; font-size: 15px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 6px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all 0.2s; text-decoration: none; border: none; font-family: 'Inter', sans-serif; letter-spacing: 0.01em; }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--purple3); color: var(--text); }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; box-shadow: 0 0 24px rgba(108,63,255,0.3); }
.btn-primary:hover { box-shadow: 0 0 36px rgba(108,63,255,0.5); transform: translateY(-1px); }
.btn-lg { padding: 14px 32px; font-size: 15px; border-radius: 8px; }

/* SECTIONS */
section, main { position: relative; z-index: 1; }
.section-label { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--purple4); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(30px, 4vw, 46px); font-weight: 700; letter-spacing: -1px; line-height: 1.1; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 540px; line-height: 1.7; }

/* HERO */
.hero { position: relative; z-index: 1; min-height: 88vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 48px; overflow: hidden; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(108,63,255,0.1); border: 1px solid rgba(108,63,255,0.25); border-radius: 100px; padding: 6px 16px; font-family: 'DM Mono', monospace; font-size: 11px; color: var(--purple4); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-title { font-family: 'Syne', sans-serif; font-size: clamp(44px, 7vw, 88px); font-weight: 800; line-height: 1.0; letter-spacing: -2px; margin-bottom: 24px; }
.hero-title .line2 { background: linear-gradient(135deg, var(--blue4) 0%, var(--purple4) 60%, var(--purple3) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 44px; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 80px; }
.hero-stats { display: flex; gap: 0; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: rgba(13,18,50,0.6); backdrop-filter: blur(8px); }
.stat { padding: 20px 40px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-val { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 700; color: var(--text); display: block; }
.pos { color: var(--green); }
.stat-label { font-size: 12px; color: var(--dim); font-family: 'DM Mono', monospace; letter-spacing: 0.04em; text-transform: uppercase; }

/* TRUST BAR */
.trust-bar { padding: 60px 48px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: rgba(13,18,50,0.4); position: relative; z-index: 1; }
.trust-inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.trust-inner p { font-size: 12px; color: var(--dim); font-family: 'DM Mono', monospace; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 32px; }
.trust-logos { display: flex; gap: 40px; justify-content: center; align-items: center; flex-wrap: wrap; }
.trust-logo { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--dim); letter-spacing: -0.5px; opacity: 0.5; transition: opacity 0.2s; }
.trust-logo:hover { opacity: 0.9; }

/* PRODUCTS */
.products-section { padding: 100px 48px; }
.products-header { text-align: center; margin-bottom: 64px; }
.products-header .section-sub { margin: 0 auto; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; max-width: 1200px; margin: 0 auto; }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; cursor: pointer; text-decoration: none; display: block; color: inherit; }
.product-card:hover { transform: translateY(-6px); border-color: var(--purple3); box-shadow: 0 20px 60px rgba(108,63,255,0.2); }
.product-card.featured { border-color: var(--purple3); box-shadow: 0 0 40px rgba(108,63,255,0.15); }
.product-badge { display: inline-block; padding: 4px 10px; border-radius: 4px; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'DM Mono', monospace; }
.badge-popular { background: rgba(108,63,255,0.2); color: var(--purple4); border: 1px solid rgba(108,63,255,0.3); }
.badge-new { background: rgba(75,120,245,0.2); color: var(--blue4); border: 1px solid rgba(75,120,245,0.3); }
.product-img { height: 180px; background: var(--surface); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.mini-chart { position: relative; z-index: 1; width: 80%; height: 80px; }
.product-info { padding: 20px 24px 24px; }
.product-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.product-name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; color: var(--text); line-height: 1.2; }
.product-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.price { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--text); }
.price-old { font-size: 13px; color: var(--dim); text-decoration: line-through; margin-right: 6px; }

/* FEATURES */
.features-section { padding: 100px 48px; background: linear-gradient(180deg, transparent, rgba(13,18,52,0.5), transparent); }
.features-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-visual { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; overflow: hidden; }
.features-visual::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(108,63,255,0.15), transparent 70%); border-radius: 50%; }
.code-block { background: var(--deep); border: 1px solid rgba(75,120,245,0.12); border-radius: 10px; padding: 20px; font-family: 'DM Mono', monospace; font-size: 12px; line-height: 2; color: var(--muted); margin-bottom: 16px; }
.code-line .key { color: var(--purple4); }
.code-line .val { color: var(--green); }
.code-line .str { color: var(--gold); }
.signal-row { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--deep); border: 1px solid var(--border2); border-radius: 8px; margin-bottom: 8px; }
.signal-icon { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; }
.sig-buy { background: rgba(0,212,160,0.1); color: var(--green); border: 1px solid rgba(0,212,160,0.2); }
.sig-sell { background: rgba(255,77,106,0.1); color: var(--red); border: 1px solid rgba(255,77,106,0.2); }
.sig-hold { background: rgba(245,200,74,0.1); color: var(--gold); border: 1px solid rgba(245,200,74,0.2); }
.signal-info { flex: 1; }
.signal-name { font-size: 13px; font-weight: 500; color: var(--text); }
.signal-pair { font-size: 11px; color: var(--dim); font-family: 'DM Mono', monospace; }
.signal-pct { font-family: 'DM Mono', monospace; font-size: 13px; font-weight: 500; }
.feat-list { display: flex; flex-direction: column; gap: 28px; }
.feat-item { display: flex; gap: 16px; }
.feat-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 10px; background: rgba(108,63,255,0.1); border: 1px solid rgba(108,63,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--purple4); font-family: 'Syne', sans-serif; }
.feat-text h4 { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.feat-text p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* PRICING */
.plans-section { padding: 100px 48px; }
.plans-inner { max-width: 1100px; margin: 0 auto; }
.plans-header { text-align: center; margin-bottom: 64px; }
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px 32px; position: relative; transition: all 0.3s; }
.plan-card.highlighted { background: linear-gradient(160deg, rgba(108,63,255,0.12), rgba(75,120,245,0.06)); border-color: var(--purple3); box-shadow: 0 0 60px rgba(108,63,255,0.15); }
.plan-tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--accent), var(--accent2)); color: #fff; padding: 4px 18px; border-radius: 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'DM Mono', monospace; white-space: nowrap; }
.plan-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.plan-price { font-family: 'Syne', sans-serif; font-size: 44px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 6px; }
.plan-price sup { font-size: 22px; vertical-align: super; font-weight: 600; }
.plan-period { font-size: 13px; color: var(--dim); margin-bottom: 28px; font-family: 'DM Mono', monospace; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 24px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.plan-features li::before { content: '✓'; color: var(--purple3); font-weight: 700; font-size: 13px; }
.plan-features li.disabled { color: var(--dim); }
.plan-features li.disabled::before { content: '–'; color: var(--dim); }

/* FAQ */
.faq-section { padding: 80px 48px 100px; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-q { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; user-select: none; }
.faq-toggle { color: var(--purple3); font-size: 20px; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--muted); line-height: 1.7; padding-top: 14px; display: none; }
.faq-item.open .faq-a { display: block; }

/* CTA BAND */
.cta-band { padding: 100px 48px; text-align: center; position: relative; z-index: 1; }
.cta-box { max-width: 700px; margin: 0 auto; background: linear-gradient(160deg, rgba(108,63,255,0.12), rgba(75,120,245,0.06)); border: 1px solid rgba(108,63,255,0.3); border-radius: 24px; padding: 72px 48px; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(108,63,255,0.15), transparent 70%); border-radius: 50%; }
.cta-box h2 { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-box p { font-size: 16px; color: var(--muted); margin-bottom: 36px; position: relative; z-index: 1; }
.cta-box .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* DISCLAIMER */
.disclaimer-bar { background: rgba(13,18,50,0.6); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 24px 48px; position: relative; z-index: 1; }
.disclaimer-bar p { max-width: 1200px; margin: 0 auto; font-size: 11px; color: var(--dim); line-height: 1.8; font-family: 'DM Mono', monospace; }

/* FOOTER */
footer { background: var(--deep); border-top: 1px solid var(--border); padding: 64px 48px 32px; position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto 48px; }
.footer-brand .logo { display: block; margin-bottom: 14px; font-size: 24px; }
.footer-brand p { font-size: 13px; color: var(--dim); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col a { display: block; font-size: 13px; color: var(--dim); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--purple4); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; font-size: 12px; color: var(--dim); font-family: 'DM Mono', monospace; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--dim); text-decoration: none; }
.footer-links a:hover { color: var(--purple4); }

/* PRODUCT DETAIL */
.product-detail { padding: 80px 48px; position: relative; z-index: 1; }
.product-detail-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }
.product-detail-info h1 { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.big-price { font-family: 'Syne', sans-serif; font-size: 52px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 8px; }
.big-price sup { font-size: 24px; vertical-align: super; }
.product-description p, .product-detail-info p { font-size: 16px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.product-description h3, .product-detail-info h3 { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 700; margin: 32px 0 14px; color: var(--text); }
.product-description ul, .product-detail-info ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.product-description ul li, .product-detail-info ul li { font-size: 15px; color: var(--muted); display: flex; align-items: center; gap: 10px; }
.product-description ul li::before, .product-detail-info ul li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.product-buy-box { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 36px; position: sticky; top: 88px; }
.buy-price { font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 8px; }
.buy-price sup { font-size: 22px; vertical-align: super; }
.buy-note { font-size: 13px; color: var(--dim); font-family: 'DM Mono', monospace; margin-bottom: 28px; }
.product-buy-box .btn { width: 100%; justify-content: center; margin-bottom: 12px; font-size: 15px; padding: 14px; }
.buy-includes { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.buy-includes li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.buy-includes li::before { content: '✓'; color: var(--purple3); font-weight: 700; flex-shrink: 0; }
.buy-guarantee { font-size: 12px; color: var(--dim); text-align: center; line-height: 1.6; margin-top: 16px; font-family: 'DM Mono', monospace; }

/* PAGE HERO */
.page-hero { position: relative; z-index: 1; padding: 80px 48px 60px; text-align: center; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(36px, 5vw, 60px); font-weight: 800; letter-spacing: -2px; line-height: 1.05; margin-bottom: 20px; }
.page-hero h1 span { background: linear-gradient(135deg, var(--blue4), var(--purple4)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 17px; color: var(--muted); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* LEGAL PAGES */
.legal-page { padding: 80px 48px 120px; position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.legal-page h1 { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.updated { font-family: 'DM Mono', monospace; font-size: 12px; color: var(--dim); margin-bottom: 48px; }
.page-content h2, .legal-page h2 { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--text); margin: 40px 0 12px; }
.page-content p, .legal-page p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.page-content ul, .legal-page ul { list-style: none; padding: 0; margin-bottom: 16px; }
.page-content ul li, .legal-page ul li { font-size: 15px; color: var(--muted); line-height: 1.8; padding-left: 20px; position: relative; margin-bottom: 8px; }
.page-content ul li::before, .legal-page ul li::before { content: '–'; position: absolute; left: 0; color: var(--purple3); }

.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.tag { padding: 3px 10px; background: rgba(75,120,245,0.08); border: 1px solid rgba(75,120,245,0.12); border-radius: 4px; font-size: 11px; color: var(--blue4); font-family: 'DM Mono', monospace; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.7s ease forwards; }
.delay1 { animation-delay: 0.1s; }
.delay2 { animation-delay: 0.2s; }
.delay3 { animation-delay: 0.35s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .products-section, .features-section, .plans-section, .faq-section, footer, .trust-bar, .cta-band, .disclaimer-bar, .product-detail, .legal-page, .page-hero { padding-left: 24px; padding-right: 24px; }
  .features-inner { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: column; }
  .hero { padding: 60px 24px; min-height: auto; }
  .product-detail-inner { grid-template-columns: 1fr; }
  .product-buy-box { position: static; }
  .stat { padding: 16px 24px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { width: 100%; }
  .plans-grid { grid-template-columns: 1fr; }
}
