:root {
  --ink: #171510;
  --paper: #f2eee6;
  --night: #11100d;
  --hot: #ff5b2e;
  --pink: #ef3e91;
  --yellow: #ffd84d;
  --muted: #777167;
  --line: rgba(23, 21, 16, 0.18);
  --shell: 1240px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  font-size: 1rem;
  margin: 0;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  margin-inline: auto;
  width: min(calc(100% - 2rem), var(--shell));
}
.skip-link {
  background: var(--yellow);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  background: rgba(17, 16, 13, 0.92);
  color: #fff;
  height: 4.6rem;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}
.header-inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
}
.brand {
  align-items: center;
  display: flex;
  gap: 0.65rem;
}
.brand img {
  height: 1.9rem;
  object-fit: contain;
  width: 3.1rem;
}
.brand span {
  display: flex;
  flex-direction: column;
}
.brand b {
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}
.brand small {
  color: #aaa49a;
  font:
    700 0.48rem Arial,
    sans-serif;
  letter-spacing: 0.18em;
  margin-top: 0.3rem;
}
.desktop-nav {
  display: none;
  gap: 2rem;
}
.desktop-nav a {
  color: #d9d5ce;
  font:
    700 0.72rem Arial,
    sans-serif;
  position: relative;
  text-transform: uppercase;
}
.desktop-nav a:after {
  background: var(--hot);
  bottom: -0.75rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
  width: 100%;
}
.desktop-nav a:hover:after {
  transform: scaleX(1);
}
.header-cta {
  align-items: center;
  background: var(--yellow);
  color: var(--ink);
  display: none;
  font-size: 0.72rem;
  font-weight: 900;
  gap: 0.6rem;
  min-height: 44px;
  padding: 0 1rem;
}
.header-cta span,
.button span {
  font-size: 1rem;
}
.menu-button {
  background: none;
  border: 1px solid #77736c;
  color: #fff;
  font-size: 1.35rem;
  height: 44px;
  width: 44px;
}
.mobile-menu {
  background: var(--night);
  display: flex;
  flex-direction: column;
  left: 0;
  max-height: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 4.6rem;
  transition: max-height 0.3s;
}
.mobile-menu.is-open {
  max-height: 20rem;
}
.mobile-menu a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem;
}
.mobile-menu a:last-child {
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
}
.hero {
  background: #1d1b29;
  isolation: isolate;
  margin-top: 4.6rem;
  min-height: 43rem;
  overflow: hidden;
  position: relative;
}
.hero:before {
  background:
    linear-gradient(
      90deg,
      rgba(20, 14, 31, 0.96) 0 31%,
      rgba(20, 14, 31, 0.64) 54%,
      rgba(20, 14, 31, 0.1)
    ),
    url("/assets/hero.jpg") center/cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -3;
}
.hero-noise {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.12) 0.6px,
    transparent 0.6px
  );
  background-size: 5px 5px;
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.3;
  position: absolute;
  z-index: -1;
}
.hero-sun {
  background: var(--pink);
  border-radius: 50%;
  filter: blur(40px);
  height: 12rem;
  opacity: 0.45;
  position: absolute;
  right: 16%;
  top: 20%;
  width: 12rem;
  z-index: -2;
}
.hero-palm {
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  height: 23rem;
  position: absolute;
  transform: rotate(20deg);
  width: 10rem;
  z-index: -1;
}
.palm-one {
  right: 6%;
  top: -3rem;
}
.palm-two {
  bottom: -8rem;
  left: 39%;
  transform: rotate(-20deg);
}
.hero-inner {
  align-items: center;
  display: grid;
  gap: 2rem;
  min-height: 38rem;
  padding: 4.5rem 0 3rem;
}
.hero-copy {
  color: #fff;
  max-width: 36rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.eyebrow {
  align-items: center;
  color: #fff;
  display: flex;
  font:
    700 0.62rem Arial,
    sans-serif;
  gap: 0.75rem;
  letter-spacing: 0.14em;
  margin: 0;
  text-transform: uppercase;
}
.eyebrow i {
  background: var(--hot);
  height: 2px;
  width: 2.2rem;
}
.hero h1 {
  font:
    900 clamp(3.6rem, 11vw, 8.7rem) / 0.8 Arial,
    sans-serif;
  letter-spacing: -0.04em;
  margin: 1.5rem 0;
  text-transform: uppercase;
}
.hero h1 em {
  color: var(--yellow);
  font-style: normal;
}
.hero-lead {
  color: #eee9e1;
  font-size: 1rem;
  line-height: 1.9;
  margin: 0 0 1.6rem;
  max-width: 31rem;
}
.hero-actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  gap: 0.8rem;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
  transform: translate(-2px, -2px);
}
.button-hot {
  background: var(--hot);
  color: #fff;
}
.button-vice {
  align-items: center;
  background: #151020;
  border: 1px solid rgba(255, 216, 77, 0.92);
  box-shadow: 0 0 0 1px rgba(239, 62, 145, 0.55), 0 0 24px rgba(239, 62, 145, 0.38);
  color: #fff;
  font-size: 0;
  gap: 0;
  min-height: 58px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 13rem;
  min-width: 13rem;
  flex-shrink: 0;
}
.button-vice::before {
  content: none;
}
.button-vice::after {
  content: none;
}
.button-vice .button-badge {
  align-items: center;
  background: var(--yellow);
  color: #151020;
  display: inline-flex;
  font: 900 1.25rem/1 Arial, sans-serif;
  justify-content: center;
  min-width: 3.25rem;
  transform: skew(-10deg);
}
.button-vice .button-copy {
  align-items: flex-start;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  line-height: 1.1;
  min-width: 0;
  padding: 0.4rem 0.35rem;
  position: relative;
  text-align: left;
  white-space: nowrap;
}
.button-vice .button-copy b {
  font-size: 0.78rem;
}
.button-vice .button-copy small {
  color: #ff8bc2;
  font: 700 0.5rem/1.2 Arial, sans-serif;
  letter-spacing: 0.12em;
  margin-top: 0.22rem;
}
.button-vice .button-arrow {
  align-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  color: var(--yellow);
  font-size: 1.35rem;
  justify-content: center;
  min-width: 2.35rem;
}
.button-vice:hover,
.button-vice:focus-visible {
  box-shadow: 0 0 0 1px var(--yellow), 0 0 34px rgba(239, 62, 145, 0.58);
  transform: translate(-2px, -2px);
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.ghost-link {
  border-bottom: 1px solid #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.65rem 0;
}
.hero-stamp {
  border-left: 2px solid var(--yellow);
  display: flex;
  flex-direction: column;
  margin-top: 2.2rem;
  padding-left: 0.8rem;
}
.hero-stamp b {
  color: var(--yellow);
  font:
    700 0.55rem Arial,
    sans-serif;
  letter-spacing: 0.17em;
}
.hero-stamp strong {
  font:
    900 2rem Arial,
    sans-serif;
}
.hero-stamp span {
  color: #d5cfc6;
  font:
    700 0.48rem Arial,
    sans-serif;
  letter-spacing: 0.1em;
}
.hero-art {
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 12px 12px 0 rgba(255, 216, 77, 0.25);
  justify-self: center;
  max-width: 42rem;
  overflow: hidden;
  position: relative;
  transform: rotate(-2deg);
  width: 100%;
}
.hero-art img {
  aspect-ratio: 16/10;
  height: auto;
  object-fit: cover;
  object-position: center 42%;
  width: 100%;
}
.hero-art:after {
  background: linear-gradient(0deg, rgba(13, 10, 18, 0.82), transparent 55%);
  content: "";
  inset: 0;
  position: absolute;
}
.art-caption {
  bottom: 1rem;
  left: 1rem;
  position: absolute;
  z-index: 1;
}
.art-caption span {
  color: var(--yellow);
  font:
    700 0.55rem Arial,
    sans-serif;
  letter-spacing: 0.14em;
}
.art-caption b {
  display: block;
  font:
    900 1.25rem/0.95 Arial,
    sans-serif;
  margin-top: 0.35rem;
}
.art-corner {
  border-left: 2px solid var(--hot);
  color: #fff;
  font:
    700 0.55rem Arial,
    sans-serif;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.5rem;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  z-index: 1;
}
.art-corner strong {
  color: var(--yellow);
  font-size: 1.8rem;
}
.hero-bottom {
  align-items: center;
  color: #c9c3ba;
  display: flex;
  font:
    700 0.52rem Arial,
    sans-serif;
  gap: 0.8rem;
  letter-spacing: 0.15em;
  padding-bottom: 1rem;
}
.hero-bottom i {
  background: #aaa39a;
  height: 1px;
  width: 4rem;
}
.hero-bottom b {
  color: var(--yellow);
}
.ticker {
  background: var(--yellow);
  color: var(--ink);
}
.ticker-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  min-height: 4rem;
}
.ticker-label {
  background: var(--ink);
  color: var(--yellow);
  font:
    700 0.58rem Arial,
    sans-serif;
  padding: 0.5rem 0.65rem;
}
.ticker p {
  flex: 1;
  font-size: 0.7rem;
  line-height: 1.5;
  margin: 0;
}
.ticker-date {
  font:
    700 0.55rem Arial,
    sans-serif;
  white-space: nowrap;
}
.section {
  padding: 5.5rem 0;
}
.section-kicker {
  color: #918b80;
  font:
    800 0.62rem Arial,
    sans-serif;
  letter-spacing: 0.15em;
}
.section-kicker span {
  color: var(--hot);
}
.story {
  background: var(--paper);
}
.story-grid {
  display: grid;
  gap: 2.2rem;
}
.eyebrow.dark {
  color: var(--hot);
}
.story h2,
.section-head h2,
.gallery-top h2,
.download-copy h2,
.faq-grid h2 {
  font:
    900 clamp(2.7rem, 7vw, 5.2rem) / 0.93 Arial,
    sans-serif;
  letter-spacing: -0.03em;
  margin: 1rem 0 1.4rem;
}
.story h2 em,
.section-head h2 em,
.gallery-top h2 em,
.download-copy h2 em,
.faq-grid h2 em {
  color: var(--pink);
  font-style: normal;
}
.story-copy > p:not(.eyebrow) {
  color: #635d54;
  line-height: 1.9;
  max-width: 33rem;
}
.under-link {
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 800;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0.55rem 0;
}
.story-image {
  margin: 0;
  position: relative;
}
.story-image img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.story-image:after {
  background: linear-gradient(to top, rgba(10, 10, 8, 0.8), transparent 50%);
  content: "";
  inset: 0;
  position: absolute;
}
.story-image figcaption {
  bottom: 1rem;
  color: #fff;
  left: 1rem;
  position: absolute;
  z-index: 1;
}
.story-image figcaption span {
  color: var(--yellow);
  font:
    700 0.55rem Arial,
    sans-serif;
  letter-spacing: 0.15em;
}
.story-image figcaption b {
  display: block;
  font:
    900 1.4rem Arial,
    sans-serif;
  margin-top: 0.35rem;
}
.world {
  background: var(--night);
  color: #fff;
  padding-bottom: 4.8rem;
  padding-top: 4.8rem;
}
.section-head {
  align-items: end;
  display: grid;
  gap: 1.5rem;
}
.section-head > p {
  color: #aaa49a;
  line-height: 1.9;
  margin: 0;
  max-width: 31rem;
}
.section-head h2 {
  color: #fff;
}
.world-layout {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}
.world-main {
  margin: 0;
  overflow: hidden;
  position: relative;
}
.world-main img {
  aspect-ratio: auto;
  height: clamp(210px, 30vw, 420px);
  object-fit: cover;
  object-position: center 56%;
  width: 100%;
}
.world-main:after {
  background: linear-gradient(to top, rgba(10, 10, 8, 0.9), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
}
.world-main figcaption {
  bottom: 1rem;
  left: 1rem;
  position: absolute;
  z-index: 1;
}
.world-main figcaption span {
  color: var(--yellow);
  font:
    700 0.55rem Arial,
    sans-serif;
  letter-spacing: 0.15em;
}
.world-main figcaption b {
  display: block;
  font:
    900 1.6rem Arial,
    sans-serif;
  margin-top: 0.35rem;
}
.world-side {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.world-side article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem;
}
.world-side strong {
  color: var(--hot);
  font:
    800 0.6rem Arial,
    sans-serif;
}
.world-side h3 {
  font:
    900 1.15rem Arial,
    sans-serif;
  margin: 0.7rem 0;
}
.world-side p {
  color: #a9a39b;
  font-size: 0.72rem;
  line-height: 1.6;
  margin: 0;
}
.features {
  background: var(--paper);
}
.feature-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.8rem;
}
.feature-card {
  background: #fff;
  overflow: hidden;
  position: relative;
}
.feature-card img {
  aspect-ratio: 1.1/1;
  object-fit: cover;
  width: 100%;
}
.feature-wide img {
  aspect-ratio: 1.7/1;
}
.feature-card div {
  padding: 1.1rem;
}
.feature-card span {
  color: var(--hot);
  font:
    700 0.55rem Arial,
    sans-serif;
  letter-spacing: 0.14em;
}
.feature-card h3 {
  font:
    900 1.35rem Arial,
    sans-serif;
  margin: 0.5rem 0;
}
.feature-card p {
  color: #6c665e;
  font-size: 0.78rem;
  line-height: 1.7;
  margin: 0;
}
.gallery {
  background: var(--night);
  color: #fff;
}
.gallery-top {
  max-width: 42rem;
}
.gallery-top h2 {
  color: #fff;
}
.gallery-top > p:last-child {
  color: #aaa49a;
  line-height: 1.8;
}
.gallery-grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.gallery-grid figure {
  margin: 0;
  position: relative;
}
.gallery-grid img {
  aspect-ratio: 1.15/1;
  object-fit: cover;
  width: 100%;
}
.gallery-grid figure:first-child img {
  aspect-ratio: 1/1;
}
.gallery-grid figure:after {
  background: linear-gradient(to top, rgba(10, 10, 8, 0.8), transparent 50%);
  content: "";
  inset: 0;
  position: absolute;
}
.gallery-grid figcaption {
  bottom: 0.7rem;
  color: var(--yellow);
  font:
    700 0.55rem Arial,
    sans-serif;
  left: 0.8rem;
  letter-spacing: 0.14em;
  position: absolute;
  z-index: 1;
}
.download {
  background: var(--yellow);
}
.download-grid {
  align-items: center;
  display: grid;
  gap: 2rem;
}
.download-copy > p:not(.eyebrow) {
  color: #4c463c;
  line-height: 1.85;
  max-width: 35rem;
}
.download-meta {
  border-top: 1px solid rgba(23, 21, 16, 0.25);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 2rem;
  padding-top: 0.8rem;
}
.download-meta span {
  font:
    700 0.55rem Arial,
    sans-serif;
  letter-spacing: 0.13em;
}
.download-meta b {
  font-size: 0.65rem;
}
.download-poster {
  align-items: center;
  background: var(--night);
  display: flex;
  justify-content: center;
  min-height: 20rem;
  overflow: hidden;
  position: relative;
}
.download-poster:before {
  border: 1px solid rgba(255, 255, 255, 0.25);
  content: "";
  inset: 1rem;
  position: absolute;
  transform: rotate(-7deg);
}
.download-poster img {
  filter: drop-shadow(0 0 18px rgba(255, 91, 46, 0.55));
  max-width: 13rem;
  position: relative;
  width: 55%;
}
.download-poster span {
  bottom: 1rem;
  color: var(--yellow);
  font:
    700 0.58rem Arial,
    sans-serif;
  letter-spacing: 0.16em;
  position: absolute;
  right: 1rem;
  text-align: right;
}
.faq {
  background: var(--paper);
}
.faq-grid {
  display: grid;
  gap: 2.5rem;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  display: flex;
  font-size: 0.9rem;
  font-weight: 800;
  justify-content: space-between;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--hot);
  font-size: 1.3rem;
}
.faq-list details p {
  color: #686157;
  font-size: 0.78rem;
  line-height: 1.8;
  margin: 0.8rem 2rem 0 0;
}
.site-footer {
  background: #0c0b09;
  color: #fff;
  padding: 2.5rem 0 5rem;
}
.footer-main {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.footer-main > p {
  color: #9b958c;
  font-size: 0.75rem;
  margin: 0;
}
.back-top {
  align-items: center;
  border: 1px solid #777169;
  display: flex;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #777169;
  display: flex;
  flex-direction: column;
  font-size: 0.58rem;
  gap: 0.35rem;
  line-height: 1.6;
  margin-top: 2rem;
  padding-top: 1.2rem;
}
.mobile-download {
  align-items: center;
  background: #fff;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 1rem;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
}
.mobile-download span {
  font-size: 0.8rem;
  font-weight: 800;
}
.mobile-download a {
  background: var(--hot);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.7rem 0.85rem;
}
@media (min-width: 768px) {
  .shell {
    width: min(calc(100% - 4rem), var(--shell));
  }
  .desktop-nav {
    display: flex;
  }
  .header-cta {
    display: flex;
  }
  .menu-button,
  .mobile-menu {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 39rem;
    padding: 3rem 0;
  }
  .hero-actions {
    align-items: center;
    flex-direction: row;
  }
  .story-grid {
    align-items: center;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 4rem;
  }
  .section {
    padding: 7.5rem 0;
  }
  .world {
    padding-bottom: 5.5rem;
    padding-top: 5.5rem;
  }
  .section-head {
    grid-template-columns: 1fr 0.65fr;
  }
  .world-layout {
    grid-template-columns: 1.45fr 0.55fr;
  }
  .world-side {
    display: flex;
    flex-direction: column;
  }
  .feature-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
  }
  .feature-card img,
  .feature-wide img {
    aspect-ratio: 1/1;
  }
  .feature-wide img {
    aspect-ratio: 1.7/1;
  }
  .gallery-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
  .download-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
  .download-poster {
    min-height: 28rem;
  }
  .faq-grid {
    grid-template-columns: 0.8fr 1.2fr;
  }
  .footer-main {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  .site-footer {
    padding-bottom: 2rem;
  }
  .mobile-download {
    display: none;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 48rem;
  }
  .hero-inner {
    min-height: 43rem;
  }
  .story h2,
  .section-head h2,
  .gallery-top h2,
  .download-copy h2,
  .faq-grid h2 {
    font-size: 5.3rem;
  }
  .hero-lead {
    font-size: 1.05rem;
  }
  .feature-wide h3 {
    font-size: 1.7rem;
  }
}
@media (max-width: 420px) {
  .button-vice {
    width: 12rem;
    min-width: 12rem;
  }
  .hero h1 {
    font-size: 3.65rem;
  }
  .ticker-date {
    display: none;
  }
  .world-side article {
    padding: 0.7rem 0.55rem;
  }
  .world-side h3 {
    font-size: 0.9rem;
  }
  .world-side p {
    font-size: 0.65rem;
  }
  .download-poster {
    min-height: 16rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}

/* Final responsive tuning for the GTA6 archive layout. */
.menu-button {
  align-items: center;
  display: flex;
  justify-content: center;
}
.menu-button span,
.menu-button span::before,
.menu-button span::after {
  background: currentColor;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  transition: transform 0.2s;
  width: 19px;
}
.menu-button span::before,
.menu-button span::after {
  position: absolute;
}
.menu-button span::before {
  top: -6px;
}
.menu-button span::after {
  top: 6px;
}
.menu-button[aria-expanded="true"] span {
  background: transparent;
}
.menu-button[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-button[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-art {
  z-index: 1;
}
.download-index {
  background: var(--hot);
  color: #fff;
  padding: 5.5rem 0;
}
.index-head {
  display: grid;
  gap: 1rem;
}
.index-head h2 {
  font:
    900 2.6rem/0.95 Arial,
    sans-serif;
  letter-spacing: 0;
  margin: 0.2rem 0;
}
.index-head h2 em {
  color: var(--yellow);
  font-style: normal;
}
.index-head > p:last-child {
  line-height: 1.8;
  margin: 0;
  max-width: 34rem;
}
.index-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  display: grid;
  margin-top: 2.5rem;
}
.index-grid article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding: 1.2rem 0;
}
.index-grid span {
  color: var(--yellow);
  font:
    800 0.6rem Arial,
    sans-serif;
}
.index-grid h3 {
  font-size: 0.98rem;
  margin: 0.45rem 0;
}
.index-grid p {
  color: #ffe7dd;
  font-size: 0.78rem;
  line-height: 1.65;
  margin: 0;
}
.hero h1 em span {
  display: block;
}
@media (min-width: 768px) {
  .menu-button {
    display: none;
  }
  .story-grid > .section-kicker {
    grid-column: 1 / -1;
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 4.8rem;
  }
  .index-head {
    align-items: end;
    grid-template-columns: 1fr 1fr;
  }
  .index-head .eyebrow {
    grid-column: 1/-1;
  }
  .index-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .index-grid article {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    padding: 1.2rem;
  }
  .index-grid article:last-child {
    border-right: 0;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 6.8rem;
  }
  .hero h1 em span {
    display: inline;
  }
}
@media (max-width: 420px) {
  .hero h1 {
    font-size: 3.25rem;
    letter-spacing: 0;
  }
  .hero h1 em span {
    display: block;
  }
}
