﻿:root {
  --bg: #0b0f16;
  --bg-soft: #121a26;
  --panel: #131c29;
  --line: #243247;
  --text: #eef3fa;
  --muted: #aeb8c8;
  --accent: #7fc8ff;
  --accent-strong: #59b6ff;
  --max: 1140px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(127, 200, 255, 0.2), transparent 35%),
    radial-gradient(circle at 88% 18%, rgba(127, 200, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #0a0f17 0%, #0b0f16 100%);
  line-height: 1.65;
}

.wrap { width: min(var(--max), 92vw); margin: 0 auto; }

.site-header { padding: 1rem 0 2.4rem; }

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(13, 20, 30, 0.75);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.brand {
  text-decoration: none;
  color: #d7e3f3;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  justify-self: end;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #c5d0e0;
  font-weight: 600;
}

.nav-links a:hover { color: var(--accent); }

.hero { padding-top: 3.1rem; }

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--accent);
}

h1 {
  margin: 0.9rem 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 7.5vw, 5.1rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 1rem 0 0;
  color: #d7ecff;
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
  font-weight: 600;
}

.hero-lead {
  margin: 1rem 0 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 1.09rem;
}

.hero-cta { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.8rem; }

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 10px;
  padding: 0.78rem 1.15rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.btn-solid {
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  color: #0b121b;
  box-shadow: 0 10px 24px rgba(89, 182, 255, 0.24);
  position: relative;
  overflow: hidden;
  animation: ctaPulse 2.8s ease-in-out infinite;
}

.btn-solid::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -30%;
  width: 45%;
  height: 320%;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transition: left 0.45s ease;
}

.btn-solid:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(89, 182, 255, 0.34);
  filter: brightness(1.03);
}

.btn-solid:hover::after {
  left: 120%;
}

.btn-outline {
  border: 1px solid #32485f;
  color: #dce8f6;
  background: rgba(255, 255, 255, 0.02);
}

.stack { display: grid; gap: 1rem; padding-bottom: 1.2rem; }

.panel {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  padding: 1.2rem;
}

h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
}

h3 {
  margin: 0;
  font-size: 1.03rem;
}

p { color: var(--muted); }

.bullets {
  margin-top: 0.8rem;
  list-style: none;
  padding-left: 0;
}
.bullets li { margin: 0.35rem 0; color: #d8e2f0; }

.grid {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.8rem;
}

.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.tile {
  border: 1px solid #2c3d55;
  border-radius: 12px;
  padding: 0.95rem;
  background: linear-gradient(180deg, rgba(8, 14, 24, 0.78), rgba(5, 10, 17, 0.72));
}

.tile p { margin: 0.45rem 0 0; }
.tile-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

.tile-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(127, 200, 255, 0.58);
  background: linear-gradient(180deg, rgba(127, 200, 255, 0.2), rgba(127, 200, 255, 0.08));
  font-weight: 700;
  line-height: 1;
  flex: 0 0 auto;
}

.tile-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.num {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
  border: 1px solid rgba(127, 200, 255, 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.62rem;
  line-height: 1;
}

.timeline .tile {
  text-align: center;
}

.timeline .num {
  margin-bottom: 0.6rem;
}

.timeline .tile h3 {
}

.timeline .tile p {
  margin-top: 0.6rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.stats article {
  border: 1px solid #2b3b53;
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(127, 200, 255, 0.14), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.stats strong {
  display: block;
  color: #d8efff;
  font-size: 1.2rem;
  font-family: "Space Grotesk", sans-serif;
}

.stats span { color: #d3deed; }

.cta {
  margin: 0 auto 2rem;
  border: 1px solid rgba(127, 200, 255, 0.5);
  border-radius: 16px;
  text-align: center;
  padding: 1.9rem 1.1rem;
  background: linear-gradient(180deg, rgba(127, 200, 255, 0.14), rgba(255, 255, 255, 0.02));
}

.contact { color: #9fb0c6; }

.legal-links {
  margin: 0;
  font-size: 0.92rem;
  color: #8fa2bc;
}

.legal-links a {
  color: #b8cbe3;
  text-decoration: none;
}

.legal-links a:hover {
  color: var(--accent);
}

.legal-links span {
  margin: 0 0.35rem;
  color: #6f819a;
}

.legal-bar {
  padding: 0.35rem 0 2rem;
  text-align: center;
}

.to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(127, 200, 255, 0.35);
  background: rgba(11, 18, 27, 0.72);
  backdrop-filter: blur(6px);
  color: #cce8ff;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
  opacity: 0.72;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.to-top:hover {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(127, 200, 255, 0.6);
}

.to-top svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(89, 182, 255, 0.24); }
  50% { box-shadow: 0 14px 30px rgba(89, 182, 255, 0.34); }
}

@media (max-width: 960px) {
  .nav { grid-template-columns: 1fr; text-align: center; }
  .grid.three, .stats { grid-template-columns: 1fr; }
}

