:root {
  --ink: #09070b;
  --ink-soft: #171117;
  --paper: #fffdfd;
  --soft: #f5f1f4;
  --pink: #e31c79;
  --hot-pink: #ff3f97;
  --yellow: #ffd84d;
  --line: #d8d0d6;
  --muted: #71676e;
  --white-muted: #cfc7cc;
  --header-height: 72px;
  color-scheme: light;
  font-family: 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
  letter-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-soft);
  background: var(--paper);
  font-family: inherit;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body[data-menu-locked] {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 28px;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid #342d32;
}

.site-logo {
  color: var(--hot-pink);
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav__link {
  position: relative;
  color: #d8d0d5;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: -11px;
  left: 0;
  height: 3px;
  background: var(--hot-pink);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--paper);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-nav__cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  color: var(--ink);
  background: var(--hot-pink);
  border: 1px solid var(--hot-pink);
  border-radius: 2px;
  font-size: 13px;
  font-weight: 900;
}

.site-nav__cta:hover {
  color: var(--paper);
  background: transparent;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 10px;
  color: var(--paper);
  background: transparent;
  border: 1px solid #4c4249;
  border-radius: 2px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.poster-label {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.poster-label--pink {
  color: var(--hot-pink);
}

.pink-text {
  color: var(--hot-pink) !important;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 900;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.button--primary {
  color: var(--ink);
  background: var(--hot-pink);
  border-color: var(--hot-pink);
}

.button--primary:hover {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--paper);
}

.button--ghost {
  color: var(--paper);
  background: rgba(9, 7, 11, 0.7);
  border-color: var(--paper);
}

.button--ghost:hover {
  color: var(--ink);
  background: var(--paper);
}

.button--dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button--dark:hover {
  color: var(--ink);
  background: transparent;
}

.button--light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--dark {
  color: var(--ink);
}

.text-link--light {
  color: var(--hot-pink);
}

.poster-hero {
  position: relative;
  min-height: 520px;
  height: calc(100svh - 132px);
  max-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.poster-hero__media,
.poster-hero__media img,
.page-hero__media,
.page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.poster-hero__media,
.page-hero__media,
.split-feature__media {
  display: block;
}

.poster-hero__media img,
.page-hero__media img {
  object-fit: cover;
}

.poster-hero__media img {
  object-position: center 48%;
}

.poster-hero__scrim,
.page-hero__scrim {
  position: absolute;
  inset: 0;
  background: rgba(9, 7, 11, 0.58);
}

.poster-hero__slash,
.page-hero__slash {
  position: absolute;
  z-index: 1;
  top: -12%;
  right: 16%;
  width: 92px;
  height: 130%;
  background: var(--hot-pink);
  opacity: 0.8;
  transform: skewX(-15deg);
}

.poster-hero__vertical {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 28px;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  writing-mode: vertical-rl;
}

.poster-hero__content {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 40px 0 48px;
}

.poster-hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 112px;
  font-weight: 900;
  line-height: 0.78;
}

.poster-hero__statement {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.55;
}

.fact-rail {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  min-height: 88px;
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid #342d32;
}

.fact-rail > div {
  padding: 18px 22px;
  border-right: 1px solid #342d32;
}

.fact-rail > div:first-child {
  color: var(--ink);
  background: var(--hot-pink);
}

.fact-rail span,
.fact-rail strong {
  display: block;
}

.fact-rail span {
  color: var(--white-muted);
  font-size: 11px;
  font-weight: 700;
}

.fact-rail > div:first-child span {
  color: #5b1535;
}

.fact-rail strong {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.3;
}

.page-band {
  width: 100%;
  padding: 88px 0;
}

.page-band--paper {
  background: var(--paper);
}

.page-band--soft {
  background: var(--soft);
}

.page-band--pink {
  color: var(--ink);
  background: var(--hot-pink);
}

.page-band--black {
  color: var(--paper);
  background: var(--ink);
}

.page-band--yellow {
  color: var(--ink);
  background: var(--yellow);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  margin-bottom: 30px;
}

.section-heading h2,
.prose-intro h2,
.split-feature h2,
.product-stage h2,
.cooperation-strip h2,
.requirement-layout h2,
.boundary-band h2,
.fallback-band h2,
.next-links h2,
.correction-strip h2,
.omitted-facts h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.08;
}

.section-heading p:not(.poster-label),
.prose-intro > p:not(.poster-label) {
  max-width: 700px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.fact-version {
  min-width: 180px;
  padding: 13px 16px;
  background: var(--soft);
  border-left: 5px solid var(--hot-pink);
}

.fact-version span,
.fact-version strong {
  display: block;
}

.fact-version span {
  color: var(--muted);
  font-size: 11px;
}

.fact-version strong {
  margin-top: 5px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.fact-index {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.fact-index__item {
  min-height: 132px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: stretch;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.fact-index__item:hover {
  color: var(--paper);
  background: var(--ink);
}

.fact-index__number {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--hot-pink);
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 20px;
}

.fact-index__copy {
  align-self: center;
  padding: 20px;
}

.fact-index__copy strong,
.fact-index__copy small {
  display: block;
}

.fact-index__copy strong {
  font-size: 19px;
}

.fact-index__copy small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.fact-index__item:hover .fact-index__copy small {
  color: var(--white-muted);
}

.fact-status {
  align-self: center;
  margin-right: 18px;
  padding: 5px 7px;
  color: var(--pink);
  background: transparent;
  border: 1px solid var(--pink);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 440px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
}

.split-feature__copy {
  align-self: center;
  padding: 54px;
}

.split-feature__copy p:not(.poster-label) {
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.split-feature__media {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: var(--paper);
  border-left: 1px solid var(--ink);
}

.split-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-stage {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 68px;
}

.product-stage__visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--hot-pink);
}

.product-stage__visual::before {
  position: absolute;
  top: -24px;
  left: 22px;
  color: rgba(9, 7, 11, 0.16);
  content: '2㎡';
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 180px;
  line-height: 1;
}

.product-stage__visual img {
  position: relative;
  z-index: 1;
  max-height: 370px;
  width: auto;
}

.product-stage__copy p:not(.poster-label) {
  max-width: 620px;
  margin: 20px 0 28px;
  color: var(--white-muted);
  font-size: 17px;
  line-height: 1.75;
}

.store-list {
  border-top: 1px solid var(--ink);
}

.store-row {
  display: grid;
  grid-template-columns: 150px minmax(250px, 1fr) minmax(240px, 0.7fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 184px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}

.store-row__city {
  align-self: stretch;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--ink);
  background: var(--hot-pink);
  font-size: 17px;
  font-weight: 900;
  text-align: center;
}

.store-row__main h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.15;
}

.store-row__main > p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.store-row__facts {
  margin: 0;
}

.store-row__facts > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.store-row__facts dt {
  color: var(--muted);
  font-size: 12px;
}

.store-row__facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

.article-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.article-links a {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.article-links a:hover {
  color: var(--paper);
  background: var(--ink);
}

.article-links span,
.article-links small {
  color: var(--muted);
  font-size: 12px;
}

.article-links strong {
  max-width: 480px;
  margin: 34px 0;
  font-size: 28px;
  line-height: 1.25;
}

.article-links a:hover span,
.article-links a:hover small {
  color: var(--white-muted);
}

.cooperation-strip {
  padding: 64px 0;
}

.cooperation-strip__inner,
.correction-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cooperation-strip h2 {
  font-size: 38px;
}

.cooperation-strip p:not(.poster-label),
.correction-strip p:not(.poster-label) {
  margin: 12px 0 0;
  font-size: 15px;
}

.type-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.type-hero__index {
  position: absolute;
  top: 28px;
  right: 30px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--hot-pink);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.type-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.type-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 72px;
  line-height: 1;
}

.type-hero__content > p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: #e3dce1;
  font-size: 20px;
  line-height: 1.7;
}

.type-hero__word {
  position: absolute;
  right: -22px;
  bottom: -48px;
  color: #261f24;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 220px;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.prose-intro {
  max-width: 960px;
}

.relationship-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.relationship-item {
  min-height: 320px;
  padding: 44px;
  background: var(--paper);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.relationship-item--pink {
  background: var(--hot-pink);
}

.relationship-item > span {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 42px;
}

.relationship-item h3 {
  margin: 70px 0 12px;
  font-size: 28px;
}

.relationship-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.relationship-item--pink p {
  color: #5b1535;
}

.definition-table {
  border-top: 1px solid var(--ink);
}

.definition-table > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink);
}

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

.definition-table strong {
  font-size: 22px;
}

.next-links__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border-top: 1px solid #4c4249;
  border-left: 1px solid #4c4249;
}

.next-links__grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.next-links__grid a {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-right: 1px solid #4c4249;
  border-bottom: 1px solid #4c4249;
  font-size: 17px;
  font-weight: 800;
}

.next-links__grid a:hover {
  color: var(--ink);
  background: var(--hot-pink);
}

.page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.page-hero__scrim {
  background: rgba(9, 7, 11, 0.7);
}

.page-hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: 64px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
}

.page-hero__content > p:not(.poster-label) {
  max-width: 760px;
  margin: 24px 0 0;
  color: #e6dfe4;
  font-size: 20px;
  line-height: 1.65;
}

.page-hero__content > .button {
  margin-top: 28px;
}

.page-hero--container .page-hero__media img {
  object-position: center 18%;
}

.page-hero--crystal-house .page-hero__media img {
  object-position: center center;
}

.page-hero--skins .page-hero__media img {
  object-position: center 32%;
}

.capability-list {
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.capability-row {
  min-height: 130px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  align-items: stretch;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.capability-row > span {
  display: grid;
  place-items: center;
  background: var(--hot-pink);
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 20px;
}

.capability-row > div {
  align-self: center;
  padding: 24px;
}

.capability-row h3 {
  margin: 0;
  font-size: 22px;
}

.capability-row p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.capability-row > b {
  align-self: center;
  margin-right: 24px;
  padding: 6px 8px;
  color: var(--pink);
  border: 1px solid var(--pink);
  border-radius: 2px;
  font-size: 11px;
}

.data-flow {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 60px;
}

.data-flow h2,
.evidence-structure h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.1;
}

.data-flow ol,
.evidence-structure ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.data-flow li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
}

.data-flow li > span {
  color: var(--pink);
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 18px;
}

.data-flow li strong {
  font-size: 19px;
}

.data-flow li p {
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.boundary-band .container,
.fallback-band .container,
.omitted-facts .container {
  max-width: 980px;
}

.boundary-band ul,
.fallback-band p,
.omitted-facts p {
  margin: 28px 0 0;
}

.boundary-band ul {
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.boundary-band li {
  padding: 18px 0;
  border-bottom: 1px solid var(--ink);
  font-weight: 700;
  line-height: 1.65;
}

.boundary-band .button {
  margin-top: 28px;
}

.fallback-band p,
.omitted-facts p {
  max-width: 820px;
  color: var(--white-muted);
  font-size: 17px;
  line-height: 1.75;
}

.fallback-band .text-link {
  margin-top: 24px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.scenario-grid > div {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.scenario-grid > div:nth-child(2n) {
  background: var(--hot-pink);
}

.scenario-grid span {
  font-size: 28px;
  font-weight: 900;
}

.scenario-grid p {
  margin: 110px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.scenario-grid > div:nth-child(2n) p {
  color: #5b1535;
}

.requirement-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.check-list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
}

.check-list strong {
  font-size: 18px;
}

.check-list span {
  color: var(--muted);
  line-height: 1.65;
}

.boundary-columns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 34px 0;
  border-top: 1px solid #4c4249;
  border-left: 1px solid #4c4249;
}

.boundary-columns__grid > div {
  min-height: 230px;
  padding: 26px;
  border-right: 1px solid #4c4249;
  border-bottom: 1px solid #4c4249;
}

.boundary-columns__grid h3 {
  margin: 0 0 80px;
  color: var(--hot-pink);
  font-size: 23px;
}

.boundary-columns__grid p {
  margin: 0;
  color: var(--white-muted);
  line-height: 1.65;
}

.stores-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.stores-hero__count {
  position: absolute;
  top: -40px;
  right: 30px;
  color: #241e22;
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 310px;
  line-height: 1;
}

.stores-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.stores-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 68px;
  line-height: 1.02;
}

.stores-hero__content > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--white-muted);
  font-size: 18px;
  line-height: 1.7;
}

.stores-hero__names {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.stores-hero__names span {
  padding: 8px 10px;
  color: var(--ink);
  background: var(--hot-pink);
  font-size: 12px;
  font-weight: 900;
}

.correction-strip {
  padding: 64px 0;
}

.store-poster {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.store-poster::after {
  position: absolute;
  top: -20%;
  right: 18%;
  width: 160px;
  height: 145%;
  background: var(--hot-pink);
  content: '';
  transform: skewX(-15deg);
}

.store-poster__city {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 2;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 900;
}

.store-poster__content {
  position: relative;
  z-index: 2;
  padding-bottom: 76px;
}

.store-poster h1 {
  max-width: 850px;
  margin: 0;
  font-size: 76px;
  line-height: 1;
}

.store-poster__content > p:last-child {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--white-muted);
  font-size: 18px;
}

.store-poster__hours {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  width: 240px;
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border-left: 8px solid var(--hot-pink);
}

.store-poster__hours span,
.store-poster__hours strong {
  display: block;
}

.store-poster__hours span {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.store-poster__hours strong {
  margin-top: 8px;
  font-size: 25px;
}

.store-fact-sheet {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
}

.store-fact-sheet__title h2 {
  margin: 0;
  font-size: 44px;
}

.store-fact-sheet__title > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.store-fact-sheet dl {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.store-fact-sheet dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  min-height: 68px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}

.store-fact-sheet dt {
  color: var(--muted);
}

.store-fact-sheet dd {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.store-fact-sheet dd .fact-status {
  display: inline-block;
  margin: 0;
}

.omitted-facts p {
  color: var(--muted);
}

.form-fields {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.form-fields > div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.form-fields > div:nth-child(2n) {
  background: var(--hot-pink);
}

.form-fields span {
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 20px;
}

.form-fields strong {
  font-size: 18px;
  line-height: 1.4;
}

.cooperation-flow {
  align-items: start;
}

.evidence-structure {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 60px;
}

.evidence-structure ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-left: 1px solid var(--ink);
}

.evidence-structure li {
  min-height: 180px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-content: start;
  gap: 12px;
  padding: 22px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.evidence-structure li > span {
  grid-row: span 2;
  color: var(--pink);
  font-family: 'Arial Black', Arial, sans-serif;
}

.evidence-structure li strong {
  font-size: 19px;
}

.evidence-structure li p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.governance-grid .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.governance-grid .container > div {
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.governance-grid h3 {
  margin: 76px 0 14px;
  font-size: 24px;
}

.governance-grid p:not(.poster-label) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.article-page {
  background: var(--paper);
}

.article-header {
  padding: 110px 0 80px;
  color: var(--paper);
  background: var(--ink);
}

.article-page--pink .article-header {
  color: var(--ink);
  background: var(--hot-pink);
}

.article-header h1 {
  max-width: 900px;
  margin: 0;
  font-size: 66px;
  line-height: 1.05;
}

.article-header .container > p:not(.poster-label) {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--white-muted);
  font-size: 19px;
  line-height: 1.7;
}

.article-page--pink .article-header .container > p:not(.poster-label) {
  color: #5b1535;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid #4c4249;
  color: var(--white-muted);
  font-size: 12px;
}

.article-page--pink .article-meta {
  color: #5b1535;
  border-color: #94164f;
}

.article-body {
  max-width: 840px;
  padding-top: 72px;
  padding-bottom: 96px;
}

.article-body > p,
.article-body li {
  font-size: 17px;
  line-height: 1.9;
}

.article-body h2 {
  margin: 64px 0 16px;
  font-size: 30px;
  line-height: 1.25;
}

.article-lead {
  margin: 0 0 54px;
  padding: 24px 0 24px 28px;
  border-left: 8px solid var(--hot-pink);
  font-size: 21px !important;
  font-weight: 700;
}

.article-callout {
  margin: 54px 0;
  padding: 28px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid var(--ink);
}

.article-callout strong {
  font-size: 20px;
}

.article-callout p {
  margin: 10px 0 0;
  line-height: 1.75;
}

.faq-list {
  max-width: 940px;
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--ink);
}

.faq-item summary {
  position: relative;
  padding: 26px 54px 26px 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--hot-pink);
  content: '+';
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item > div {
  max-width: 760px;
  padding: 0 0 30px;
}

.faq-item p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 56px 28px 28px;
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid #342d32;
}

.site-logo--footer {
  display: inline-block;
  font-size: 48px;
}

.site-footer__brand p {
  max-width: 410px;
  margin: 18px 0 0;
  color: var(--white-muted);
  line-height: 1.7;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  align-content: start;
}

.site-footer__links a {
  padding-bottom: 10px;
  color: var(--white-muted);
  border-bottom: 1px solid #4c4249;
  font-size: 13px;
}

.site-footer__links a:hover {
  color: var(--hot-pink);
}

.site-footer__record {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 24px;
  color: #9f959c;
  border-top: 1px solid #342d32;
  font-size: 12px;
}

.site-footer__record a:hover {
  color: var(--paper);
}

.preview-label {
  color: var(--yellow);
  font-weight: 900;
}

.not-found {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px;
  color: var(--paper);
  background: var(--ink);
}

.not-found h1 {
  max-width: 760px;
  margin: 0;
  font-size: 64px;
  line-height: 1;
}

.not-found > p:not(.poster-label) {
  color: var(--white-muted);
  font-size: 18px;
}

@media (max-width: 1040px) {
  .site-nav {
    gap: 15px;
  }

  .site-nav__link {
    font-size: 12px;
  }

  .poster-hero h1 {
    font-size: 90px;
  }

  .store-row {
    grid-template-columns: 120px minmax(230px, 1fr) minmax(210px, 0.8fr);
  }

  .store-row > .text-link {
    grid-column: 2 / -1;
  }

  .form-fields {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .site-header {
    height: var(--header-height);
    padding: 0 16px;
  }

  .site-logo {
    font-size: 25px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 99;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 20px;
    color: var(--paper);
    background: var(--ink);
    border-top: 1px solid #342d32;
    border-bottom: 1px solid #342d32;
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav__link,
  .site-nav__cta {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 4px;
    border-bottom: 1px solid #342d32;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__cta {
    justify-content: center;
    margin-top: 12px;
    padding: 0 16px;
    border: 1px solid var(--hot-pink);
  }

  .poster-hero {
    min-height: 530px;
    height: calc(100svh - 105px);
    max-height: 690px;
  }

  .poster-hero__media img {
    object-position: 47% center;
  }

  .poster-hero__slash,
  .page-hero__slash {
    right: 7%;
    width: 62px;
    opacity: 0.58;
  }

  .poster-hero__vertical {
    top: 18px;
    right: 13px;
    font-size: 9px;
  }

  .poster-hero__content {
    width: calc(100% - 32px);
    padding-bottom: 34px;
  }

  .poster-hero h1 {
    font-size: 68px;
  }

  .poster-hero__statement {
    max-width: 520px;
    margin-top: 19px;
    font-size: 17px;
  }

  .fact-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact-rail > div {
    min-height: 78px;
    padding: 14px 16px;
    border-bottom: 1px solid #342d32;
  }

  .page-band {
    padding: 64px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .section-heading h2,
  .prose-intro h2,
  .split-feature h2,
  .product-stage h2,
  .requirement-layout h2,
  .boundary-band h2,
  .fallback-band h2,
  .next-links h2,
  .correction-strip h2,
  .omitted-facts h2,
  .data-flow h2,
  .evidence-structure h2 {
    font-size: 34px;
  }

  .fact-version {
    width: 100%;
  }

  .fact-index {
    grid-template-columns: 1fr;
  }

  .split-feature,
  .product-stage,
  .data-flow,
  .requirement-layout,
  .store-fact-sheet,
  .evidence-structure {
    grid-template-columns: 1fr;
  }

  .split-feature__copy {
    padding: 32px;
  }

  .split-feature__media {
    min-height: 0;
    aspect-ratio: 1800 / 1201;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .product-stage {
    gap: 34px;
  }

  .product-stage__visual {
    min-height: 340px;
  }

  .store-row {
    grid-template-columns: 110px 1fr;
    gap: 20px;
  }

  .store-row__facts,
  .store-row > .text-link {
    grid-column: 2;
  }

  .article-links,
  .relationship-band,
  .scenario-grid,
  .boundary-columns__grid,
  .governance-grid .container {
    grid-template-columns: 1fr;
  }

  .relationship-item,
  .scenario-grid > div,
  .boundary-columns__grid > div,
  .governance-grid .container > div {
    min-height: 240px;
  }

  .cooperation-strip__inner,
  .correction-strip .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .type-hero,
  .stores-hero,
  .store-poster {
    min-height: 500px;
  }

  .type-hero h1,
  .page-hero h1,
  .stores-hero h1,
  .store-poster h1,
  .article-header h1,
  .not-found h1 {
    font-size: 50px;
  }

  .type-hero__word {
    font-size: 140px;
  }

  .page-hero {
    min-height: 540px;
  }

  .page-hero__content {
    padding-bottom: 42px;
  }

  .page-hero__content > p:not(.poster-label) {
    font-size: 17px;
  }

  .page-hero--container .page-hero__media img {
    object-position: center center;
  }

  .data-flow,
  .evidence-structure {
    gap: 32px;
  }

  .scenario-grid p {
    margin-top: 70px;
  }

  .store-poster__hours {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 3;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
  }

  .store-poster {
    flex-wrap: wrap;
  }

  .store-poster__content {
    padding-bottom: 28px;
  }

  .form-fields {
    grid-template-columns: repeat(2, 1fr);
  }

  .evidence-structure ol {
    grid-template-columns: 1fr;
  }

  .article-header {
    padding: 80px 0 60px;
  }

  .article-body {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .article-body h2 {
    margin-top: 48px;
    font-size: 26px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 16px 24px;
  }

  .site-footer__record {
    grid-column: 1;
  }
}

@media (max-width: 520px) {
  .poster-label {
    font-size: 10px;
  }

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

  .button {
    width: 100%;
  }

  .fact-rail strong {
    font-size: 13px;
  }

  .fact-index__item {
    grid-template-columns: 54px 1fr;
  }

  .fact-index__number {
    font-size: 16px;
  }

  .fact-index__copy {
    padding: 16px;
  }

  .fact-index__copy strong {
    font-size: 17px;
  }

  .fact-index__item .fact-status {
    grid-column: 2;
    justify-self: start;
    margin: 0 0 16px 16px;
  }

  .split-feature__copy {
    padding: 26px 22px;
  }

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

  .store-row__city {
    min-height: 58px;
  }

  .store-row__facts,
  .store-row > .text-link {
    grid-column: 1;
  }

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

  .article-links a {
    min-height: 210px;
    padding: 24px;
  }

  .definition-table > div,
  .check-list li,
  .store-fact-sheet dl > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .next-links__grid,
  .next-links__grid--two {
    grid-template-columns: 1fr;
  }

  .capability-row {
    grid-template-columns: 54px 1fr;
  }

  .capability-row > b {
    grid-column: 2;
    justify-self: start;
    margin: 0 0 18px 24px;
  }

  .scenario-grid,
  .form-fields {
    grid-template-columns: 1fr;
  }

  .store-poster::after {
    right: 4%;
    width: 80px;
    opacity: 0.62;
  }

  .store-poster__hours {
    width: calc(100% - 32px);
  }

  .article-meta {
    flex-direction: column;
    gap: 7px;
  }

  .article-body > p,
  .article-body li {
    font-size: 16px;
  }

  .article-lead {
    padding-left: 18px;
    font-size: 18px !important;
  }

  .site-footer__links {
    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;
  }
}
