/* ─── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #080b12;
  --bg2:       #0d1220;
  --bg3:       #111827;
  --blue:      #67e8f9;
  --blue-dim:  #38bdf8;
  --orange:    #ff6b2b;
  --orange-dim:#cc4f1a;
  --white:     #f0f4ff;
  --muted:     #7a8499;
  --border:    rgba(103,232,249,0.12);
  --card:      rgba(13,18,32,0.85);
  --glow-b:    0 0 40px rgba(103,232,249,0.18);
  --glow-o:    0 0 40px rgba(255,107,43,0.22);
  --radius:    14px;
  --nav-h:     70px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
::selection { background: var(--blue); color: #000; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ─── SCROLLBAR ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-dim); border-radius: 3px; }

/* ─── UTILITY ───────────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--blue); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px; background: var(--blue);
}
h2.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  line-height: 1.1; color: var(--white);
}
h2.section-title span { color: var(--blue); }
p.lead {
  font-size: 18px; color: var(--muted); line-height: 1.75;
  max-width: 600px; margin-top: 16px;
}
.text-center { text-align: center; }
.text-muted { color: var(--muted); }

/* ─── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.4px;
  padding: 14px 28px; border-radius: 8px;
  transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: #000;
  box-shadow: 0 0 24px rgba(103,232,249,0.35);
}
.btn-primary:hover {
  background: #93f0fb; box-shadow: 0 0 40px rgba(103,232,249,0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--blue); color: var(--blue);
  transform: translateY(-2px);
}
.btn-orange {
  background: var(--orange); color: #fff;
  box-shadow: 0 0 24px rgba(255,107,43,0.35);
}
.btn-orange:hover {
  background: #ff8050; box-shadow: 0 0 40px rgba(255,107,43,0.5);
  transform: translateY(-2px);
}
.btn svg { width: 16px; height: 16px; }

/* ─── GRID BG PATTERN ───────────────────────────────────────────── */
.grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(103,232,249,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103,232,249,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ─── NAV ───────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(8,11,18,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
nav .container {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 8px;
}
.nav-logo .logo-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #000;
}
.nav-logo span.dim { color: var(--muted); font-weight: 400; }
.nav-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  transition: color 0.2s; letter-spacing: 0.2px;
  padding: 6px 12px; border-radius: 6px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.nav-links a.active {
  color: var(--blue);
  background: rgba(103,232,249,0.08);
  border-bottom-color: var(--blue);
}
.nav-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 4px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all 0.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-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 24px; flex-direction: column; gap: 4px; z-index: 998;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px; font-weight: 500; color: var(--muted);
  padding: 12px 16px; border-radius: 8px; transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active {
  color: var(--blue); background: rgba(103,232,249,0.08);
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  position: relative; overflow: hidden;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(103,232,249,0.06) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--muted); margin-bottom: 20px;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--muted); opacity: 0.4; }
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 800;
  line-height: 1.05; letter-spacing: -1px;
}
.page-hero h1 span {
  background: linear-gradient(90deg, var(--blue), #67e8f9);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  font-size: 18px; color: var(--muted); line-height: 1.75;
  margin-top: 16px; max-width: 560px;
}

/* ─── CARDS ─────────────────────────────────────────────────────── */
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all 0.3s;
}
.card:hover {
  border-color: rgba(103,232,249,0.25);
  transform: translateY(-5px); box-shadow: var(--glow-b);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(103,232,249,0.08); border: 1px solid rgba(103,232,249,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--blue); }
.card-icon.orange {
  background: rgba(255,107,43,0.08); border-color: rgba(255,107,43,0.2);
}
.card-icon.orange svg { color: var(--orange); }
.card-tag {
  display: inline-block; margin-top: 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(103,232,249,0.08); color: var(--blue);
}
.card-tag.orange { background: rgba(255,107,43,0.08); color: var(--orange); }

/* ─── STATS ─────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px; font-weight: 700;
  background: linear-gradient(135deg, var(--blue), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.stat-suffix { color: var(--orange); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; letter-spacing: 0.5px; }

/* ─── REVEAL ────────────────────────────────────────────────────── */
.reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(28px); }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── TOAST ─────────────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--bg2); border: 1px solid var(--blue);
  border-radius: 10px; padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateY(80px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .t-icon { color: var(--blue); font-size: 18px; }

/* ─── CTA BAND ──────────────────────────────────────────────────── */
.cta-band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(103,232,249,0.06) 0%, rgba(255,107,43,0.04) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0; text-align: center;
}
.cta-band h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
  line-height: 1.1; margin-bottom: 16px;
}
.cta-band p { font-size: 17px; color: var(--muted); margin-bottom: 36px; }
.cta-band .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: var(--bg2); padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; font-size: 20px; }
.footer-brand p { font-size: 13.5px; color: var(--muted); line-height: 1.7; max-width: 260px; }
.footer-col h4 {
  font-size: 12px; font-weight: 700; color: var(--white);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: var(--muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px;
}
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all 0.2s;
}
.social-link:hover {
  background: rgba(103,232,249,0.1); border-color: rgba(103,232,249,0.3); color: var(--blue);
}
.footer-locations { display: flex; gap: 20px; align-items: center; }
.loc-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.8px;
  padding: 4px 10px; border-radius: 4px;
  background: rgba(103,232,249,0.07); color: var(--blue);
}
/* ─── WHC BADGE ─────────────────────────────────────────────────── */
.whc-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 8px;
  background: rgba(103,232,249,0.05); border: 1px solid rgba(103,232,249,0.15);
  font-size: 12px; color: var(--muted); margin-top: 12px;
}
.whc-badge img { width: 18px; height: 18px; }
.whc-badge span { color: var(--white); font-weight: 600; }

/* ─── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 32px; }
}
