:root {
  --bg-1: #0f172a;
  --bg-2: #1f2a57;
  --bg-3: #253b7a;
  --surface: rgba(11, 18, 44, 0.7);
  --surface-solid: #121a3e;
  --text: #f7f8ff;
  --muted: #b9c3ec;
  --accent: #02d4c5;
  --accent-2: #ff6b35;
  --stroke: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lexend", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 18%, rgba(2, 212, 197, 0.18), transparent 35%),
    radial-gradient(circle at 90% 2%, rgba(255, 107, 53, 0.2), transparent 28%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2) 55%, var(--bg-3));
  min-height: 100vh;
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #ffffff;
  color: #000000;
  padding: 0.6rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(10, 16, 40, 0.7);
  border-bottom: 1px solid var(--stroke);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
}

.main-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.3rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  background: linear-gradient(95deg, var(--accent), #17c0ff);
  color: #032224;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--stroke);
}

.hero {
  position: relative;
  padding: 6.5rem 0 4rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.hero::before {
  left: -60px;
  top: 65px;
}

.hero::after {
  right: -70px;
  bottom: 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.8rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.accent {
  color: var(--accent);
}

.hero-copy p {
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.stats {
  list-style: none;
  padding: 0;
  margin: 1.7rem 0 0;
  display: flex;
  gap: 1.3rem;
}

.stats li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  padding: 0.7rem 0.9rem;
  min-width: 110px;
}

.stats strong {
  display: block;
  font-size: 1.05rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.mockup-card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.35), rgba(16, 25, 61, 0.88));
  border: 1px solid var(--stroke);
  border-radius: 1.1rem;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.mockup-card h2 {
  color: #ffffff;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.chip-row span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.domain-display a,
.domain-list a,
.site-footer a {
  color: var(--accent);
}

.section {
  padding: 4rem 0;
}

.features {
  background: linear-gradient(180deg, rgba(20, 28, 66, 0.72), rgba(13, 20, 51, 0.92));
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.feature-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-grid article {
  padding: 1.2rem;
  border: 1px solid var(--stroke);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
}

.domains .domain-box {
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: 1rem;
}

.domain-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
}

.faq details {
  border: 1px solid var(--stroke);
  border-radius: 0.8rem;
  padding: 0.9rem;
  margin-top: 0.9rem;
  background: rgba(255, 255, 255, 0.03);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  background: rgba(7, 10, 26, 0.98);
  padding: 2.6rem 0 1.3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.footer-grid a {
  display: block;
  margin-top: 0.5rem;
  text-decoration: none;
}

.footer-grid p {
  color: var(--muted);
}

.copyright {
  text-align: center;
  color: #9ca7d9;
  margin-top: 2rem;
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.8s ease forwards;
}

.delay {
  animation-delay: 0.2s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 0.8rem 0;
  }

  .main-nav ul {
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .stats {
    flex-direction: column;
    max-width: none;
    width: 100%;
  }

  .stats li {
    width: 100%;
    min-width: 0;
  }

  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }
}
