:root {
  --bg: #050608;
  --bg-soft: #0b0f14;
  --panel: #111820;
  --panel-strong: #17212b;
  --border: #26313a;
  --border-hot: rgba(240, 74, 35, 0.55);
  --text: #f4f4ef;
  --muted: #a9b0b8;
  --blue: #1177d8;
  --orange: #f04a23;
  --warm: #ffb84d;
  --green: #39b66a;
  --max-width: 1180px;
  --header-height: 88px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-body: Inter, "Segoe UI", Arial, sans-serif;
  --font-display: Oxanium, Inter, "Segoe UI", sans-serif;
  --font-accent: Silkscreen, Inter, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  color-scheme: dark;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    linear-gradient(90deg, var(--blue) 0 42%, var(--orange) 42% 100%) top / 100% 4px no-repeat,
    radial-gradient(circle at 12% 24%, rgba(17, 119, 216, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 20%, rgba(240, 74, 35, 0.16), transparent 25rem),
    linear-gradient(135deg, #08101a 0%, #050608 46%, #150907 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 78%);
}

body::after {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 42vh;
  pointer-events: none;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.38), transparent);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 30px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 36px));
  min-height: 70px;
  padding: 12px 10px;
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right-color: transparent;
  border-left-color: transparent;
  background: rgba(5, 6, 8, 0.24);
  backdrop-filter: blur(14px);
}

.site-header::before,
.site-header::after {
  position: absolute;
  top: -1px;
  height: 2px;
  content: "";
}

.site-header::before {
  left: 0;
  width: 240px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.site-header::after {
  right: 0;
  width: 96px;
  background: linear-gradient(270deg, var(--orange), transparent);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.brand {
  gap: 16px;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.footer-brand {
  font-size: 1rem;
}

.brand-mark {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

main {
  overflow: hidden;
}

.hero,
.page-hero,
.section,
.site-footer {
  width: min(var(--max-width), calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - var(--header-height) - 18px);
  padding: clamp(44px, 8vw, 110px) 0;
}

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

.hero-copy::before,
.page-hero::before {
  display: block;
  width: min(430px, 100%);
  height: 6px;
  margin-bottom: 54px;
  content: "";
  background:
    linear-gradient(90deg, var(--blue), var(--blue) 58%, var(--orange) 58%, var(--orange));
}

.status,
.section-label,
.event-status {
  margin: 0;
  color: var(--warm);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
.page-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.36);
}

.page-hero h1 {
  font-size: clamp(3rem, 8vw, 6.7rem);
}

.intro,
.page-hero p,
.split-section > p,
.info-panel p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.intro {
  max-width: 700px;
  margin: 30px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--blue);
  box-shadow: 8px 8px 0 rgba(240, 74, 35, 0.78);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.feature-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
}

.button,
.feature-card,
.contact-card {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.feature-card:focus-visible,
.contact-card:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

.hero-panel,
.info-panel,
.event-card,
.feature-card,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(17, 119, 216, 0.08), transparent 42%),
    linear-gradient(315deg, rgba(240, 74, 35, 0.12), transparent 46%),
    rgba(17, 24, 32, 0.82);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: clamp(24px, 4vw, 36px);
}

.hero-photo {
  align-self: center;
}

.hero-photo img {
  max-height: 560px;
}

.hero-panel h2 {
  margin: 14px 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero-panel p,
.event-card p,
.feature-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.quick-facts {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.quick-facts div {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.quick-facts dt {
  color: var(--warm);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 6px 0 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 800;
}

.section,
.page-hero {
  padding: clamp(54px, 8vw, 100px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero {
  max-width: 940px;
  margin-left: clamp(18px, calc((100% - var(--max-width)) / 2), 999px);
}

.page-hero .section-label,
.split-section .section-label,
.section-heading .section-label {
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 780px;
  margin: 28px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 74px);
  align-items: start;
}

.split-section h2,
.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.section-heading {
  margin-bottom: 26px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.contact-card {
  display: block;
  min-height: 220px;
  padding: 24px;
  color: var(--text);
  text-decoration: none;
}

.feature-card-rejected {
  position: relative;
  color: rgba(244, 244, 239, 0.48);
  filter: grayscale(0.65);
}

.feature-card-rejected::after {
  position: absolute;
  top: 50%;
  left: 18px;
  right: 18px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: rotate(-4deg);
}

.feature-card-rejected p,
.feature-card-rejected span {
  color: rgba(169, 176, 184, 0.5);
}

.feature-card span,
.contact-card span {
  color: var(--warm);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3,
.contact-card strong {
  display: block;
  margin: 42px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.event-list {
  display: grid;
  gap: 18px;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 24px;
}

.event-card h2 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.event-action {
  margin-top: 18px;
}

.event-card time {
  min-width: 120px;
  padding: 10px 12px;
  border: 1px solid var(--border-hot);
  color: var(--text);
  font-family: var(--font-accent);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.tag-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.tag-wall span {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 850;
  text-transform: uppercase;
}

.info-panel {
  padding: 28px;
}

.info-panel h2 {
  margin: 10px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.info-panel .button {
  margin-top: 20px;
}

.stack-panel {
  display: grid;
  gap: 18px;
}

.image-section {
  padding-top: clamp(24px, 5vw, 64px);
}

.wide-image,
.photo-panel {
  position: relative;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 24, 32, 0.82);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.wide-image::before,
.wide-image::after,
.photo-panel::before,
.photo-panel::after {
  position: absolute;
  top: -1px;
  z-index: 1;
  height: 2px;
  content: "";
  pointer-events: none;
}

.wide-image::before,
.photo-panel::before {
  left: 0;
  width: 240px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.wide-image::after,
.photo-panel::after {
  right: 0;
  width: 96px;
  background: linear-gradient(270deg, var(--orange), transparent);
}

.wide-image img,
.photo-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.photo-panel img {
  max-height: 680px;
  object-fit: cover;
  object-position: center 46%;
}

.photo-panel figcaption {
  margin: 0;
  padding: 12px 14px;
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(5, 6, 8, 0.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-card {
  min-height: 180px;
}

.contact-card strong {
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  word-break: break-word;
}

.unlock-hero h1 {
  max-width: 760px;
}

.unlock-menu {
  display: grid;
  gap: 18px;
}

.unlock-play-panel {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(17, 119, 216, 0.14), transparent 32%, transparent 68%, rgba(240, 74, 35, 0.14)),
    linear-gradient(180deg, rgba(23, 33, 43, 0.76), rgba(5, 6, 8, 0.72));
  box-shadow: var(--shadow);
}

.unlock-play-panel::before,
.unlock-play-panel::after {
  position: absolute;
  top: -1px;
  height: 2px;
  content: "";
}

.unlock-play-panel::before {
  left: 0;
  width: 310px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.unlock-play-panel::after {
  right: 0;
  width: 150px;
  background: linear-gradient(270deg, var(--orange), transparent);
}

.unlock-play-panel h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 4.6rem);
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.unlock-play-panel p:not(.section-label) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.unlock-info-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(17, 119, 216, 0.1), transparent 30%, transparent 70%, rgba(240, 74, 35, 0.1)),
    rgba(17, 24, 32, 0.66);
  box-shadow: var(--shadow);
}

.unlock-info-panel::before,
.unlock-info-panel::after {
  position: absolute;
  top: -1px;
  height: 2px;
  content: "";
}

.unlock-info-panel::before {
  left: 0;
  width: 210px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.unlock-info-panel::after {
  right: 0;
  width: 100px;
  background: linear-gradient(270deg, var(--orange), transparent);
}

.unlock-info-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.unlock-info-summary::marker {
  content: "";
}

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

.unlock-info-summary .section-label {
  grid-column: 1 / -1;
}

.unlock-info-summary h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.unlock-info-panel[open] .unlock-box-toggle {
  border-color: rgba(255, 184, 77, 0.5);
  color: var(--warm);
  font-size: 0;
  background: rgba(255, 184, 77, 0.08);
}

.unlock-info-panel[open] .unlock-box-toggle::before {
  content: "Close";
  font-size: 0.78rem;
}

.unlock-info-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 1px 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.unlock-info-body article {
  min-height: 150px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(17, 119, 216, 0.1), transparent 46%),
    linear-gradient(315deg, rgba(240, 74, 35, 0.08), transparent 50%),
    rgba(5, 6, 8, 0.7);
}

.unlock-info-body h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.unlock-info-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.unlock-app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.unlock-app-links a {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.045);
}

.unlock-app-links a:hover,
.unlock-app-links a:focus-visible {
  border-color: rgba(255, 184, 77, 0.52);
}

.unlock-box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(17, 119, 216, 0.12), transparent 34%, transparent 66%, rgba(240, 74, 35, 0.12)),
    linear-gradient(180deg, rgba(23, 33, 43, 0.62), rgba(5, 6, 8, 0.78));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.unlock-box[open] {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(90deg, rgba(17, 119, 216, 0.16), transparent 32%, transparent 68%, rgba(240, 74, 35, 0.16)),
    linear-gradient(180deg, rgba(23, 33, 43, 0.74), rgba(5, 6, 8, 0.86));
}

.unlock-box[open]::before {
  width: 42%;
}

.unlock-box[open]::after {
  width: 24%;
}

.unlock-box::before,
.unlock-box::after {
  position: absolute;
  top: -1px;
  height: 2px;
  content: "";
}

.unlock-box::before {
  left: 0;
  width: 260px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.unlock-box::after {
  right: 0;
  width: 120px;
  background: linear-gradient(270deg, var(--orange), transparent);
}

.unlock-box-summary {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
}

.unlock-box-summary::marker {
  content: "";
}

.unlock-box.no-art .unlock-box-summary {
  grid-template-columns: minmax(0, 1fr) auto auto;
  min-height: 96px;
}

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

.unlock-box-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 100px;
  aspect-ratio: 1;
  margin: 0;
  overflow: visible;
  background: transparent;
}

.unlock-box-art::before {
  position: absolute;
  inset: 10px;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 58%),
    linear-gradient(135deg, rgba(17, 119, 216, 0.18), rgba(240, 74, 35, 0.12));
  filter: blur(10px);
  opacity: 0.72;
}

.unlock-box-art img {
  display: block;
  width: 96px;
  height: auto;
  background: transparent;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.54));
}

.unlock-box-title {
  min-width: 0;
}

.unlock-box-summary h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.75rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.unlock-box-status {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--muted);
  font-family: var(--font-accent);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.unlock-box-status.is-preview {
  border-color: rgba(255, 184, 77, 0.46);
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(17, 119, 216, 0.12), transparent 52%, rgba(240, 74, 35, 0.1)),
    rgba(255, 184, 77, 0.055);
}

.unlock-price-note {
  padding: 14px 18px;
  border: 1px solid rgba(255, 184, 77, 0.28);
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.22rem);
  font-weight: 800;
  line-height: 1.25;
  background:
    linear-gradient(90deg, rgba(17, 119, 216, 0.12), transparent 52%, rgba(240, 74, 35, 0.1)),
    rgba(17, 24, 32, 0.74);
}

.unlock-box-toggle {
  min-width: 82px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.045);
}

.unlock-box[open] .unlock-box-toggle {
  border-color: rgba(255, 184, 77, 0.5);
  color: var(--warm);
  background: rgba(255, 184, 77, 0.08);
}

.unlock-box[open] .unlock-box-toggle::before {
  content: "Close";
}

.unlock-box[open] .unlock-box-toggle {
  font-size: 0;
}

.unlock-box[open] .unlock-box-toggle::before {
  font-size: 0.78rem;
}

.unlock-adventure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 1px 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.unlock-adventure {
  position: relative;
  display: grid;
  min-height: 196px;
  padding: 14px;
  border: 0;
  color: var(--text);
  text-decoration: none;
  background:
    linear-gradient(135deg, rgba(17, 119, 216, 0.12), transparent 44%),
    linear-gradient(315deg, rgba(240, 74, 35, 0.12), transparent 48%),
    rgba(17, 24, 32, 0.74);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.unlock-adventure:not(.is-locked):hover {
  background:
    linear-gradient(135deg, rgba(17, 119, 216, 0.18), transparent 44%),
    linear-gradient(315deg, rgba(240, 74, 35, 0.16), transparent 48%),
    rgba(23, 33, 43, 0.92);
  transform: translateY(-2px);
}

.unlock-adventure:focus-visible {
  outline: 3px solid var(--warm);
  outline-offset: 4px;
}

.unlock-adventure.is-locked {
  color: rgba(244, 244, 239, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 44%),
    rgba(17, 24, 32, 0.38);
  filter: grayscale(0.85);
}

.unlock-adventure.is-locked::after {
  position: absolute;
  top: 50%;
  left: 18px;
  right: 18px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(169, 176, 184, 0.12), rgba(169, 176, 184, 0.54), rgba(169, 176, 184, 0.12));
  transform: rotate(-4deg);
}

.unlock-difficulty {
  color: var(--warm);
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.unlock-adventure h3 {
  align-self: end;
  margin: 18px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.55vw, 1.35rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.unlock-adventure p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.unlock-adventure-top {
  display: flex;
  gap: 10px;
  align-items: center;
}

.unlock-adventure-thumb {
  display: block;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  object-fit: cover;
  filter: drop-shadow(0 9px 10px rgba(0, 0, 0, 0.5));
}

.unlock-adventure.is-locked p,
.unlock-adventure.is-locked .unlock-difficulty {
  color: rgba(169, 176, 184, 0.5);
}

.unlock-help-panel {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(90deg, rgba(17, 119, 216, 0.1), transparent 34%, transparent 68%, rgba(240, 74, 35, 0.1)),
    rgba(17, 24, 32, 0.74);
  box-shadow: var(--shadow);
}

.unlock-help-panel::before,
.unlock-help-panel::after {
  position: absolute;
  top: -1px;
  height: 2px;
  content: "";
}

.unlock-help-panel::before {
  left: 0;
  width: 260px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.unlock-help-panel::after {
  right: 0;
  width: 120px;
  background: linear-gradient(270deg, var(--orange), transparent);
}

.unlock-help-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 0.98;
  text-transform: uppercase;
}

.unlock-help-panel p:not(.section-label) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: start;
  width: min(1160px, calc(100% - 36px));
  padding: 30px 0 54px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  top: -1px;
  height: 2px;
  content: "";
}

.site-footer::before {
  left: 0;
  width: 240px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.site-footer::after {
  right: 0;
  width: 96px;
  background: linear-gradient(270deg, var(--orange), transparent);
}

.site-footer p {
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    min-height: var(--header-height);
    top: 10px;
    width: min(var(--max-width), calc(100% - 24px));
    padding: 12px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: calc(var(--header-height) + 8px) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(5, 6, 8, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .hero,
  .split-section,
  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-photo img {
    max-height: none;
  }

}


@media (max-width: 640px) {
  .actions,
  .button {
    width: 100%;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card time {
    width: max-content;
  }

  .site-footer {
    display: block;
  }

  .unlock-box-summary {
    grid-template-columns: 78px minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 0;
    padding: 12px;
  }

  .unlock-info-summary {
    gap: 10px;
    padding: 14px 12px;
  }

  .unlock-info-summary h2 {
    font-size: clamp(1.25rem, 6vw, 1.7rem);
  }

  .unlock-info-panel[open] .unlock-box-toggle::before {
    font-size: 0.62rem;
  }

  .unlock-info-body {
    grid-template-columns: 1fr;
  }

  .unlock-info-body article {
    min-height: 0;
    padding: 14px 12px;
  }

  .unlock-info-body h3 {
    font-size: 1rem;
  }

  .unlock-info-body p {
    font-size: 0.86rem;
  }

  .unlock-box.no-art .unlock-box-summary {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .unlock-box-art {
    width: 70px;
  }

  .unlock-box-art img {
    width: 66px !important;
    max-width: 66px;
  }

  .unlock-box-summary h2 {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
  }

  .unlock-box-status {
    display: none;
  }

  .unlock-box-toggle {
    min-width: auto;
    padding: 8px 9px;
    font-size: 0.62rem;
    justify-self: end;
  }

  .unlock-box[open] .unlock-box-toggle::before {
    font-size: 0.62rem;
  }

  .unlock-adventure-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .unlock-adventure {
    min-height: 184px;
    padding: 10px 8px;
  }

  .unlock-difficulty {
    font-size: 0.52rem;
    letter-spacing: 0.04em;
  }

  .unlock-adventure h3 {
    margin: 18px 0 8px;
    font-size: clamp(0.72rem, 3.35vw, 0.92rem);
  }

  .unlock-adventure p {
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .unlock-adventure-top {
    display: grid;
    gap: 7px;
  }

  .unlock-adventure-thumb {
    width: 34px;
    height: 34px;
    border-radius: 5px;
  }

  .footer-links {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
