@font-face {
  font-family: "CinzelVar";
  src: url("./assets/fonts/cinzel/Cinzel-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-weight: 400 900;
}

:root {
  --bg: #050505;
  --surface: #111111;
  --surface-alt: #171717;
  --gold: #d4af37;
  --gold-soft: #e8c96e;
  --wine: #7a1f1f;
  --text: #f3f3f1;
  --text-dim: rgba(243, 243, 241, 0.76);
  --line: rgba(212, 175, 55, 0.24);
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% -10%, rgba(212, 175, 55, 0.14), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(122, 31, 31, 0.2), transparent 38%),
    linear-gradient(180deg, #060606 0%, #000000 40%, #070707 100%);
}

.bg-orb {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.bg-orb-gold {
  right: -12rem;
  top: -10rem;
  background: radial-gradient(circle, var(--gold), transparent 65%);
}

.bg-orb-wine {
  left: -12rem;
  bottom: 0;
  background: radial-gradient(circle, var(--wine), transparent 65%);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

.panel {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(150deg, rgba(212, 175, 55, 0.05), rgba(122, 31, 31, 0.04)),
    rgba(16, 16, 16, 0.84);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0da8c 0%, #d8b13e 55%, #c49d2b 100%) !important;
  border: 1px solid rgba(255, 232, 145, 0.78);
  box-shadow:
    0 12px 30px rgba(212, 175, 55, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  z-index: 9;
}

.brand-logo {
  width: min(360px, 72vw);
  height: auto;
  filter: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.7rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

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

.btn-gold {
  color: #1d1500;
  background: linear-gradient(180deg, #eed687, var(--gold));
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.hero {
  margin-top: 1rem;
  padding: 1.4rem;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
  align-items: center;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--gold-soft);
}

h1,
h2 {
  margin: 0.5rem 0 0;
  font-family: "CinzelVar", "Cinzel", Georgia, serif;
  letter-spacing: 0.01em;
}

h1 {
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.02;
}

h2 {
  color: var(--gold-soft);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.lede {
  margin: 1rem 0 0;
  color: var(--text-dim);
  max-width: 56ch;
}

.hero-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
}

.hero-art {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-art img {
  width: min(230px, 44vw);
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.4));
  opacity: 0.96;
}

.section-block {
  margin-top: 1rem;
  padding: 1.3rem;
}

.section-head p {
  margin: 0.5rem 0 0;
  color: var(--text-dim);
}

.section-head--center {
  text-align: center;
}

.signup-slogan {
  margin-top: 0.45rem;
  color: var(--gold-soft);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.emotional-line {
  margin: 0.9rem auto 0;
  text-align: center;
  max-width: 48ch;
  color: var(--text-dim);
  font-size: 1rem;
}

.waitlist-form {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.16);
  background: rgba(8, 8, 8, 0.64);
}

.waitlist-form--narrow {
  max-width: 620px;
  margin: 1rem auto 0;
}

.waitlist-form label {
  display: grid;
  gap: 0.38rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.waitlist-form .field-control {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.72rem 0.75rem;
  font: inherit;
  line-height: 1.35;
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.waitlist-form textarea.field-control {
  resize: vertical;
  min-height: 110px;
}

.waitlist-form .field-control::placeholder {
  color: rgba(243, 243, 241, 0.44);
}

.waitlist-form .field-control:focus {
  border-color: rgba(232, 201, 110, 0.52);
  box-shadow: 0 0 0 2px rgba(232, 201, 110, 0.22);
  outline: none;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.consent input {
  margin-top: 0.2rem;
}

.form-help {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(243, 243, 241, 0.6);
}

.form-help a {
  color: var(--gold-soft);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.social-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.social-grid a {
  text-decoration: none;
  text-align: center;
  padding: 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.social-grid a:hover {
  border-color: rgba(232, 201, 110, 0.5);
  transform: translateY(-1px);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.social-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-grid;
  place-items: center;
  color: var(--gold-soft);
  font-size: 1.1rem;
}

.footer {
  text-align: center;
  margin-top: 1.1rem;
  color: rgba(243, 243, 241, 0.6);
  font-size: 0.9rem;
}

.footer a {
  color: var(--gold-soft);
  text-decoration: none;
  margin-left: 0.5rem;
}

code {
  color: var(--gold-soft);
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    justify-content: flex-start;
  }

  .social-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 1rem);
  }

  .topbar {
    padding: 0.6rem 0.7rem;
  }

}
