:root {
  --bg: #0D0D0D;
  --panel: #141414;
  --panel-border: #1f1a11;
  --line: #2e2618;
  --text: #F5F5F5;
  --muted: #A0998C;
  --gold: #C9A84C;
  --gold-soft: #e8d48b;
  --accent: #fff2cf;
  --radius: 16px;
  --max-w: 1120px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* ── Ambient Glow ── */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
  pointer-events: none;
}
.glow-left   { width: 400px; height: 400px; left: -120px; top: 100px;  background: #c9a84c18; }
.glow-right  { width: 350px; height: 350px; right: -100px; bottom: 5%;  background: #fff2cf0c; }
.glow-center { width: 600px; height: 600px; left: 50%; top: 15%; transform: translateX(-50%); background: #c9a84c08; }

/* ── Layout ── */
.site-header,
.section,
.footer-inner {
  width: min(var(--max-w), 92vw);
  margin-inline: auto;
}

.section { padding: 5rem 0; }

/* ── Header ── */
.site-header {
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(to bottom, var(--bg) 60%, transparent);
  backdrop-filter: blur(8px);
}
.brand img { width: 200px; max-width: 50vw; display: block; }
nav { display: flex; gap: 1.2rem; align-items: center; }
nav a { color: var(--text); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
nav a:hover { color: var(--gold-soft); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  color: var(--gold) !important;
}
.nav-cta:hover { background: #c9a84c12; }

/* ── Typography ── */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  font-weight: 600;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.5rem); max-width: 14ch; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: 1.6rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
}

/* ── Hero ── */
.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero h1 { margin-top: 1rem; }
.lead {
  margin-top: 1.2rem;
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.1rem;
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, #2a210f, #151210);
  border-color: var(--gold);
  color: var(--accent);
  box-shadow: 0 0 20px #c9a84c15;
}
.btn-primary:hover {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
  box-shadow: 0 0 30px #c9a84c25;
}
.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--muted); }
.btn-success {
  border-color: #4ade80;
  color: #4ade80 !important;
  background: #4ade8010;
}

/* ── Section Head ── */
.section-head { margin-bottom: 2rem; }
.section-head h2 { margin-top: 0.5rem; }
.section-head.center { text-align: center; }
.section-sub {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 50ch;
  margin-inline: auto;
}

/* ── Feature Cards ── */
.cards {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, 1fr);
}
.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  border-color: #c9a84c40;
  box-shadow: 0 0 40px #c9a84c08;
}
.card.featured {
  border-top: 2px solid var(--gold);
  box-shadow: 0 0 0 1px #c9a84c30;
}
.card-icon {
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.card h3 { margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
.card ul {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}
.card li {
  color: var(--muted);
  font-size: 0.88rem;
  padding: 0.35rem 0;
  padding-left: 1.2rem;
  position: relative;
}
.card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Waitlist ── */
.waitlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.waitlist-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}
.waitlist-card h3 { margin-bottom: 0.5rem; }
.waitlist-card > p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.5rem; }
.waitlist-card form { display: grid; gap: 1rem; }
.waitlist-card label {
  display: grid;
  gap: 0.3rem;
}
.waitlist-card label span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}
.waitlist-card input {
  background: #0a0a0a;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.waitlist-card input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px #c9a84c18;
}
.waitlist-card input::placeholder { color: #555; }
.waitlist-card .btn { width: 100%; margin-top: 0.3rem; }

/* ── Footer ── */
.site-footer {
  border-top: 1px solid #1a1610;
  padding: 2rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo { width: 120px; opacity: 0.5; }
.footer-inner p { color: var(--muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 1.2rem; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-soft); }

/* ── Focus ── */
.btn:focus-visible,
nav a:focus-visible,
.waitlist-card input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .cards .card:last-child { grid-column: 1 / -1; }
  .waitlist-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { padding-top: 5rem; padding-bottom: 4rem; }
  .cards { grid-template-columns: 1fr; }
  .cards .card:last-child { grid-column: auto; }
  .section { padding: 3.5rem 0; }
  .footer-inner { flex-direction: column; text-align: center; }
}
