:root {
  --ink: #05090d;
  --ink-soft: #0a1016;
  --panel: #0d141b;
  --bone: #f5efe5;
  --muted: #a5adb6;
  --gold: #f3b74b;
  --gold-dark: #bd7d22;
  --teal: #49d8c7;
  --line: rgba(245, 239, 229, 0.18);
  --line-gold: rgba(243, 183, 75, 0.42);
  --type-modern: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1280px;
}

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

html {
  background: var(--ink);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--type-modern);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }

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

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

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  box-shadow: 0 0 14px rgba(73, 216, 199, 0.5);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(245, 239, 229, 0.08);
  background: rgba(5, 9, 13, 0.82);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(245, 239, 229, 0.14);
  background: rgba(5, 9, 13, 0.94);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  min-height: 44px;
  font-family: var(--type-modern);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand img { border-radius: 9px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
}

.desktop-nav a {
  display: grid;
  place-items: center;
  min-height: 44px;
  color: #d6d1c9;
  font-family: var(--type-modern);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.desktop-nav a:hover { color: var(--gold); }

.desktop-buy { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid #ffd37b;
  border-radius: 7px;
  background: var(--gold);
  color: #171006;
  box-shadow: 0 12px 30px rgba(243, 183, 75, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: #ffd177;
  transform: translateY(-2px);
}

.button:active { transform: translateY(0) scale(0.98); }

.button-small { min-height: 44px; padding-inline: 18px; font-size: 0.8rem; }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink-soft);
  color: var(--bone);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 0;
  padding: calc(96px + env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 85% 12%, rgba(73, 216, 199, 0.1), transparent 30%),
    radial-gradient(circle at 5% 90%, rgba(243, 183, 75, 0.1), transparent 34%),
    var(--ink);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu[hidden] { display: none; }

.mobile-menu nav {
  width: min(100%, 520px);
  margin: 0 auto;
  display: grid;
  gap: 8px;
  counter-reset: mobile-nav;
}

.mobile-menu nav > a:not(.button) {
  min-height: 58px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--type-modern);
  font-size: 1.65rem;
  font-weight: 700;
  counter-increment: mobile-nav;
}

.mobile-menu nav > a:not(.button)::before {
  content: "0" counter(mobile-nav);
  width: 42px;
  color: var(--gold);
  font-family: var(--type-modern);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.mobile-menu:not([hidden]) nav > a { animation: menu-item-in 280ms both; }
.mobile-menu:not([hidden]) nav > a:nth-child(2) { animation-delay: 35ms; }
.mobile-menu:not([hidden]) nav > a:nth-child(3) { animation-delay: 70ms; }
.mobile-menu:not([hidden]) nav > a:nth-child(4) { animation-delay: 105ms; }
.mobile-menu:not([hidden]) nav > a:nth-child(5) { animation-delay: 140ms; }

@keyframes menu-item-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.mobile-menu .button { margin-top: 18px; }

.mobile-buy {
  position: fixed;
  z-index: 40;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: max(12px, env(safe-area-inset-bottom));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(13, 20, 27, 0.92);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-buy.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.mobile-buy img { flex: 0 0 auto; border-radius: 9px; }
.mobile-buy span { display: grid; flex: 1; min-width: 0; line-height: 1.2; }
.mobile-buy strong { font-size: 0.88rem; }
.mobile-buy small { margin-top: 3px; color: var(--muted); font-size: 0.72rem; }

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-media {
  position: absolute;
  z-index: -3;
  inset: 0 0 0 28%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.98) brightness(0.96);
}

.hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0 auto 0 0;
  width: 58%;
  background: rgba(5, 9, 13, 0.94);
  box-shadow: 100px 0 150px 80px rgba(5, 9, 13, 0.88);
}

.hero-hud { display: none; }

.hero-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--gold);
  font-family: var(--type-modern);
  font-size: clamp(0.65rem, 1vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

h1, h2, h3 {
  color: var(--bone);
  font-family: var(--type-modern);
  font-weight: 700;
  letter-spacing: -0.05em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(4rem, 6.6vw, 6.8rem);
  line-height: 0.96;
}

h1 em, h2 em { color: var(--gold); font-style: normal; font-weight: 700; }

.hero-lede {
  max-width: 590px;
  margin-bottom: 32px;
  color: #c1c7cd;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.58;
}

.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--bone);
  font-size: 0.88rem;
  font-weight: 600;
}

.text-link:hover { color: var(--teal); border-color: var(--teal); }

.trust {
  max-width: 680px;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #88919b;
  font-family: var(--type-modern);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  line-height: 1.4;
  list-style: none;
  text-transform: uppercase;
}

.trust li {
  padding: 7px 9px;
  border: 1px solid rgba(245, 239, 229, 0.11);
  border-radius: 999px;
  background: rgba(5, 9, 13, 0.34);
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
  padding-block: clamp(100px, 11vw, 168px);
}

.section-intro { max-width: 780px; margin-bottom: clamp(42px, 6vw, 76px); }

h2 { margin-bottom: 18px; font-size: clamp(2.9rem, 5.2vw, 5.4rem); line-height: 1.02; }

.journey { text-align: center; }
.journey .section-intro { margin-inline: auto; }

.journey-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  align-items: end;
  gap: clamp(12px, 2vw, 26px);
  counter-reset: era-card;
}

.era-card {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  counter-increment: era-card;
}

.era-card::before {
  content: "0" counter(era-card);
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 5px 8px;
  border: 1px solid rgba(245, 239, 229, 0.2);
  border-radius: 999px;
  background: rgba(5, 9, 13, 0.78);
  color: var(--bone);
  font-family: var(--type-modern);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.era-card-featured { border-color: var(--line-gold); transform: translateY(-24px); }

.era-card img { width: 100%; height: 330px; object-fit: cover; object-position: center; }
.era-card-featured img { height: 420px; }

.era-card figcaption {
  min-height: 150px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 8px;
  text-align: left;
}

.era-card strong {
  font-family: var(--type-modern);
  font-size: clamp(1.65rem, 2.7vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.era-card span { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }

.journey-note {
  margin: 48px auto 0;
  color: #77808a;
  font-family: var(--type-modern);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

.carousel-controls {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-hint {
  margin-right: auto;
  color: var(--muted);
  font-family: var(--type-modern);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.carousel-status {
  min-width: 42px;
  color: var(--gold);
  font-family: var(--type-modern);
  font-size: 0.68rem;
  text-align: center;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--bone);
  cursor: pointer;
  font-size: 1.1rem;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.carousel-controls button:active { transform: scale(0.94); }
.carousel-controls button:disabled { opacity: 0.32; cursor: default; }

.joes {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.joe-portrait { position: relative; }

.joe-portrait img {
  width: 100%;
  max-height: 900px;
  object-fit: cover;
  border: 1px solid var(--line-gold);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.48);
}

.art-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 9px;
  background: rgba(5, 9, 13, 0.9);
  color: #c9c1b6;
  font-family: var(--type-modern);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.joe-story > p:not(.eyebrow) { max-width: 570px; color: var(--muted); font-size: 1.04rem; }

.joe-roster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 580px;
  margin-top: 38px;
}

.joe-card {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(13, 20, 27, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.joe-card:nth-child(2) .joe-avatar,
.joe-card:nth-child(3) .joe-avatar { border-color: var(--gold); color: var(--gold); }

.joe-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--teal);
  border-radius: 6px;
  color: var(--teal);
  font-family: var(--type-modern);
  font-weight: 600;
}

.joe-card h3 { margin: 0; color: var(--bone); font-size: 0.92rem; line-height: 1.2; }
.joe-card p { margin: 5px 0 0; color: var(--muted); font-size: 0.71rem; line-height: 1.4; }
.joe-card p strong { color: var(--gold); font-weight: 600; }

blockquote {
  margin: 38px 0 0;
  max-width: 460px;
  color: var(--bone);
  font-family: var(--type-modern);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

blockquote::before { content: "“"; color: var(--gold); }
blockquote::after { content: "”"; color: var(--gold); }

.systems { text-align: center; }
.systems .section-intro { margin-inline: auto; }

.system-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: system-card;
}

.system-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--line-gold);
  background: var(--panel);
  text-align: left;
  counter-increment: system-card;
}

.system-card::before {
  content: "0" counter(system-card);
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  color: rgba(245, 239, 229, 0.8);
  font-family: var(--type-modern);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.system-card img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; filter: brightness(0.72) saturate(0.9); transition: transform 400ms ease, filter 400ms ease; }
.system-card:hover img { transform: scale(1.025); filter: brightness(0.86) saturate(1); }

.system-card > div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 70px 24px 24px;
  background: rgba(5, 9, 13, 0.88);
  box-shadow: 0 -35px 70px rgba(5, 9, 13, 0.9);
}

.system-card h3 { margin: 0; font-size: clamp(1.45rem, 2vw, 1.9rem); letter-spacing: -0.03em; text-transform: uppercase; }
.system-card p { margin: 3px 0 0; color: var(--teal); font-family: var(--type-modern); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

.systems-copy { max-width: 760px; margin: 44px auto 0; color: var(--muted); }

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(48px, 9vw, 130px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.faq h2 { font-size: clamp(3rem, 5vw, 5.2rem); }
.faq-list { border-top: 1px solid var(--line); }

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  color: var(--bone);
  font-family: var(--type-modern);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--gold); font-family: var(--type-modern); font-size: 1.2rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 680px; margin: -6px 42px 28px 0; color: var(--muted); }
.faq-list details[open] p { animation: faq-answer-in 200ms ease both; }

@keyframes faq-answer-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: none; }
}

.final-cta {
  min-height: 660px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.final-mark { filter: drop-shadow(0 18px 42px rgba(243, 183, 75, 0.14)); }
.final-cta h2 { margin-bottom: 34px; }
.final-cta p { margin: 20px 0 0; color: #7f8790; font-family: var(--type-modern); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.08em; }

.footer {
  width: min(var(--max), calc(100% - 48px));
  min-height: 130px;
  margin: 0 auto;
  padding-block: 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.footer nav { display: flex; gap: 24px; }
.footer nav a { color: var(--muted); font-size: 0.78rem; }
.footer nav a:hover { color: var(--gold); }
.footer > p { justify-self: end; margin: 0; color: #68717a; font-family: var(--type-modern); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.06em; }

.reveal { opacity: 1; transform: none; }
.reveal-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity 680ms ease, transform 680ms ease; }
.reveal-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1040px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .desktop-buy { display: none; }
  .menu-button { display: block; }
  .hero-media { left: 18%; }
  .hero-shade { width: 66%; }
  .journey-grid { grid-template-columns: repeat(3, 1fr); }
  .era-card img, .era-card-featured img { height: 300px; }
  .joes { grid-template-columns: 1fr 1fr; gap: 48px; }
  .system-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer { grid-template-columns: 1fr auto; }
  .footer > p { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 780px) {
  html { scroll-padding-top: calc(72px + env(safe-area-inset-top)); }
  body.mobile-buy-visible { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  .site-header {
    position: fixed;
    padding-top: env(safe-area-inset-top);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    background: rgba(5, 9, 13, 0.94);
    backdrop-filter: none;
  }
  .nav-shell { width: min(100% - 32px, var(--max)); min-height: 68px; }
  .brand img { width: 34px; height: 34px; }
  .mobile-buy { display: flex; }
  .hero { min-height: max(640px, 100svh); align-items: end; }
  .hero-media { inset: 0; }
  .hero-media img { object-position: 50% 40%; opacity: 0.82; filter: none; }
  .hero-shade {
    inset: 0;
    width: auto;
    height: auto;
    background: linear-gradient(to bottom, rgba(5, 9, 13, 0.08) 12%, rgba(5, 9, 13, 0.26) 38%, rgba(5, 9, 13, 0.96) 75%, var(--ink) 100%);
    box-shadow: none;
  }
  .hero-hud {
    position: absolute;
    z-index: 1;
    top: calc(86px + env(safe-area-inset-top));
    left: 16px;
    right: 16px;
    min-height: 38px;
    padding: 8px 11px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(245, 239, 229, 0.16);
    border-radius: 9px;
    background: rgba(5, 9, 13, 0.68);
    color: #d7dce0;
    font-family: var(--type-modern);
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  .hero-hud i { flex: 1; height: 1px; background: var(--line); }
  .hero-hud strong { color: var(--gold); font-weight: 600; }
  .live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(73, 216, 199, 0.12), 0 0 16px rgba(73, 216, 199, 0.7);
    animation: live-pulse 2.2s ease-in-out infinite;
  }
  .hero-inner { width: min(100% - 32px, var(--max)); padding: 170px 0 44px; }
  .eyebrow { font-size: 0.7rem; }
  h1 { max-width: 9.5ch; font-size: clamp(3.05rem, 12vw, 4.8rem); }
  .hero-lede { max-width: 42rem; }
  .section { width: min(100% - 32px, var(--max)); padding-block: 82px; }
  h2 { max-width: 14ch; font-size: clamp(2.65rem, 9.5vw, 4.35rem); }
  .journey-grid,
  .system-grid {
    width: calc(100% + 32px);
    margin-inline: -16px;
    padding: 4px 16px 18px;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
  }
  .journey-grid::-webkit-scrollbar,
  .system-grid::-webkit-scrollbar { display: none; }
  .journey-grid { grid-auto-columns: min(84vw, 380px); gap: 14px; }
  .system-grid { grid-auto-columns: min(82vw, 360px); gap: 12px; }
  .era-card,
  .system-card { scroll-snap-align: start; scroll-snap-stop: always; }
  .era-card-featured { transform: none; }
  .era-card { overflow: hidden; border-radius: 13px; box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28); }
  .era-card img, .era-card-featured img { height: 280px; max-height: none; }
  .era-card figcaption { min-height: auto; padding: 22px; }
  .carousel-controls { display: flex; }
  .journey-note { display: none; }
  .joes { grid-template-columns: 1fr; }
  .joe-story { display: contents; }
  .joe-story > .eyebrow { order: 1; margin-bottom: 10px; }
  .joe-story > h2 { order: 2; }
  .joe-story > p:not(.eyebrow) { order: 3; margin-bottom: 28px; }
  .joe-portrait { order: 4; max-width: 620px; margin-inline: auto; }
  .joe-roster { order: 5; width: 100%; max-width: 620px; margin-top: 6px; }
  blockquote { order: 6; }
  .system-card,
  .system-card img { min-height: 380px; border-radius: 13px; }
  .system-card img { filter: brightness(0.76) saturate(0.92); }
  .system-card > div { box-shadow: none; background: linear-gradient(to top, rgba(5, 9, 13, 0.96), rgba(5, 9, 13, 0.62) 72%, transparent); }
  .system-card p { font-size: 0.72rem; }
  .art-label { font-size: 0.64rem; }
  .faq { grid-template-columns: 1fr; gap: 24px; }
  .footer { grid-template-columns: 1fr; justify-items: start; }
  .footer nav { flex-wrap: wrap; }
  .footer nav a { min-height: 44px; display: inline-flex; align-items: center; }
  .footer > p { justify-self: start; }
  .final-cta p,
  .footer > p { font-size: 0.68rem; line-height: 1.6; }
}

@media (max-width: 560px) {
  .mobile-buy { gap: 10px; padding-left: 10px; }
  .mobile-buy img { width: 38px; height: 38px; }
  .mobile-buy small { white-space: nowrap; }
  .hero-inner { padding-bottom: 36px; }
  .hero-actions { align-items: stretch; gap: 16px; }
  .hero-actions .button { width: 100%; }
  .text-link { width: max-content; min-height: 38px; }
  .hero-lede span { display: none; }
  .trust { margin-top: 20px; font-size: 0.68rem; }
  .trust li { padding: 6px 8px; }
  .joe-roster { grid-template-columns: 1fr; }
  .joe-card { min-height: 84px; padding: 15px; }
  .faq-list summary { min-height: 82px; font-size: 1.2rem; }
  .final-cta { min-height: 560px; }
  .final-mark { width: 104px; height: 104px; }
}

@media (max-width: 360px) {
  .brand { font-size: 0.7rem; gap: 9px; }
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.45rem; }
  .hero-hud strong:last-child { display: none; }
  .carousel-hint { font-size: 0.62rem; }
  .carousel-controls button { width: 44px; height: 44px; }
  .faq-list summary { gap: 16px; font-size: 1.1rem; }
}

@media (max-width: 560px) and (max-height: 700px) {
  .hero-inner { padding-top: 150px; padding-bottom: 24px; }
  .eyebrow { margin-bottom: 12px; }
  h1 { margin-bottom: 16px; font-size: clamp(2.75rem, 12vw, 3.4rem); }
  .hero-lede { margin-bottom: 20px; line-height: 1.48; }
  .trust { margin-top: 14px; }
}

@keyframes live-pulse {
  0%, 100% { opacity: 0.62; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1); }
}

@media (hover: none) {
  .button:hover { background: var(--gold); transform: none; }
  .system-card:hover img { transform: none; filter: brightness(0.76) saturate(0.92); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .reveal-ready .reveal { opacity: 1; transform: none; }
  .button:hover, .system-card:hover img { transform: none; }
}
