:root {
  --bg: #07111f;
  --bg-soft: #0d1d31;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #b7c2d2;
  --gold: #d4af37;
  --gold-light: #f0d777;
  --blue: #3b82f6;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 30px;
  --radius-md: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #0b1728 45%, #0d1d31 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .7;
}

.orb-one {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -120px;
  background: rgba(59, 130, 246, .14);
}

.orb-two {
  width: 340px;
  height: 340px;
  right: -100px;
  top: 38%;
  background: rgba(212, 175, 55, .10);
}

.site-header,
.site-footer,
main {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, .55);
  border-radius: 14px;
  color: var(--gold-light);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(212, 175, 55, .06);
}

.brand-text {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .16em;
}

.header-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  transition: color .2s ease;
}

.header-link:hover {
  color: var(--gold-light);
}

.hero {
  min-height: calc(100vh - 84px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 64px;
  padding: 80px 0 110px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
}

h1,
h2,
h3 {
  font-family: "Poppins", sans-serif;
  margin-top: 0;
}

h1 {
  font-size: clamp(3.1rem, 7vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 22px 0 28px;
}

h1 span {
  display: block;
  color: var(--gold-light);
}

.hero-text {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.8;
}

.hero-text strong {
  color: #fff;
}

.price-card {
  width: fit-content;
  min-width: 310px;
  display: flex;
  flex-direction: column;
  padding: 22px 26px;
  margin-bottom: 28px;
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.price-label,
.price-note {
  color: var(--muted);
  font-size: .88rem;
}

.price {
  margin: 8px 0 5px;
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.7rem);
  line-height: 1;
  color: var(--gold-light);
}

.price small {
  font-size: .35em;
  letter-spacing: .08em;
}

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

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

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

.btn-primary {
  color: #09111d;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 40px rgba(212, 175, 55, .18);
}

.btn-primary:hover {
  box-shadow: 0 22px 52px rgba(212, 175, 55, .28);
}

.btn-secondary {
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

.btn-secondary:hover {
  border-color: rgba(212, 175, 55, .5);
}

.availability {
  margin-top: 18px;
  color: #96a5b9;
  font-size: .86rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: min(100%, 500px);
  min-height: 560px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  border: 1px solid var(--panel-border);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    rgba(255,255,255,.035);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(212, 175, 55, .16), transparent 35%);
}

.visual-card img {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  opacity: .92;
}

.domain-badge {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(5, 13, 24, .72);
  backdrop-filter: blur(16px);
}

.domain-badge span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.domain-badge strong {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h2,
.investment-panel h2,
.cta-content h2 {
  margin: 14px 0 18px;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-heading p,
.investment-panel p,
.cta-content p {
  color: var(--muted);
  line-height: 1.75;
}

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

.glass-card,
.process-step {
  padding: 28px;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-md);
  background: var(--panel);
  backdrop-filter: blur(15px);
  transition: transform .25s ease, border-color .25s ease;
}

.glass-card:hover,
.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, .45);
}

.icon,
.process-step span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  color: var(--gold-light);
  font-weight: 800;
  background: rgba(212, 175, 55, .08);
  border: 1px solid rgba(212, 175, 55, .2);
}

.glass-card h3,
.process-step h3 {
  margin-bottom: 12px;
}

.glass-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.investment-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  padding: 52px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, .18);
  background:
    linear-gradient(135deg, rgba(212, 175, 55, .08), rgba(59, 130, 246, .05)),
    rgba(255,255,255,.025);
  box-shadow: var(--shadow);
}

.investment-panel p {
  align-self: end;
  font-size: 1.04rem;
}

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

.cta-section {
  margin: 80px 0 120px;
  padding: 80px 30px;
  text-align: center;
  border: 1px solid rgba(212, 175, 55, .22);
  border-radius: 34px;
  background:
    radial-gradient(circle at center top, rgba(212, 175, 55, .12), transparent 40%),
    rgba(255,255,255,.035);
  box-shadow: var(--shadow);
}

.cta-content {
  max-width: 820px;
  margin-inline: auto;
}

.cta-content .btn {
  margin-top: 18px;
}

.email-link {
  display: block;
  width: fit-content;
  margin: 22px auto 0;
  color: var(--muted);
  text-decoration: none;
}

.email-link:hover {
  color: var(--gold-light);
}

.site-footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #8f9caf;
}

.site-footer p {
  margin: 0;
  text-align: right;
  font-size: .86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}

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

@media (max-width: 980px) {
  .hero,
  .investment-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 45px;
  }

  .hero-visual {
    order: -1;
  }

  .visual-card {
    min-height: 420px;
  }

  .benefit-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-footer,
  main {
    width: min(calc(100% - 24px), var(--max));
  }

  .site-header {
    min-height: 74px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    padding: 45px 0 80px;
    min-height: auto;
  }

  h1 {
    font-size: clamp(2.75rem, 16vw, 4.6rem);
  }

  .visual-card {
    min-height: 330px;
    padding: 18px;
  }

  .price-card {
    min-width: 0;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .investment-panel {
    padding: 30px 24px;
  }

  .cta-section {
    padding: 60px 22px;
    margin-bottom: 80px;
  }

  .site-footer {
    padding: 30px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
