@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/SpaceGrotesk-400.ttf') format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/SpaceGrotesk-500.ttf') format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/SpaceGrotesk-600.ttf') format('truetype');
}
@font-face {
  font-family: 'Space Grotesk';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/SpaceGrotesk-700.ttf') format('truetype');
}
:root {
  --bg: #05050c;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.08);
  --glow: #6ef0ff;
  --accent: #a45bff;
  --accent-2: #ff7ad1;
  --text: #f2f6ff;
  --muted: #9eb2d2;
  --shadow: 0 10px 60px rgba(0,0,0,0.4);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(78, 161, 255, 0.12), transparent 26%),
              radial-gradient(circle at 90% 10%, rgba(255, 122, 209, 0.1), transparent 22%),
              radial-gradient(circle at 50% 70%, rgba(120, 255, 214, 0.12), transparent 32%),
              var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}
.grid-bg {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(5, 5, 12, 0.6);
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  font-weight: 700;
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--glow), var(--accent));
  box-shadow: 0 0 24px rgba(110, 240, 255, 0.7);
}
.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
  position: relative;
  z-index: 1;
  border: 1px solid transparent;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav-links a.active {
  color: var(--text);
  background: rgba(110, 240, 255, 0.12);
  border-color: rgba(110, 240, 255, 0.4);
  box-shadow: 0 10px 30px rgba(110, 240, 255, 0.2);
}
.nav-indicator {
  position: absolute;
  bottom: 4px;
  left: 0;
  height: 3px;
  width: 40px;
  background: linear-gradient(90deg, var(--glow), var(--accent));
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(110, 240, 255, 0.75), 0 0 24px rgba(164, 91, 255, 0.5);
  opacity: 0;
  transition: transform 0.35s ease, width 0.35s ease, opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.pill {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(120deg, rgba(110, 240, 255, 0.2), rgba(164, 91, 255, 0.1));
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}
main {
  position: relative;
  z-index: 1;
}
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 28px;
}
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: center;
  padding: 90px 28px 60px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-size: 12px;
}
h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 16px 0 12px;
  line-height: 1.15;
}
p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 14px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.btn {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, border 0.2s;
}
.btn.primary {
  background: linear-gradient(120deg, var(--glow), var(--accent));
  color: #02030a;
  box-shadow: 0 10px 40px rgba(110, 240, 255, 0.35);
  border: none;
}
.btn.compact {
  padding: 10px 16px;
  min-height: 44px;
}
.btn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.2); }
.btn.primary:hover { box-shadow: 0 16px 50px rgba(110, 240, 255, 0.45); }
.glass-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -40%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(110,240,255,0.4), transparent 55%);
  filter: blur(22px);
  opacity: 0.5;
}
.glass-card::after {
  content: '';
  position: absolute;
  inset: auto -40% -40% auto;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,122,209,0.35), transparent 55%);
  filter: blur(24px);
  opacity: 0.55;
}
.hero-visual {
  min-height: 360px;
  background: linear-gradient(145deg, rgba(110, 240, 255, 0.12), rgba(164, 91, 255, 0.12), rgba(255, 122, 209, 0.14));
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.45;
  animation: float 10s ease-in-out infinite;
}
.orb-a { width: 200px; height: 200px; background: #6ef0ff; top: 10%; left: 10%; }
.orb-b { width: 240px; height: 240px; background: #a45bff; bottom: 12%; right: 8%; animation-delay: 1.8s; }
.orb-c { width: 160px; height: 160px; background: #ff7ad1; bottom: 24%; left: 36%; animation-delay: 3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
.frame {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 18px;
  background: rgba(0,0,0,0.35);
  width: min(420px, 85%);
  text-align: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.frame h3 { margin: 0 0 10px; font-size: 18px; letter-spacing: 0.4px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.tag { background: rgba(255,255,255,0.08); padding: 6px 10px; border-radius: 999px; color: var(--muted); font-size: 12px; }
.divider { height: 1px; background: var(--line); margin: 22px 0; }
.qr-inline {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.section-heading { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 12px; margin-bottom: 18px; }
.section-heading h2 { margin: 0; font-size: 28px; letter-spacing: 0.3px; }
.section-heading p { margin: 0; }
.grid { display: grid; gap: 16px; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.stat-card {
  padding: 18px;
  border-radius: 14px;
  background: var(--card-strong);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 170px;
  display: grid;
  gap: 8px;
}
.stat-card h3 { margin: 0; font-size: 18px; }
.mini { color: var(--muted); font-size: 13px; margin: 0; }
.stat-visual {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  display: block;
  object-fit: cover;
}
.image-slot {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.25);
  display: grid;
  place-items: center;
  color: var(--muted);
  background: rgba(255,255,255,0.02);
  font-size: 13px;
}
.timeline { position: relative; padding-left: 18px; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--accent), var(--glow)); opacity: 0.5; }
.step { position: relative; margin-bottom: 18px; padding-left: 16px; }
.step::before { content: ''; position: absolute; left: -10px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: linear-gradient(135deg, var(--glow), var(--accent)); box-shadow: 0 0 14px rgba(110, 240, 255, 0.6); }
.step-media {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
  margin-bottom: 8px;
  display: block;
  box-shadow: var(--shadow);
}
.faq-item { border-bottom: 1px solid var(--line); padding: 14px 0; }
.faq-item h4 { margin: 0 0 6px; }
.footer {
  padding: 32px 28px 50px;
  border-top: 1px solid var(--line);
  background: rgba(5,5,12,0.8);
  margin-top: 30px;
}
.footer .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer small { color: var(--muted); }
.policy-list {
  margin: 6px 0 14px 16px;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 640px) {
  nav { padding: 12px 18px; }
  .hero { padding-top: 60px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
