:root {
  --bg: #060816;
  --bg-soft: #0c1226;
  --panel: rgba(17, 24, 45, 0.58);
  --panel-strong: rgba(14, 22, 40, 0.82);
  --text: #eef2ff;
  --muted: #aab6d3;
  --line: rgba(255, 255, 255, 0.09);
  --primary: #7c5cff;
  --primary-2: #1dd6ff;
  --accent: #9bffb0;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top, #0d1430 0%, #060816 55%, #04050c 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, var(--primary), transparent 70%);
  top: -80px;
  left: -100px;
}

.orb-2 {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, var(--primary-2), transparent 70%);
  right: -80px;
  top: 120px;
  animation-delay: -4s;
}

.orb-3 {
  width: 360px;
  height: 360px;
  background: linear-gradient(135deg, #42ffa1, transparent 70%);
  left: 35%;
  bottom: -140px;
  animation-delay: -8s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(6, 8, 22, 0.5);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 10px 25px rgba(124, 92, 255, 0.35);
}

.brand-text {
  font-size: 1rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(29, 214, 255, 0.18), 0 10px 24px rgba(124, 92, 255, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(29, 214, 255, 0.24), 0 12px 28px rgba(124, 92, 255, 0.3);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  white-space: nowrap;
}

.hero {
  padding: 88px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 34px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  max-width: 12ch;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #9ddcff 35%, #9a8cff 70%, #9bffb0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin: 24px 0 30px;
  max-width: 700px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dce6ff;
  font-size: 0.95rem;
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-card {
  border-radius: 32px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.35), transparent 65%);
}

.metric-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-label {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.metric-value {
  display: block;
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.metric-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.metric-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-item span {
  color: var(--muted);
}

.metric-item strong {
  text-align: right;
  font-size: 0.98rem;
}

.full-width {
  width: 100%;
}

.featured-strip {
  padding: 12px 0 24px;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.strip-card {
  padding: 18px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  color: #dbe7ff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  padding: 88px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.section-heading.narrow {
  max-width: 620px;
}

.section-heading h2,
.two-col h2,
.cta-panel h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.section-heading p,
.two-col p,
.cta-panel p,
.info-card p,
.benefit-card p,
.process-card p,
.footer-copy {
  color: var(--muted);
  line-height: 1.8;
}

.cards.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card,
.benefit-card,
.process-card,
.stat-box {
  border-radius: 26px;
}

.info-card {
  padding: 28px;
}

.icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.22), rgba(29, 214, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 18px;
}

.info-card h3,
.benefit-card h3,
.process-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: #c7d7ff;
  font-weight: 700;
}

.accent-section {
  background: linear-gradient(180deg, rgba(124, 92, 255, 0.04), rgba(29, 214, 255, 0.02));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.muted {
  color: var(--muted);
}

.benefit-stack {
  display: grid;
  gap: 18px;
}

.benefit-card {
  padding: 24px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-card {
  padding: 24px;
}

.step {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.stats-section {
  padding-top: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-box {
  padding: 26px 22px;
  text-align: center;
}

.stat-box strong {
  display: block;
  font-size: 2rem;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
}

.stat-box span {
  color: var(--muted);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(29, 214, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(155, 255, 176, 0.18), transparent 65%);
  right: -90px;
  top: -70px;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0 60px;
  background: rgba(0, 0, 0, 0.12);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-copy {
  max-width: 560px;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(18px) translateX(10px);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .two-col,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cards.three-up,
  .process-grid,
  .stats-grid,
  .strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero h1 {
    max-width: none;
  }

  .cards.three-up,
  .process-grid,
  .stats-grid,
  .strip-inner {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .trust-row,
  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn,
  .nav-cta {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 22px), var(--max));
  }

  .hero-card,
  .cta-panel,
  .info-card,
  .benefit-card,
  .process-card,
  .stat-box {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand-text {
    white-space: normal;
  }
}
