:root {
  --bg: #07111f;
  --bg-soft: #0c1a2f;
  --panel: rgba(255,255,255,0.08);
  --line: rgba(255,255,255,0.12);
  --text: #ecf3ff;
  --muted: #a7b8d6;
  --accent: #6ee7ff;
  --accent-2: #7c5cff;
  --accent-3: #25d0a5;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124,92,255,0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(110,231,255,0.16), transparent 28%),
    linear-gradient(180deg, #06101d 0%, #081423 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 84px 0; }
.section.alt { background: rgba(255,255,255,0.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center; padding: 8px 14px;
  border: 1px solid rgba(110,231,255,0.22); border-radius: 999px;
  color: #c8f6ff; background: rgba(110,231,255,0.08);
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(110,231,255,0.7);
}
.topbar {
  position: sticky; top: 0; z-index: 30; backdrop-filter: blur(18px);
  background: rgba(6, 16, 29, 0.74); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; font-weight: 800; letter-spacing: 0.04em; }
.brand-badge {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #fff;
  box-shadow: 0 10px 30px rgba(124,92,255,0.35);
}
.brand small { display: block; color: var(--muted); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em; }
.nav-links { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.nav-links a { padding: 11px 14px; color: var(--muted); border-radius: 12px; transition: 180ms ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px; border-radius: 14px; border: 1px solid transparent; font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03111c; box-shadow: 0 16px 34px rgba(108, 143, 255, 0.22);
}
.button.secondary {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.1); color: var(--text);
}
.hero { position: relative; overflow: hidden; padding: 92px 0 78px; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 999px; filter: blur(28px); opacity: 0.45; pointer-events: none;
}
.hero::before { width: 300px; height: 300px; background: rgba(124,92,255,0.24); top: 0; right: 4%; }
.hero::after { width: 220px; height: 220px; background: rgba(110,231,255,0.18); bottom: 10%; left: 2%; }
.hero-grid, .grid-2, .grid-3, .card-grid, .footer-grid, .timeline, .audience-grid, .contact-grid {
  display: grid; gap: 24px;
}
.hero-grid, .grid-2, .contact-grid { grid-template-columns: 1.15fr 0.85fr; }
.grid-3, .card-grid, .audience-grid { grid-template-columns: repeat(3, 1fr); }
.hero-copy h1, .section h2 { margin: 18px 0 16px; line-height: 1.06; }
.hero-copy h1 { font-size: clamp(2.6rem, 5vw, 5rem); max-width: 12ch; letter-spacing: -0.04em; }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 62ch; }
.actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.kicker, .small { color: var(--muted); font-size: 0.95rem; }
.kicker { margin-top: 22px; }
.metric, .feature, .panel, .stat-box, .cta, .timeline-item, .audience-card, .contact-card, .form-shell {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); backdrop-filter: blur(12px);
}
.metric, .feature, .panel, .timeline-item, .audience-card, .contact-card, .form-shell { padding: 24px; }
.metric { min-height: 150px; display: flex; flex-direction: column; justify-content: space-between; }
.value { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; }
.label { color: var(--muted); }
.section-head { max-width: 820px; margin-bottom: 34px; }
.section h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.03em; }
.feature h3, .panel h2, .timeline-item h3, .audience-card h3, .contact-card h3 { margin-top: 0; }
.list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.list li { display: flex; gap: 12px; align-items: flex-start; }
.dot {
  margin-top: 10px; width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 14px rgba(110,231,255,0.6); flex: 0 0 auto;
}
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.stat-box { padding: 18px; }
.stat-box strong { display: block; font-size: 1.08rem; margin-bottom: 5px; }
.cta {
  padding: 36px; text-align: center;
  background: linear-gradient(135deg, rgba(124,92,255,0.16), rgba(110,231,255,0.10)), rgba(255,255,255,0.06);
}
.footer { padding: 34px 0 50px; border-top: 1px solid var(--line); background: rgba(0,0,0,0.15); }
.footer-grid { grid-template-columns: 1fr auto; align-items: center; }
.footer a { color: #d5e6ff; }
.reveal { opacity: 0; transform: translateY(18px); animation: reveal 0.7s ease forwards; }
.reveal.delay-1 { animation-delay: 0.12s; }
.reveal.delay-2 { animation-delay: 0.24s; }
.reveal.delay-3 { animation-delay: 0.36s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
.timeline { grid-template-columns: repeat(3, 1fr); }
.timeline-item .step {
  display: inline-block; margin-bottom: 14px; padding: 6px 10px; border-radius: 999px;
  font-size: 0.8rem; background: rgba(110,231,255,0.08); color: #cbf7ff;
}
.audience-card p, .timeline-item p, .feature p, .panel p, .contact-card p { color: var(--muted); }
.page-hero { padding: 88px 0 54px; }
.page-hero .hero-copy h1 { max-width: 13ch; }
.highlight-line { margin-top: 18px; font-size: 1rem; color: #d8eeff; }
.contact-card p strong { color: var(--text); }
label { display: grid; gap: 8px; color: #dce8ff; font-weight: 600; }
input, textarea {
  width: 100%; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04);
  color: var(--text); border-radius: 14px; padding: 14px 16px; font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .card-grid, .footer-grid, .timeline, .audience-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav { padding: 12px 0; align-items: flex-start; flex-direction: column; }
  .nav-links { width: 100%; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding-top: 70px; }
  .hero-copy h1 { font-size: 2.4rem; }
  .nav-links a, .button { width: 100%; }
  .stat-row { grid-template-columns: 1fr; }
}