:root {
  color-scheme: dark;
  --ink: #07131d;
  --ink-2: #0c2235;
  --panel: #102b42;
  --paper: #f3f7ef;
  --paper-2: #dfe8da;
  --line: rgba(255, 255, 255, 0.18);
  --line-dark: rgba(7, 19, 29, 0.16);
  --text: #f8fbff;
  --muted: rgba(248, 251, 255, 0.74);
  --text-dark: #0b1721;
  --muted-dark: rgba(11, 23, 33, 0.68);
  --accent: #f5c33b;
  --accent-2: #1da0ff;
  --danger: #ef2f35;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --header-h: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(4, 12, 20, 0.78), rgba(4, 12, 20, 0));
  color: var(--text);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(5, 16, 26, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 8px 18px rgba(0, 0, 0, 0.22);
}

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

.brand strong {
  font-size: 18px;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 58px) clamp(20px, 6vw, 92px) 86px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 30%, rgba(29, 160, 255, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(3, 8, 13, 0.9) 0%, rgba(3, 8, 13, 0.55) 44%, rgba(3, 8, 13, 0.16) 100%),
    linear-gradient(180deg, rgba(3, 8, 13, 0.1), rgba(3, 8, 13, 0.88));
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
  animation: hero-rise 700ms ease both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #145d8e;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(58px, 11vw, 148px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 10px 0 rgba(0, 0, 0, 0.2);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.05;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a1118;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section {
  padding: clamp(76px, 10vw, 136px) 0;
}

.section-light {
  background: var(--paper);
  color: var(--text-dark);
}

.section-dark {
  background:
    linear-gradient(135deg, rgba(29, 160, 255, 0.08), transparent 44%),
    var(--ink);
  color: var(--text);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.two-column,
.split-feature,
.pvp-grid,
.season-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 84px);
}

.split-feature {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.copy-block p,
.section-heading p {
  color: currentColor;
  opacity: 0.76;
  font-size: clamp(17px, 2vw, 20px);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line-dark);
  font-weight: 800;
}

.media-stack {
  position: relative;
  min-height: 620px;
}

.wide-shot,
.phone-shot,
.phone-composition img,
.image-strip img,
.map-panel img {
  box-shadow: var(--shadow);
  transition: transform 220ms ease, filter 220ms ease;
}

.wide-shot:hover,
.phone-shot:hover,
.phone-composition img:hover,
.image-strip img:hover,
.map-panel img:hover {
  transform: translateY(-4px);
  filter: saturate(1.05);
}

.wide-shot {
  width: 100%;
  border-radius: 8px;
}

.phone-shot {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: min(42%, 310px);
  border-radius: 8px;
}

.phone-composition {
  position: relative;
  min-height: 680px;
}

.phone-composition img {
  width: min(46%, 310px);
  border-radius: 8px;
}

.phone-composition img:first-child {
  position: absolute;
  top: 0;
  left: 9%;
}

.phone-composition img:last-child {
  position: absolute;
  right: 8%;
  bottom: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-row span {
  display: grid;
  min-height: 70px;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent);
  font-weight: 950;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 42px;
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
}

.image-strip img {
  width: 100%;
  height: clamp(360px, 46vw, 560px);
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
}

.season-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 12vw, 150px) 0;
  background: #092638;
}

.season-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 22, 0.92), rgba(5, 13, 22, 0.54)),
    url("../images/season.6c85a61f.webp") center top / cover no-repeat;
  transform: scale(1.04);
}

.season-grid {
  position: relative;
}

.mode-list {
  display: grid;
  gap: 16px;
}

.mode-list article {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.mode-list span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 950;
}

.mode-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.map-panel img {
  width: min(430px, 100%);
  margin-left: auto;
  border-radius: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 5vw, 64px);
  background: #050d15;
  border-top: 1px solid var(--line);
}

.site-footer strong {
  font-size: 20px;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--accent);
  font-weight: 850;
}

.policy-page {
  background: var(--paper);
  color: var(--text-dark);
}

.policy-hero {
  padding: calc(var(--header-h) + 86px) 0 68px;
  background:
    linear-gradient(90deg, rgba(5, 13, 22, 0.94), rgba(5, 13, 22, 0.66)),
    url("../images/hero-poster.3c1bc304.webp") center 28% / cover no-repeat;
  color: var(--text);
}

.policy-hero-inner,
.policy-content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.policy-hero h1 {
  font-size: clamp(48px, 8vw, 96px);
}

.policy-hero p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.policy-content {
  padding: 70px 0 86px;
}

.policy-content section {
  padding: 28px 0;
  border-top: 1px solid var(--line-dark);
}

.policy-content h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 36px);
}

.policy-content p {
  margin-bottom: 16px;
  color: var(--muted-dark);
  font-size: 18px;
}

.policy-content a {
  color: #0a5d91;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-summary {
  border-top: 0;
}

.policy-toc {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 34px;
}

.policy-toc a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(7, 19, 29, 0.04);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.policy-table {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 24px 0;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--line-dark);
}

.policy-table > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 0.66fr);
  gap: 0;
  background: var(--paper);
}

.policy-table strong,
.policy-table span {
  padding: 16px;
}

.policy-table strong {
  color: var(--text-dark);
}

.policy-table span {
  color: var(--muted-dark);
}

.policy-table.compact > div {
  grid-template-columns: minmax(210px, 0.38fr) minmax(0, 0.62fr);
}

.policy-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted-dark);
  font-size: 18px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes hero-rise {
  from {
    opacity: 1;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .site-header {
    height: 66px;
    padding-inline: 16px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 0;
    padding: 14px;
    background: rgba(5, 16, 26, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

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

  .hero {
    min-height: 92svh;
    padding-inline: 20px;
  }

  .hero-image {
    object-position: center top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 8, 13, 0.16), rgba(3, 8, 13, 0.92) 68%),
      linear-gradient(90deg, rgba(3, 8, 13, 0.4), rgba(3, 8, 13, 0.32));
  }

  .two-column,
  .split-feature,
  .pvp-grid,
  .season-grid {
    grid-template-columns: 1fr;
  }

  .media-stack,
  .phone-composition {
    min-height: auto;
  }

  .phone-shot,
  .phone-composition img,
  .phone-composition img:first-child,
  .phone-composition img:last-child {
    position: static;
    width: 100%;
  }

  .media-stack,
  .phone-composition {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .wide-shot {
    grid-column: 1 / -1;
  }

  .image-strip {
    grid-template-columns: 1fr;
  }

  .image-strip img {
    height: auto;
    max-height: 620px;
  }

  .map-panel img {
    margin-left: 0;
  }

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

  .policy-toc {
    grid-template-columns: 1fr 1fr;
  }

  .policy-table > div,
  .policy-table.compact > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  h1 {
    font-size: clamp(48px, 19vw, 76px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stat-row {
    grid-template-columns: 1fr 1fr;
  }

  .media-stack,
  .phone-composition {
    grid-template-columns: 1fr;
  }

  .policy-toc {
    grid-template-columns: 1fr;
  }

}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
