:root {
  --bg: #070b17;
  --bg-soft: rgba(255, 255, 255, 0.05);
  --bg-strong: #0f1630;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(19, 28, 58, 0.85);
  --border: rgba(255, 255, 255, 0.14);
  --text: #edf2ff;
  --muted: #b9c6e8;
  --soft: #d9e3ff;
  --accent: #6ea8ff;
  --accent-2: #9a6bff;
  --accent-3: #3ce2c2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(110, 168, 255, 0.22), transparent 25%),
    radial-gradient(circle at 90% 15%, rgba(154, 107, 255, 0.2), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(60, 226, 194, 0.12), transparent 30%),
    linear-gradient(180deg, #070b17 0%, #0a1020 45%, #070b17 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  opacity: 0.94;
}

.page-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}

.page-glow-one {
  top: 40px;
  left: -100px;
  background: rgba(110, 168, 255, 0.16);
}

.page-glow-two {
  right: -80px;
  top: 180px;
  background: rgba(154, 107, 255, 0.14);
}

.container {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 11, 23, 0.68);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.nav nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(110, 168, 255, 0.3);
}

.hero,
.section {
  padding: 92px 0;
}

.hero {
  padding-top: 70px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-grid,
.split-section,
.policy-shell,
.footer-grid,
.cta-banner {
  display: grid;
  gap: 28px;
}

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

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2,
h3,
h4 {
  margin: 0 0 14px;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.25rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #c8d5ff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead,
p,
li,
span {
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-actions,
.policy-links,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 18px 40px rgba(73, 119, 255, 0.28);
}

.button-sm {
  min-height: 40px;
  padding: 10px 16px;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.hero-points,
.cards {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

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

.mini-card,
.card,
.panel-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-card {
  padding: 18px;
}

.mini-card strong,
.policy-content strong,
.policy-side strong,
.product-card li::marker {
  color: var(--soft);
}

.hero-panel {
  position: relative;
  min-height: 480px;
}

.panel-card {
  padding: 28px;
}

.floating-card {
  position: absolute;
  top: 20px;
  right: 10px;
  width: min(100%, 360px);
  background: linear-gradient(160deg, rgba(17, 27, 57, 0.92), rgba(29, 17, 55, 0.88));
}

.stats-card {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: min(100%, 320px);
  background: rgba(255, 255, 255, 0.08);
}

.stats-card > div + div {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-label {
  display: inline-block;
  margin-bottom: 12px;
  color: #d7e1ff;
  font-weight: 700;
}

.split-section {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

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

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 28px;
}

.feature-card,
.product-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(110, 168, 255, 0.18), transparent 70%);
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 1.35rem;
}

.product-card ul,
.policy-content ul,
.site-footer ul {
  padding-left: 20px;
}

.cta-banner {
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(14, 21, 43, 0.92), rgba(24, 17, 51, 0.92));
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 36px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer ul {
  margin: 0;
}

.policy-page .section {
  padding-top: 52px;
}

.policy-shell {
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
}

.policy-side,
.policy-content {
  background: rgba(13, 20, 41, 0.82);
}

.policy-side {
  position: sticky;
  top: 100px;
}

.policy-date {
  margin-bottom: 16px;
}

.policy-content h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.policy-content h3 {
  margin-top: 22px;
}

.policy-content p,
.policy-content li,
.policy-side p {
  font-size: 1rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .three-up,
  .two-up,
  .footer-grid,
  .policy-shell,
  .cta-banner,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: auto;
  }

  .floating-card,
  .stats-card {
    position: static;
    width: 100%;
  }

  .policy-side {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    min-height: auto;
  }

  .nav nav,
  .hero-actions,
  .policy-links,
  .cta-actions {
    width: 100%;
  }

  .hero,
  .section {
    padding: 72px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .card,
  .panel-card,
  .mini-card,
  .cta-banner {
    padding: 22px;
  }
}
