:root {
  --bg: #07111f;
  --bg-soft: #0d1d33;
  --card: rgba(255, 255, 255, 0.08);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #f5f8ff;
  --muted: #b9c6db;
  --accent: #81e6d9;
  --accent-2: #bca7ff;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(129, 230, 217, 0.22), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(188, 167, 255, 0.20), transparent 28rem),
    linear-gradient(135deg, #050914 0%, var(--bg) 45%, #0a1630 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, #000, transparent 70%);
}

.page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 88vh;
  padding: 28px 0 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 90px;
}

.brand,
.nav-cta,
a {
  color: inherit;
  text-decoration: none;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #06111f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 35px rgba(129, 230, 217, 0.25);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 830px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.lead {
  max-width: 740px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.primary {
  color: #06111f;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 45px rgba(129, 230, 217, 0.22);
}

.secondary {
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.small-note,
.muted {
  color: var(--muted);
  font-size: 0.94rem;
}

.small-note {
  margin-top: 18px;
}

.domain-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--card-border);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.domain-card::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(129, 230, 217, 0.16);
}

.card-label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #06111f;
  background: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.domain-name {
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.domain-card p {
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.stats div {
  padding: 16px 12px;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  margin-bottom: 4px;
  font-size: 1rem;
}

.stats span {
  color: var(--muted);
  font-size: 0.78rem;
}

.section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.cards {
  display: grid;
  gap: 18px;
}

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

.card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--card-border);
  border-radius: 26px;
  background: var(--card);
}

.card p,
.section-text,
.offer-box p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  gap: 48px;
}

.usecases {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.usecases span {
  padding: 12px 15px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
}

.offer-box {
  margin: 60px 0 40px;
  padding: 48px;
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(129, 230, 217, 0.14), rgba(188, 167, 255, 0.12)),
    rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.offer-box p {
  max-width: 760px;
}

.contact-line {
  margin: 22px 0 0;
}

.contact-line a {
  color: var(--accent);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 46px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .page {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    margin-bottom: 56px;
  }

  .hero-grid,
  .split,
  .three {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 3.45rem;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .domain-card,
  .offer-box,
  .card {
    padding: 24px;
    border-radius: 24px;
  }

  .section {
    padding: 56px 0;
  }
}
