:root {
  --bg: #07131f;
  --bg-soft: #0d1f2d;
  --panel: rgba(17, 28, 39, 0.8);
  --panel-border: rgba(148, 177, 214, 0.2);
  --text: #edf6ff;
  --muted: #a7bfd8;
  --accent: #7cf6ff;
  --accent-2: #92a8ff;
  --accent-3: #b778ff;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(6, 18, 28, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top, rgba(124, 246, 255, 0.18), transparent 32%),
    radial-gradient(circle at bottom, rgba(183, 120, 255, 0.12), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

img {
  max-width: 100%;
  display: block;
}

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

.narrow {
  width: min(780px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(7, 19, 31, 0.68);
  border-bottom: 1px solid rgba(168, 190, 215, 0.12);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--white);
}

.hero {
  padding: 88px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 42px;
}

.eyebrow,
.section-tag {
  margin: 0 0 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-copy h1,
.section h2,
.cta-box h2,
.legal-box h1 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.1rem);
  max-width: 620px;
}

.lede,
.section p,
.legal-box p,
.feature-card p {
  color: var(--muted);
  font-size: 1.03rem;
}

.lede {
  max-width: 590px;
  margin: 22px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
  color: #08141d;
  box-shadow: 0 14px 30px rgba(124, 246, 255, 0.18);
}

.button.secondary {
  border: 1px solid rgba(168, 190, 215, 0.32);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: var(--text);
  font-size: 0.93rem;
}

.trust-list li {
  position: relative;
  padding-left: 18px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  box-shadow: 0 0 14px rgba(124, 246, 255, 0.8);
}

.hero-panel {
  display: flex;
  justify-content: center;
}

.panel-card {
  width: min(100%, 420px);
  background: linear-gradient(180deg, rgba(13, 31, 45, 0.9), rgba(11, 19, 28, 0.9));
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.panel-card h2 {
  margin: 12px 0 24px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-grid div {
  border-radius: 18px;
  border: 1px solid rgba(162, 194, 221, 0.18);
  background: rgba(255, 255, 255, 0.02);
  padding: 18px 16px;
}

.stat-grid strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 6px;
  letter-spacing: -0.06em;
}

.stat-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: rgba(9, 17, 26, 0.35);
  border-top: 1px solid rgba(168, 190, 215, 0.12);
  border-bottom: 1px solid rgba(168, 190, 215, 0.12);
}

.section h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  background: rgba(15, 25, 35, 0.72);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124, 246, 255, 0.18), rgba(183, 120, 255, 0.12));
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card h3,
.legal-box h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.cta-band {
  padding-top: 0;
  padding-bottom: 90px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 30px;
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: rgba(10, 20, 32, 0.8);
  box-shadow: var(--shadow);
  gap: 24px;
}

.site-footer {
  padding: 22px 0 44px;
  border-top: 1px solid rgba(168, 190, 215, 0.12);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.legal-page {
  min-height: 100vh;
}

.legal-content {
  padding: 72px 0 40px;
}

.legal-box {
  background: rgba(13, 25, 35, 0.76);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  padding: 36px clamp(18px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.legal-box h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
}

.legal-box h2 {
  margin-top: 28px;
  font-size: 1.2rem;
}

.muted {
  color: var(--muted);
  font-size: 0.96rem;
}

@media (max-width: 820px) {
  .hero-grid,
  .feature-grid,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 12px 0 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 58px;
  }

  .cta-box {
    text-align: left;
  }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}
