:root {
  color-scheme: dark;
  --black: #000000;
  --white: #f2f2f2;
  --ember: #ff7a00;
  --ember-hot: #ff9a1f;
  --ember-deep: #c7431a;
  --muted: #9a9690;
  --line: rgba(242, 242, 242, 0.17);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
  background: var(--black);
  color: var(--white);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #000000;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: #000000;
  color: var(--white);
}

body::selection {
  background: var(--ember);
  color: var(--black);
}

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

a { color: inherit; }

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

.skip-link {
  position: fixed;
  z-index: 50;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 0.9rem;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--black);
  font-weight: 700;
}

.skip-link:focus { transform: none; }

:focus-visible {
  outline: 2px solid var(--ember-hot);
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--gutter);
  text-transform: uppercase;
}

.site-header a,
.site-footer a { text-decoration: none; }

.brand-logo {
  display: block;
  width: clamp(8.5rem, 18vw, 13.5rem);
  line-height: 0;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  gap: 1.15rem;
}

.primary-nav a {
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  border-bottom-color: var(--ember);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  overflow: clip;
  padding: 7.5rem var(--gutter) 2rem;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -20vw;
  bottom: -25vw;
  width: 82vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, rgba(199, 67, 26, 0.035) 32%, transparent 70%);
  filter: blur(10px);
}

.hero__copy { padding-bottom: 4.5rem; }

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.2em;
}

h1 {
  max-width: 8ch;
  margin-bottom: 1.6rem;
  font-size: clamp(4.4rem, 24vw, 11rem);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 0.74;
}

.hero__lede {
  max-width: 25rem;
  margin-bottom: 0;
  color: #c7c4c0;
  font-size: clamp(1.05rem, 3.8vw, 1.4rem);
  line-height: 1.45;
}

.hero__index { display: none; }

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.featured {
  display: grid;
  min-height: 100svh;
  padding: var(--gutter);
}

.featured__media {
  position: relative;
  min-height: 44vh;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 0, 0.2);
  background: #050100;
}

.featured__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.48));
  pointer-events: none;
}

.featured__media img {
  width: 100%;
  height: 100%;
  min-height: 44vh;
  object-fit: cover;
}

.featured__number {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.6rem;
  color: rgba(242, 242, 242, 0.82);
  font-size: clamp(3rem, 15vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.featured__copy { padding: 2.25rem 0 1rem; }

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.8rem, 13vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.price {
  margin-bottom: 2rem;
  color: var(--ember-hot);
  font-size: 1rem;
}

.description {
  margin-bottom: 2rem;
  color: #bcb8b2;
  font-size: 1rem;
  line-height: 1.65;
}

.button {
  display: flex;
  min-height: 3.6rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  border: 1px solid var(--ember);
  background: var(--ember);
  color: var(--black);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.upcoming { padding: 6rem var(--gutter); }
.section-heading { margin-bottom: 4rem; }
.section-heading h2 { max-width: 10ch; }
.world-list { border-top: 1px solid var(--line); }

.world-row {
  display: flex;
  min-height: 9rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.world-row__number {
  margin-bottom: 1rem;
  color: var(--ember-deep);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
}

.world-row h3 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 7vw, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.world-row__status {
  margin-bottom: 0.1rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.oled {
  display: grid;
  min-height: 82svh;
  align-items: center;
  padding: 6rem var(--gutter);
}

.oled__marker {
  display: grid;
  width: min(100%, 28rem);
  grid-template-columns: repeat(4, 1fr);
  align-self: end;
  margin-bottom: 5rem;
}

.oled__marker span { height: 0.45rem; background: var(--ember-deep); }
.oled__marker span:nth-child(2) { background: var(--ember); }
.oled__marker span:nth-child(3) { background: var(--ember-hot); }
.oled__marker span:nth-child(4) { background: var(--white); }
.oled__copy { align-self: start; }
.oled__copy h2 { max-width: 8ch; }

.oled__copy > p:last-child {
  max-width: 34rem;
  margin-bottom: 0;
  color: #bcb8b2;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  line-height: 1.55;
}

.site-footer {
  display: grid;
  gap: 2rem;
  padding: 3rem var(--gutter);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.site-footer__statement { max-width: 28rem; margin-bottom: 0; }

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
}

.site-footer a:hover,
.site-footer a:focus-visible { color: var(--white); }

.site-footer__operator {
  width: max-content;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-logo {
  display: block;
  width: min(100%, 13rem);
  line-height: 0;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.legal-main {
  min-height: 75svh;
  padding: 8.5rem var(--gutter) 6rem;
}

.legal-main__wrap {
  display: grid;
  gap: 3rem;
  max-width: 74rem;
}

.legal-main h1 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 15vw, 8.5rem);
  line-height: 0.82;
}

.legal-copy { max-width: 39rem; align-self: end; }

.legal-status {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--ember-deep);
  color: var(--ember-hot);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-copy p {
  color: #c4c0ba;
  font-size: 1rem;
  line-height: 1.7;
}

.legal-copy a { text-underline-offset: 0.25em; }

@media (hover: hover) {
  .button { transition: background-color 180ms ease, color 180ms ease; }
  .button:hover { background: var(--black); color: var(--ember-hot); }
}

@media (min-width: 760px) {
  .site-header { padding-top: 1.75rem; }
  .primary-nav { gap: 2rem; }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
    align-items: end;
    padding-bottom: 3rem;
  }

  .hero__copy { padding-bottom: 0; }

  .hero__index {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
    color: var(--muted);
    font-size: 0.7rem;
  }

  .hero__rule {
    height: 1px;
    background: linear-gradient(90deg, var(--ember), var(--line));
  }

  .scroll-cue { display: none; }

  .featured {
    grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: center;
  }

  .featured__media,
  .featured__media img { min-height: calc(100svh - (2 * var(--gutter))); }
  .featured__copy { padding-right: 3vw; }
  .button { max-width: 24rem; }

  .upcoming {
    display: grid;
    min-height: 100svh;
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    gap: 7vw;
    align-items: center;
  }

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

  .oled {
    grid-template-columns: minmax(16rem, 0.7fr) minmax(0, 1fr);
    gap: 8vw;
  }

  .oled__marker,
  .oled__copy { align-self: center; margin-bottom: 0; }

  .site-footer {
    grid-template-columns: minmax(10rem, 0.5fr) minmax(18rem, 1fr) auto auto;
    align-items: end;
    gap: 3rem;
  }

  .legal-main { display: grid; align-items: center; }

  .legal-main__wrap {
    grid-template-columns: minmax(20rem, 1fr) minmax(20rem, 0.7fr);
    align-items: end;
    gap: 7vw;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero.brand-hero {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 6rem var(--gutter) 3.5rem;
}

.brand-hero::before {
  content: none;
}

.hero__visual {
  width: min(100%, 108rem);
  margin: 0;
}

.hero__visual picture,
.hero__visual img {
  display: block;
  width: 100%;
}

.hero__visual img {
  height: auto;
  object-fit: contain;
}

.hero__mobile-copy {
  display: none;
}

@media (max-width: 640px) {
  .hero.brand-hero {
    min-height: 100svh;
    align-content: center;
    padding-top: 5.5rem;
  }

  .hero__visual {
    width: min(100%, 26rem);
  }

  .hero__visual img {
    max-height: 64svh;
  }

  .hero__mobile-copy {
    display: block;
    max-width: 22rem;
    margin: 1.5rem auto 0;
    color: #c7c4c0;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }

  .brand-hero .scroll-cue {
    display: flex;
  }
}

@media (min-width: 760px) {
  .hero.brand-hero {
    grid-template-columns: 1fr;
    align-items: center;
    padding-bottom: 3rem;
  }

  .brand-hero .scroll-cue {
    display: none;
  }
}

.world-hero {
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding: 6.5rem var(--gutter) 3rem;
}

.world-hero__art {
  width: min(100%, 108rem);
  margin-inline: auto;
}

.world-hero__art img {
  width: 100%;
  height: auto;
}

.world-hero__summary {
  display: grid;
  gap: 1.5rem;
  width: min(100%, 108rem);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.world-hero__summary h1 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 11vw, 7rem);
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.world-hero__tagline {
  margin-bottom: 0.7rem;
  color: #d1cdc8;
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  line-height: 1.5;
}

.world-preview {
  display: grid;
  min-height: 100svh;
  gap: 2.5rem;
  align-items: center;
  padding: var(--gutter);
}

.world-preview__media {
  overflow: hidden;
  border: 1px solid rgba(255, 122, 0, 0.2);
  background: #000000;
}

.world-preview__media img {
  width: 100%;
  height: auto;
}

.world-preview__copy h2 {
  max-width: 10ch;
  font-size: clamp(2.5rem, 9vw, 5.8rem);
}

.world-preview__copy > p:last-of-type {
  max-width: 32rem;
  margin-bottom: 2rem;
  color: #bcb8b2;
  font-size: 1rem;
  line-height: 1.65;
}

.button--quiet {
  background: transparent;
  color: var(--ember-hot);
}

@media (min-width: 760px) {
  .world-hero__summary {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .world-hero__summary > div:last-child {
    text-align: right;
  }

  .world-preview {
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
    gap: clamp(3rem, 8vw, 9rem);
  }
}

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