:root {
  color-scheme: dark;
  --bg: #080a0f;
  --panel: #111621;
  --panel-soft: #151b28;
  --text: #f7f2e8;
  --muted: #a8b0bf;
  --line: rgba(255, 255, 255, 0.11);
  --gold: #d7aa50;
  --gold-soft: rgba(215, 170, 80, 0.14);
  --blue: #8bb8ff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(215, 170, 80, 0.15), transparent 34rem),
    radial-gradient(circle at top right, rgba(139, 184, 255, 0.12), transparent 34rem),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

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

.brand-mark {
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 24px rgba(215, 170, 80, 0.2);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--gold);
  opacity: 0.7;
}

.brand-mark::before {
  width: 1px;
  height: 18px;
  left: 50%;
  top: 5px;
}

.brand-mark::after {
  height: 1px;
  width: 18px;
  top: 50%;
  left: 5px;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover,
.domain-card a:hover,
.contact-panel a:hover {
  color: var(--gold);
}

.hero {
  min-height: 560px;
  display: grid;
  align-content: center;
  padding: 80px 0 64px;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3.25rem, 9vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  max-width: 920px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-spotlight {
  width: min(100%, 620px);
  margin: 34px 0 0;
  padding: 22px;
  border: 1px solid rgba(215, 170, 80, 0.36);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(215, 170, 80, 0.16), rgba(139, 184, 255, 0.07)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.hero-spotlight h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.hero-spotlight p:not(.eyebrow) {
  color: var(--muted);
}

.hero-spotlight a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 700;
}

.button.primary {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.04);
}

.section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

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

.section-heading p,
.process-list,
.contact-panel p,
.fine-print {
  color: var(--muted);
}

.brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.brief-panel,
.purchase-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.brief-panel ul,
.purchase-panel ul {
  color: var(--muted);
  padding-left: 1.2rem;
}

.purchase-panel {
  position: sticky;
  top: 18px;
}

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

.domain-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.domain-card.featured {
  border-color: rgba(215, 170, 80, 0.38);
  background:
    linear-gradient(180deg, var(--gold-soft), rgba(255, 255, 255, 0.025));
}

.category {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

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

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.price {
  color: var(--text);
  font-weight: 700;
}

.domain-card a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
}

.process-list ul {
  padding-left: 1.2rem;
}

.contact-panel {
  max-width: 760px;
}

.contact-panel a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.fine-print {
  max-width: 560px;
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .domain-grid,
  .brief-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 28px, 1120px);
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

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