@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg:        #050c18;
  --bg2:       #0a1628;
  --bg3:       #0f1f38;
  --gold:      #e8a020;
  --gold2:     #ffc040;
  --blue:      #1a6abf;
  --text:      #eaf0f8;
  --muted:     #6888a8;
  --border:    rgba(255,255,255,0.07);
  --radius:    12px;
}

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

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

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  background: rgba(5,12,24,0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: 1.5px;
  color: var(--text); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display:flex; gap:28px; list-style:none; align-items:center; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500; letter-spacing: 0.3px;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--gold) !important;
  color: #000 !important;
  padding: 8px 20px; border-radius: 6px;
  font-weight: 700 !important; font-size: 13px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold2) !important; }

.hamburger {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:4px;
}
.hamburger span { display:block; width:24px; height:2px; background:var(--text); border-radius:2px; transition:.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-nav {
  display:none; position:fixed; top:66px; left:0; right:0; z-index:199;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 16px 6%;
}
.mobile-nav.open { display:block; }
.mobile-nav a {
  display:block; padding:13px 0;
  color:var(--muted); text-decoration:none; font-size:16px; font-weight:500;
  border-bottom: 1px solid var(--border); transition:color .2s;
}
.mobile-nav a:last-child { border-bottom:none; }
.mobile-nav a:hover { color:var(--text); }

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; padding: 110px 6% 70px;
  position:relative; overflow:hidden;
}
.hero .grid-bg {
  position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero .glow {
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 65% 55% at 50% 45%, rgba(26,106,191,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 35% 25% at 75% 15%, rgba(232,160,32,0.07) 0%, transparent 60%);
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(232,160,32,0.1); border:1px solid rgba(232,160,32,0.3);
  border-radius:50px; padding:5px 16px;
  font-size:11px; letter-spacing:2px; text-transform:uppercase;
  color:var(--gold); margin-bottom:28px; position:relative;
}
.hero-badge .dot { width:6px;height:6px;border-radius:50%;background:var(--gold);animation:pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }

.hero h1 {
  font-family:'Bebas Neue',sans-serif;
  font-size: clamp(56px, 10vw, 112px);
  line-height: .95; letter-spacing:.5px;
  margin-bottom:22px; position:relative;
}
.hero h1 .gold { color:var(--gold); }
.hero h1 .stroke {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
  color: transparent;
}
.hero-sub {
  font-size: clamp(15px,2vw,18px);
  color:var(--muted); max-width:560px;
  margin:0 auto 40px; position:relative; line-height:1.75;
}
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; position:relative; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display:inline-block; padding:13px 30px; border-radius:8px;
  font-weight:700; font-size:14px; text-decoration:none;
  letter-spacing:.3px; transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background:var(--gold); color:#000; }
.btn-gold:hover { background:var(--gold2); box-shadow:0 8px 24px rgba(232,160,32,0.3); }
.btn-ghost { border:1px solid var(--border); color:var(--text); }
.btn-ghost:hover { border-color:rgba(255,255,255,.25); background:rgba(255,255,255,.04); }

/* ── STATS BAR ───────────────────────────────────── */
.stats-bar {
  display:flex; flex-wrap:wrap;
  background:var(--bg2);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
}
.stat {
  flex:1; min-width:160px; text-align:center;
  padding:28px 20px;
  border-right:1px solid var(--border);
}
.stat:last-child { border-right:none; }
.stat-n { font-family:'Bebas Neue',sans-serif; font-size:44px; color:var(--gold); line-height:1; }
.stat-l { font-size:12px; color:var(--muted); margin-top:4px; letter-spacing:.5px; }

/* ── SECTIONS ────────────────────────────────────── */
section { padding:88px 6%; }
.section-tag {
  font-size:11px; letter-spacing:2.5px; text-transform:uppercase;
  color:var(--gold); font-weight:600; margin-bottom:10px;
}
.section-title {
  font-family:'Bebas Neue',sans-serif;
  font-size: clamp(38px,5vw,64px); line-height:1.05; margin-bottom:14px;
}
.section-sub { color:var(--muted); font-size:16px; max-width:520px; line-height:1.75; }

/* ── GRID / CARDS ────────────────────────────────── */
.grid-3 { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:20px; margin-top:48px; }
.grid-2 { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; margin-top:48px; }
.grid-4 { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:20px; margin-top:48px; }

.card {
  background:var(--bg2); border:1px solid var(--border);
  border-radius:var(--radius); padding:30px 26px;
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color:rgba(232,160,32,.35); transform:translateY(-3px); }
.card-icon {
  width:46px;height:46px; border-radius:10px;
  background:rgba(232,160,32,.1); border:1px solid rgba(232,160,32,.2);
  display:flex; align-items:center; justify-content:center;
  font-size:20px; margin-bottom:18px;
}
.card h3 { font-size:19px; font-weight:700; margin-bottom:8px; }
.card p { color:var(--muted); font-size:14px; line-height:1.7; }

/* ── PRODUCT CARDS ───────────────────────────────── */
.product-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:16px; overflow:hidden;
  display:flex; flex-direction:column; transition:border-color .3s, transform .3s;
}
.product-card:hover { border-color:rgba(232,160,32,.3); transform:translateY(-4px); }
.product-card-top { padding:36px 32px 28px; border-bottom:1px solid var(--border); }
.ptag {
  display:inline-block; font-size:10px; letter-spacing:1.5px; text-transform:uppercase;
  font-weight:700; color:var(--gold);
  background:rgba(232,160,32,.1); border:1px solid rgba(232,160,32,.25);
  border-radius:4px; padding:3px 10px; margin-bottom:14px;
}
.product-card-top h2 { font-family:'Bebas Neue',sans-serif; font-size:38px; line-height:1; margin-bottom:8px; }
.product-card-top p { color:var(--muted); font-size:15px; line-height:1.65; }
.product-card-body { padding:26px 32px; flex:1; }
.product-card-foot { padding:20px 32px; border-top:1px solid var(--border); }

.checklist { list-style:none; display:flex; flex-direction:column; gap:10px; }
.checklist li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--muted); }
.checklist li::before { content:'✓'; color:var(--gold); font-weight:700; flex-shrink:0; margin-top:1px; }

/* ── PRICING ─────────────────────────────────────── */
.price-card {
  background:var(--bg2); border:1px solid var(--border); border-radius:var(--radius);
  padding:30px 24px; text-align:center; transition:border-color .3s, transform .3s;
}
.price-card:hover { border-color:rgba(232,160,32,.4); transform:translateY(-3px); }
.price-card.highlight {
  border-color:var(--gold);
  background:linear-gradient(160deg,rgba(232,160,32,.07),var(--bg2));
}
.price-card .role { font-size:12px; text-transform:uppercase; letter-spacing:1.5px; color:var(--muted); margin-bottom:14px; }
.price-card .amount { font-family:'Bebas Neue',sans-serif; font-size:52px; color:var(--gold); line-height:1; }
.price-card .per { font-size:13px; color:var(--muted); margin-bottom:10px; }
.price-card .note { font-size:12px; color:var(--muted); margin-top:12px; }

/* ── PLATFORMS ───────────────────────────────────── */
.platform-pills { display:flex; gap:10px; flex-wrap:wrap; margin-top:32px; }
.pill {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--bg2); border:1px solid var(--border);
  border-radius:50px; padding:9px 18px;
  color:var(--muted); text-decoration:none; font-size:13px; font-weight:500;
  transition:border-color .2s, color .2s;
}
.pill:hover { border-color:rgba(255,255,255,.22); color:var(--text); }

/* ── CTA BAND ────────────────────────────────────── */
.cta-band {
  background:linear-gradient(135deg,var(--bg2) 0%,rgba(26,106,191,.12) 100%);
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  text-align:center; padding:88px 6%;
  position:relative; overflow:hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 50% 80% at 50% 50%, rgba(232,160,32,.06) 0%, transparent 70%);
}
.cta-band h2 { font-family:'Bebas Neue',sans-serif; font-size:clamp(36px,5vw,60px); margin-bottom:14px; }
.cta-band p { color:var(--muted); font-size:16px; margin-bottom:36px; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background:var(--bg2); border-top:1px solid var(--border);
  padding:52px 6% 28px;
}
.footer-inner {
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:36px;
  padding-bottom:36px; border-bottom:1px solid var(--border); margin-bottom:24px;
}
.footer-brand-logo { font-family:'Bebas Neue',sans-serif; font-size:24px; text-decoration:none; color:var(--text); display:block; margin-bottom:10px; }
.footer-brand-logo span { color:var(--gold); }
.footer-brand p { font-size:13px; color:var(--muted); line-height:1.65; max-width:260px; }
.footer-col h4 { font-size:13px; font-weight:600; letter-spacing:.5px; margin-bottom:14px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col a { font-size:13px; color:var(--muted); text-decoration:none; transition:color .2s; }
.footer-col a:hover { color:var(--text); }
.footer-bottom { display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }
.footer-bottom p { font-size:12px; color:var(--muted); }

/* ── DIVIDER ─────────────────────────────────────── */
.divider { border:none; border-top:1px solid var(--border); margin:0; }

/* ── REVEAL ──────────────────────────────────────── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width:768px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  section { padding:64px 5%; }
  .footer-inner { flex-direction:column; }
  .stat { flex-basis:50%; }
}
@media (max-width:480px) {
  .stat { flex-basis:100%; border-right:none; border-bottom:1px solid var(--border); }
  .stat:last-child { border-bottom:none; }
}
