* { box-sizing: border-box; }
:root {
  --bg: #0f172a;
  --panel: #111827;
  --panel-2: #0b1220;
  --accent: #3b82f6;
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.1);
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(59,130,246,0.18), transparent 30rem),
    radial-gradient(circle at 90% 8%, rgba(14,165,233,0.12), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
input, select, textarea, button { font: inherit; }
button { cursor: pointer; }
.nav-link {
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover { background: rgba(255,255,255,.07); color: white; }
.nav-scrolled { background: rgba(2, 6, 23, 0.88) !important; box-shadow: 0 16px 50px rgba(2,6,23,.35); }
#mobile-menu a {
  display: block;
  border-radius: 1rem;
  color: #cbd5e1;
  font-weight: 700;
  padding: .9rem 1rem;
}

.hero {
  padding-top: 80px; /* navbar h-20 = 80px */
}


#mobile-menu a:hover { background: rgba(255,255,255,.07); color: white; }
.footer-title {
  color: white;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.footer-links { display: grid; gap: .7rem; }
.footer-links a { color: #94a3b8; font-size: .9rem; transition: color .2s ease; }
.footer-links a:hover { color: var(--accent); }
.glass {
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 70px rgba(2,6,23,.34);
  backdrop-filter: blur(18px);
}
.section-kicker {
  color: #60a5fa;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section-title {
  color: white;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}
.premium-card {
  background: linear-gradient(180deg, rgba(17,24,39,.94), rgba(15,23,42,.94));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.5rem;
  box-shadow: 0 24px 70px rgba(2,6,23,.24);
}
.premium-input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1rem;
  background: rgba(2,6,23,.45);
  color: white;
  outline: none;
  padding: .95rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.premium-input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(59,130,246,.14); }
.premium-input::placeholder { color: #64748b; }
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  padding: .95rem 1.25rem;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.primary-btn:hover { background: #60a5fa; transform: translateY(-2px); box-shadow: 0 18px 50px rgba(59,130,246,.28); }
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: white;
  font-weight: 800;
  padding: .95rem 1.25rem;
  transition: background .2s ease, transform .2s ease;
}
.secondary-btn:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.content-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8rem 1rem 5rem;
}
.policy-card {
  border-radius: 1.75rem;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(17,24,39,.82);
  padding: clamp(1.25rem, 3vw, 3rem);
}
.policy-card h1 { color: white; font-size: clamp(2.2rem, 5vw, 4.6rem); font-weight: 800; line-height: 1; margin-bottom: 1.5rem; }
.policy-card h2 { color: #93c5fd; font-size: 1.3rem; font-weight: 800; margin-top: 2rem; margin-bottom: .75rem; }
.policy-card p, .policy-card li { color: #cbd5e1; line-height: 1.8; }
.policy-card ul { padding-left: 1.2rem; }
::selection { background: var(--accent); color: white; }
