:root {
  --ink: #050403;
  --ink-soft: #100b07;
  --cream: #f8eddb;
  --muted: #b9aa95;
  --gold: #e5ad45;
  --gold-bright: #f3c96d;
  --line: rgba(229, 173, 69, 0.28);
  --line-strong: rgba(229, 173, 69, 0.54);
  --panel: rgba(12, 8, 5, 0.86);
  --radius: 8px;
  --max: 1160px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.54));
  border-bottom: 1px solid rgba(229, 173, 69, 0.14);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand img {
  width: clamp(7rem, 10vw, 9.4rem);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-links a,
.social-links a,
.text-link {
  transition: color 160ms ease;
}

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

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0 1rem;
  color: #1b1208;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94), rgba(5, 4, 3, 0.66) 48%, rgba(5, 4, 3, 0.2)),
    linear-gradient(0deg, var(--ink) 0%, rgba(5, 4, 3, 0.16) 45%, rgba(5, 4, 3, 0.76) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
  padding: 9rem 0 8.5rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 47rem;
  margin-bottom: 1rem;
  font-size: clamp(3.35rem, 7.6vw, 6.65rem);
  line-height: 0.94;
}

.hero-subtitle {
  margin-bottom: 1.25rem;
  color: var(--gold-bright);
  font-size: clamp(0.95rem, 1.6vw, 1.18rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 39rem;
  margin-bottom: 1.65rem;
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero-note {
  position: absolute;
  right: 2.2rem;
  bottom: 2rem;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
  max-width: 32rem;
}

.hero-note span,
.venue-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0 0.85rem;
  color: var(--gold-bright);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 4, 3, 0.58);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.waitlist-form {
  width: min(100%, 42rem);
  display: grid;
  gap: 0.65rem;
}

.waitlist-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(5, 4, 3, 0.74);
}

.input-row input {
  width: 100%;
  min-height: 3.75rem;
  padding: 0 1rem;
  color: var(--cream);
  background: transparent;
  border: 0;
  outline: 0;
}

.input-row input:focus {
  box-shadow: inset 0 0 0 1px var(--gold-bright);
}

.input-row button {
  min-height: 3.75rem;
  padding: 0 1.5rem;
  color: #1b1208;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: 0;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.form-message {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.form-message.is-success {
  color: #70c784;
}

.form-message.is-error {
  color: #ff8b7f;
}

.intro-band,
.split-section,
.image-feature,
.audience-section,
.launch-section,
.founder-section,
.final-cta,
.site-footer {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
}

.intro-band {
  padding: 3rem 0 1rem;
}

.intro-band p {
  max-width: 60rem;
  margin-bottom: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 4vw, 3.15rem);
  line-height: 1.08;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(229, 173, 69, 0.16);
}

.section-label {
  margin-bottom: 0.8rem;
  color: var(--gold-bright);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-copy h2,
.feature-copy h2,
.audience-section h2,
.launch-section h2,
.founder-section h2,
.final-cta h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

.steps-grid {
  display: grid;
  gap: 0.85rem;
}

.steps-grid article,
.audience-grid article {
  min-height: 9rem;
  padding: 1rem;
  background: linear-gradient(145deg, rgba(20, 15, 10, 0.94), rgba(8, 6, 4, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps-grid span {
  color: var(--gold-bright);
  font-size: 0.72rem;
}

.steps-grid h3,
.audience-grid h3 {
  margin: 0.55rem 0 0.45rem;
  font-size: 1.35rem;
}

.steps-grid p,
.audience-grid p,
.feature-copy p,
.launch-section p,
.founder-section p,
.final-cta p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(18rem, 0.92fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 0;
}

.feature-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-image img {
  min-height: 30rem;
  object-fit: cover;
}

.audience-section {
  padding: 4.25rem 0;
}

.compact-copy {
  max-width: 44rem;
  margin-bottom: 1.5rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.launch-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  gap: 2rem;
  align-items: start;
  padding: 4.5rem 0;
  border-top: 1px solid rgba(229, 173, 69, 0.16);
  border-bottom: 1px solid rgba(229, 173, 69, 0.16);
}

.venue-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.founder-section {
  display: grid;
  grid-template-columns: 9rem minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 4.5rem 0;
}

.founder-mark {
  width: 9rem;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 30%, rgba(229, 173, 69, 0.18), transparent 58%),
    rgba(5, 4, 3, 0.7);
}

.text-link {
  display: inline-flex;
  margin-top: 1.3rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  min-height: 28rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  margin-bottom: 4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.92), rgba(5, 4, 3, 0.48)),
    linear-gradient(0deg, rgba(5, 4, 3, 0.88), rgba(5, 4, 3, 0.18));
}

.final-cta img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.final-content {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  padding: 2rem;
}

.compact-form {
  margin-top: 1.35rem;
}

.site-footer {
  min-height: 7rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.footer-brand img {
  width: 7.6rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-footer > span {
  justify-self: end;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 0.9rem 1.2rem;
  }

  .nav-links {
    display: none;
  }

  .split-section,
  .image-feature,
  .launch-section,
  .founder-section {
    grid-template-columns: 1fr;
  }

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

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

  .brand img {
    width: 6.8rem;
  }

  .header-cta {
    min-height: 2rem;
    padding: 0 0.75rem;
    font-size: 0.68rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, var(--ink) 0%, rgba(5, 4, 3, 0.35) 54%, rgba(5, 4, 3, 0.78) 100%),
      linear-gradient(90deg, rgba(5, 4, 3, 0.78), rgba(5, 4, 3, 0.36));
  }

  .hero-content,
  .intro-band,
  .split-section,
  .image-feature,
  .audience-section,
  .launch-section,
  .founder-section,
  .final-cta,
  .site-footer {
    width: min(100% - 1.4rem, var(--max));
  }

  .hero-content {
    padding: 7.2rem 0 8.6rem;
  }

  h1 {
    font-size: 3.15rem;
    line-height: 1;
  }

  .hero-text {
    font-size: 1rem;
  }

  .input-row,
  .audience-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .input-row button {
    width: 100%;
  }

  .hero-note {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 1rem;
    justify-content: flex-start;
  }

  .split-section,
  .image-feature,
  .audience-section,
  .launch-section,
  .founder-section {
    padding: 3.25rem 0;
  }

  .feature-image img {
    min-height: 20rem;
  }

  .founder-mark {
    width: 6.6rem;
    font-size: 2.3rem;
  }

  .final-content {
    padding: 1.2rem;
  }

  .site-footer {
    justify-items: start;
    padding: 1.5rem 0;
  }

  .site-footer > span {
    justify-self: start;
  }
}
