:root {
  --bg: #090b12;
  --bg-soft: #10141f;
  --surface: #141925;
  --surface-light: #1b2231;
  --ink: #fff8e9;
  --muted: #a9adba;
  --gold: #ffbd31;
  --gold-soft: #ffd875;
  --orange: #f47721;
  --red: #cf342c;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 9%, rgba(244, 119, 33, 0.09), transparent 28rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 5.65rem);
  font-weight: 780;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.26rem;
}

::selection {
  color: #16100a;
  background: var(--gold);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: 112px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #13100a;
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  box-shadow: 0 0 12px rgba(255, 189, 49, 0.65);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #211407;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 50%, var(--orange));
  box-shadow: 0 12px 32px rgba(244, 119, 33, 0.24), inset 0 1px rgba(255, 255, 255, 0.55);
}

.button-primary:hover {
  box-shadow: 0 16px 38px rgba(244, 119, 33, 0.35), inset 0 1px rgba(255, 255, 255, 0.55);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.035);
  border-color: var(--line);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 189, 49, 0.38);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 11, 18, 0.88);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 166px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  position: relative;
  padding-block: 8px;
  color: #d7d8df;
  font-size: 0.91rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span:nth-child(2) { top: 14px; }
.nav-toggle span:nth-child(3) { top: 21px; }
.nav-toggle span:nth-child(4) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(4) { top: 21px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 142px 0 52px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 82%);
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: -24%;
  bottom: 8%;
  width: 72%;
  height: 52%;
  background: radial-gradient(ellipse, rgba(207, 52, 44, 0.14), transparent 65%);
  content: "";
  filter: blur(20px);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 189, 49, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow-one {
  top: -300px;
  right: -180px;
  width: 760px;
  height: 760px;
  box-shadow: inset 0 0 140px rgba(244, 119, 33, 0.07);
}

.hero-glow-two {
  top: -120px;
  right: 30px;
  width: 440px;
  height: 440px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
  gap: clamp(44px, 7vw, 90px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 strong {
  color: transparent;
  background: linear-gradient(125deg, #fff1bd 5%, var(--gold) 48%, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: inherit;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: #c5c7d0;
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  margin: 0;
  color: #d3d4db;
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.hero-points span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  color: #171006;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.72rem;
  place-items: center;
}

.hero-visual {
  position: relative;
}

.poster-frame {
  position: relative;
  width: min(100%, 510px);
  padding: 10px;
  margin-left: auto;
  background: linear-gradient(145deg, rgba(255, 216, 117, 0.84), rgba(244, 119, 33, 0.08) 34%, rgba(255, 255, 255, 0.14));
  border: 1px solid rgba(255, 216, 117, 0.38);
  border-radius: 30px;
  box-shadow: var(--shadow), 0 0 100px rgba(244, 119, 33, 0.16);
  transform: rotate(1.4deg);
}

.poster-frame::before {
  position: absolute;
  z-index: -1;
  inset: 12%;
  background: var(--orange);
  border-radius: inherit;
  content: "";
  filter: blur(70px);
  opacity: 0.2;
}

.poster-frame > img {
  width: 100%;
  border-radius: 21px;
  aspect-ratio: 1;
  object-fit: cover;
}

.poster-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 148px;
  padding: 11px 14px;
  background: rgba(13, 16, 24, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.2;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform: rotate(-1.4deg);
}

.poster-badge small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.poster-badge-top {
  top: 10%;
  right: -36px;
}

.poster-badge-bottom {
  bottom: 10%;
  left: -34px;
}

.badge-icon {
  display: grid;
  width: 36px;
  height: 36px;
  color: #191106;
  background: linear-gradient(145deg, var(--gold-soft), var(--orange));
  border-radius: 10px;
  font-size: 1.2rem;
  place-items: center;
}

.status-dot {
  width: 12px;
  height: 12px;
  background: #55d979;
  border: 3px solid rgba(85, 217, 121, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 217, 121, 0.1), 0 0 18px #55d979;
}

.hero-stats {
  display: grid;
  margin-top: 64px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--line);
  border-radius: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stats > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
}

.hero-stats > div + div {
  border-left: 1px solid var(--line);
}

.hero-stats strong {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero-stats span {
  color: #d6d8df;
  font-size: 0.88rem;
  font-weight: 700;
}

.intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(48px, 10vw, 132px);
}

.intro .section-heading h2 {
  margin-bottom: 0;
}

.intro-copy {
  padding-top: 42px;
}

.intro-copy p {
  color: #bbbfc9;
  font-size: 1.05rem;
}

.intro-copy p:first-child {
  color: #e3e3e8;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 750px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading.centered {
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered > p:not(.eyebrow) {
  margin-inline: auto;
}

.features {
  overflow: hidden;
}

.features::before {
  position: absolute;
  top: 20%;
  left: -260px;
  width: 520px;
  height: 520px;
  background: rgba(207, 52, 44, 0.1);
  border-radius: 50%;
  content: "";
  filter: blur(100px);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.feature-card::after {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  background: var(--gold);
  border-radius: 50%;
  content: "";
  filter: blur(85px);
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-card:hover {
  background: linear-gradient(145deg, rgba(255, 189, 49, 0.075), rgba(255, 255, 255, 0.025));
  border-color: rgba(255, 189, 49, 0.32);
  transform: translateY(-7px);
}

.feature-card:hover::after {
  opacity: 0.18;
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 82px;
  color: #1b1308;
  background: linear-gradient(145deg, #ffe6a1, var(--gold) 60%, var(--orange));
  border-radius: 17px;
  box-shadow: 0 12px 30px rgba(244, 119, 33, 0.2);
  font-size: 1.35rem;
  font-weight: 900;
  place-items: center;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.65;
}

.gameplay {
  background:
    linear-gradient(rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.018)),
    var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gameplay-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.82fr);
  gap: clamp(52px, 9vw, 116px);
}

.gameplay-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
}

.steps {
  padding: 0;
  margin: 38px 0 0;
  list-style: none;
}

.step {
  position: relative;
}

.step:not(:last-child)::before {
  position: absolute;
  z-index: 0;
  top: 49px;
  bottom: -5px;
  left: 24px;
  width: 1px;
  background: var(--line);
  content: "";
}

.step button {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  align-items: start;
  padding: 12px 12px 12px 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  grid-template-columns: 50px 1fr;
  gap: 16px;
}

.step-index {
  display: grid;
  width: 48px;
  height: 48px;
  color: #9195a1;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  place-items: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.step strong,
.step small {
  display: block;
}

.step strong {
  margin: 2px 0 2px;
  font-size: 1rem;
}

.step small {
  color: #979ba7;
  font-size: 0.82rem;
}

.step.is-active .step-index {
  color: #201506;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(255, 189, 49, 0.28);
}

.step.is-active strong {
  color: var(--gold-soft);
}

.mission-console {
  position: relative;
  overflow: hidden;
  padding: 12px;
  background: linear-gradient(150deg, #343948, #131720 25%, #090c12 85%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.mission-console::before {
  position: absolute;
  top: -40%;
  left: 20%;
  width: 70%;
  height: 120%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.045), transparent);
  content: "";
  transform: rotate(18deg);
  pointer-events: none;
}

.console-topbar,
.console-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  color: #aeb1ba;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-topbar span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.console-topbar i {
  width: 7px;
  height: 7px;
  background: #52db76;
  border-radius: 50%;
  box-shadow: 0 0 10px #52db76;
}

.console-screen {
  position: relative;
  z-index: 1;
  min-height: 440px;
  padding: 42px 38px 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(255, 189, 49, 0.14), transparent 35%),
    linear-gradient(150deg, rgba(24, 29, 42, 0.96), rgba(9, 11, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 19px;
  box-shadow: inset 0 0 55px rgba(0, 0, 0, 0.38);
}

.console-screen::after {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 4px;
  content: "";
  pointer-events: none;
}

.console-kicker {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.console-symbol {
  display: grid;
  width: 112px;
  height: 112px;
  margin: 34px 0 30px;
  color: #1d1307;
  background: linear-gradient(145deg, #ffe79f, var(--gold) 55%, var(--orange));
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 189, 49, 0.55), 0 20px 65px rgba(244, 119, 33, 0.22);
  font-size: 2.2rem;
  font-weight: 900;
  place-items: center;
}

.console-screen h3 {
  max-width: 310px;
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.console-screen p {
  max-width: 340px;
  margin-bottom: 32px;
  color: #aeb1bc;
  font-size: 0.88rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px;
  color: #b9bbc4;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.progress-label strong {
  color: var(--gold-soft);
}

.progress-track {
  height: 7px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
}

.progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(255, 189, 49, 0.44);
  transition: width 350ms ease;
}

.console-footer {
  padding-top: 13px;
}

.console-lights {
  display: flex;
  gap: 5px;
}

.console-lights i {
  width: 6px;
  height: 6px;
  background: #454a56;
  border-radius: 50%;
}

.console-lights i:first-child { background: var(--red); }
.console-lights i:nth-child(2) { background: var(--gold); }
.console-lights i:last-child { background: #52db76; }

.recipes {
  overflow: hidden;
}

.section-heading.split {
  display: grid;
  max-width: none;
  align-items: end;
  margin-bottom: 52px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: 80px;
}

.section-heading.split h2 {
  margin-bottom: 0;
}

.recipe-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
}

.recipe-card,
.recipe-list {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.017));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.recipe-featured {
  display: grid;
  min-height: 520px;
  overflow: hidden;
  grid-template-rows: 1.2fr 0.8fr;
}

.recipe-art {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 189, 49, 0.18), transparent 30%),
    linear-gradient(140deg, #3a1b13, #17121a 55%, #0c0f17);
}

.recipe-art::before {
  position: absolute;
  right: -8%;
  bottom: -46%;
  left: -8%;
  height: 72%;
  background: linear-gradient(165deg, #704127, #251812);
  border-top: 1px solid rgba(255, 216, 117, 0.26);
  content: "";
  transform: skewY(-5deg);
}

.plate {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  background:
    radial-gradient(circle at 42% 38%, #e55c20 0 4%, transparent 5%),
    radial-gradient(circle at 62% 48%, #f2b22d 0 5%, transparent 6%),
    radial-gradient(circle at 46% 62%, #4e9f50 0 6%, transparent 7%),
    radial-gradient(circle, #d88b35 0 40%, #f5dfae 41% 53%, #d7be8c 54% 59%, #f1e2c0 60% 73%, #8b7457 74% 76%, transparent 77%);
  border-radius: 50%;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -49%) rotate(-8deg);
}

.steam {
  position: absolute;
  top: 15%;
  left: 50%;
  width: 28px;
  height: 80px;
  border-left: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  filter: blur(1px);
  transform: rotate(14deg);
}

.steam-one { margin-left: -48px; }
.steam-two { margin: -12px 0 0 4px; transform: rotate(-10deg); }
.steam-three { margin-left: 45px; transform: rotate(18deg); }

.recipe-content {
  padding: 34px 36px;
}

.recipe-label {
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 14px;
  color: var(--gold-soft);
  background: rgba(255, 189, 49, 0.08);
  border: 1px solid rgba(255, 189, 49, 0.18);
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.recipe-content h3 {
  font-size: 1.75rem;
}

.recipe-content p {
  color: var(--muted);
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  color: #d9d9df;
  font-size: 0.76rem;
  font-weight: 700;
}

.recipe-list {
  display: flex;
  padding: 14px 28px;
  flex-direction: column;
  justify-content: center;
}

.recipe-list article {
  display: grid;
  align-items: center;
  padding: 21px 0;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 15px;
}

.recipe-list article + article {
  border-top: 1px solid var(--line);
}

.recipe-emoji {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--gold);
  background: rgba(255, 189, 49, 0.08);
  border: 1px solid rgba(255, 189, 49, 0.16);
  border-radius: 13px;
  font-size: 0.88rem;
  place-items: center;
}

.recipe-list h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.recipe-list p {
  margin-bottom: 0;
  color: #9195a1;
  font-size: 0.78rem;
  line-height: 1.55;
}

.difficulty {
  padding: 5px 9px;
  color: #c6c8d0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.62rem;
  font-weight: 800;
}

.challenge {
  padding-top: 20px;
}

.challenge-card {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 500px;
  padding: clamp(34px, 6vw, 74px);
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 44%, rgba(255, 189, 49, 0.22), transparent 22%),
    linear-gradient(128deg, #321513, #17121b 50%, #111723);
  border: 1px solid rgba(255, 189, 49, 0.22);
  border-radius: 34px;
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: 76px;
}

.challenge-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  -webkit-mask-image: linear-gradient(90deg, transparent, black);
  mask-image: linear-gradient(90deg, transparent, black);
  pointer-events: none;
}

.challenge-copy {
  position: relative;
  z-index: 1;
}

.challenge-copy h2 {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
}

.challenge-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: #c0bec5;
}

.challenge-copy ul {
  display: grid;
  padding: 0;
  margin: 28px 0 0;
  gap: 10px;
  color: #e1dee1;
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.challenge-copy li span {
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: #1c1307;
  background: var(--gold);
  border-radius: 50%;
  font-size: 0.7rem;
  place-items: center;
}

.mini-slot {
  position: relative;
  z-index: 1;
  padding: 20px;
  background: linear-gradient(145deg, #242a38, #090c13);
  border: 1px solid rgba(255, 216, 117, 0.35);
  border-radius: 24px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.42), inset 0 0 0 4px rgba(255, 255, 255, 0.025);
  transform: rotate(2.5deg);
}

.slot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 4px 16px;
  color: var(--gold-soft);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.slot-header span {
  color: var(--ink);
  font-size: 0.82rem;
}

.slot-reels {
  display: grid;
  padding: 16px;
  background: #090b11;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  box-shadow: inset 0 12px 35px rgba(0, 0, 0, 0.7);
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.slot-reels span {
  display: grid;
  aspect-ratio: 0.9;
  color: var(--gold);
  background: linear-gradient(#3c2230, #211524);
  border: 1px solid rgba(255, 189, 49, 0.35);
  border-radius: 13px;
  box-shadow: inset 0 0 22px rgba(255, 189, 49, 0.08);
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-shadow: 0 0 20px rgba(255, 189, 49, 0.4);
  place-items: center;
}

.slot-progress {
  height: 7px;
  margin-top: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 99px;
}

.slot-progress span {
  display: block;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: inherit;
}

.mini-slot p {
  margin: 7px 2px 0;
  color: #9599a5;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: right;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.75fr) minmax(440px, 1fr);
  gap: clamp(58px, 10vw, 130px);
}

.faq .section-heading {
  position: sticky;
  top: 120px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 2px;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background: rgba(255, 189, 49, 0.08);
  border: 1px solid rgba(255, 189, 49, 0.2);
  border-radius: 50%;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  max-width: 680px;
  padding: 0 46px 24px 2px;
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  padding: 110px 0 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 85%, rgba(244, 119, 33, 0.22), transparent 32rem),
    linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.018));
  text-align: center;
}

.final-cta::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 189, 49, 0.42), transparent);
  content: "";
}

.final-cta-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.final-cta img {
  width: 76px;
  height: 76px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 189, 49, 0.36);
  border-radius: 20px;
  box-shadow: 0 18px 46px rgba(244, 119, 33, 0.2);
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  max-width: 760px;
  margin-bottom: 18px;
}

.final-cta p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--muted);
}

.site-footer {
  background: #07090e;
}

.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  padding-block: 54px 36px;
}

.footer-brand img {
  width: 148px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 470px;
  margin-bottom: 0;
  color: #858995;
  font-size: 0.86rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 30px;
}

.footer-nav a,
.footer-bottom a {
  color: #c5c7ce;
  font-size: 0.8rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.footer-nav a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: #696e7a;
  font-size: 0.72rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .main-nav {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
    gap: 48px;
  }

  .poster-badge-top {
    right: -14px;
  }

  .poster-badge-bottom {
    left: -14px;
  }

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

  .feature-card {
    min-height: 290px;
  }

  .feature-icon {
    margin-bottom: 52px;
  }

  .challenge-card {
    gap: 46px;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: 88px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    min-height: 100svh;
    padding: 116px 34px 40px;
    background: rgba(9, 11, 18, 0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.15rem;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 126px;
  }

  .hero-grid,
  .intro-grid,
  .gameplay-grid,
  .recipe-grid,
  .challenge-card,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 58px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(86%, 540px);
    margin-inline: auto;
  }

  .poster-frame {
    margin-inline: auto;
  }

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

  .hero-stats > div:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .hero-stats > div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .intro-grid {
    gap: 26px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .gameplay-grid {
    gap: 58px;
  }

  .mission-console {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recipe-grid {
    gap: 18px;
  }

  .challenge-card {
    gap: 52px;
  }

  .mini-slot {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .faq-grid {
    gap: 48px;
  }

  .faq .section-heading {
    position: static;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding-block: 72px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 142px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    padding: 112px 0 38px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-visual {
    width: calc(100% - 12px);
  }

  .poster-frame {
    padding: 7px;
    border-radius: 22px;
  }

  .poster-frame > img {
    border-radius: 16px;
  }

  .poster-badge {
    display: none;
  }

  .hero-stats {
    margin-top: 46px;
  }

  .hero-stats > div {
    align-items: flex-start;
    padding: 15px;
    flex-direction: column;
    gap: 2px;
  }

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

  .feature-card {
    min-height: 270px;
  }

  .mission-console {
    padding: 8px;
    border-radius: 21px;
  }

  .console-screen {
    min-height: 420px;
    padding: 34px 24px 28px;
  }

  .console-symbol {
    width: 96px;
    height: 96px;
  }

  .console-footer {
    font-size: 0.52rem;
  }

  .recipe-featured {
    min-height: 0;
  }

  .recipe-content {
    padding: 28px 24px;
  }

  .recipe-list {
    padding: 8px 18px;
  }

  .recipe-list article {
    grid-template-columns: 42px 1fr;
  }

  .difficulty {
    display: none;
  }

  .challenge {
    padding-top: 8px;
  }

  .challenge-card {
    width: min(calc(100% - 22px), var(--container));
    padding: 40px 24px;
    border-radius: 25px;
  }

  .mini-slot {
    padding: 14px;
    transform: none;
  }

  .slot-reels {
    padding: 10px;
    gap: 6px;
  }

  .accordion summary {
    font-size: 0.93rem;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
