:root {
  --black: #070707;
  --white: #f5f3ed;
  --muted: #aaa79f;
  --line: rgba(245, 243, 237, 0.18);
  --yellow: #ffd400;
  --red: #ff1d3f;
  --blue: #087cf0;
  --font: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 132px; height: auto; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { text-decoration: none; font-size: 15px; font-weight: 700; }
.nav-cta { border: 1px solid var(--white); padding: 12px 18px; }

main, footer { width: min(1440px, calc(100% - 48px)); margin: 0 auto; }
.hero {
  min-height: calc(100vh - 92px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: 8vw;
  padding: 80px 0;
}
.eyebrow, .section-label {
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}
.eyebrow::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 14px; background: var(--yellow); }
h1, h2, p { margin-top: 0; }
h1 {
  margin-bottom: 36px;
  font-size: clamp(64px, 9vw, 142px);
  line-height: .84;
  letter-spacing: -.065em;
  font-weight: 800;
}
.intro {
  max-width: 680px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.48;
  color: #d1cec6;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 42px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--white);
}
.button-primary { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.button-secondary { background: transparent; }
.hero-mark { display: flex; justify-content: center; align-items: center; }
.hero-mark img { width: min(100%, 440px); }

.story, .reserve {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 8vw;
  padding: 110px 0;
}
h2 { font-size: clamp(38px, 5vw, 72px); line-height: .98; letter-spacing: -.045em; margin-bottom: 28px; }
.story p:not(.section-label), .reserve-copy p:not(.section-label) {
  max-width: 760px;
  font-size: 21px;
  line-height: 1.6;
  color: #c9c6be;
}

.reserve { align-items: end; }
.reserve-form { align-self: end; }
.field-row { display: grid; grid-template-columns: 1fr auto; border-bottom: 2px solid var(--white); }
.field-row input {
  min-width: 0;
  padding: 20px 0;
  border: 0;
  outline: none;
  color: var(--white);
  background: transparent;
  font: 700 22px/1.2 var(--font);
}
.field-row input::placeholder { color: #77756f; }
.field-row button {
  border: 0;
  background: var(--yellow);
  color: var(--black);
  padding: 0 26px;
  font: 800 16px/1 var(--font);
  cursor: pointer;
}
.field-row button:disabled { opacity: .55; cursor: wait; }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 18px; color: var(--muted); font-size: 14px; line-height: 1.45; }
.consent input { margin-top: 2px; }
.form-status { min-height: 24px; margin: 16px 0 0; font-size: 15px; }
.form-status.success { color: #b7e7ae; }
.form-status.error { color: #ff8b9d; }
.honeypot { position: absolute; left: -9999px; }

footer {
  border-top: 1px solid var(--line);
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
footer img { width: 118px; }
footer div { text-align: right; }
footer a { font-weight: 700; text-decoration: none; }
footer p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.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; }

@media (max-width: 900px) {
  .site-header, main, footer { width: min(100% - 32px, 1440px); }
  .site-header { min-height: 76px; }
  .brand img { width: 110px; }
  nav a:first-child { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 68px 0 88px; }
  .hero-mark { order: -1; justify-content: flex-start; }
  .hero-mark img { width: 220px; }
  h1 { font-size: clamp(62px, 20vw, 100px); }
  .story, .reserve { grid-template-columns: 1fr; padding: 80px 0; gap: 30px; }
}

@media (max-width: 560px) {
  .nav-cta { padding: 10px 14px; }
  .hero-mark img { width: 175px; }
  .intro { font-size: 19px; }
  .actions { flex-direction: column; }
  .button { width: 100%; }
  .field-row { grid-template-columns: 1fr; border: 0; gap: 10px; }
  .field-row input { border-bottom: 2px solid var(--white); }
  .field-row button { min-height: 54px; }
  footer { align-items: flex-start; flex-direction: column; padding: 40px 0; }
  footer div { text-align: left; }
}

/* Product imagery */
.hero-product {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.hero-product::before {
  content: "";
  position: absolute;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 212, 0, 0.10), rgba(255, 212, 0, 0) 68%);
  filter: blur(12px);
}
.hero-product img {
  position: relative;
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
}
.story {
  align-items: center;
  grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
}
.story-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.story-image img {
  width: min(100%, 620px);
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  .hero-product { order: -1; }
  .hero-product img { width: min(100%, 620px); }
  .story { grid-template-columns: 1fr; }
  .story-image img { width: min(100%, 560px); }
}

@media (max-width: 560px) {
  .hero-product img { width: 112%; max-width: none; margin-left: -6%; }
}

/* Game modes */
.modes {
  border-top: 1px solid var(--line);
  padding: 110px 0;
}
.modes-heading {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 8vw;
  margin-bottom: 64px;
}
.modes-heading h2 { max-width: 760px; }
.mode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mode-card {
  border: 1px solid var(--line);
  background: #0b0b0b;
  min-width: 0;
}
.mode-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
}
.mode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}
.mode-copy { padding: 28px; }
.mode-number {
  margin: 0 0 34px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
}
.mode-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(25px, 2.2vw, 36px);
  line-height: 1;
  letter-spacing: -.035em;
}
.mode-copy p:last-child {
  margin: 0;
  color: #c9c6be;
  font-size: 17px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .modes { padding: 80px 0; }
  .modes-heading { grid-template-columns: 1fr; gap: 8px; margin-bottom: 42px; }
  .mode-grid { grid-template-columns: 1fr; }
  .mode-card { display: grid; grid-template-columns: minmax(220px, .8fr) 1.2fr; }
  .mode-image { aspect-ratio: 4 / 5; border-bottom: 0; border-right: 1px solid var(--line); }
}

@media (max-width: 560px) {
  nav a[href="#game"] { display: none; }
  .mode-card { display: block; }
  .mode-image { aspect-ratio: 4 / 5; border-right: 0; border-bottom: 1px solid var(--line); }
  .mode-copy { padding: 24px; }
}

/* Revised game mode layout */
.text-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 800;
  text-underline-offset: 5px;
}
.mode-list {
  display: grid;
  gap: 22px;
}
.mode-row {
  display: grid;
  grid-template-columns: minmax(150px, 240px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  background: #0b0b0b;
}
.mode-row .mode-image {
  aspect-ratio: 3 / 4;
  max-height: 260px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.mode-row .mode-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.mode-row .mode-copy {
  padding: 0;
  max-width: 760px;
}
.mode-row .mode-number { margin-bottom: 22px; }
.daily {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 8vw;
  align-items: center;
  padding: 110px 0;
}
.daily-image {
  display: flex;
  justify-content: center;
}
.daily-image img {
  width: min(100%, 430px);
  max-height: 700px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid var(--line);
  border-radius: 24px;
}
.daily-copy p:not(.section-label) {
  max-width: 760px;
  color: #c9c6be;
  font-size: 19px;
  line-height: 1.6;
}
.daily-copy .button { margin-top: 16px; }

@media (max-width: 900px) {
  .mode-row { grid-template-columns: 180px minmax(0, 1fr); gap: 28px; }
  .daily { grid-template-columns: 1fr; padding: 80px 0; gap: 42px; }
  .daily-image { justify-content: flex-start; }
  .daily-image img { width: min(100%, 360px); }
}

@media (max-width: 560px) {
  .mode-row { grid-template-columns: 110px minmax(0, 1fr); gap: 18px; padding: 16px; align-items: start; }
  .mode-row .mode-image { max-height: 180px; }
  .mode-row .mode-number { margin-bottom: 12px; }
  .mode-row .mode-copy h3 { font-size: 24px; }
  .mode-row .mode-copy p:last-child { font-size: 15px; }
  .daily-image img { width: 100%; max-height: 620px; }
}
