:root {
  --bg: #f6f4ef;
  --bg-soft: #eeebe4;
  --surface: #ffffff;
  --text: #1c2834;
  --muted: #6e7882;
  --gold: #9a7b52;
  --gold-light: #b8956b;
  --line: rgba(154, 123, 82, 0.28);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.stage {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(154, 123, 82, 0.07), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}

.card {
  width: min(32rem, 100%);
  padding: clamp(2.5rem, 6vw, 3.5rem) clamp(2rem, 5vw, 3rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  box-shadow: 0 12px 40px rgba(28, 40, 52, 0.06);
}

.domain {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.01em;
  word-break: break-word;
  color: var(--text);
}

.domain-tld {
  color: var(--gold);
  font-weight: 500;
}

.rule {
  width: 3rem;
  height: 1px;
  margin: 1.5rem auto;
  background: var(--gold-light);
  opacity: 0.55;
}

.motto {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer {
  margin-top: 2.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (prefers-reduced-motion: no-preference) {
  .card {
    animation: rise 0.9s ease-out both;
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}