:root {
  --bg: #071017;
  --bg-soft: #0b1822;
  --card: rgba(255,255,255,.075);
  --card-strong: rgba(255,255,255,.11);
  --text: #eef7ff;
  --muted: #a7b8c6;
  --line: rgba(255,255,255,.12);
  --accent: #78f0c4;
  --accent-2: #8bb7ff;
  --danger: #ffcc66;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(120,240,196,.18), transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(139,183,255,.18), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.site-header {
  min-height: 760px;
  padding: 28px clamp(20px, 4vw, 72px) 72px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #061018;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover { color: var(--text); }

.hero {
  max-width: 1180px;
  margin: 120px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  align-items: center;
  gap: 56px;
}

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

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

h1 {
  font-size: clamp(44px, 7vw, 82px);
  line-height: .94;
  letter-spacing: -.075em;
  margin-bottom: 26px;
}

.hero-text {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
  border: 1px solid var(--line);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.28);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #061018;
  border-color: transparent;
}

.btn.secondary {
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.btn.full { width: 100%; }

.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border-radius: 34px;
  box-shadow: var(--shadow);
  min-height: 300px;
}

.status-dot {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent);
}

.card-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-card h2 {
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -.055em;
  margin-bottom: 18px;
}

.hero-card p:last-child {
  color: var(--muted);
  font-size: 17px;
}

.trust-strip {
  max-width: 1180px;
  margin: -46px auto 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--line);
}

.trust-strip div {
  background: rgba(11,24,34,.86);
  padding: 24px;
}

.trust-strip strong {
  display: block;
  margin-bottom: 4px;
}

.trust-strip span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 78px clamp(20px, 4vw, 0);
}

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

.section h2 {
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -.06em;
  margin-bottom: 18px;
}

.section-heading p, .split p, .contact p {
  color: var(--muted);
}

.toolbar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 14px;
  margin: 30px 0 26px;
}

input, select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.07);
  color: var(--text);
  padding: 0 16px;
  outline: none;
  font: inherit;
}

select option {
  color: #071017;
}

input:focus, select:focus {
  border-color: rgba(120,240,196,.55);
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.domain-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 318px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.domain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(120,240,196,.45);
  background: var(--card-strong);
}

.domain-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.domain-name {
  font-size: 27px;
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1;
}

.category {
  display: inline-flex;
  width: fit-content;
  font-size: 12px;
  color: var(--accent);
  background: rgba(120,240,196,.09);
  border: 1px solid rgba(120,240,196,.22);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 800;
}

.price {
  font-size: 22px;
  font-weight: 850;
  white-space: nowrap;
}

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

.domain-actions {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.mini {
  font-size: 12px;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 56px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 22px;
}

.step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(139,183,255,.12);
  color: var(--accent-2);
  font-weight: 900;
}

.step h3 {
  margin-bottom: 4px;
}

.step p {
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: center;
  margin-bottom: 50px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(120,240,196,.10), rgba(139,183,255,.10));
  padding: 44px;
}

.contact-card {
  background: rgba(0,0,0,.16);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
}

.small {
  font-size: 13px;
  color: var(--muted);
  margin: 14px 0 0;
}

.footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 0) 46px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer a { color: var(--text); }

@media (max-width: 920px) {
  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }
  .domain-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip {
    grid-template-columns: 1fr;
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 640px) {
  .site-header { min-height: auto; }
  .nav { align-items: flex-start; }
  .nav-links { display: none; }
  .hero { margin-top: 74px; }
  .toolbar { grid-template-columns: 1fr; }
  .domain-grid { grid-template-columns: 1fr; }
  .contact { padding: 26px; }
  .footer { flex-direction: column; }
}
