:root {
  --ink: #f4e2b2;
  --text: #ead9ad;
  --muted: #b9a77a;
  --line: rgba(215, 173, 89, 0.34);
  --paper: #060606;
  --panel: #11100d;
  --panel-soft: #17140f;
  --gold: #d7ad59;
  --gold-bright: #f5d68d;
  --rose: #b97888;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 6%, rgba(215, 173, 89, 0.12), transparent 30%),
    linear-gradient(180deg, #070707 0%, #0e0c09 48%, #060606 100%);
  line-height: 1.55;
}

body.thanks-page {
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(6, 6, 6, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: contain;
  object-position: 50% 30%;
  border: 1px solid rgba(215, 173, 89, 0.42);
  background: #050505;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

nav a:hover,
.app-link {
  color: var(--gold-bright);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.8fr);
  gap: clamp(18px, 4vw, 64px);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 79% 48%, rgba(215, 173, 89, 0.14), transparent 38%),
    linear-gradient(90deg, #080808 0%, #0c0b09 54%, #040404 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 173, 89, 0.72), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 76px;
}

.hero-art {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 96px clamp(18px, 5vw, 70px) 52px 0;
  pointer-events: none;
}

.hero-art img {
  width: min(50vw, 730px);
  max-height: 78vh;
  object-fit: contain;
  filter: drop-shadow(0 28px 72px rgba(215, 173, 89, 0.18));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1,
h2 {
  font-family: Fraunces, Georgia, serif;
}

h1 {
  font-size: clamp(54px, 9vw, 120px);
  max-width: 10ch;
}

h2 {
  font-size: clamp(30px, 4.6vw, 56px);
  max-width: 13ch;
}

h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: clamp(18px, 2.1vw, 23px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #100c06;
  background: linear-gradient(180deg, #f6d98f, #b98431);
}

.button.primary:hover {
  background: linear-gradient(180deg, #ffe7aa, #c8943b);
}

.button.secondary {
  color: var(--gold-bright);
  background: rgba(12, 10, 7, 0.72);
}

.section {
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow),
.beta-note p:not(.eyebrow),
.thanks-card p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.process-grid,
.beta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.process-grid article,
.beta-grid article,
.waitlist-form,
.thanks-card {
  background: rgba(17, 16, 13, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-grid article,
.beta-grid article {
  min-height: 230px;
  padding: 22px;
}

.process-grid p,
.beta-grid p,
.note-list p {
  color: var(--muted);
}

.step {
  display: inline-block;
  margin-bottom: 32px;
  color: var(--gold-bright);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: start;
  background: #0f0d0a;
  border-block: 1px solid var(--line);
}

.note-list {
  display: grid;
  gap: 12px;
}

.note-list p {
  margin: 0;
  padding: 16px 18px;
  background: rgba(215, 173, 89, 0.08);
  border-left: 4px solid var(--gold);
}

.beta-note {
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.96), rgba(19, 15, 10, 0.92)),
    radial-gradient(circle at 80% 20%, rgba(215, 173, 89, 0.24), transparent 32%);
}

.beta-plan {
  background: linear-gradient(180deg, #070707, #0f0d0a);
}

.waitlist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: start;
}

.waitlist-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: clamp(18px, 4vw, 32px);
}

label {
  display: grid;
  gap: 7px;
  color: var(--soft, #ead19a);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.optional-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
}

.consent {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  padding: 14px;
  border: 1px solid rgba(215, 173, 89, 0.32);
  border-radius: 8px;
  background: rgba(215, 173, 89, 0.08);
  text-transform: none;
  font-size: 14px;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(215, 173, 89, 0.4);
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: #090909;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(215, 173, 89, 0.2);
  border-color: var(--gold-bright);
}

textarea {
  resize: vertical;
}

.full,
.waitlist-form button {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

footer {
  padding: 42px clamp(18px, 5vw, 72px) 38px;
  color: #e7dcc1;
  background: #050505;
  border-top: 1px solid rgba(215, 173, 89, 0.32);
  font-size: 14px;
  text-align: center;
}

.footer-wordmark {
  display: block;
  width: min(760px, 92vw);
  margin: 0 auto 20px;
}

footer p {
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
}

.thanks-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.thanks-card {
  width: min(760px, 100%);
  padding: clamp(28px, 6vw, 58px);
}

.thanks-card img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  object-position: 50% 30%;
  padding: 8px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #050505;
  border: 1px solid rgba(215, 173, 89, 0.42);
}

.thanks-card h1 {
  max-width: 11ch;
  font-size: clamp(46px, 8vw, 86px);
}

@media (max-width: 920px) {
  .process-grid,
  .beta-grid,
  .split,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

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

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    position: absolute;
    inset: auto -8vw 2vh auto;
    width: 54vw;
    opacity: 0.18;
    padding: 0;
  }

  .hero-art img {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-inner {
    margin-inline: 18px;
  }

  .process-grid,
  .beta-grid {
    grid-template-columns: 1fr;
  }

  .process-grid article,
  .beta-grid article {
    min-height: auto;
  }

  .hero-art {
    display: none;
  }
}
