:root {
  --bg: #0f1117;
  --panel: #151821;
  --panel-strong: #1a1e29;
  --cream: #f2e8d5;
  --cream-soft: rgba(242, 232, 213, 0.72);
  --cream-muted: rgba(242, 232, 213, 0.48);
  --yellow: #ffe034;
  --coral: #d94f3a;
  --dark: #0f1117;
  --line: rgba(242, 232, 213, 0.14);
  --font-display: "Barlow Condensed", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
}

body::selection {
  background: var(--yellow);
  color: var(--dark);
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.section-shell {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 56px 0;
}

.hero__inner {
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(1rem, 4vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.venue-reel {
  width: min(100%, 760px);
  height: clamp(164px, 44vw, 230px);
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-width: 1px 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 23vw, 10.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.82;
  text-transform: uppercase;
}

.venue-reel span {
  display: block;
  max-width: 100%;
}

.venue-reel:hover,
.venue-reel:focus-visible {
  color: var(--yellow);
  outline: none;
}

.venue-reel.is-spinning span {
  transform: translateY(-2px);
  filter: blur(1px);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(3.4rem, 15vw, 8rem);
}

h2 {
  font-size: clamp(2.8rem, 12vw, 6.5rem);
}

.hero__copy {
  max-width: 690px;
  margin: 24px auto 34px;
  color: var(--cream-soft);
  font-size: clamp(1rem, 3vw, 1.2rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--spin {
  background: var(--yellow);
  color: var(--dark);
}

.button--spin:hover,
.button--spin:focus-visible {
  background: var(--cream);
}

.button--spin:disabled {
  background: transparent;
  color: var(--cream-muted);
  cursor: not-allowed;
  transform: none;
}

.button--waitlist {
  background: var(--coral);
  color: var(--dark);
}

.button--waitlist:hover,
.button--waitlist:focus-visible {
  background: var(--yellow);
}

.section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

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

.steps,
.tiers {
  display: grid;
  gap: 18px;
}

.step,
.tier-card,
.spin-panel,
.result-card {
  border: 1px solid var(--line);
  background: var(--panel);
}

.step,
.tier-card {
  padding: 24px;
}

.step h3 {
  color: var(--yellow);
  font-size: 2.2rem;
}

.step p,
.tier-card li,
.tier-card p {
  color: var(--cream-soft);
}

.step p {
  margin: 12px 0 0;
}

.demo-grid {
  display: grid;
  gap: 18px;
}

.spin-panel,
.result-card {
  padding: 20px;
}

.field {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--cream-soft);
}

.location-field {
  position: relative;
}

.location-suggestions {
  position: absolute;
  z-index: 4;
  top: calc(100% - 10px);
  right: 0;
  left: 0;
  display: grid;
  border: 1px solid var(--line);
  background: var(--dark);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.32);
}

.location-suggestion {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
  padding: 12px 14px;
  cursor: pointer;
  text-align: left;
}

.location-suggestion:last-child {
  border-bottom: 0;
}

.location-suggestion:hover,
.location-suggestion:focus-visible {
  background: var(--yellow);
  color: var(--dark);
  outline: none;
}

.location-suggestion strong,
.location-suggestion span {
  display: block;
}

.location-suggestion span {
  color: inherit;
  font-size: 0.82rem;
  opacity: 0.72;
}

.field span,
.field legend {
  color: var(--cream);
  font-weight: 800;
}

.field strong,
.result-data dd {
  color: var(--yellow);
}

fieldset {
  border: 0;
  padding: 0;
}

input[type="text"],
input[type="email"],
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--dark);
  color: var(--cream);
  padding: 16px;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus {
  border-color: var(--yellow);
  outline: none;
}

select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--yellow) 50%),
    linear-gradient(135deg, var(--yellow) 50%, transparent 50%);
  background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--yellow);
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-group label {
  border: 1px solid var(--line);
  padding: 10px 12px;
  color: var(--cream-soft);
  cursor: pointer;
}

.pill-group label:has(input:checked) {
  border-color: var(--yellow);
  color: var(--yellow);
}

.pill-group label:has(input:disabled) {
  color: var(--cream-muted);
  cursor: not-allowed;
  opacity: 0.46;
}

.pill-group input {
  margin-right: 6px;
  accent-color: var(--yellow);
}

.filter-row {
  display: grid;
  gap: 12px;
}

.spin-panel__button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--cream-muted);
}

.result-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.result-card.is-revealing {
  animation: resultReveal 360ms ease-out both;
}

.result-card__label {
  margin: 0 0 12px;
  color: var(--cream-muted);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-card h3 {
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 17vw, 7rem);
}

.result-data {
  display: grid;
  gap: 14px;
  margin: auto 0 24px;
}

.result-data div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.result-data dt {
  color: var(--cream-muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-data dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.review-card {
  margin: 0 0 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.review-card blockquote {
  margin: 0;
  color: var(--cream-soft);
  font-size: 0.96rem;
}

.review-card figcaption {
  margin-top: 10px;
  color: var(--cream-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.destination {
  position: relative;
  min-height: 190px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--panel-strong);
  overflow: hidden;
}

.destination__secret {
  width: 100%;
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  filter: blur(8px);
  user-select: none;
}

.destination__secret.is-unlocked {
  filter: none;
  user-select: auto;
}

.destination__secret p {
  margin: 0;
  font-weight: 800;
}

.destination__secret a {
  color: var(--yellow);
  font-weight: 800;
}

.unlock-card {
  position: absolute;
  inset: 16px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
  background: rgba(15, 17, 23, 0.88);
  border: 1px solid var(--line);
  text-align: center;
}

.unlock-card.is-hidden {
  display: none;
}

.unlock-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.tier-card h3 {
  margin-bottom: 16px;
  color: var(--yellow);
  font-size: 2.6rem;
}

.tier-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.tier-card--premium {
  border-color: rgba(255, 224, 52, 0.45);
}

.tier-card--premium p {
  margin: 20px 0 0;
  color: var(--yellow);
  font-weight: 800;
}

.waitlist {
  background: var(--coral);
  color: var(--dark);
  padding: 56px 0;
}

.waitlist__inner {
  display: grid;
  gap: 22px;
}

.waitlist h2 {
  font-size: clamp(3rem, 13vw, 7rem);
}

.waitlist-form {
  display: grid;
  gap: 10px;
}

.waitlist-form input {
  border-color: rgba(15, 17, 23, 0.32);
  background: var(--cream);
  color: var(--dark);
}

.waitlist-form button {
  min-height: 54px;
  border: 1px solid var(--dark);
  background: var(--dark);
  color: var(--cream);
  cursor: pointer;
  font-weight: 800;
}

.waitlist-form button:hover,
.waitlist-form button:focus-visible {
  background: var(--yellow);
  color: var(--dark);
  outline: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes resultReveal {
  from {
    opacity: 0.62;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 720px) {
  .section-shell {
    width: min(100% - 56px, 1120px);
  }

  .section {
    padding: 108px 0;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .spin-panel,
  .result-card {
    padding: 28px;
  }

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

  .waitlist-form {
    align-self: center;
    grid-template-columns: 1fr auto;
  }

  .waitlist-form button {
    padding: 0 22px;
  }
}
