/* Black & yellow visual system: content, media, metadata and URLs are intentionally untouched. */
:root {
  --ink: #090909;
  --ink-raised: #121212;
  --ink-soft: #1b1b1b;
  --ink-fade: #262626;
  --paper: #f6f4ed;
  --muted: #b8b8b1;
  --yellow: #f8dc00;
  --yellow-hot: #ffe543;
  --yellow-dim: #c8af00;
  --line: rgba(248, 220, 0, .22);
  --line-soft: rgba(255, 255, 255, .10);
  --shadow: 0 22px 55px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--ink); }
body {
  min-width: 320px;
  margin: 0;
  padding: 104px 0 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 14% -10%, rgba(248, 220, 0, .18), transparent 31rem),
    radial-gradient(circle at 88% 8%, rgba(248, 220, 0, .09), transparent 29rem),
    linear-gradient(135deg, #101010 0%, #090909 42%, #151515 100%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-align: left;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .38;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

img, amp-img { display: block; max-width: 100%; border: 0; }
a { color: var(--yellow-hot); text-decoration: none; transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease; }
a:hover { color: #fff1a2; }
a:focus-visible, .cgXYrJBtD1Xb:focus-visible, summary:focus-visible { outline: 3px solid var(--yellow-hot); outline-offset: 4px; }
.cgXYrJBtD1Xb { cursor: pointer; }

h1, h2, h3, h4, h5, h6 { margin: 0; color: var(--paper); font-weight: 900; line-height: 1.1; letter-spacing: -.035em; }
h1 { max-width: 19ch; font-size: clamp(2.2rem, 5vw, 4.7rem); text-transform: uppercase; }
h2 { max-width: 25ch; font-size: clamp(1.55rem, 2.65vw, 2.55rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.65rem); }
p { margin: 0 0 1rem; color: #e5e3db; }
p:last-child { margin-bottom: 0; }

header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(260px, 1fr);
  align-items: center;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(248, 220, 0, .24);
  background: rgba(10, 10, 10, .90);
  box-shadow: 0 10px 36px rgba(0,0,0,.30);
  backdrop-filter: blur(16px);
}
header::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--yellow) 22%, var(--yellow) 78%, transparent);
  opacity: .75;
}
.rail-trigger { display: none; }
header .brand-mark { display: inline-flex; align-items: center; width: fit-content; }
header .brand-mark img, header .brand-mark amp-img { width: min(200px, 19vw); height: auto; }

.rail-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0;
  padding: 5px;
  list-style: none;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #161616;
}
.rail-nav > li { margin: 0; padding: 0; }
.rail-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 17px;
  overflow: hidden;
  color: #d7d5cf;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rail-nav__link::before {
  position: absolute;
  inset: 0;
  content: "";
  transform: translateY(103%);
  background: var(--yellow);
  transition: transform .22s ease;
}
.rail-nav__link:hover::before, .rail-nav__link--active::before { transform: translateY(0); }
.rail-nav__link > * { position: relative; z-index: 1; }
.rail-nav__link:hover, .rail-nav__link--active { color: #101010; }

.rail-actions { justify-self: end; display: flex; align-items: center; gap: 13px; }
.locale-switch { position: relative; flex: 0 0 auto; }
.locale-switch__toggle {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--line-soft);
  border-radius: 50%;
  background: #1b1b1b;
  transition: border-color .2s ease, transform .2s ease;
}
.locale-switch__toggle:hover { border-color: var(--yellow); transform: rotate(-8deg); }
.locale-flag { width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%; object-fit: cover; }
.locale-switch__menu {
  position: absolute;
  z-index: 10;
  top: calc(100% + 12px);
  right: 0;
  width: 154px;
  display: none;
  max-height: 360px;
  margin: 0;
  padding: 7px;
  overflow: auto;
  list-style: none;
  border: 1px solid rgba(248, 220, 0, .34);
  border-radius: 14px;
  background: #171717;
  box-shadow: var(--shadow);
}
.locale-switch.show .locale-switch__menu { display: block; }
.locale-switch__menu li { margin: 0; }
.locale-switch__menu span, .locale-switch__menu a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 8px;
  color: #ebe9e2;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
}
.locale-switch__menu span:hover, .locale-switch__menu a:hover { background: rgba(248, 220, 0, .15); }

.rail-cta { display: flex; align-items: center; gap: 8px; }
.rail-cta .cgXYrJBtD1Xb, .rail-cta a.cgXYrJBtD1Xb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 0 15px;
  color: #0c0c0c;
  border: 1px solid var(--yellow);
  border-radius: 7px;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease;
}
.rail-cta .cgXYrJBtD1Xb:last-child, .rail-cta a.cgXYrJBtD1Xb:last-child { color: var(--paper); background: transparent; }
.rail-cta .cgXYrJBtD1Xb:hover, .rail-cta a.cgXYrJBtD1Xb:hover { color: #0c0c0c; background: var(--yellow-hot); transform: translateY(-2px); }

main {
  width: min(1180px, calc(100% - 40px));
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 auto;
  padding: 10px 0 72px;
}
.prism-promo { order: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.prism-promo > a, .prism-promo > .cgXYrJBtD1Xb {
  position: relative;
  min-height: 152px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 18px;
  color: #fff;
  border: 1px solid rgba(248, 220, 0, .27);
  border-radius: 14px;
  background: #141414;
  box-shadow: 0 12px 26px rgba(0,0,0,.22);
  cursor: pointer;
}
.prism-promo > a::before, .prism-promo > .cgXYrJBtD1Xb::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 22%, rgba(0,0,0,.86) 100%);
}
.prism-promo > a::after, .prism-promo > .cgXYrJBtD1Xb::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  content: "";
  border-top: 3px solid var(--yellow);
  border-right: 3px solid var(--yellow);
}
.prism-promo img, .prism-promo amp-img { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.prism-promo span { position: relative; z-index: 3; display: block; font-size: clamp(1.05rem, 2vw, 1.45rem); font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.prism-promo > a:hover img, .prism-promo > a:hover amp-img, .prism-promo > .cgXYrJBtD1Xb:hover img, .prism-promo > .cgXYrJBtD1Xb:hover amp-img { transform: scale(1.06); }

.prism-section {
  position: relative;
  order: 3;
  width: 100%;
  padding: clamp(24px, 4.3vw, 54px);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(29,29,29,.98), rgba(12,12,12,.98));
  box-shadow: var(--shadow);
}
.prism-section::before {
  position: absolute;
  top: 0;
  left: clamp(24px, 4.3vw, 54px);
  width: 82px;
  height: 4px;
  content: "";
  background: var(--yellow);
}
.prism-section:first-of-type {
  order: 1;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-color: rgba(248, 220, 0, .45);
  background:
    linear-gradient(112deg, rgba(248,220,0,.18), transparent 44%),
    linear-gradient(145deg, #1b1b1b, #0b0b0b 72%);
}
.prism-section:first-of-type::after {
  position: absolute;
  right: -125px;
  bottom: -172px;
  width: 395px;
  height: 395px;
  content: "";
  border: 28px solid rgba(248,220,0,.17);
  transform: rotate(45deg);
}
.prism-section:first-of-type h1, .prism-section:first-of-type > h1 { position: relative; z-index: 1; margin-bottom: 22px; }
.prism-section:first-of-type > p { position: relative; z-index: 1; max-width: 76ch; font-size: 17px; }

.prism-section > h2, .prism-section > h3 { margin-bottom: 20px; }
.prism-section > h2::after, .story-panel__title h2::after, .story-panel__title h3::after {
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 16px;
  content: "";
  background: var(--yellow);
}
.prism-section > p + h2 { margin-top: 42px; }

.story-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: center;
  padding: clamp(0px, 0vw, 0px);
}
.story-panel--media-start { grid-template-areas: "media title" "media content"; }
.story-panel--media-end { grid-template-areas: "title media" "content media"; }
.story-panel__title { grid-area: title; align-self: end; }
.story-panel__content { grid-area: content; align-self: start; }
.story-panel__media {
  position: relative;
  grid-area: media;
  min-height: 330px;
  overflow: hidden;
  border: 10px solid var(--yellow);
  border-radius: 2px;
  background: var(--yellow);
  box-shadow: 14px 14px 0 rgba(248,220,0,.13);
}
.story-panel__media::before {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 78px;
  height: 78px;
  content: "";
  pointer-events: none;
  border-right: 7px solid #0c0c0c;
  border-bottom: 7px solid #0c0c0c;
}
.story-panel__media img, .story-panel__media amp-img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; transition: transform .45s ease; }
.story-panel:hover .story-panel__media img, .story-panel:hover .story-panel__media amp-img { transform: scale(1.035); }

main ul, main ol { margin: 1.25rem 0 0; padding: 0; list-style: none; }
main ul li, main ol li { position: relative; margin: 0 0 10px; padding-left: 30px; color: #e7e5df; }
main ul li::before { position: absolute; top: .66em; left: 0; width: 10px; height: 10px; content: ""; transform: rotate(45deg); background: var(--yellow); }
main ol { counter-reset: roadmap; }
main ol li { counter-increment: roadmap; }
main ol li::before { position: absolute; top: .08em; left: 0; width: 20px; height: 20px; content: counter(roadmap); color: #0d0d0d; border-radius: 50%; background: var(--yellow); font-size: 11px; font-weight: 900; line-height: 20px; text-align: center; }

.data-table { width: 100%; margin: 25px 0 4px; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: #0c0c0c; }
.data-table table { width: 100%; min-width: 680px; border-collapse: collapse; }
.data-table th { padding: 15px 18px; color: #0c0c0c; background: var(--yellow); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-align: left; text-transform: uppercase; }
.data-table td { padding: 16px 18px; color: #e8e6de; border-top: 1px solid rgba(255,255,255,.10); vertical-align: top; }
.data-table tr:nth-child(even) td { background: rgba(255,255,255,.035); }
.data-table tr:hover td { background: rgba(248,220,0,.08); }

summary { position: relative; display: block; padding: 20px 68px 20px 22px; cursor: pointer; color: var(--paper); list-style: none; font-weight: 900; }
summary::-webkit-details-marker { display: none; }
summary::after { position: absolute; top: 50%; right: 21px; width: 16px; height: 16px; content: ""; transform: translateY(-65%) rotate(45deg); border-right: 3px solid var(--yellow); border-bottom: 3px solid var(--yellow); transition: transform .2s ease; }
details { margin: 10px 0; overflow: hidden; border: 1px solid var(--line-soft); border-radius: 10px; background: #151515; }
details[open] { border-color: var(--line); background: #1b1b1b; }
details[open] summary { color: var(--yellow-hot); }
details[open] summary::after { transform: translateY(-28%) rotate(225deg); }
details p { padding: 0 22px 21px; color: #dedcd5; }
details h1, details h2, details h3, details h4, details h5, details h6 { display: inline; color: inherit; font-size: inherit; letter-spacing: inherit; }

.launch-hero { position: relative; z-index: 1; width: 100%; }
.launch-hero__inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr); gap: clamp(30px, 6vw, 80px); align-items: center; }
.launch-hero__copy { display: flex; flex-direction: column; align-items: flex-start; }
.launch-hero .brand-mark { display: inline-flex; margin-bottom: 24px; }
.launch-hero .brand-mark img, .launch-hero .brand-mark amp-img { width: min(248px, 70vw); height: auto; }
.launch-hero h1 { max-width: 16ch; margin-bottom: 18px; }
.launch-hero__text { max-width: 64ch; margin-bottom: 20px; color: #e9e7df; font-size: 17px; line-height: 1.65; }
.launch-hero__stars { margin-bottom: 24px; color: var(--yellow); font-size: 23px; letter-spacing: .20em; line-height: 1; }
.launch-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.launch-hero__actions a, .launch-hero__actions .cgXYrJBtD1Xb, .action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  color: #0c0c0c;
  border: 1px solid var(--yellow);
  border-radius: 7px;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.launch-hero__actions a:nth-child(2), .launch-hero__actions .cgXYrJBtD1Xb:nth-child(2) { color: var(--paper); background: transparent; }
.launch-hero__actions a:hover, .launch-hero__actions .cgXYrJBtD1Xb:hover, .action-button:hover { color: #0c0c0c; background: var(--yellow-hot); box-shadow: 6px 6px 0 rgba(248,220,0,.24); transform: translate(-2px, -2px); }
.launch-hero__art { position: relative; min-height: 285px; overflow: hidden; border: 1px solid var(--line); background: #0b0b0b; box-shadow: 16px 16px 0 rgba(248,220,0,.15); }
.launch-hero__art::before { position: absolute; z-index: 2; top: 0; left: 0; width: 92px; height: 92px; content: ""; pointer-events: none; border-top: 7px solid var(--yellow); border-left: 7px solid var(--yellow); }
.launch-hero__art img, .launch-hero__art amp-img { width: 100%; height: 100%; min-height: 285px; object-fit: cover; }
.action-row { display: flex; justify-content: flex-start; margin-top: 27px; }
.action-button { cursor: pointer; }

.site-footer { position: relative; margin-top: 18px; padding: 36px 20px 112px; color: #131313; background: var(--yellow); }
.site-footer::before { position: absolute; top: 0; right: 0; left: 0; height: 6px; content: ""; background: #0b0b0b; }
.site-footer__inner { width: min(1100px, 100%); margin: 0 auto; }
.site-footer p { margin: 0; color: #151515; font-size: 13px; font-weight: 700; line-height: 1.55; }
.pm-trust-links { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(19,19,19,.18); }
.pm-trust-links a { color: #131313; font-size: 12px; font-weight: 700; text-decoration: underline; }
.pm-trust-links a:hover { text-decoration: none; }
.dock-nav { display: none; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0c0c0c; }
::-webkit-scrollbar-thumb { border-radius: 9px; background: var(--yellow); }

@media (max-width: 1020px) {
  header { grid-template-columns: auto 1fr auto; gap: 16px; }
  header .rail-nav { display: none; }
  .rail-actions { gap: 9px; }
  .prism-section { padding: clamp(22px, 4vw, 40px); }
  .story-panel { grid-template-columns: minmax(0, 1fr) minmax(260px, .82fr); gap: 28px; }
  .story-panel__media { min-height: 275px; }
  .story-panel__media img, .story-panel__media amp-img { min-height: 275px; }
  .launch-hero__inner { grid-template-columns: minmax(0, 1fr) minmax(220px, .75fr); gap: 32px; }
}

@media (max-width: 760px) {
  body { padding-top: 76px; padding-bottom: 84px; font-size: 15px; }
  header { min-height: 62px; padding: 0 14px; }
  header .brand-mark img, header .brand-mark amp-img { max-width: 145px; }
  .rail-cta { gap: 5px; }
  .rail-cta .cgXYrJBtD1Xb, .rail-cta a.cgXYrJBtD1Xb { min-height: 33px; padding: 0 9px; font-size: 10px; }
  .locale-switch { display: none; }
  main { width: min(100% - 24px, 1180px); gap: 14px; padding: 2px 0 34px; }
  .prism-promo { grid-template-columns: 1fr; gap: 9px; }
  .prism-promo > a, .prism-promo > .cgXYrJBtD1Xb { min-height: 96px; padding: 14px; }
  .prism-section, .prism-section:first-of-type { min-height: 0; padding: 27px 19px; border-radius: 13px; }
  .prism-section::before { left: 19px; }
  .prism-section:first-of-type > p { font-size: 15px; }
  .prism-section:first-of-type::after { right: -178px; bottom: -225px; width: 340px; height: 340px; }
  .story-panel, .story-panel--media-start, .story-panel--media-end { display: flex; flex-direction: column; gap: 20px; }
  .story-panel__title, .story-panel__content, .story-panel__media { width: 100%; }
  .story-panel__media { min-height: 220px; border-width: 7px; box-shadow: 9px 9px 0 rgba(248,220,0,.13); }
  .story-panel__media img, .story-panel__media amp-img { min-height: 220px; }
  .launch-hero__inner { display: flex; flex-direction: column; gap: 22px; }
  .launch-hero__copy { width: 100%; }
  .launch-hero h1 { max-width: 19ch; }
  .launch-hero__art { width: 100%; min-height: 220px; }
  .launch-hero__art img, .launch-hero__art amp-img { min-height: 220px; }
  .launch-hero__actions { width: 100%; }
  .launch-hero__actions a, .launch-hero__actions .cgXYrJBtD1Xb, .action-button { width: 100%; min-height: 48px; }
  .action-row { width: 100%; }
  .data-table { margin-top: 19px; border-radius: 8px; }
  .data-table th, .data-table td { padding: 13px; }
  summary { padding: 18px 56px 18px 17px; }
  summary::after { right: 18px; }
  details p { padding: 0 17px 18px; }
  .site-footer { margin-top: 4px; padding: 28px 16px 100px; }
  .dock-nav {
    position: fixed;
    z-index: 1001;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(12,12,12,.96);
    box-shadow: 0 -10px 32px rgba(0,0,0,.35);
    backdrop-filter: blur(15px);
  }
  .dock-nav .rail-nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; padding: 0; border: 0; border-radius: 0; background: transparent; }
  .dock-nav .rail-nav__link { min-height: 44px; justify-content: center; padding: 0 3px; font-size: 9px; letter-spacing: .04em; }
}

@media (max-width: 390px) {
  header .brand-mark img, header .brand-mark amp-img { max-width: 126px; }
  .rail-cta .cgXYrJBtD1Xb, .rail-cta a.cgXYrJBtD1Xb { padding: 0 7px; font-size: 9px; }
  h1 { font-size: 2rem; }
}
