:root {
  color-scheme: dark;
  --bg: #111315;
  --panel: #181b1f;
  --line: #343a42;
  --text: #f1eee8;
  --muted: #aaa29a;
  --gold: #d8b767;
  --green: #8ac29a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

main {
  min-height: 100vh;
}

.hero {
  min-height: 76vh;
  display: grid;
  align-items: end;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(17, 19, 21, 0.58), rgba(17, 19, 21, 0.96)),
    url("/assets/unspice-hero.png");
  background-size: cover;
  background-position: center;
}

.hero-inner,
.details {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero-inner {
  padding: 64px 0 36px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 8vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.lede {
  max-width: 720px;
  margin: 18px 0 24px;
  color: #dfd8cd;
  font-size: 1.25rem;
  line-height: 1.55;
}

.form-note {
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 700;
}

.waitlist {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 0.7fr) auto;
  gap: 10px;
  align-items: end;
  max-width: 980px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(24, 27, 31, 0.92);
}

.hidden {
  display: none;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

input,
select,
textarea,
button {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

input,
select,
textarea {
  background: #101214;
  color: var(--text);
  padding: 9px 10px;
}

textarea {
  resize: vertical;
}

button {
  border-color: #b49548;
  background: #b49548;
  color: #171410;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.wide {
  grid-column: 1 / -2;
}

.details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 36px;
  padding: 34px 0 46px;
}

.details p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.facts {
  display: grid;
  gap: 10px;
}

.facts div {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 14px;
}

.facts span {
  color: var(--muted);
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  .waitlist,
  .details {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }
}
