:root {
  --bg: #090910;
  --bg-elev: #111224;
  --bg-card: rgba(17, 18, 36, 0.68);
  --text: #ececff;
  --text-soft: #c3c6e8;
  --primary: #8b5cf6;
  --primary-soft: #b69cff;
  --accent: #22d3ee;
  --stroke: rgba(181, 157, 255, 0.2);
  --max-width: 1140px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px rgba(7, 8, 18, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% 20%, rgba(139, 92, 246, 0.16), transparent 28%),
    radial-gradient(circle at 85% 0%, rgba(34, 211, 238, 0.1), transparent 22%),
    var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(139, 92, 246, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  pointer-events: none;
  z-index: -3;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: -2;
}

.bg-glow-1 {
  width: 360px;
  height: 360px;
  background: rgba(139, 92, 246, 0.2);
  top: -90px;
  right: 8%;
  animation: floaty 10s ease-in-out infinite;
}

.bg-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.12);
  bottom: 0;
  left: 5%;
  animation: floaty 12s ease-in-out infinite reverse;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding: clamp(3.25rem, 7vw, 6rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(8, 9, 16, 0.62);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  padding: 0.34rem 0.62rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(139, 92, 246, 0.23), rgba(34, 211, 238, 0.15));
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.brand-text {
  font-size: 0.92rem;
  color: var(--text-soft);
}

.domain-link {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.46rem 0.78rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
}

.domain-link:hover,
.domain-link:focus-visible {
  color: var(--text);
  background: rgba(139, 92, 246, 0.16);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.33rem 0.68rem;
  margin: 0 0 1rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-soft);
  background: rgba(139, 92, 246, 0.1);
}

.hero {
  padding-top: clamp(4.2rem, 9vw, 7rem);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.25fr 0.95fr;
  align-items: start;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

p {
  margin: 0;
  color: var(--text-soft);
}

.hero-sub {
  max-width: 62ch;
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fafaff;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6 65%, #a78bfa);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--stroke);
  background: rgba(17, 18, 36, 0.5);
}

.hero-tags {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-tags li {
  padding: 0.4rem 0.68rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  color: #d9d7ff;
  font-size: 0.86rem;
  background: rgba(17, 18, 36, 0.6);
}

.card,
.hero-panel,
.feature-card,
.cta-card {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.3rem;
}

.hero-panel h2 {
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
}

.stat-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.stat-grid article {
  padding: 0.9rem;
  border-radius: var(--radius-sm);
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
}

.stat-grid h3 {
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.trust-strip {
  padding-top: 0;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.trust-items span {
  text-align: center;
  padding: 0.8rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.09);
  color: #ddd9ff;
  font-weight: 500;
  font-size: 0.91rem;
}

.section-head {
  margin-bottom: 1.4rem;
}

.card {
  padding: clamp(1.2rem, 2vw, 1.6rem);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  padding: 1.15rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1rem;
  align-items: start;
}

.checklist {
  display: grid;
  gap: 0.85rem;
}

.checklist p {
  padding: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(139, 92, 246, 0.18);
  background: rgba(139, 92, 246, 0.07);
  position: relative;
  padding-left: 2.5rem;
}

.checklist p::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.6);
}

.cta-section {
  padding-bottom: clamp(4rem, 9vw, 6.5rem);
}

.cta-card {
  text-align: center;
  padding: clamp(1.4rem, 3.5vw, 2.2rem);
}

.cta-card p {
  margin: 0 auto 1rem;
  max-width: 70ch;
}

.site-footer {
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  background: rgba(6, 7, 12, 0.95);
}

.footer-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.footer-wrap p {
  margin: 0;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(16px);
  }
}

@media (max-width: 1020px) {
  .section {
    padding: 2.7rem 0;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-grid,
  .split-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    margin-bottom: 1rem;
  }

  .hero-sub {
    margin-bottom: 1.1rem;
  }

  .hero-tags {
    margin-top: 0.9rem;
  }

  .cta-section {
    padding-bottom: 3.6rem;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 2rem, var(--max-width));
  }

  .site-header {
    position: static;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .brand-text {
    display: none;
  }

  .domain-link {
    font-size: 0.82rem;
    padding: 0.36rem 0.62rem;
  }

  .section {
    padding: 1.8rem 0;
  }

  .hero {
    padding-top: 1.9rem;
  }

  .hero-grid,
  .split-grid {
    gap: 0.8rem;
  }

  h1 {
    line-height: 1.16;
    margin-bottom: 0.65rem;
  }

  h2 {
    line-height: 1.18;
    margin-bottom: 0.65rem;
  }

  .eyebrow {
    margin-bottom: 0.7rem;
    padding: 0.28rem 0.58rem;
  }

  .hero-sub {
    margin-bottom: 0.85rem;
  }

  .hero-actions {
    gap: 0.5rem;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
    padding: 0.68rem 1rem;
    font-size: 0.95rem;
  }

  .card,
  .feature-card,
  .hero-panel,
  .cta-card {
    padding: 0.85rem;
  }

  .checklist p {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .trust-items span {
    padding: 0.52rem;
    font-size: 0.84rem;
  }

  .hero-tags {
    margin-top: 0.65rem;
    gap: 0.4rem;
  }

  .hero-tags li {
    padding: 0.3rem 0.55rem;
    font-size: 0.78rem;
  }

  .footer-wrap {
    min-height: 64px;
    padding: 0.6rem 0;
    gap: 0.4rem;
  }

  .footer-wrap p {
    font-size: 0.82rem;
  }

  .feature-grid,
  .feature-grid.two-col,
  .trust-items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 2.2rem, var(--max-width));
  }

  .section {
    padding: 1.45rem 0;
  }

  .hero {
    padding-top: 1.55rem;
  }

  h1 {
    font-size: clamp(1.62rem, 7.2vw, 2.05rem);
    margin-bottom: 0.52rem;
  }

  h2,
  h3 {
    margin-bottom: 0.5rem;
  }

  .section-head {
    margin-bottom: 0.62rem;
  }

  .hero-tags li {
    font-size: 0.74rem;
  }

  .domain-link {
    font-size: 0.74rem;
    padding: 0.28rem 0.52rem;
  }

  .card,
  .feature-card,
  .hero-panel,
  .cta-card {
    padding: 0.75rem;
  }

  .stat-grid {
    margin-top: 0.7rem;
    gap: 0.55rem;
  }

  .stat-grid article {
    padding: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
