:root {
  --bg: #060606;
  --bg-2: #13110d;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(217, 180, 90, 0.12);
  --text: #f7efe2;
  --muted: #b79b71;
  --accent: #d9b45a;
  --accent-2: #8d5d2b;
  --border: rgba(217, 180, 90, 0.22);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 180, 90, 0.14), transparent 24%),
    radial-gradient(circle at 80% 15%, rgba(141, 93, 43, 0.16), transparent 24%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 70%, #030303 100%);
  background-size: 200% 200%;
  animation: drift 16s ease-in-out infinite alternate;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 92%);
  z-index: -2;
}

body::after {
  background: radial-gradient(circle at center, transparent 0%, rgba(6, 6, 6, 0.16) 45%, rgba(6, 6, 6, 0.82) 100%);
  z-index: -1;
}

::selection {
  background: rgba(217, 180, 90, 0.26);
  color: white;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  position: relative;
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 5rem auto auto 50%;
  width: 22rem;
  height: 22rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 180, 90, 0.16), transparent 74%);
  filter: blur(70px);
  pointer-events: none;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0 1rem;
}

.brand-mark {
  letter-spacing: 0.34em;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}

.status-pill {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.hero-layout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0 2.2rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
}

.hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-shadow: 0 0 28px rgba(217, 180, 90, 0.12);
}

.launch-line {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.03);
}

.teaser-copy {
  margin: 0 auto;
  color: rgba(247, 239, 226, 0.78);
  font-size: 1rem;
  line-height: 1.76;
  max-width: 34rem;
}

.site-footer {
  padding: 1rem 0 0.4rem;
  color: rgba(247, 239, 226, 0.55);
  font-size: 0.9rem;
  text-align: center;
}

@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 100% 100%; }
}

@media (min-width: 760px) {
  .site-shell {
    padding: 1.4rem 2rem 2rem;
  }
}

@media (max-width: 759px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}
