:root {
  --bg: #0b0e17;
  --bg2: #121624;
  --bg3: #1a1f33;
  --bg4: #222840;
  --accent: #f0b90b;
  --accent-dark: #c99008;
  --green: #00c853;
  --red: #f6465d;
  --text: #e2e8f0;
  --muted: #8892a4;
  --border: #2a3250;
  --radius: 10px;
  --font: 'Segoe UI', system-ui, sans-serif;
  --max: 1140px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font); background: var(--bg); color: var(--text); min-height: 100vh; overflow-x: hidden; }

img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 8px; font-size: .95rem; font-weight: 700; cursor: pointer; transition: all .2s; border: none; text-decoration: none; }
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(240,185,11,.3); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.section-label { font-size: .72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--muted); line-height: 1.7; max-width: 600px; }
.text-accent { color: var(--accent); }
.text-green { color: var(--green); }
.text-red { color: var(--red); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,14,23,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 6px; }
.nav-logo-icon { height: 1.4em; width: auto; vertical-align: middle; flex-shrink: 0; }
.nav-logo-name { font-size: 1.2rem; font-weight: 700; color: var(--accent); letter-spacing: 1px; white-space: nowrap; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-login { font-size: .88rem; font-weight: 600; color: var(--muted); border: 1px solid var(--border); padding: 8px 18px; border-radius: 20px; transition: all .2s; white-space: nowrap; }
.nav-login:hover { border-color: var(--accent); color: var(--accent); }
.nav-cta { font-size: .88rem; padding: 8px 20px; white-space: nowrap; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; position: fixed; inset: 64px 0 0 0; background: var(--bg2); border-top: 1px solid var(--border); z-index: 99; flex-direction: column; padding: 24px 20px; gap: 16px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; color: var(--text); padding: 12px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 8px; }

/* ── HERO ── */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 20px 80px;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,185,11,.08) 0%, transparent 70%),
              var(--bg);
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(42,50,80,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,50,80,.4) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 0%, transparent 75%);
}
.hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(240,185,11,.1); border: 1px solid rgba(240,185,11,.3); color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 28px; }
.hero-title { font-size: clamp(2rem, 6vw, 3.6rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; }
.hero-title span { color: var(--accent); }
.hero-sub { font-size: clamp(.95rem, 2.5vw, 1.15rem); color: var(--muted); line-height: 1.8; margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 0; justify-content: center; flex-wrap: wrap; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; max-width: 560px; margin: 0 auto; }
.hero-stat { flex: 1; min-width: 140px; padding: 18px 20px; border-right: 1px solid var(--border); text-align: center; background: var(--bg2); }
.hero-stat:last-child { border-right: none; }
.hero-stat-val { font-size: 1.5rem; font-weight: 800; color: var(--accent); font-family: 'Courier New', monospace; }
.hero-stat-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ── TICKER BAND ── */
.ticker-band { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 10px 0; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 48px; animation: tickScroll 22s linear infinite; }
.ticker-band:hover .ticker-track { animation-play-state: paused; }
@keyframes tickScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.ticker-item .symbol { color: var(--text); font-weight: 700; font-family: 'Courier New', monospace; }
.ticker-item .up { color: var(--green); }
.ticker-item .dn { color: var(--red); }

/* ── HOW IT WORKS ── */
.how { padding: 96px 20px; background: var(--bg); }
.how-inner { max-width: var(--max); margin: 0 auto; }
.how-header { text-align: center; margin-bottom: 64px; }
.how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; background: var(--border); border-radius: 12px; overflow: hidden; }
.how-step { background: var(--bg2); padding: 36px 28px; position: relative; }
.step-num { font-size: 3rem; font-weight: 900; color: rgba(240,185,11,.12); font-family: 'Courier New', monospace; line-height: 1; margin-bottom: 16px; }
.step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.step-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── FEATURE BLOCKS ── */
.features { padding: 96px 20px; background: var(--bg2); }
.features-inner { max-width: var(--max); margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 64px; }
.features-header .section-sub { margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.feature-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 28px; transition: border-color .2s, transform .2s; }
.feature-card:hover { border-color: rgba(240,185,11,.4); transform: translateY(-3px); }
.feature-icon { width: 48px; height: 48px; background: rgba(240,185,11,.1); border: 1px solid rgba(240,185,11,.2); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.feature-title { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.feature-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; }

/* ── TRUST SECTION ── */
.trust { padding: 80px 20px; background: var(--bg); }
.trust-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.trust-box { background: linear-gradient(135deg, rgba(240,185,11,.06), rgba(240,185,11,.02)); border: 1px solid rgba(240,185,11,.25); border-radius: 16px; padding: 48px 40px; }
.trust-icon { font-size: 3rem; margin-bottom: 20px; }
.trust-points { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 36px; text-align: left; }
.trust-point { display: flex; gap: 12px; align-items: flex-start; }
.trust-check { color: var(--green); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.trust-point-text h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.trust-point-text p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── PRICING ── */
.pricing { padding: 96px 20px; background: var(--bg2); }
.pricing-inner { max-width: 900px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header .section-sub { margin: 0 auto; }
.pricing-card-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: start; }
.pricing-card { background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 36px; }
.pricing-card.featured { border-color: var(--accent); background: linear-gradient(160deg, rgba(240,185,11,.07), var(--bg3)); position: relative; overflow: hidden; }
.featured-badge { position: absolute; top: 16px; right: -22px; background: var(--accent); color: #000; font-size: .72rem; font-weight: 800; letter-spacing: 1px; padding: 5px 40px; transform: rotate(35deg); }
.plan-name { font-size: .78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.plan-price { font-size: 3rem; font-weight: 900; line-height: 1; color: var(--text); font-family: 'Courier New', monospace; }
.plan-price span { font-size: 1rem; color: var(--muted); font-weight: 400; font-family: var(--font); }
.plan-desc { font-size: .88rem; color: var(--muted); margin: 12px 0 24px; line-height: 1.6; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-features li { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; }
.plan-features li .check { color: var(--green); flex-shrink: 0; }
.plan-features li .cross { color: var(--muted); flex-shrink: 0; }
.plan-features li.dimmed { color: var(--muted); }
.plan-btn { width: 100%; padding: 14px; font-size: .95rem; font-weight: 700; border-radius: 8px; cursor: pointer; border: none; transition: all .2s; }
.plan-btn-primary { background: var(--accent); color: #000; }
.plan-btn-primary:hover { background: var(--accent-dark); }
.plan-btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.plan-btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.payment-methods { margin-top: 48px; text-align: center; }
.payment-methods p { font-size: .82rem; color: var(--muted); margin-bottom: 16px; }
.payment-icons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.pay-chip { background: var(--bg3); border: 1px solid var(--border); border-radius: 8px; padding: 10px 18px; font-size: .82rem; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 6px; }
.pay-chip .dot { width: 8px; height: 8px; border-radius: 50%; }
.pay-chip .dot-blue { background: #1a56db; }
.pay-chip .dot-yellow { background: var(--accent); }
.pay-chip .dot-green { background: var(--green); }
.pay-chip .dot-purple { background: #7c3aed; }
.billing-note { margin-top: 24px; font-size: .8rem; color: var(--muted); text-align: center; }
.billing-note a { color: var(--accent); }

/* ── GET STARTED SECTION ── */
.get-started { padding: 96px 20px; background: var(--bg); }
.get-started-inner { max-width: var(--max); margin: 0 auto; }
.get-started-header { text-align: center; margin-bottom: 56px; }
.gs-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 48px; }
.gs-step { background: var(--bg2); border: 1px solid var(--border); border-radius: 12px; padding: 28px 22px; text-align: center; }
.gs-num { width: 40px; height: 40px; border-radius: 50%; background: rgba(240,185,11,.12); border: 1px solid rgba(240,185,11,.3); color: var(--accent); font-weight: 800; font-size: .95rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.gs-step h4 { font-size: .95rem; font-weight: 700; margin-bottom: 8px; }
.gs-step p { font-size: .83rem; color: var(--muted); line-height: 1.6; }
.gs-cta { text-align: center; }
.gs-cta p { font-size: .88rem; color: var(--muted); margin-top: 14px; }

/* ── CONTACT ── */
.contact { padding: 96px 20px; background: var(--bg2); }
.contact-inner { max-width: 780px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 48px; }
.contact-header .section-sub { margin: 0 auto; }
.contact-form { background: var(--bg3); border: 1px solid var(--border); border-radius: 16px; padding: 40px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; }
.form-group input, .form-group textarea, .form-group select { background: var(--bg4); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; color: var(--text); font-size: .9rem; outline: none; transition: border .2s; font-family: var(--font); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-submit { width: 100%; padding: 14px; font-size: .95rem; font-weight: 700; background: var(--accent); color: #000; border: none; border-radius: 8px; cursor: pointer; transition: all .2s; }
.contact-submit:hover { background: var(--accent-dark); }
.contact-submit:disabled { opacity: .5; cursor: not-allowed; }
.form-msg { text-align: center; font-size: .9rem; padding: 12px; border-radius: 8px; display: none; }
.form-msg.success { background: rgba(0,200,83,.1); color: var(--green); border: 1px solid rgba(0,200,83,.25); }
.form-msg.error { background: rgba(246,70,93,.1); color: var(--red); border: 1px solid rgba(246,70,93,.25); }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 56px 20px 32px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; color: var(--muted); }
.footer-disclaimer { font-size: .75rem; color: var(--muted); opacity: .7; margin-top: 8px; line-height: 1.6; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pricing-card-wrap { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .nav-actions .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 72px 16px 60px; }
  .hero-stats { flex-direction: column; border: none; gap: 1px; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); min-width: unset; }
  .hero-stat:last-child { border-bottom: none; }
  .how, .features, .trust, .pricing, .get-started, .contact { padding: 72px 16px; }
  .trust-box { padding: 32px 20px; }
  .contact-form { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .how-steps { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gs-steps { grid-template-columns: 1fr 1fr; }
  .trust-points { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
  .gs-steps { grid-template-columns: 1fr; }
}
