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

:root {
  --bg: #0c0d10;
  --bg-elevated: #14161c;
  --text: #f4f2ef;
  --text-muted: #9a9690;
  --accent: #c9a962;
  --accent-soft: rgba(201, 169, 98, 0.12);
  --border: rgba(244, 242, 239, 0.08);
  --font-serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100dvh;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, var(--accent-soft), transparent),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(244, 242, 239, 0.03), transparent),
    var(--bg);
}

.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.brand-mark {
  display: block;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--bg-elevated), var(--bg));
  box-shadow:
    0 0 0 1px rgba(201, 169, 98, 0.15) inset,
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.brand-mark::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin: 1.2rem auto 0;
  border-radius: 50%;
  background: var(--accent);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero {
  max-width: 26rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 999px;
  background: var(--accent-soft);
}

.lead {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
}

.footer {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
}

.copyright {
  font-size: 0.8125rem;
  color: var(--text-muted);
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
