:root {
  --bg: #05080d;
  --bg-2: #08111a;
  --surface: rgba(8, 12, 16, 0.78);
  --surface-strong: rgba(11, 15, 20, 0.92);
  --gold: #f5bd55;
  --gold-2: #ffdf83;
  --gold-3: #a86e28;
  --cream: #fff0c8;
  --text: #fff8e8;
  --muted: #d8c9aa;
  --line: rgba(244, 190, 92, 0.48);
  --line-soft: rgba(244, 190, 92, 0.22);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --content: 1420px;
  --header-height: 86px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 6% 18%, rgba(245, 189, 85, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 92% 28%, rgba(245, 189, 85, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 15% 68%, rgba(245, 189, 85, 0.12) 0 1px, transparent 2px),
    linear-gradient(180deg, #05080d 0%, #061018 42%, #04070b 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg,
video {
  display: block;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  width: min(100% - 52px, var(--content));
  margin: 0 auto;
  padding: 18px 0;
}

.site-header::before {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(244, 190, 92, 0.12);
  background: rgba(4, 7, 11, 0.78);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.brand,
.header-cta,
.site-nav a,
.btn,
.menu-toggle,
.modal-close {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 38px;
  min-width: 0;
  text-transform: none;
  font-size: 14px;
  font-weight: 850;
}

.site-nav a {
  position: relative;
  padding: 14px 0;
  color: #fff3d4;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(245, 189, 85, 0.8);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--gold-2);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid rgba(255, 242, 190, 0.6);
  border-radius: 8px;
  text-transform: none;
  font-size: 15px;
  font-weight: 950;
  color: #11100a;
  background: linear-gradient(180deg, #ffe387 0%, #f3b748 54%, #df9234 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 9px 28px rgba(245, 189, 85, 0.24);
}

.header-cta svg,
.btn svg,
.header-cta .cta-icon,
.btn .cta-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.header-cta svg,
.btn svg {
  fill: currentColor;
}

.header-cta .cta-icon,
.btn .cta-icon {
  object-fit: contain;
}

.header-cta:hover,
.header-cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 16px 38px rgba(245, 189, 85, 0.32);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--gold-2);
  background: rgba(5, 8, 13, 0.72);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.hero {
  position: relative;
  min-height: clamp(700px, 90svh, 820px);
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 34px) 0 98px;
  overflow: hidden;
  isolation: isolate;
}

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

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

.hero-video {
  z-index: 1;
  opacity: 0;
  background: #05080d;
  transition: opacity 420ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-poster {
  z-index: 0;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(2, 4, 8, 0.82) 0%, rgba(2, 4, 8, 0.54) 33%, rgba(2, 4, 8, 0.08) 62%, rgba(2, 4, 8, 0.3) 100%),
    linear-gradient(180deg, rgba(2, 4, 8, 0.25) 0%, rgba(2, 4, 8, 0) 48%, #05080d 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 56px, var(--content));
  margin: 0 auto;
  padding-top: 12px;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: #fff2c8;
  font-family: Impact, "Arial Black", "Franklin Gothic Heavy", sans-serif;
  font-size: 116px;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 7px 0 rgba(0, 0, 0, 0.08),
    0 20px 54px rgba(0, 0, 0, 0.52);
}

.hero h1 span {
  display: block;
  margin-bottom: 14px;
  font-size: 54px;
  line-height: 0.95;
}

.hero-copy {
  margin: 26px 0 0;
  max-width: 520px;
  color: var(--gold-2);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
}

.player-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
  color: var(--gold);
}

.player-proof img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(245, 189, 85, 0.4));
}

.player-proof strong {
  display: block;
  color: var(--gold-2);
  font-size: 33px;
  line-height: 1;
}

.player-proof span {
  display: block;
  margin-top: 4px;
  color: var(--cream);
  font-size: 15px;
  font-weight: 850;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  min-width: 300px;
  min-height: 62px;
  padding: 0 34px;
  font-size: 18px;
  cursor: pointer;
}

.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 240, 200, 0.34);
  background: rgba(5, 8, 13, 0.44);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  color: var(--gold-2);
  border-color: var(--gold);
  background: rgba(11, 15, 20, 0.62);
}

.play-ring {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
}

.play-ring img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 70px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  color: var(--cream);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.scroll-cue img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  animation: cue-bob 1.6s ease-in-out infinite;
}

.section {
  width: min(100% - 52px, var(--content));
  margin: 0 auto;
  padding: 34px 0;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-overlap {
  position: relative;
  z-index: 4;
  margin-top: -46px;
  padding-top: 0;
}

.section-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 212, 121, 0.07), rgba(255, 212, 121, 0.015)),
    rgba(4, 8, 12, 0.78);
  box-shadow: var(--shadow);
}

.section-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 10%, rgba(245, 189, 85, 0.17), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(91, 136, 180, 0.13), transparent 31%);
  pointer-events: none;
}

.section-heading,
.section-frame h2 {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section h2 {
  gap: 18px;
  margin: 0 0 24px;
  color: var(--gold-2);
  text-align: center;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 950;
}

.section h2 img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.how-frame {
  padding: 26px 34px 34px;
}

.step-flow {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 54px 1fr 54px 1fr 54px 1fr;
  align-items: center;
  gap: 10px;
}

.step-card {
  display: grid;
  justify-items: center;
  min-height: 198px;
  padding: 14px 8px 0;
  text-align: center;
}

.step-icon {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
}

.step-icon img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(0, 0, 0, 0.45));
}

.step-card h3 {
  margin: 14px 0 4px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.step-card p {
  max-width: 190px;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.28;
}

.flow-arrow {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  justify-self: center;
}

.flow-arrow::before,
.flow-arrow::after {
  content: none;
}

.flow-arrow img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

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

.district-card {
  position: relative;
  min-height: 318px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080d13;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.district-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.district-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(1, 4, 8, 0.78) 78%),
    linear-gradient(90deg, rgba(2, 5, 9, 0.7), rgba(2, 5, 9, 0.08) 64%);
}

.district-card:hover img {
  transform: scale(1.045);
}

.district-copy {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 26px;
}

.district-copy h3 {
  margin: 0 0 6px;
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
}

.district-copy p {
  max-width: 300px;
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.28;
}

.cats-section {
  padding-top: 26px;
}

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

.cat-card {
  --cat-line: var(--line);
  --cat-title: var(--gold-2);
  --cat-bg-top: rgba(255, 214, 128, 0.14);
  --cat-bg-mid: rgba(47, 30, 11, 0.58);
  --cat-bg-bottom: rgba(5, 8, 13, 0.92);
  --cat-bloom: rgba(245, 189, 85, 0.26);
  --cat-floor: rgba(245, 189, 85, 0.2);
  --cat-shadow: rgba(245, 189, 85, 0.18);
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(246px, 1fr) auto auto;
  min-height: 456px;
  overflow: hidden;
  padding: 23px 14px 18px;
  border: 1px solid var(--cat-line);
  border-radius: var(--radius);
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 38%, var(--cat-bloom), transparent 44%),
    radial-gradient(circle at 50% -12%, rgba(255, 255, 255, 0.11), transparent 38%),
    linear-gradient(180deg, var(--cat-bg-top) 0%, var(--cat-bg-mid) 48%, var(--cat-bg-bottom) 100%),
    var(--surface-strong);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 30px var(--cat-shadow);
}

.cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 26%);
  pointer-events: none;
}

.cat-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 16%;
  right: 16%;
  bottom: 82px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, var(--cat-floor), transparent 68%);
  filter: blur(7px);
  pointer-events: none;
}

.cat-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--cat-title);
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
}

.cat-card img {
  position: relative;
  z-index: 1;
  align-self: end;
  width: min(100%, 236px);
  height: 270px;
  margin: 8px auto -4px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.44));
}

.cat-card p {
  position: relative;
  z-index: 2;
  min-height: 58px;
  margin: 8px auto 12px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.28;
}

.cat-card span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin: 0 auto;
}

.cat-card span img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.cat-golden {
  --cat-line: rgba(255, 196, 72, 0.68);
  --cat-title: #ffd66e;
  --cat-bg-top: rgba(129, 77, 15, 0.54);
  --cat-bg-mid: rgba(78, 47, 11, 0.68);
  --cat-bg-bottom: rgba(18, 12, 7, 0.95);
  --cat-bloom: rgba(255, 184, 48, 0.32);
  --cat-floor: rgba(255, 189, 65, 0.28);
  --cat-shadow: rgba(255, 189, 65, 0.24);
}

.cat-tom {
  --cat-line: rgba(205, 218, 230, 0.58);
  --cat-title: #dbe8f5;
  --cat-bg-top: rgba(85, 95, 110, 0.5);
  --cat-bg-mid: rgba(43, 49, 59, 0.72);
  --cat-bg-bottom: rgba(8, 10, 14, 0.95);
  --cat-bloom: rgba(197, 214, 232, 0.25);
  --cat-floor: rgba(205, 218, 230, 0.22);
  --cat-shadow: rgba(205, 218, 230, 0.18);
}

.cat-milo {
  --cat-line: rgba(164, 227, 131, 0.62);
  --cat-title: #b8f29b;
  --cat-bg-top: rgba(57, 102, 45, 0.52);
  --cat-bg-mid: rgba(25, 56, 33, 0.73);
  --cat-bg-bottom: rgba(6, 14, 12, 0.96);
  --cat-bloom: rgba(127, 223, 91, 0.27);
  --cat-floor: rgba(164, 227, 131, 0.22);
  --cat-shadow: rgba(164, 227, 131, 0.18);
}

.cat-luna {
  --cat-line: rgba(255, 129, 160, 0.65);
  --cat-title: #ff8fac;
  --cat-bg-top: rgba(130, 43, 68, 0.54);
  --cat-bg-mid: rgba(73, 28, 48, 0.73);
  --cat-bg-bottom: rgba(18, 8, 15, 0.96);
  --cat-bloom: rgba(255, 116, 154, 0.29);
  --cat-floor: rgba(255, 129, 160, 0.24);
  --cat-shadow: rgba(255, 129, 160, 0.18);
}

.cat-peanut {
  --cat-line: rgba(137, 196, 255, 0.64);
  --cat-title: #9ed0ff;
  --cat-bg-top: rgba(42, 76, 121, 0.55);
  --cat-bg-mid: rgba(24, 45, 76, 0.74);
  --cat-bg-bottom: rgba(6, 10, 20, 0.96);
  --cat-bloom: rgba(104, 176, 255, 0.29);
  --cat-floor: rgba(137, 196, 255, 0.25);
  --cat-shadow: rgba(137, 196, 255, 0.18);
}

.stats-frame {
  padding: 26px 26px 30px;
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stats-grid article {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 152px;
  padding: 18px 16px 10px;
  text-align: center;
  border-right: 1px solid rgba(245, 189, 85, 0.34);
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(245, 189, 85, 0.22));
}

.stats-grid strong {
  color: var(--gold-2);
  font-size: 31px;
  line-height: 1;
}

.stats-grid span {
  color: var(--cream);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
}

.community-section {
  width: min(100% - 52px, var(--content));
  margin: 26px auto 0;
  padding: 54px 0 42px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.community-head {
  display: grid;
  justify-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.community-head p {
  margin: 0 0 8px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.community-head h2 {
  margin: 0;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 42px;
  line-height: 0.98;
  font-weight: 950;
}

.community-head span {
  max-width: 650px;
  margin-top: 12px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.45;
}

.community-layout {
  display: grid;
  gap: 24px;
}

.community-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  grid-template-rows: repeat(3, 126px);
  gap: 14px;
}

.community-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080d13;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.community-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 5, 9, 0.08), rgba(2, 5, 9, 0.32));
  pointer-events: none;
}

.community-photo-main {
  grid-row: span 3;
}

.community-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-photo-main img {
  object-position: center 42%;
}

.community-activity-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.community-activity-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #080d13;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.community-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.community-link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  min-height: 82px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(255, 214, 128, 0.08), rgba(255, 214, 128, 0.02)),
    rgba(7, 12, 18, 0.82);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.community-link:hover,
.community-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(245, 189, 85, 0.18);
}

.community-link img {
  grid-row: 1 / 3;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.community-link strong {
  color: var(--gold-2);
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
}

.community-link span {
  min-width: 0;
  margin-top: 5px;
  overflow-wrap: anywhere;
  color: var(--text);
  font-size: 12px;
  line-height: 1.2;
}

.final-cta {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  margin-top: 26px;
  overflow: hidden;
  isolation: isolate;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.final-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/images/hero-cat-city.png");
  background-position: center bottom;
  background-size: cover;
  filter: saturate(0.9);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, #05080d 0%, rgba(5, 8, 13, 0.22) 42%, #05080d 100%),
    linear-gradient(90deg, rgba(5, 8, 13, 0.85), rgba(5, 8, 13, 0.26), rgba(5, 8, 13, 0.85));
}

.final-content {
  width: min(100% - 52px, var(--content));
  text-align: center;
}

.final-content h2 {
  margin: 0;
  color: #fff2c8;
  font-family: Impact, "Arial Black", "Franklin Gothic Heavy", sans-serif;
  font-size: 69px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.58);
}

.final-content p {
  margin: 10px 0 22px;
  color: var(--text);
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 26px;
  color: rgba(255, 240, 200, 0.72);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 850;
  background: #030508;
}

.trailer-modal[hidden] {
  display: none;
}

.trailer-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1, 4, 8, 0.84);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 11, 15, 0.98);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  padding: 0 20px 0 26px;
  border-bottom: 1px solid var(--line-soft);
}

.modal-header h2 {
  margin: 0;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 950;
}

.modal-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 240, 200, 0.22);
  border-radius: 8px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.modal-close:hover,
.modal-close:focus-visible {
  color: var(--gold-2);
  border-color: var(--gold);
}

.modal-close svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trailer-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-fallback {
  display: inline-flex;
  margin: 14px 22px 20px;
  color: var(--gold-2);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}

:focus-visible {
  outline: 3px solid rgba(255, 223, 131, 0.9);
  outline-offset: 4px;
}

@keyframes cue-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

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

@media (max-width: 1180px) {
  .site-header {
    width: min(100% - 36px, var(--content));
    gap: 18px;
  }

  .site-nav {
    gap: 22px;
    font-size: 12px;
  }

  .hero {
    min-height: clamp(700px, 90svh, 790px);
  }

  .hero h1 {
    font-size: 96px;
  }

  .hero h1 span {
    font-size: 46px;
  }

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

  .cat-card {
    min-height: 410px;
  }
}

@media (max-width: 930px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .brand {
    font-size: 23px;
  }

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

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(5, 8, 13, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
  }

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

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

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

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a.is-active {
    background: rgba(245, 189, 85, 0.12);
  }

  .hero {
    min-height: clamp(670px, 90svh, 760px);
    align-items: end;
    padding-bottom: 104px;
  }

  .hero-bg {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 4, 8, 0.86), rgba(2, 4, 8, 0.38) 70%, rgba(2, 4, 8, 0.5)),
      linear-gradient(180deg, rgba(2, 4, 8, 0.2) 0%, rgba(2, 4, 8, 0.18) 45%, #05080d 100%);
  }

  .hero-content,
  .section,
  .community-section,
  .final-content {
    width: min(100% - 36px, var(--content));
  }

  .hero h1 {
    max-width: 430px;
    font-size: 72px;
  }

  .hero h1 span {
    font-size: 35px;
  }

  .hero-copy {
    font-size: 22px;
  }

  .btn {
    min-width: 240px;
  }

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

  .flow-arrow {
    display: none;
  }

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

  .district-card {
    min-height: 300px;
  }

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

  .stats-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(245, 189, 85, 0.22);
  }

  .stats-grid article:nth-last-child(-n + 1) {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .community-head h2 {
    font-size: 34px;
  }

  .community-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .community-photo,
  .community-photo-main {
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

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

  .community-link:last-child {
    grid-column: 1 / -1;
  }

  .final-content h2 {
    font-size: 49px;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 28px, var(--content));
  }

  .brand {
    gap: 9px;
    font-size: 20px;
  }

  .hero {
    min-height: clamp(650px, 90svh, 720px);
  }

  .hero h1 {
    max-width: 320px;
    font-size: 58px;
  }

  .hero h1 span {
    margin-bottom: 9px;
    font-size: 29px;
  }

  .hero-copy {
    max-width: 285px;
    font-size: 19px;
  }

  .player-proof {
    gap: 12px;
  }

  .player-proof img {
    width: 42px;
    height: 42px;
  }

  .player-proof strong {
    font-size: 28px;
  }

  .hero-actions {
    display: grid;
    max-width: 312px;
  }

  .btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 22px;
    font-size: 16px;
  }

  .scroll-cue {
    bottom: 64px;
  }

  .section {
    width: min(100% - 28px, var(--content));
    padding: 24px 0;
  }

  .community-section {
    width: min(100% - 28px, var(--content));
    padding: 42px 0 30px;
  }

  .section h2 {
    gap: 10px;
    margin-bottom: 18px;
    font-size: 23px;
  }

  .section h2 img {
    width: 17px;
    height: 17px;
  }

  .how-frame,
  .stats-frame {
    padding: 20px 16px;
  }

  .step-flow {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
    padding: 14px 0;
  }

  .step-icon {
    width: 96px;
    height: 96px;
  }

  .step-icon img {
    width: 96px;
    height: 96px;
  }

  .district-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .district-copy h3 {
    font-size: 23px;
  }

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

  .cat-card {
    grid-template-rows: auto auto auto auto;
    min-height: 0;
  }

  .cat-card img {
    width: min(100%, 250px);
    height: 270px;
  }

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

  .stats-grid article,
  .stats-grid article:nth-last-child(-n + 1) {
    grid-column: auto;
    border-bottom: 1px solid rgba(245, 189, 85, 0.22);
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }

  .community-head {
    margin-bottom: 20px;
  }

  .community-head h2 {
    font-size: 27px;
  }

  .community-head span {
    font-size: 15px;
  }

  .community-gallery {
    gap: 10px;
  }

  .community-photo {
    aspect-ratio: 4 / 3;
  }

  .community-activity-strip {
    display: flex;
    gap: 10px;
    margin-right: -14px;
    overflow-x: auto;
    padding: 0 14px 6px 0;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .community-activity-strip::-webkit-scrollbar {
    display: none;
  }

  .community-activity-strip img {
    width: 150px;
    min-width: 150px;
    height: 92px;
    aspect-ratio: auto;
    scroll-snap-align: start;
  }

  .community-links {
    grid-template-columns: 1fr;
  }

  .community-link,
  .community-link:last-child {
    grid-column: auto;
  }

  .final-cta {
    min-height: 300px;
  }

  .final-content h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: 33px;
    line-height: 1;
  }

  .final-content p {
    font-size: 17px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .trailer-modal {
    padding: 14px;
  }

  .modal-header {
    min-height: 58px;
    padding-left: 16px;
  }
}
