:root {
  color-scheme: dark;
  --font-body: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", "Adobe Caslon Pro", Georgia, serif;
  --bg: #050505;
  --bg-soft: #111214;
  --panel: rgba(17, 17, 19, 0.9);
  --panel-strong: rgba(22, 22, 24, 0.98);
  --panel-light: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  --text: #f6f2f1;
  --muted: #d3cdcb;
  --dim: #97908f;
  --silver: #fff8f6;
  --silver-soft: #d7d0ce;
  --red: #ff3b30;
  --red-deep: #9e1111;
  --gold: #ff4d3d;
  --violet: #1c1c1f;
  --google-a: #4dabff;
  --google-b: #37d67a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.52);
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 59, 48, 0.18), transparent 22rem),
    radial-gradient(circle at 82% 4%, rgba(255, 255, 255, 0.07), transparent 20rem),
    linear-gradient(180deg, #191919 0%, #080808 30%, #111111 100%);
  color: var(--text);
}

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

a,
button {
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    opacity 160ms ease;
}

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

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 59, 48, 0.12), transparent 24rem),
    radial-gradient(circle at 78% 10%, rgba(255, 255, 255, 0.06), transparent 18rem),
    radial-gradient(circle at 60% 58%, rgba(255, 59, 48, 0.05), transparent 26rem);
}

.site-header,
.hero,
.section,
.site-footer {
  width: min(1220px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 12px 30px rgba(0, 0, 0, 0.28);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-rendering: optimizeLegibility;
}

.brand-copy strong {
  color: var(--silver);
  font-size: 24px;
}

.brand-copy span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.nav-item {
  position: relative;
}

.nav-item-menu {
  display: inline-flex;
  align-items: center;
}

.nav-item-menu > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-item-menu > a::after {
  content: "▾";
  font-size: 11px;
  color: var(--dim);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  padding: 10px;
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(11, 11, 13, 0.98);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.nav-item-menu:hover .nav-menu,
.nav-item-menu:focus-within .nav-menu,
.nav-item-menu.is-open .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
}

.nav-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--silver);
}

nav a:hover,
nav a[aria-current="page"],
.footer-links a:hover,
.text-link:hover,
.support-links a:hover {
  color: var(--silver);
}

.header-cta,
.button,
.store-button,
.store-button-disabled {
  min-height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.header-cta,
.button {
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.header-cta,
.button-primary {
  background: linear-gradient(180deg, #ff5b4a 0%, #c91414 100%);
  color: white;
  box-shadow: 0 18px 40px rgba(255, 59, 48, 0.28);
}

.button-secondary,
.button-neutral {
  background: linear-gradient(180deg, rgba(58, 58, 61, 0.92), rgba(31, 31, 34, 0.92));
  color: var(--silver);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-ghost {
  background: rgba(18, 18, 20, 0.72);
  color: var(--silver-soft);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-disabled {
  opacity: 0.7;
  cursor: default;
  box-shadow: none;
}

.button-disabled:hover {
  transform: none;
}

.header-cta:hover,
.button:hover,
.store-button:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.hero {
  padding-block: 54px 74px;
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  gap: 28px;
  align-items: start;
}

.hero-copy {
  max-width: 690px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.hero-copy > .eyebrow {
  width: 100%;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(88px, 16vw, 168px);
  line-height: 0.88;
  color: var(--red);
  text-shadow:
    0 4px 0 rgba(0, 0, 0, 0.85),
    0 0 26px rgba(244, 55, 45, 0.22);
}

.hero-logo {
  width: min(100%, 900px);
  height: auto;
  display: block;
  margin-top: 2px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.42));
}

.hero-title-logo {
  margin: 0;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-shadow: none;
}

.hero-tagline {
  margin: 10px 0 0;
  color: var(--silver);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
}

.hero-summary,
.panel-card p,
.feature-card p,
.story-lane p,
.mini-card p,
.timeline-card p,
.profile-card p,
.glossary-card p,
.support-card p,
.buy-card p,
.rail-card p {
  color: var(--muted);
  line-height: 1.58;
}

.hero-summary {
  max-width: 580px;
  margin: 0;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.48;
}

.hero-actions,
.footer-links,
.tag-row,
.support-links,
.slide-actions,
.buy-action-row,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 4px;
}

.quick-buy-grid,
.panel-grid,
.feature-layout,
.story-lane,
.profile-grid,
.glossary-grid,
.support-grid,
.buy-layout {
  display: grid;
  gap: 18px;
}

.quick-buy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 8px;
}

.quick-buy-card,
.panel-card,
.feature-card,
.story-card,
.timeline-card,
.profile-card,
.glossary-card,
.support-card,
.buy-card,
.rail-card,
.carousel,
.page-banner {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--panel);
  box-shadow: var(--shadow);
}

.quick-buy-card,
.panel-card,
.feature-card,
.story-card,
.timeline-card,
.profile-card,
.glossary-card,
.support-card,
.buy-card,
.rail-card,
.page-banner {
  padding: 24px;
}

.profile-card {
  display: grid;
  align-content: start;
}

.profile-card .button {
  margin-top: 14px;
  width: fit-content;
}

.team-member-hero-layout,
.team-showcase-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.team-member-hero-copy,
.team-showcase-copy,
.team-process-copy {
  min-width: 0;
}

.team-member-hero-copy p:last-child,
.team-showcase-copy p:last-child,
.team-process-copy p:last-child {
  margin-bottom: 0;
}

.team-member-hero-figure,
.team-showcase-image,
.team-process-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 12, 0.92);
}

.team-member-hero-figure img,
.team-showcase-image img,
.team-process-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-member-hero-figure img {
  aspect-ratio: 1 / 1;
}

.team-showcase-stack {
  display: grid;
  gap: 18px;
}

.team-showcase-feature-reverse {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.team-showcase-feature-reverse .team-showcase-image {
  order: 1;
}

.team-showcase-feature-reverse .team-showcase-copy {
  order: 2;
}

.team-showcase-image img {
  aspect-ratio: 4 / 5;
}

.team-process-card {
  display: grid;
  gap: 20px;
}

.team-process-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.team-process-shot img {
  aspect-ratio: 16 / 10;
}

.card-kicker,
.slide-tag,
.mini-kicker,
.timeline-card strong,
.profile-meta,
.glossary-key {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-buy-card h2,
.section-heading h2,
.panel-card h3,
.feature-card h3,
.story-card h3,
.timeline-card h3,
.profile-card h3,
.glossary-card h3,
.support-card h3,
.buy-card h3,
.rail-card h3,
.slide-copy h2,
.page-banner h1 {
  margin: 10px 0 12px;
  color: var(--silver);
  font-size: clamp(22px, 2.2vw, 36px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0.005em;
}

.quick-buy-card h2 {
  font-size: 24px;
}

.quick-buy-card p {
  font-size: 15px;
  line-height: 1.5;
}

.section-heading h2 {
  font-size: clamp(20px, 2vw, 30px);
}

.live-snapshot > .snapshot-heading h2,
.snapshot-heading h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.1;
}

.panel-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
}

.feature-card-large {
  min-height: 280px;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.tag {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--silver-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.carousel-shell {
  min-width: 0;
}

.carousel {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  min-height: 760px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  padding: 26px;
  display: grid;
  align-items: end;
  opacity: 0;
  pointer-events: none;
  transform: translateX(4%);
  transition: opacity 220ms ease, transform 220ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.slide-visual-link {
  display: block;
}

.slide-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.slide-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.1), rgba(5, 7, 11, 0.88)),
    radial-gradient(circle at center, transparent 36%, rgba(109, 79, 214, 0.08));
}

.slide-visual-alt {
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 198, 106, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(18, 15, 8, 0.96), rgba(12, 13, 18, 0.96));
}

.slide-visual-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(240, 198, 106, 0.14), transparent 20rem),
    linear-gradient(180deg, rgba(17, 19, 28, 0.98), rgba(10, 11, 16, 0.98));
}

.info-poster {
  position: absolute;
  inset: 36px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(15, 15, 17, 0.8);
}

.info-poster-link:hover,
.slide-visual-link:hover img {
  transform: scale(1.015);
}

.info-poster span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-poster strong {
  color: var(--silver);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.98;
}

.info-poster p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.slide-copy {
  position: relative;
  z-index: 1;
  max-width: 380px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(12, 12, 14, 0.5);
  backdrop-filter: blur(18px);
}

.slide-copy h2 {
  font-size: clamp(22px, 2vw, 30px);
}

.slide-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.carousel-arrow {
  position: absolute;
  top: 24px;
  width: 54px;
  height: 54px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 11, 16, 0.72);
  color: var(--silver);
}

.carousel-arrow-left {
  left: 24px;
}

.carousel-arrow-right {
  right: 24px;
}

.carousel-arrow span {
  font-size: 32px;
  line-height: 1;
}

.carousel-dots {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.carousel-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
}

.carousel-dot.is-active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 18px rgba(244, 55, 45, 0.34);
}

.section {
  padding-block: 28px 34px;
}

.ticker-shell {
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 24px;
}

.ticker-window {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.ticker-column {
  display: grid;
  gap: 16px;
  animation: ticker-scroll 18s linear infinite;
}

.ticker-card {
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
}

.ticker-card h3 {
  margin: 10px 0 8px;
  color: var(--silver);
  font-size: clamp(1.15rem, 1.8vw, 1.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.ticker-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin-top: 10px;
}

.store-stack {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.store-button,
.store-button-disabled {
  width: 100%;
  padding: 6px;
  justify-content: flex-start;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
}

.store-button-amazon {
  border-color: rgba(244, 167, 30, 0.35);
  background: linear-gradient(135deg, rgba(244, 167, 30, 0.1), rgba(255, 255, 255, 0.04));
}

.store-button-google {
  border-color: rgba(77, 171, 255, 0.28);
  background: linear-gradient(135deg, rgba(77, 171, 255, 0.12), rgba(55, 214, 122, 0.08));
}

.store-button-neutral,
.store-button-disabled {
  border-color: rgba(255, 255, 255, 0.12);
}

.store-badge {
  min-width: 96px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.store-button-amazon .store-badge {
  background: linear-gradient(180deg, #f7a62f, #c96c10);
}

.store-button-google .store-badge {
  background: linear-gradient(135deg, var(--google-a), var(--google-b));
}

.store-button-neutral .store-badge,
.store-button-disabled .store-badge {
  background: linear-gradient(180deg, #434855, #232835);
}

.store-copy {
  display: grid;
  gap: 2px;
  padding: 0 14px;
}

.store-copy strong {
  color: var(--silver);
  font-size: 14px;
}

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

.store-button-disabled {
  cursor: default;
  opacity: 0.78;
}

.page-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 18px;
  align-items: end;
  margin-top: 54px;
}

.page-banner h1 {
  font-size: clamp(42px, 6vw, 68px);
}

.page-banner p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.56;
}

.page-banner .banner-aside {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.page-banner .banner-aside strong {
  display: block;
  color: var(--silver);
  font-size: 22px;
}

.page-banner-wide {
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.page-banner-wide > div {
  width: 100%;
}

.page-banner-wide p {
  max-width: none;
}

.buy-layout {
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.5fr) minmax(250px, 0.8fr);
  align-items: start;
}

.buy-storefront {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.5fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.buy-card-sticky {
  position: sticky;
  top: 118px;
}

.buy-heading {
  max-width: 940px;
}

.buy-heading h2 {
  max-width: 860px;
}

.buy-heading p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
}

.buy-feature-panel {
  min-height: 720px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.buy-cover-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(13, 13, 15, 0.92);
  color: var(--dim);
  text-align: center;
  padding: 20px;
}

.buy-cover-placeholder span {
  max-width: 160px;
  line-height: 1.4;
}

.feature-status-pill {
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--silver-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-footnote {
  margin: 0;
  color: var(--dim);
  font-size: 14px;
  line-height: 1.5;
}

.buy-feature-cover {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(10, 10, 12, 0.92);
}

.buy-feature-cover img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
}

.issue-ticker-shell {
  min-width: 0;
  min-height: 720px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: var(--shadow);
}

.issue-ticker-header {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.issue-ticker-header .eyebrow {
  margin-bottom: 0;
}

.issue-ticker-header h2 {
  margin: 0;
  color: var(--silver);
  font-size: clamp(28px, 3.2vw, 40px);
}

.issue-ticker-header p:last-child {
  margin: 0;
  color: var(--dim);
  font-size: 14px;
}

.issue-ticker-window {
  height: 620px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.issue-ticker-window::-webkit-scrollbar {
  width: 8px;
}

.issue-ticker-window::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.issue-ticker-list {
  display: grid;
  gap: 12px;
}

.issue-strip {
  padding: 16px 18px 16px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    rgba(14, 14, 16, 0.96);
}

.issue-strip-copy {
  min-width: 0;
}

.issue-strip-copy .card-kicker {
  margin-bottom: 8px;
}

.issue-strip h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.14;
}

.issue-strip p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.mini-store-stack {
  display: grid;
  gap: 8px;
  justify-items: end;
  align-content: center;
}

.mini-store-stack-block {
  justify-items: stretch;
}

.mini-store-button {
  min-width: 104px;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.mini-store-button-amazon {
  background: linear-gradient(180deg, #f7a62f, #c96c10);
}

.mini-store-button-google {
  background: linear-gradient(135deg, var(--google-a), var(--google-b));
}

.mini-store-button-neutral {
  background: linear-gradient(180deg, rgba(76, 76, 82, 0.96), rgba(32, 32, 36, 0.96));
}

.mini-store-button:hover {
  transform: translateY(-1px);
}

.buy-bottom-banner {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.buy-bottom-copy {
  max-width: 760px;
}

.buy-bottom-copy h3 {
  margin-bottom: 10px;
}

.buy-bottom-copy p {
  margin: 0;
}

.issue-rail-shell {
  min-width: 0;
}

.issue-rail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.issue-rail-header h2 {
  margin: 0;
  color: var(--silver);
  font-size: 42px;
}

.issue-rail-controls {
  display: flex;
  gap: 10px;
}

.rail-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--silver);
}

.issue-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.issue-rail::-webkit-scrollbar {
  height: 8px;
}

.issue-rail::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.rail-card {
  scroll-snap-align: start;
}

.rail-card .store-stack {
  margin-top: 16px;
}

.availability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.availability-pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--silver-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.story-lane {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-reader-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: start;
}

.reader-sidebar,
.reader-content {
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  padding: 24px;
}

.reader-sidebar h3,
.reader-content h2 {
  margin: 10px 0 12px;
  color: var(--silver);
}

.reader-nav {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.reader-link {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.reader-link.is-current,
.reader-link:hover {
  color: var(--silver);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.language-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.language-pill {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--silver-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.language-pill.is-current {
  color: var(--silver);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.reader-content h2 {
  font-size: clamp(38px, 4vw, 62px);
}

.reader-meta {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reader-copy p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.82;
}

.reader-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--dim);
  font-size: 14px;
  line-height: 1.6;
}

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

.support-feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 18px;
}

.support-side-stack {
  display: grid;
  gap: 18px;
}

.support-card-feature {
  min-height: 0;
}

.playlist-list {
  display: grid;
  gap: 14px;
  max-height: none;
  overflow: visible;
  margin-top: 18px;
  padding-right: 0;
}

.playlist-list::-webkit-scrollbar {
  width: 8px;
}

.playlist-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.playlist-item {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.playlist-item strong {
  color: var(--silver);
  font-size: 18px;
}

.playlist-item span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.playlist-player {
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #2b2b2f;
  overflow: hidden;
  position: relative;
}

.playlist-player::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.18) 0 4px,
      transparent 4px 14px
    );
  mask:
    radial-gradient(circle at 10% 50%, black 0 32%, transparent 32.5%),
    linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  opacity: 0.38;
  pointer-events: none;
}

.player-cover,
.player-body {
  position: relative;
  z-index: 1;
}

.player-cover {
  width: 100%;
  max-width: 210px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.player-body {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.player-meta strong {
  display: block;
  color: var(--silver);
  font-size: 28px;
  line-height: 1;
}

.player-meta span {
  display: block;
  margin-top: 8px;
  color: rgba(245, 241, 235, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.player-bar-wrap {
  display: grid;
  grid-template-columns: 56px 58px minmax(0, 1fr) 58px 56px 76px;
  align-items: center;
  gap: 14px;
}

.player-jump {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 3px solid rgba(255, 255, 255, 0.92);
  background: rgba(20, 20, 22, 0.52);
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.player-time {
  color: white;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.player-wave {
  position: relative;
  width: 100%;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  appearance: none;
  cursor: pointer;
}

.player-wave::before {
  content: "";
  position: absolute;
  inset: -46px 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.35) 0 3px,
      transparent 3px 12px
    );
  opacity: 0.4;
}

.player-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 42%;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.88);
}

.player-play {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  background: white;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.player-play span {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #0b0d12;
  margin-left: 5px;
}

.player-play.is-playing span {
  width: 18px;
  height: 24px;
  border: 0;
  margin-left: 0;
  background:
    linear-gradient(
      90deg,
      #0b0d12 0 34%,
      transparent 34% 66%,
      #0b0d12 66% 100%
    );
}

.playlist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.playlist-button {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--silver);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.playlist-button-buy {
  background: linear-gradient(180deg, #ff5c4c 0%, #c91616 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 14px 28px rgba(255, 59, 48, 0.24);
}

.playlist-item-note {
  background: rgba(255, 255, 255, 0.02);
}

.social-icon-row {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(33, 33, 36, 0.9);
  color: var(--silver);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.timeline-card strong {
  margin-bottom: 8px;
}

.profile-grid,
.glossary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-card h3,
.glossary-card h3,
.support-card h3,
.buy-card h3,
.rail-card h3,
.story-card h3,
.timeline-card h3,
.feature-card h3,
.panel-card h3 {
  font-size: 24px;
}

.profile-meta {
  margin-bottom: 10px;
}

.glossary-key {
  margin-bottom: 10px;
}

.character-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.character-directory-card,
.character-hero-card,
.character-copy-section,
.character-side-card,
.character-soundtrack-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.character-directory-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 18px;
  border-radius: 28px;
}

.character-directory-art {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.character-directory-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.character-directory-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.character-page-stack {
  display: grid;
  gap: 14px;
}

.character-hero-card,
.character-copy-section,
.character-side-card,
.character-soundtrack-shell {
  border-radius: 30px;
}

.character-hero-card {
  width: min(980px, 100%);
  margin-inline: auto;
  padding: 22px 28px;
}

.character-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 210px);
  gap: 20px;
  align-items: center;
}

.character-hero-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  max-width: 620px;
}

.character-hero-copy .eyebrow {
  margin: 0;
}

.character-hero-copy h1 + .character-dek {
  margin-top: 2px;
}

.character-hero-copy h1 {
  margin: 0;
  color: var(--silver);
  font-size: clamp(2.7rem, 4.8vw, 4.15rem);
  line-height: 0.92;
}

.character-dek {
  margin: 0;
  max-width: 28ch;
  color: rgba(245, 241, 235, 0.88);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.58;
}

.character-facts-grid {
  display: none;
}

.character-fact {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.character-fact span {
  color: var(--dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.character-fact strong {
  color: var(--silver);
  font-size: 1rem;
}

.character-portrait {
  width: min(100%, 220px);
  overflow: hidden;
  justify-self: end;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(255, 72, 54, 0.18), transparent 58%),
    rgba(8, 10, 15, 0.96);
  display: grid;
  place-items: center;
}

.character-portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.22);
}

.character-portrait-placeholder {
  padding: 18px;
}

.character-art-placeholder {
  width: 100%;
  height: 100%;
  min-height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(12, 14, 18, 0.88);
  text-align: center;
}

.character-art-placeholder strong {
  color: var(--silver);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.character-art-placeholder span {
  color: var(--dim);
  font-size: 0.95rem;
}

.character-art-placeholder-tall {
  min-height: 280px;
}

.character-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.84fr);
  gap: 18px;
  align-items: start;
}

.character-article-main,
.character-article-side {
  display: grid;
  gap: 18px;
}

.character-copy-section,
.character-side-card {
  padding: 24px;
}

.character-copy-section h2,
.character-side-card h3 {
  margin: 0 0 12px;
  color: var(--silver);
}

.character-copy-section p,
.character-side-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.78;
}

.character-copy-section p + p,
.character-side-card p + p {
  margin-top: 14px;
}

.character-link-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.character-soundtrack-shell {
  width: min(920px, 100%);
  margin-inline: auto;
  padding: 10px 12px 8px;
}

.character-soundtrack-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 6px;
}

.character-soundtrack-library {
  display: grid;
  gap: 12px;
  margin-top: 0;
  max-height: 112px;
  overflow-y: auto;
  padding-right: 6px;
  scroll-snap-type: y proximity;
}

.character-soundtrack-library::-webkit-scrollbar {
  width: 8px;
}

.character-soundtrack-library::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.character-soundtrack-player {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1.1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(14, 16, 22, 0.94);
  overflow: hidden;
  scroll-snap-align: start;
}

.character-soundtrack-copy {
  min-width: 0;
}

.character-soundtrack-topline {
  display: block;
  color: var(--dim);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.character-soundtrack-copy strong {
  display: block;
  margin-top: 3px;
  color: var(--silver);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
}

.character-soundtrack-bar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
}

.character-soundtrack-time {
  color: rgba(245, 241, 235, 0.86);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.character-soundtrack-wave {
  height: 10px;
}

.character-soundtrack-wave::before {
  inset: -34px 0;
}

.character-soundtrack-toggle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 44px 0 68px;
}

.site-footer p {
  max-width: 650px;
  margin: 0;
  color: var(--dim);
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .hero-home,
  .feature-layout,
  .buy-layout,
  .buy-storefront,
  .character-hero-layout,
  .character-article-layout,
  .team-member-hero-layout,
  .team-showcase-feature,
  .story-reader-layout,
  .support-feature-layout {
    grid-template-columns: 1fr;
  }

  .team-showcase-feature-reverse .team-showcase-image,
  .team-showcase-feature-reverse .team-showcase-copy {
    order: initial;
  }

  .buy-card-sticky {
    position: static;
  }

  .quick-buy-grid,
  .character-directory-grid,
  .panel-grid-three,
  .story-lane,
  .timeline-grid,
  .profile-grid,
  .team-process-gallery,
  .glossary-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(1220px, calc(100% - 24px));
  }

  .site-header {
    border-radius: 28px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px;
  }

  .nav-menu {
    left: 50%;
    transform: translate(-50%, 6px);
  }

  .nav-item-menu:hover .nav-menu,
  .nav-item-menu:focus-within .nav-menu {
    transform: translate(-50%, 0);
  }

  nav {
    justify-content: center;
  }

  .hero {
    padding-block: 32px 54px;
  }

  .quick-buy-grid,
  .character-directory-grid,
  .panel-grid-three,
  .story-lane,
  .timeline-grid,
  .profile-grid,
  .team-process-gallery,
  .glossary-grid,
  .support-grid,
  .page-banner {
    grid-template-columns: 1fr;
  }

  .buy-feature-panel,
  .issue-ticker-shell,
  .buy-bottom-banner {
    min-height: 0;
  }

  .buy-bottom-banner {
    grid-template-columns: 1fr;
  }

  .issue-ticker-window {
    height: 540px;
  }

  .issue-strip {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mini-store-stack {
    justify-items: start;
  }

  .carousel {
    min-height: 680px;
  }

  .carousel-track {
    min-height: 680px;
  }

  .carousel-slide {
    padding: 18px;
  }

  .carousel-arrow {
    top: 18px;
  }

  .slide-copy {
    padding: 18px;
  }

  .issue-rail {
    grid-auto-columns: minmax(260px, 84vw);
  }

  .issue-ticker-window {
    height: 500px;
  }

  .ticker-window {
    height: 280px;
  }

  .playlist-player {
    grid-template-columns: 1fr;
  }

  .character-facts-grid {
    grid-template-columns: 1fr;
  }

  .character-soundtrack-player {
    grid-template-columns: 1fr;
    border-radius: 28px;
    justify-items: center;
    text-align: center;
  }

  .character-soundtrack-bar {
    width: 100%;
  }

  .player-cover {
    max-width: 160px;
  }

  .player-bar-wrap {
    grid-template-columns: 48px 48px minmax(0, 1fr) 48px 48px 64px;
    gap: 10px;
  }

  .player-play {
    width: 60px;
    height: 60px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes ticker-scroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-50% - 8px));
  }
}
