:root {
  --bg: #08070d;
  --bg-soft: #12101a;
  --bg-soft-2: #151224;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.12);
  --text: #f7f4ff;
  --muted: #b7afcf;
  --accent: #b486ff;
  --accent-2: #7fe0ff;
  --accent-3: #ff92cb;
  --success: #87ffbe;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(180, 134, 255, 0.2), transparent 24%),
    radial-gradient(circle at top right, rgba(127, 224, 255, 0.14), transparent 20%),
    linear-gradient(180deg, #05040a 0%, #090710 42%, #07060d 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent 90%);
  z-index: 0;
}

.stars-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.1), transparent 12%),
    radial-gradient(circle at 78% 20%, rgba(255, 255, 255, 0.08), transparent 10%),
    radial-gradient(circle at 65% 66%, rgba(255, 255, 255, 0.06), transparent 14%);
  mix-blend-mode: screen;
  opacity: 0.8;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(8, 7, 13, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 0 24px rgba(180, 134, 255, 0.7);
}

.topnav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
}

.topnav a {
  transition: color 0.25s ease;
}

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

.hero {
  position: relative;
  padding: 78px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.section-head,
.feature-card,
.audience-card,
.info-panel,
.step-card,
.faq-item,
.cta-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.65;
}

.hero-subtitle strong {
  color: var(--text);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
  color: #08070d;
  background: linear-gradient(135deg, #f7f0ff 0%, #a8efff 100%);
  box-shadow: 0 16px 40px rgba(168, 239, 255, 0.16);
}

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

.btn-example {
  color: var(--text);
  background: linear-gradient(135deg, rgba(180, 134, 255, 0.14) 0%, rgba(127, 224, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 32px rgba(127, 224, 255, 0.08);
}

.btn-example::after {
  content: "↗";
  margin-left: 10px;
  font-size: 15px;
  line-height: 1;
  opacity: 0.9;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ddd6f8;
}

.mini-icon {
  color: var(--accent-2);
  font-size: 18px;
}

.glass-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.domain-card {
  padding: 28px;
}

.visual-card {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.1), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(180, 134, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.promo-visual-wrap {
  position: relative;
  z-index: 3;
  width: min(100%, 500px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 12px 0;
}

.promo-visual {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.22)) drop-shadow(0 0 26px rgba(255, 255, 255, 0.24));
  animation: promoFloat 7.5s ease-in-out infinite;
}

.visual-glow {
  position: absolute;
  left: 50%;
  top: 52%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.38) 28%, rgba(255, 255, 255, 0.12) 48%, transparent 72%);
  filter: blur(16px);
  mix-blend-mode: screen;
}

.glow-1 {
  width: 300px;
  height: 300px;
  opacity: 0.78;
  animation: glowPulse 5.5s ease-in-out infinite;
}

.glow-2 {
  width: 430px;
  height: 430px;
  opacity: 0.42;
  animation: glowPulse 7.5s ease-in-out infinite reverse;
}

.glow-3 {
  width: 560px;
  height: 560px;
  opacity: 0.24;
  animation: glowPulse 9s ease-in-out infinite;
}

.visual-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.visual-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.95);
  animation: sparkle 3.8s ease-in-out infinite;
}

.visual-particles span:nth-child(1) { top: 18%; left: 28%; animation-delay: 0s; }
.visual-particles span:nth-child(2) { top: 26%; right: 22%; width: 7px; height: 7px; animation-delay: 1s; }
.visual-particles span:nth-child(3) { top: 42%; left: 18%; animation-delay: 1.8s; }
.visual-particles span:nth-child(4) { top: 58%; right: 18%; width: 5px; height: 5px; animation-delay: 0.7s; }
.visual-particles span:nth-child(5) { bottom: 20%; left: 26%; width: 8px; height: 8px; animation-delay: 2.2s; }
.visual-particles span:nth-child(6) { bottom: 18%; right: 28%; animation-delay: 1.35s; }

@keyframes glowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.22;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.14);
    opacity: 0.9;
  }
}

@keyframes promoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes sparkle {
  0%, 100% {
    transform: scale(0.65);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

.domain-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-pill.muted {
  color: var(--muted);
}

.domain-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

.domain-name {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.domain-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-box {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
  display: block;
  margin-bottom: 8px;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stat-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.section-head {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-head h2 {
  margin: 18px 0 12px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(180, 134, 255, 0.26) 0%, rgba(127, 224, 255, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.feature-card h3,
.audience-card h3,
.step-card h3,
.info-panel h2,
.cta-card h2 {
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}

.feature-card p,
.audience-card p,
.step-card p,
.value-list li,
.income-item span,
.cta-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.75;
}

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

.audience-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.info-panel {
  padding: 30px;
}

.value-list {
  margin: 18px 0 0;
  padding-left: 22px;
}

.value-list li + li {
  margin-top: 12px;
}

.income-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.income-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.income-item strong {
  display: block;
  margin-bottom: 6px;
}

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

.step-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(180, 134, 255, 0.18) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 20px;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 14px 0 0;
}

.cta-card {
  padding: 38px;
  text-align: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at top center, rgba(180, 134, 255, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.contact-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.copy-btn {
  min-height: 60px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(180, 134, 255, 0.18) 0%, rgba(127, 224, 255, 0.12) 100%);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

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

.cta-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  pointer-events: none;
}

.orb-1 {
  width: 280px;
  height: 280px;
  top: 40px;
  left: -60px;
  background: rgba(180, 134, 255, 0.24);
}

.orb-2 {
  width: 340px;
  height: 340px;
  right: -80px;
  top: 120px;
  background: rgba(127, 224, 255, 0.16);
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-grid,
  .feature-grid,
  .audience-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .topnav {
    display: none;
  }
}

@media (max-width: 768px) {
  .visual-card {
    min-height: 500px;
  }

  .promo-visual-wrap {
    width: min(100%, 400px);
    padding-top: 18px;
  }
  .topbar-inner {
    min-height: 72px;
  }

  .hero {
    padding-top: 52px;
  }

  .section {
    padding: 44px 0;
  }

  .domain-card,
  .feature-card,
  .info-panel,
  .step-card,
  .cta-card {
    padding: 22px;
  }

  .domain-card-top {
    flex-wrap: wrap;
  }

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

  .contact-box {
    flex-direction: column;
  }

  .contact-email,
  .copy-btn,
  .btn {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .visual-card {
    min-height: 430px;
  }

  .glow-1 { width: 220px; height: 220px; }
  .glow-2 { width: 300px; height: 300px; }
  .glow-3 { width: 390px; height: 390px; }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-head h2 {
    font-size: 32px;
  }

  .faq-item summary {
    font-size: 16px;
  }

  .contact-email {
    font-size: 16px;
    word-break: break-word;
    text-align: center;
    padding: 14px 18px;
    min-height: auto;
  }
}
