@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #050608;
  --bg-soft: #0b0d10;
  --bg-elevated: #11141a;
  --surface: rgba(255,255,255,.03);
  --surface-soft: rgba(255,255,255,.05);
  --surface-strong: rgba(255,255,255,.08);
  --line: rgba(255,255,255,.08);
  --line-strong: rgba(255,255,255,.14);
  --text: #f5f7fb;
  --text-soft: #d5dbe7;
  --text-muted: #8f99ab;
  --gold: #d2b063;
  --gold-strong: #f2dcaa;
  --ink: #0d1118;
  --hero-blue: linear-gradient(135deg, #07162e 0%, #0a2f6e 46%, #10284a 100%);
  --hero-xbox: linear-gradient(140deg, #07090b 0%, #101913 44%, #0f281d 100%);
  --hero-switch: linear-gradient(140deg, #0c0f14 0%, #19334d 50%, #101820 100%);
  --light-bg: #f5f6f8;
  --light-surface: #ffffff;
  --light-line: rgba(17, 24, 39, .08);
  --light-text: #0e1219;
  --light-soft: #434d60;
  --shadow-soft: 0 14px 42px rgba(0,0,0,.14);
  --shadow-strong: 0 24px 80px rgba(0,0,0,.22);
  --max: min(1400px, calc(100vw - 56px));
  --copy: 64ch;
  --header-h: 72px;
  --space-section: clamp(72px, 10vw, 132px);
  --space-tight: clamp(36px, 5vw, 60px);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --font-ui: 'Montserrat', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html[data-theme='light'] {
  --bg: #f6f7fa;
  --bg-soft: #eef1f5;
  --bg-elevated: #ffffff;
  --surface: rgba(17,24,39,.03);
  --surface-soft: rgba(17,24,39,.05);
  --surface-strong: rgba(17,24,39,.08);
  --line: rgba(17,24,39,.08);
  --line-strong: rgba(17,24,39,.14);
  --text: #111827;
  --text-soft: #434d60;
  --text-muted: #6d7585;
  --ink: #ffffff;
  --shadow-soft: 0 14px 36px rgba(17,24,39,.08);
  --shadow-strong: 0 24px 72px rgba(17,24,39,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top center, rgba(210,176,99,.08), transparent 24%);
  z-index: -1;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 2px solid rgba(210,176,99,.55); outline-offset: 2px; }

.shell { width: var(--max); margin-inline: auto; }
.page { padding-top: calc(var(--header-h) + 8px); }
.page--compact { padding-top: calc(var(--header-h) + 4px); }
[data-reveal] { opacity: 1; transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--line);
}
.header-shell {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark { width: 34px; height: 34px; object-fit: contain; }
.brand-text {
  font-weight: 800;
  letter-spacing: -.04em;
  font-size: .98rem;
}
.top-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.top-nav__link {
  color: var(--text-muted);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.02em;
  transition: color .18s ease;
}
.top-nav__link:hover,
.top-nav__link.is-active { color: var(--text); }
.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.header-actions > .top-nav__link { font-size: .88rem; }
.theme-toggle {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  position: relative;
  color: var(--text-muted);
}
.theme-toggle:hover { color: var(--text); }
.theme-toggle__icon { position: absolute; width: 18px; height: 18px; transition: opacity .16s ease, transform .16s ease; }
.theme-toggle__icon img { width: 18px; height: 18px; }
html[data-theme='dark'] .theme-toggle__icon--sun { opacity: 0; transform: translateY(8px); }
html[data-theme='dark'] .theme-toggle__icon--moon { opacity: 1; transform: translateY(0); }
html[data-theme='light'] .theme-toggle__icon--sun { opacity: 1; transform: translateY(0); }
html[data-theme='light'] .theme-toggle__icon--moon { opacity: 0; transform: translateY(-8px); }

.btn {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -.02em;
  transition: transform .16s ease, opacity .16s ease, background .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: var(--gold);
  color: #101318;
}
.btn--secondary {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn--ghost {
  background: transparent;
  color: var(--text-soft);
  padding-inline: 0;
  min-height: 24px;
}
.btn--wide { width: 100%; }
.btn--sm { min-height: 40px; padding-inline: 16px; }
.btn.is-disabled { opacity: .46; pointer-events: none; }

.eyebrow, .badge, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.badge {
  min-height: 30px;
  padding: 0 10px;
  letter-spacing: .03em;
  border: 1px solid var(--line-strong);
  color: var(--text-soft);
}
.badge--soft {
  border-color: rgba(210,176,99,.22);
  color: var(--gold);
}
.kicker { letter-spacing: .06em; }

h1, h2, h3, h4 { margin: 0; letter-spacing: -.055em; line-height: .95; }
h1 { font-size: clamp(3rem, 6vw, 5.8rem); }
h2 { font-size: clamp(2.1rem, 4vw, 3.9rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { margin: 0; line-height: 1.6; color: var(--text-soft); }
ul { margin: 0; padding-left: 1.1rem; }

.section {
  position: relative;
  padding: var(--space-section) 0;
}
.section--tight { padding: var(--space-tight) 0; }
.section--flush { padding: 0; }
.section__inner { display: grid; gap: 32px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.section-head p { max-width: 56ch; }


.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

/* HERO */
.hero-premium {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h) - 24px);
  display: grid;
  align-items: center;
  background: radial-gradient(circle at 72% 22%, rgba(255,255,255,.08), transparent 18%), linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.hero-premium::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,6,8,.96) 0%, rgba(5,6,8,.82) 42%, rgba(5,6,8,.30) 100%);
  pointer-events: none;
}
.hero-premium__grid {
  position: relative;
  z-index: 1;
  width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 40px;
  align-items: center;
  padding: 68px 0;
}
.hero-premium__copy { max-width: 630px; display: grid; gap: 20px; }
.hero-premium__copy p { max-width: var(--copy); font-size: 1.04rem; }
.hero-premium__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-premium__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.hero-kpi {
  border-top: 1px solid var(--line-strong);
  padding-top: 16px;
}
.hero-kpi strong {
  display: block;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -.05em;
}
.hero-kpi span { display: block; margin-top: 4px; color: var(--text-muted); font-size: .88rem; line-height: 1.45; }
.hero-premium__visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}
.hero-premium__visual::before {
  content: '';
  position: absolute;
  inset: 6% 6% auto 12%;
  height: 58%;
  background: linear-gradient(135deg, rgba(210,176,99,.22), transparent 70%);
  filter: blur(24px);
}
.hero-backplate {
  position: absolute;
  inset: 8% 0 10% 18%;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.06);
}
.hero-backplate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: .72;
}
.hero-collage {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-cardless {
  position: absolute;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.hero-cardless img { width: 100%; height: auto; object-fit: contain; }
.hero-cardless--ps { width: 58%; top: 10%; left: 16%; }
.hero-cardless--xb { width: 34%; bottom: 6%; left: 2%; }
.hero-cardless--sw { width: 48%; right: 0; bottom: 12%; }
.hero-spec-chip {
  position: absolute;
  right: 4%;
  top: 18%;
  background: rgba(8,10,15,.86);
  border: 1px solid rgba(255,255,255,.08);
  padding: 14px 16px;
  min-width: 200px;
  box-shadow: var(--shadow-soft);
}
.hero-spec-chip strong { display: block; font-size: .92rem; }
.hero-spec-chip span { display:block; margin-top: 4px; color: var(--text-muted); font-size: .84rem; }

/* immersive surfaces */
.media-bleed {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}
.media-bleed__img, .media-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-bleed__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,6,8,.84) 0%, rgba(5,6,8,.34) 52%, rgba(5,6,8,.08) 100%);
}
.media-bleed__content {
  position: absolute;
  left: max(24px, calc((100vw - var(--max)) / 2));
  right: 24px;
  bottom: 44px;
  max-width: min(560px, 80vw);
  display: grid;
  gap: 14px;
  z-index: 1;
}
.media-bleed__content p { color: rgba(255,255,255,.86); }
.media-bleed--short { min-height: 480px; }
.media-bleed--tall { min-height: 640px; }

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
}
.feature-story--reverse { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.feature-story--reverse .feature-story__copy { order: 2; }
.feature-story--reverse .feature-story__media { order: 1; }
.feature-story__copy { display: grid; gap: 18px; max-width: 560px; }
.feature-story__copy p { max-width: var(--copy); }
.feature-story__stack {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}
.feature-story__stack div {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.feature-story__stack strong { font-size: 1rem; letter-spacing: -.03em; }
.feature-story__stack span { color: var(--text-muted); font-size: .92rem; line-height: 1.55; }
.feature-story__media {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-soft);
}
.feature-story__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-story__media .floating-product {
  position: absolute;
  inset: auto 6% 6% auto;
  width: min(44%, 380px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,.32));
}
.feature-story__media .floating-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(58%, 420px);
  background: rgba(8,10,15,.88);
  padding: 18px 18px 20px;
  display: grid;
  gap: 6px;
}
.feature-story__media .floating-card strong { font-size: 1rem; }
.feature-story__media .floating-card span { color: rgba(255,255,255,.74); font-size: .88rem; line-height: 1.5; }

.split-callout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.split-callout__item {
  padding: 28px 28px 32px;
  border-right: 1px solid var(--line);
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
}
.split-callout__item:last-child { border-right: 0; }
.split-callout__item strong { font-size: 1.1rem; letter-spacing: -.04em; }
.split-callout__item p { font-size: .95rem; }

.decision-stage {
  display: grid;
  gap: 18px;
}
.decision-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: 360px;
  overflow: hidden;
  background: color-mix(in srgb, var(--bg-elevated) 90%, transparent);
}
.decision-row__copy {
  padding: 42px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}
.decision-row__copy p { max-width: 52ch; }
.decision-row__copy ul { color: var(--text-soft); line-height: 1.7; }
.decision-row__media img { width: 100%; height: 100%; object-fit: cover; }
.decision-row__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.product-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.product-band__item {
  background: var(--bg);
  padding: 22px;
  display: grid;
  gap: 8px;
}
.product-band__item strong { font-size: .95rem; letter-spacing: -.03em; }
.product-band__item span { color: var(--text-muted); font-size: .84rem; line-height: 1.5; }

.offer-spotlight {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .62fr);
  gap: 0;
  background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid var(--line);
}
.offer-spotlight__content {
  padding: 44px;
  display: grid;
  gap: 18px;
  align-content: center;
}
.offer-spotlight__content h2 { font-size: clamp(2rem, 3.6vw, 3.1rem); }
.offer-spotlight__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}
.offer-spotlight__meta div { padding-top: 12px; border-top: 1px solid var(--line); }
.offer-spotlight__meta span { display: block; color: var(--text-muted); font-size: .82rem; }
.offer-spotlight__meta strong { display: block; margin-top: 4px; font-size: 1rem; letter-spacing: -.04em; }
.offer-spotlight__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.offer-spotlight__rail {
  background: var(--gold);
  color: #121418;
  padding: 28px 26px;
  display: grid;
  align-content: center;
  gap: 14px;
}
.offer-spotlight__rail strong { font-size: 1.2rem; letter-spacing: -.04em; }
.offer-spotlight__rail ul { padding-left: 1rem; line-height: 1.7; }
.offer-note { color: var(--text-muted); font-size: .85rem; }

.light-section {
  background: var(--light-bg);
  color: var(--light-text);
}
.light-section p, .light-section span, .light-section li { color: var(--light-soft); }
.light-section .kicker, .light-section .eyebrow, .light-section .badge--soft { color: #9d7a2b; }
.light-section .section { color: var(--light-text); }
.light-section .feature-story__stack div,
.light-section .split-callout,
.light-section .split-callout__item,
.light-section .product-band,
.light-section .product-band__item,
.light-section .offer-spotlight,
.light-section .offer-spotlight__meta div,
.light-section .faq-lines details { border-color: var(--light-line); }
.light-section .decision-row { background: #fff; }
.light-section .btn--secondary { border-color: rgba(17,24,39,.14); color: var(--light-text); }
.light-section .hero-kpi span { color: #697284; }
.light-section .offer-note { color: #697284; }

.product-hero {
  padding: 32px 0 0;
}
.product-hero__stage {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header-h) - 16px);
}
.product-hero__bg {
  position: absolute;
  inset: 0;
}
.product-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.product-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,6,8,.92) 0%, rgba(5,6,8,.78) 40%, rgba(5,6,8,.30) 100%);
}
.product-hero__grid {
  position: relative;
  z-index: 1;
  width: var(--max);
  margin-inline: auto;
  min-height: calc(100vh - var(--header-h) - 16px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 40px;
  align-items: center;
  padding: 80px 0 72px;
}
.product-hero__copy { display: grid; gap: 20px; max-width: 620px; }
.product-hero__copy p { max-width: var(--copy); font-size: 1.05rem; color: rgba(245,247,251,.86); }
.product-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.product-hero__badges { display: flex; flex-wrap: wrap; gap: 12px; }
.product-hero__visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
}
.product-hero__visual img {
  width: min(92%, 760px);
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.28));
}
.product-hero__floating {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: min(34%, 260px);
}
.product-hero__floating img { width: 100%; height: auto; }
.product-hero__micro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 6px;
}
.product-hero__micro div { padding-top: 12px; border-top: 1px solid rgba(255,255,255,.18); }
.product-hero__micro strong { display: block; font-size: .95rem; }
.product-hero__micro span { display: block; margin-top: 4px; color: rgba(255,255,255,.64); font-size: .84rem; }

.local-subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.local-subnav__shell {
  width: var(--max);
  margin-inline: auto;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.local-subnav__links {
  display: flex;
  gap: 18px;
  overflow: auto hidden;
  scrollbar-width: none;
}
.local-subnav__links::-webkit-scrollbar { display: none; }
.local-subnav__links a {
  white-space: nowrap;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 600;
}
.local-subnav__links a:hover { color: var(--text); }

.faq-lines {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-lines details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-lines summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  letter-spacing: -.03em;
}
.faq-lines summary::-webkit-details-marker { display: none; }
.faq-lines summary::after {
  content: '+';
  color: var(--text-muted);
  font-size: 1.3rem;
  line-height: 1;
}
.faq-lines details[open] summary::after { content: '−'; }
.faq-lines p { margin-top: 14px; max-width: 62ch; }

.surface-note {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--text-muted);
  font-size: .88rem;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.link-rail {
  padding: 28px;
  border: 1px solid var(--line);
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 14px;
}
.link-rail h3 { font-size: 1.7rem; }
.link-rail p { max-width: 44ch; }

.hub-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.hub-shelf__item {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.hub-shelf__item img { width: 100%; height: 100%; object-fit: cover; }
.hub-shelf__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,.06) 0%, rgba(5,6,8,.82) 82%);
}
.hub-shelf__content {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.hub-shelf__content p { color: rgba(245,247,251,.78); }

.editorial-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}
.editorial-panel {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}
.editorial-panel img { width: 100%; height: 100%; object-fit: cover; }
.editorial-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,.08) 0%, rgba(5,6,8,.82) 78%);
}
.editorial-panel__content {
  position: absolute;
  inset: auto 32px 32px;
  z-index: 1;
  max-width: min(520px, calc(100% - 64px));
  display: grid;
  gap: 14px;
}
.editorial-stack {
  display: grid;
  gap: 18px;
}
.editorial-mini {
  position: relative;
  min-height: 271px;
  overflow: hidden;
  background: var(--bg-elevated);
}
.editorial-mini img { width: 100%; height: 100%; object-fit: cover; }
.editorial-mini::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,.06) 0%, rgba(5,6,8,.8) 80%);
}
.editorial-mini__content {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.story-tile {
  min-height: 420px;
  position: relative;
  overflow: hidden;
}
.story-tile img { width: 100%; height: 100%; object-fit: cover; }
.story-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,6,8,.08), rgba(5,6,8,.84) 82%);
}
.story-tile__content {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 1;
  display: grid;
  gap: 10px;
}
.story-tile__content p { color: rgba(245,247,251,.78); }

.site-footer {
  margin-top: 48px;
  border-top: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}
.footer-shell {
  padding: 44px 0 100px;
  display: grid;
  gap: 34px;
}
.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}
.footer-brand__logo { width: 42px; height: 42px; object-fit: contain; }
.footer-brand strong { display:block; font-size: 1.05rem; letter-spacing: -.04em; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.footer-grid h3 { font-size: .95rem; letter-spacing: -.03em; }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-grid a { color: var(--text-muted); font-size: .92rem; }
.footer-grid a:hover { color: var(--text); }
.footer-meta {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-meta p { color: var(--text-muted); font-size: .84rem; }

.mobile-nav {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(92vw, 520px);
  padding: 8px;
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  z-index: 70;
}
.mobile-nav__link {
  min-height: 56px;
  display: grid;
  place-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: .68rem;
  text-align: center;
  padding: 6px;
}
.mobile-nav__link img { width: 18px; height: 18px; opacity: .86; }
.mobile-nav__link.is-active { color: var(--text); }
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%);
  width: min(92vw, 760px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  border: 1px solid var(--line);
  padding: 16px 18px;
  z-index: 80;
  backdrop-filter: blur(16px);
}
.cookie-banner__content { display: grid; gap: 6px; }
.cookie-banner__content strong { font-size: .98rem; letter-spacing: -.03em; }
.cookie-banner__actions { display: flex; gap: 10px; }

/* legacy support */
.page-hero, .hero, .spotlight, .feature-card, .hub-card, .link-card, .compare-box, .offer-card-grid, .offer-card, .cta-panel, .micro-proof-box, .practical-card { background: transparent; border: 0; box-shadow: none; }
.page-hero { display: none; }
.hero-proof, .mini-stat, .story-layout, .product-stage, .grid, .link-list, .table-shell { display: inherit; }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 18px 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare-table th { color: var(--text-muted); font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

/* responsive */
@media (max-width: 1200px) {
  .hero-premium__grid,
  .product-hero__grid,
  .feature-story,
  .feature-story--reverse,
  .editorial-grid,
  .decision-row,
  .offer-spotlight {
    grid-template-columns: 1fr;
  }
  .feature-story--reverse .feature-story__copy,
  .feature-story--reverse .feature-story__media { order: initial; }
  .hero-premium__visual,
  .product-hero__visual { min-height: 520px; }
  .hero-backplate { inset: 6% 6% 12% 6%; }
}

@media (max-width: 1024px) {
  :root { --max: min(100vw - 40px, 1200px); }
  .top-nav { display: none; }
  .header-shell { grid-template-columns: auto 1fr auto; }
  .hero-premium,
  .product-hero__stage { min-height: auto; }
  .hero-premium__grid,
  .product-hero__grid { padding: 54px 0; }
  .hero-premium__meta,
  .product-hero__micro,
  .split-callout,
  .product-band,
  .hub-shelf,
  .story-grid,
  .link-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-nav { display: grid; }
  .cookie-banner { bottom: 92px; grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --max: calc(100vw - 24px); --header-h: 64px; }
  .header-shell { gap: 12px; }
  .brand-text { font-size: .92rem; }
  .header-actions > .top-nav__link { display: none; }
  h1 { font-size: clamp(2.3rem, 12vw, 3.8rem); }
  h2 { font-size: clamp(1.8rem, 9vw, 2.8rem); }
  .hero-premium__visual, .product-hero__visual { min-height: 380px; }
  .hero-cardless--ps { width: 68%; left: 10%; }
  .hero-cardless--xb { width: 38%; }
  .hero-cardless--sw { width: 54%; }
  .hero-spec-chip { right: auto; left: 0; top: auto; bottom: 4%; min-width: 180px; }
  .feature-story__media, .decision-row, .hub-shelf__item, .editorial-panel, .story-tile { min-height: 320px; }
  .decision-row__copy, .offer-spotlight__content, .offer-spotlight__rail { padding: 28px 22px; }
  .media-bleed__content { left: 18px; right: 18px; bottom: 24px; max-width: calc(100% - 36px); }
  .local-subnav { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}


/* round 5 premium showcase */
:root {
  --ms-shell: min(1680px, calc(100vw - 56px));
  --ms-light: #f5f5f7;
  --ms-paper: #ffffff;
  --ms-ink: #1d1d1f;
  --ms-soft: #6e6e73;
  --ms-line: rgba(29,29,31,.12);
  --ms-black: #000000;
}

body.page-product,
body.home,
body.offers-page,
body.compare-detail-page {
  background: var(--ms-light);
  color: var(--ms-ink);
}

body.page-product .page,
body.home .page,
body.offers-page .page,
body.compare-detail-page .page {
  padding-top: var(--header-h);
}

.site-header {
  min-height: 56px;
  background: rgba(10,10,12,.84);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: saturate(180%) blur(20px);
}

.header-shell {
  min-height: 56px;
  width: var(--ms-shell);
}

.brand-mark { width: 28px; height: 28px; }
.brand-text { font-size: .95rem; font-weight: 700; letter-spacing: -.03em; }
.top-nav { gap: 22px; }
.top-nav__link { font-size: .88rem; font-weight: 600; }
.top-nav__link.is-active { color: #fff; }
.header-actions { gap: 10px; }
.header-actions .btn--primary {
  background: #fff;
  color: #000;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: .82rem;
}
.header-actions > .top-nav__link { color: rgba(255,255,255,.75); }
.theme-toggle { width: 34px; height: 34px; }

body.page-product .site-header {
  background: rgba(6,6,8,.72);
}

.site-footer {
  background: #020202;
  color: rgba(255,255,255,.9);
  border-top: 0;
}
.site-footer .footer-grid a,
.site-footer .footer-meta p,
.site-footer .footer-brand p { color: rgba(255,255,255,.62); }
.site-footer .footer-grid h3,
.site-footer .footer-brand strong { color: #fff; }
.footer-shell { width: var(--ms-shell); }

body.page-product .btn,
body.home .btn,
body.offers-page .btn,
body.compare-detail-page .btn {
  border-radius: 999px;
}
body.page-product .btn--primary,
body.home .btn--primary,
body.offers-page .btn--primary,
body.compare-detail-page .btn--primary {
  background: var(--brand-accent, #0071e3);
  color: #fff;
}
body.page-product .btn--secondary,
body.home .btn--secondary,
body.offers-page .btn--secondary,
body.compare-detail-page .btn--secondary {
  background: rgba(29,29,31,.04);
  border: 1px solid rgba(29,29,31,.14);
  color: var(--ms-ink);
}
body.page-product .badge,
body.home .badge,
body.offers-page .badge,
body.compare-detail-page .badge { border-radius: 999px; }

.shell,
.showcase-shell {
  width: var(--ms-shell);
  margin-inline: auto;
}

.showcase-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: #000;
  color: #fff;
  overflow: clip;
}
.showcase-hero__media,
.showcase-hero__media img,
.showcase-hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.56) 42%, rgba(0,0,0,.24) 100%);
}
.showcase-hero__content {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--header-h));
  width: var(--ms-shell);
  margin-inline: auto;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 76px 0 64px;
  max-width: var(--ms-shell);
}
.showcase-hero__content > * { max-width: min(720px, 88vw); }
.showcase-super {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}
.showcase-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: .94;
  letter-spacing: -.065em;
}
.showcase-lead {
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: rgba(255,255,255,.82);
}
.showcase-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.showcase-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 880px;
  margin-top: 8px;
}
.showcase-stat {
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.showcase-stat strong {
  display: block;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  letter-spacing: -.04em;
}
.showcase-stat span {
  display: block;
  margin-top: 6px;
  font-size: .9rem;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
}
.showcase-hero__product {
  position: absolute;
  right: max(24px, calc((100vw - var(--ms-shell)) / 2));
  bottom: 4%;
  width: min(42vw, 720px);
  z-index: 1;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.35));
}
.showcase-hero__product img { width: 100%; height: auto; }
.showcase-hero__product--float {
  position: absolute;
  right: max(0px, calc((100vw - var(--ms-shell)) / 2) + 20px);
  bottom: 10%;
  width: min(16vw, 220px);
  z-index: 2;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.25));
}
.showcase-hero__product--float img { width: 100%; height: auto; }

.product-subnav {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: rgba(255,255,255,.84);
  border-bottom: 1px solid rgba(29,29,31,.08);
  backdrop-filter: saturate(180%) blur(20px);
}
.product-subnav__shell {
  width: var(--ms-shell);
  margin-inline: auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.product-subnav__links {
  display: flex;
  gap: 18px;
  overflow: auto hidden;
  scrollbar-width: none;
}
.product-subnav__links::-webkit-scrollbar { display: none; }
.product-subnav__links a {
  white-space: nowrap;
  color: var(--ms-soft);
  font-size: .9rem;
  font-weight: 600;
}
.product-subnav__links a:hover { color: var(--ms-ink); }
.product-subnav__cta .btn--primary { min-height: 36px; padding-inline: 16px; }

.showcase-section {
  position: relative;
  padding: clamp(74px, 9vw, 132px) 0;
}
.showcase-section--tight { padding: clamp(54px, 7vw, 96px) 0; }
.showcase-section--light {
  background: var(--ms-light);
  color: var(--ms-ink);
}
.showcase-section--white {
  background: #fff;
  color: var(--ms-ink);
}
.showcase-section--ink {
  background: #000;
  color: #fff;
}
.showcase-section--ink p,
.showcase-section--ink li { color: rgba(255,255,255,.72); }
.showcase-section--brand {
  background: var(--brand-surface, linear-gradient(180deg,#0a295f,#00183a));
  color: #fff;
}
.showcase-section--brand p,
.showcase-section--brand li { color: rgba(255,255,255,.74); }
.showcase-section--brand .showcase-kicker,
.showcase-section--ink .showcase-kicker { color: rgba(255,255,255,.66); }
.showcase-centered {
  text-align: center;
  display: grid;
  gap: 18px;
}
.showcase-centered > * {
  max-width: min(980px, 100%);
  margin-inline: auto;
}
.showcase-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: color-mix(in srgb, var(--brand-accent, #0071e3) 64%, #4d4d52);
}
.showcase-section h2,
.showcase-section h3 {
  color: inherit;
  letter-spacing: -.065em;
}
.showcase-section p { color: color-mix(in srgb, currentColor 56%, transparent); }
.showcase-figure {
  margin-top: 28px;
  display: grid;
  place-items: center;
}
.showcase-figure img {
  max-width: min(1100px, 100%);
  width: 100%;
  height: auto;
}
.showcase-figure--stage {
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(237,239,244,.96));
  padding: clamp(18px, 3vw, 38px);
}
.showcase-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.showcase-split--reverse .showcase-split__copy { order: 2; }
.showcase-split--reverse .showcase-split__media { order: 1; }
.showcase-split__copy {
  display: grid;
  gap: 18px;
  align-content: center;
}
.showcase-split__copy > p,
.showcase-split__copy > ul { max-width: 62ch; }
.showcase-split__stack {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
.showcase-split__stack div {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(29,29,31,.12);
}
.showcase-section--ink .showcase-split__stack div,
.showcase-section--brand .showcase-split__stack div {
  border-top-color: rgba(255,255,255,.14);
}
.showcase-split__stack strong { font-size: 1rem; letter-spacing: -.03em; }
.showcase-split__stack span { font-size: .92rem; line-height: 1.55; }
.showcase-split__media {
  position: relative;
  overflow: clip;
}
.showcase-split__media img,
.showcase-split__media video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.showcase-media-cover {
  position: relative;
  min-height: clamp(420px, 68vw, 760px);
  overflow: clip;
}
.showcase-media-cover img,
.showcase-media-cover video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-media-cover__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.74), rgba(0,0,0,.28) 56%, rgba(0,0,0,.08));
}
.showcase-media-cover__content {
  position: absolute;
  left: max(24px, calc((100vw - var(--ms-shell)) / 2));
  bottom: clamp(28px, 6vw, 52px);
  z-index: 1;
  display: grid;
  gap: 14px;
  max-width: min(560px, 82vw);
  color: #fff;
}
.showcase-media-cover__content p { color: rgba(255,255,255,.82); }
.showcase-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.showcase-feature-row--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.showcase-feature {
  display: grid;
  gap: 16px;
  align-content: start;
}
.showcase-feature__media {
  overflow: clip;
  background: color-mix(in srgb, currentColor 4%, transparent);
}
.showcase-feature__media img,
.showcase-feature__media video {
  width: 100%;
  height: auto;
  display: block;
}
.showcase-feature__copy {
  display: grid;
  gap: 8px;
}
.showcase-feature__copy h3 { font-size: clamp(1.18rem, 2vw, 1.5rem); }
.showcase-feature__copy p { font-size: .95rem; }
.showcase-poster-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.showcase-poster {
  display: grid;
  gap: 10px;
}
.showcase-poster img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  display: block;
}
.showcase-poster span {
  font-size: .9rem;
  line-height: 1.35;
  color: inherit;
}
.showcase-spec-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.14);
  margin-top: 32px;
}
.showcase-section--light .showcase-spec-row,
.showcase-section--white .showcase-spec-row {
  background: rgba(29,29,31,.12);
}
.showcase-spec {
  padding: 26px 20px;
  text-align: center;
  background: transparent;
}
.showcase-section--light .showcase-spec,
.showcase-section--white .showcase-spec {
  background: transparent;
}
.showcase-spec strong {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -.05em;
}
.showcase-spec span {
  display: block;
  margin-top: 8px;
  font-size: .9rem;
  line-height: 1.5;
  color: color-mix(in srgb, currentColor 58%, transparent);
}
.showcase-edition-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: end;
}
.showcase-edition {
  display: grid;
  gap: 18px;
  align-content: start;
  justify-items: center;
  text-align: center;
}
.showcase-edition img {
  width: min(100%, 360px);
  height: auto;
}
.showcase-edition p {
  max-width: 42ch;
  margin-inline: auto;
}
.showcase-edition-note {
  text-align: center;
  margin-top: 18px;
  font-size: .84rem;
  color: var(--ms-soft);
}
.showcase-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  background: #fff;
  border-top: 1px solid rgba(29,29,31,.12);
  border-bottom: 1px solid rgba(29,29,31,.12);
}
.showcase-offer__copy {
  padding: clamp(34px, 5vw, 56px);
  display: grid;
  gap: 18px;
}
.showcase-offer__copy p { max-width: 62ch; }
.showcase-offer__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}
.showcase-offer__meta div {
  padding-top: 14px;
  border-top: 1px solid rgba(29,29,31,.12);
}
.showcase-offer__meta span {
  display: block;
  font-size: .84rem;
  color: var(--ms-soft);
}
.showcase-offer__meta strong {
  display: block;
  margin-top: 6px;
  font-size: 1.02rem;
  letter-spacing: -.03em;
  color: var(--ms-ink);
}
.showcase-offer__side {
  padding: clamp(30px, 4vw, 46px);
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand-accent, #0071e3) 16%, #fff), #fff);
  display: grid;
  align-content: center;
  gap: 14px;
}
.showcase-offer__side strong {
  font-size: 1.28rem;
  letter-spacing: -.05em;
  color: var(--ms-ink);
}
.showcase-offer__side ul { line-height: 1.75; color: var(--ms-soft); }
.showcase-offer__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.showcase-note { font-size: .84rem; color: var(--ms-soft); }
.showcase-faq {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(29,29,31,.12);
}
.showcase-faq details {
  border-bottom: 1px solid rgba(29,29,31,.12);
  padding: 22px 0;
}
.showcase-faq summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.03em;
  color: var(--ms-ink);
}
.showcase-faq summary::-webkit-details-marker { display: none; }
.showcase-faq summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--ms-soft);
}
.showcase-faq details[open] summary::after { content: '−'; }
.showcase-faq p { margin-top: 12px; max-width: 64ch; color: var(--ms-soft); }
.showcase-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.showcase-related a {
  display: grid;
  gap: 14px;
  color: inherit;
}
.showcase-related img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.showcase-related strong {
  font-size: 1.08rem;
  letter-spacing: -.04em;
}
.showcase-related span {
  color: var(--ms-soft);
  font-size: .92rem;
  line-height: 1.5;
}
.showcase-home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  background: #000;
  color: #fff;
  overflow: clip;
}
.showcase-home-hero__grid {
  position: relative;
  z-index: 1;
  width: var(--ms-shell);
  min-height: calc(100vh - var(--header-h));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  gap: 42px;
  align-items: center;
  padding: 64px 0 56px;
}
.showcase-home-hero__bg,
.showcase-home-hero__bg img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.showcase-home-hero__bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.52) 44%, rgba(0,0,0,.18) 100%);
}
.showcase-home-hero__copy { display:grid; gap:22px; position:relative; z-index:1; }
.showcase-home-hero__copy > * { max-width: min(690px, 88vw); }
.showcase-home-hero__copy h1 { font-size: clamp(3.1rem, 7.2vw, 6.4rem); line-height: .92; }
.showcase-home-hero__copy p { color: rgba(255,255,255,.82); font-size: 1.06rem; }
.showcase-home-hero__visual { position:relative; min-height: 640px; }
.showcase-home-stage {
  position: absolute;
  inset: 8% 0 6% 8%;
  display: grid;
  place-items: center;
}
.showcase-home-stage__plate {
  position: absolute;
  inset: 12% 0 0 8%;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,.16), rgba(255,255,255,.02) 46%, transparent 64%);
}
.showcase-home-stage__ps { position:absolute; width:min(40vw, 520px); left:0; top:18%; z-index:2; }
.showcase-home-stage__xb { position:absolute; width:min(24vw, 280px); left:32%; bottom:6%; z-index:3; }
.showcase-home-stage__sw { position:absolute; width:min(26vw, 300px); right:0; bottom:12%; z-index:4; }
.showcase-home-stage img { width:100%; height:auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.34)); }
.showcase-home-strip {
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:18px;
}
.showcase-home-strip__item { display:grid; gap:12px; }
.showcase-home-strip__item img { width:100%; display:block; }
.showcase-home-strip__item p { color: var(--ms-soft); font-size:.94rem; line-height:1.55; }
.showcase-home-lines {
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:0; border-top:1px solid rgba(29,29,31,.12); border-bottom:1px solid rgba(29,29,31,.12);
}
.showcase-home-lines article { padding:26px 24px 28px; border-right:1px solid rgba(29,29,31,.12); display:grid; gap:10px; }
.showcase-home-lines article:last-child { border-right:0; }
.showcase-home-lines strong { font-size:1.06rem; letter-spacing:-.04em; color:var(--ms-ink); }
.showcase-home-lines p { color: var(--ms-soft); font-size:.95rem; }
.showcase-compact-cta { display:flex; gap:12px; flex-wrap:wrap; }
.showcase-subtitle { font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.55; color: color-mix(in srgb, currentColor 58%, transparent); }
.showcase-anchor-offset { scroll-margin-top: calc(var(--header-h) + 56px); }

.ps5-showcase { --brand-accent: #0a84ff; --brand-surface: linear-gradient(180deg, #082b74 0%, #031941 58%, #02060d 100%); }
.xbox-showcase { --brand-accent: #9bf00b; --brand-surface: linear-gradient(180deg, #101913 0%, #09100d 40%, #020202 100%); }
.switch-showcase { --brand-accent: #0a84ff; --brand-surface: linear-gradient(180deg, #0b1728 0%, #12253d 40%, #02060d 100%); }

@media (max-width: 1200px) {
  .showcase-home-hero__grid,
  .showcase-split,
  .showcase-offer,
  .showcase-edition-compare,
  .showcase-feature-row,
  .showcase-feature-row--4,
  .showcase-poster-row,
  .showcase-home-strip,
  .showcase-home-lines,
  .showcase-related,
  .showcase-stat-row,
  .showcase-spec-row { grid-template-columns: 1fr; }
  .showcase-home-hero__visual { min-height: 420px; }
  .showcase-home-stage { inset: 0; }
  .showcase-home-stage__ps { width:min(58vw, 440px); left: 4%; top: 10%; }
  .showcase-home-stage__xb { width:min(30vw, 230px); left: 34%; bottom: 4%; }
  .showcase-home-stage__sw { width:min(34vw, 250px); right: 2%; bottom: 9%; }
  .showcase-hero__product { width:min(48vw, 620px); }
}
@media (max-width: 980px) {
  .product-subnav { display:none; }
  .showcase-hero { min-height: auto; }
  .showcase-hero__content,
  .showcase-home-hero__grid { min-height: auto; padding: 80px 0 56px; }
  .showcase-home-hero__grid { grid-template-columns: 1fr; }
  .showcase-home-hero__visual { min-height: 360px; }
  .showcase-hero__product { position: relative; right: auto; bottom: auto; width:min(86vw, 560px); margin: 18px 0 0; }
  .showcase-hero__product--float { display:none; }
}
@media (max-width: 720px) {
  :root { --ms-shell: calc(100vw - 24px); }
  .showcase-hero__content,
  .showcase-home-hero__grid { padding: 64px 0 44px; }
  .showcase-hero h1,
  .showcase-home-hero__copy h1 { font-size: clamp(2.5rem, 13vw, 4.1rem); }
  .showcase-stat-row { gap: 12px; }
  .showcase-home-stage__ps { width: 68vw; }
  .showcase-home-stage__xb { width: 34vw; left: 40%; }
  .showcase-home-stage__sw { width: 40vw; }
  .showcase-media-cover { min-height: 360px; }
  .showcase-media-cover__content { left: 18px; right: 18px; max-width: calc(100% - 36px); }
}
