@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@1,600;1,700&display=swap');

:root {
  --bg:       #06090F;
  --bg2:      #0C1220;
  --bg3:      #0F1826;
  --card:     #111929;
  --card2:    #172036;
  --accent:   #00D4FF;
  --accent2:  #FF6B35;
  --gold:     #F5A623;
  --green:    #00E5A0;
  --white:    #EFF4FF;
  --muted:    #6E7F99;
  --border:   rgba(0,212,255,0.10);
  --borderg:  rgba(0,212,255,0.22);
  --glow:     rgba(0,212,255,0.13);
  --font-d:   'Bebas Neue', sans-serif;
  --font-b:   'DM Sans', sans-serif;
  --font-em:  'Playfair Display', serif;
  --r:        12px;
  --r2:       18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.alt  { background: var(--bg2); }
.alt2 { background: var(--bg3); }

/* ── TYPE ── */
.display { font-family: var(--font-d); font-size: clamp(58px,8vw,110px); line-height:.92; letter-spacing:.5px; }
.h1 { font-family: var(--font-d); font-size: clamp(40px,5.5vw,72px); line-height:1; }
.h2 { font-family: var(--font-d); font-size: clamp(28px,3.5vw,44px); line-height:1.05; }
.h3 { font-size: 19px; font-weight: 700; }
.accent  { color: var(--accent); }
.gold    { color: var(--gold); }
.orange  { color: var(--accent2); }
.green   { color: var(--green); }
.muted   { color: var(--muted); }
.tc      { text-align: center; }
.tag {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); border: 1px solid rgba(0,212,255,.35);
  border-radius: 30px; padding: 5px 16px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block; padding: 13px 30px; font-family: var(--font-b);
  font-size: 14px; font-weight: 600; border-radius: 8px; cursor: pointer;
  text-decoration: none; transition: all .22s ease; border: none; letter-spacing: .2px;
}
.btn-p  { background: var(--accent); color: #000; }
.btn-p:hover { background: #1cdcff; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,212,255,.3); }
.btn-o  { background: transparent; color: var(--accent); border: 1.5px solid rgba(0,212,255,.5); }
.btn-o:hover { background: var(--accent); color: #000; transform: translateY(-2px); }
.btn-g  { background: var(--gold); color: #000; }
.btn-g:hover { background: #f7b83d; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,166,35,.3); }
.btn-lg { padding: 17px 40px; font-size: 16px; }
.btn-full { width: 100%; text-align: center; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(6,9,15,0.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0; transition: padding .3s;
}
nav.compact { padding: 11px 0; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { font-family: var(--font-d); font-size: 24px; letter-spacing: 1.5px; text-decoration: none; color: var(--white); }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after { content:''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: 2px; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 190; background: var(--bg); padding: 100px 28px 40px; flex-direction: column; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { display: block; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 20px; font-weight: 600; color: var(--white); text-decoration: none; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 148px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(0,212,255,.06) 0%, transparent 65%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,212,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,212,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-hero-label::before { content:''; width: 32px; height: 2px; background: var(--accent); }

/* ── CARDS ── */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 32px; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.card:hover { border-color: var(--borderg); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.card-glow { box-shadow: 0 0 0 1px var(--accent), 0 0 40px rgba(0,212,255,.1); border-color: var(--accent); }

/* ── MARQUEE ── */
.marquee-wrap { overflow: hidden; padding: 22px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-inner { display: inline-flex; gap: 0; animation: slide 28s linear infinite; white-space: nowrap; }
.marquee-item { display: inline-flex; align-items: center; gap: 8px; padding: 0 32px; border-right: 1px solid var(--border); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.marquee-item em { font-style: normal; font-size: 15px; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS ROW ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-box { text-align: center; padding: 28px 16px; border-right: 1px solid var(--border); }
.stat-box:last-child { border-right: none; }
.stat-num { font-family: var(--font-d); font-size: 56px; line-height: 1; }
.stat-lbl { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .5px; margin-top: 4px; }

/* ── DIVIDER ── */
.divider { width: 40px; height: 3px; background: var(--accent); border-radius: 2px; }
.divider-center { margin: 0 auto; }

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.check-item::before { content:'✓'; color: var(--accent); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ── FADE IN ── */
.fi { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.fi.on { opacity: 1; transform: none; }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.footer-brand p { font-size: 14px; color: var(--muted); margin-top: 10px; max-width: 240px; line-height: 1.6; }
.footer-col h5 { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12px; color: var(--muted); }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link { width: 34px; height: 34px; border-radius: 8px; background: var(--card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; text-decoration: none; color: var(--muted); transition: all .2s; }
.social-link:hover { border-color: var(--accent); color: var(--accent); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-box:nth-child(2) { border-right: none; }
  .stat-box:nth-child(3) { border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-box { border-right: 1px solid var(--border) !important; border-top: 1px solid var(--border); }
  .stat-box:nth-child(odd) { border-right: 1px solid var(--border) !important; }
  .stat-box:nth-child(even) { border-right: none !important; }
}
