:root {
  --bg: #07111f;
  --bg-soft: rgba(255,255,255,.06);
  --text: #f4f7fb;
  --muted: #adc0d6;
  --line: rgba(255,255,255,.12);
  --accent: #7c5cff;
  --accent-2: #2dd4bf;
  --shadow: 0 20px 80px rgba(0,0,0,.35);
  --radius: 24px;
}

* { 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,.22), transparent 30%),
    radial-gradient(circle at right center, rgba(45,212,191,.16), transparent 30%),
    linear-gradient(180deg, #07111f 0%, #091625 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(16px);
  background: rgba(7, 17, 31, .48);
  box-shadow: var(--shadow);
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.brand span { color: var(--accent-2); }

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: .25s ease;
}
.nav a:hover, .nav a.active {
  color: var(--text);
  background: rgba(255,255,255,.08);
}

.menu-toggle {
  display: none;
  border: 0;
  background: rgba(255,255,255,.08);
  color: white;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 28px;
  padding: 80px 0 40px;
  min-height: calc(100vh - 120px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: #d3e2f1;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: .95;
  letter-spacing: -.04em;
}

h1 span, .page h1 span {
  background: linear-gradient(90deg, #fff, #96f3de 40%, #8c74ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p,
.lead,
.panel p,
.site-footer p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #6ee7d8);
  color: white;
  box-shadow: 0 10px 30px rgba(124,92,255,.28);
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
}

.hero-card,
.panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-card h3, .panel h3 { margin-top: 12px; font-size: 1.4rem; }
.mini-label, .panel-index, .timeline-item span {
  color: #b7c9db;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.card-glow {
  position: absolute;
  inset: auto -60px -60px auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(124,92,255,.55), transparent 65%);
  filter: blur(6px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}
.stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.stats strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.stats span { color: var(--muted); font-size: .95rem; }

.features,
.grid-2,
.timeline {
  display: grid;
  gap: 18px;
}
.features { grid-template-columns: repeat(3, 1fr); padding-bottom: 48px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.timeline { margin-top: 28px; }
.page { padding: 72px 0 50px; }
.quote-block { margin-top: 18px; }
.clean-list { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.8; }

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.marquee {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 16px 0;
  animation: ticker 26s linear infinite;
}
.marquee span {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #dbe7f4;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .1em;
}

.site-footer {
  padding: 22px 16px 34px;
  text-align: center;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .5;
  pointer-events: none;
}
.orb-1 { width: 280px; height: 280px; top: 6%; left: -60px; background: rgba(124,92,255,.25); }
.orb-2 { width: 260px; height: 260px; bottom: 10%; right: -40px; background: rgba(45,212,191,.18); }
.noise {
  position: fixed;
  inset: 0;
  opacity: .08;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.6) .7px, transparent .7px);
  background-size: 12px 12px;
  mask-image: linear-gradient(180deg, black, transparent);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.floating { animation: floaty 5s ease-in-out infinite; }

@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero,
  .features,
  .grid-2 { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
}

@media (max-width: 720px) {
  .site-header { align-items: flex-start; }
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 10px;
  }
  .nav.open { display: flex; }
  .stats { grid-template-columns: 1fr; }
  h1 { line-height: 1; }
}
