* {
  box-sizing: border-box;
}

:root {
  --bg: #060912;
  --bg-soft: rgba(255, 255, 255, 0.04);
  --card: rgba(10, 14, 26, 0.82);
  --card-2: rgba(255, 255, 255, 0.03);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #f5f7fb;
  --muted: #9ca7bc;
  --accent: #8ca2ff;
  --accent-2: #9a7dff;
  --success: #97f0b5;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(140, 162, 255, 0.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(154, 125, 255, 0.10), transparent 24%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(140, 162, 255, 0.10);
  top: -70px;
  left: -80px;
}

.orb-2 {
  width: 340px;
  height: 340px;
  background: rgba(154, 125, 255, 0.10);
  right: -100px;
  bottom: 60px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(6, 9, 18, 0.65);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand span {
  color: var(--accent);
}

.topbar-btn,
.btn,
.copy-btn {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: 0.22s ease;
}

.topbar-btn {
  padding: 11px 16px;
  border-radius: 14px;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.topbar-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  padding: 72px 0 50px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(140, 162, 255, 0.08);
  border: 1px solid rgba(140, 162, 255, 0.20);
  color: #dfe6ff;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: #b8c4ff;
}

.hero-text {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.offer-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.offer-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--success);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.offer-box p {
  margin: 0;
  color: #edf1ff;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  padding: 14px 18px;
  border-radius: 16px;
  font-weight: 600;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 16px 35px rgba(140, 162, 255, 0.20);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.domain-card,
.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.domain-card {
  padding: 20px;
}

.domain-card-top {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
}

.domain-preview {
  border-radius: 22px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.018));
  border: 1px solid var(--line);
}

.domain-url {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.domain-status {
  margin-top: 10px;
  color: var(--muted);
}

.domain-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.meta-item {
  padding: 16px 14px;
  border-radius: 18px;
  background: var(--card-2);
  border: 1px solid var(--line);
}

.meta-title {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 6px;
}

.contact-section {
  padding: 34px 0 70px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading.center {
  text-align: center;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #ccd5ff;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 700;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.04em;
}

.section-heading p {
  color: var(--muted);
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.contact-card {
  padding: 20px;
}

.contact-main {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  transition: 0.22s ease;
}

.contact-main:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.028));
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  color: #eef2ff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-text {
  min-width: 0;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-value {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.copy-btn {
  margin-top: 14px;
  width: 100%;
  min-height: 46px;
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  color: #eef2ff;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.96rem;
}

.copy-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--line-strong);
}

.mini-note,
.footer-right {
  color: var(--muted);
  line-height: 1.7;
}

.mini-note {
  text-align: center;
  margin-top: 24px;
  font-size: 0.96rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 28px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: rgba(11, 13, 21, 0.95);
  color: white;
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: 14px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 50;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .domain-meta {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-right {
    order: -1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .topbar-inner {
    min-height: 68px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .topbar-btn {
    width: 100%;
    text-align: center;
  }

  .offer-box,
  .domain-card,
  .contact-card {
    border-radius: 22px;
  }

  .contact-main {
    min-height: 78px;
    padding: 16px;
  }

  .contact-value {
    font-size: 1.1rem;
  }
}