/* Tribute - McDonald's 501 E. Reno Ave / Oklahoma City */

:root {
  --ink: #05070d;
  --night: #0b101c;
  --night-2: #111827;
  --surface: rgba(17, 24, 39, 0.72);
  --surface-strong: rgba(17, 24, 39, 0.94);
  --text: #f7f8fb;
  --muted: #b7c0d1;
  --subtle: #7e8ba1;
  --gold: #ffc72c;
  --gold-soft: #ffe48a;
  --red: #da291c;
  --sky: #58c7ff;
  --green: #42d77d;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 199, 44, 0.34);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(5, 7, 13, 0.98) 0%,
      rgba(8, 11, 19, 0.98) 48%,
      rgba(16, 11, 9, 0.98) 100%
    ),
    var(--ink);
  color: var(--text);
  font-family:
    "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}

a {
  color: inherit;
}

img,
canvas {
  max-width: 100%;
}

::selection {
  background: rgba(255, 199, 44, 0.32);
  color: var(--text);
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-160%);
  padding: 0.7rem 0.95rem;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease;
}

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

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.horizon {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(to top, rgba(255, 199, 44, 0.16), transparent);
}

.glow-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red),
    var(--gold),
    var(--sky),
    transparent
  );
  box-shadow: 0 0 34px rgba(255, 199, 44, 0.46);
  pointer-events: none;
}

.tribute-content {
  position: relative;
  z-index: 4;
}

.tribute-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 1.5rem;
  border-bottom: 1px solid transparent;
  color: var(--text);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.tribute-nav.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 13, 0.88);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.tribute-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.tribute-nav-back svg {
  flex: 0 0 auto;
}

.tribute-nav-back:hover,
.tribute-nav-back:focus-visible {
  color: var(--gold);
}

.tribute-nav-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tribute-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92svh;
  padding: 7rem 1.5rem 5.5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  opacity: 0.78;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 7, 13, 0.98) 0%,
      rgba(5, 7, 13, 0.86) 38%,
      rgba(5, 7, 13, 0.46) 68%,
      rgba(5, 7, 13, 0.78) 100%
    ),
    linear-gradient(
    180deg,
    rgba(5, 7, 13, 0.5) 0%,
    transparent 36%,
    rgba(5, 7, 13, 0.86) 100%
  );
}

.tribute-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--red),
    var(--gold),
    transparent
  );
}

.tribute-hero-content {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin-bottom: 1.35rem;
  padding: 0.48rem 0.72rem;
  border: 1px solid rgba(255, 199, 44, 0.36);
  border-radius: 6px;
  background: rgba(5, 7, 13, 0.62);
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(66, 215, 125, 0.14);
}

.hero-kicker {
  margin-bottom: 0.75rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 820px;
  color: var(--text);
  font-size: 5.25rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.78);
}

.hero-title::first-line {
  color: var(--gold);
}

.hero-typewriter-wrap {
  display: flex;
  align-items: center;
  min-height: 2rem;
  margin-top: 1.35rem;
  color: var(--gold-soft);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1rem;
  font-weight: 700;
}

.hero-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  margin-left: 4px;
  background: var(--gold);
  animation: cursor-blink 0.76s step-end infinite;
}

@keyframes cursor-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero-lede {
  max-width: 680px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero-button,
.outro-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.86rem 1.05rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.hero-button:hover,
.hero-button:focus-visible,
.outro-cta:hover,
.outro-cta:focus-visible {
  transform: translateY(-2px);
}

.hero-button-primary,
.outro-cta {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 16px 38px rgba(255, 199, 44, 0.18);
}

.hero-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(5, 7, 13, 0.44);
  color: var(--text);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  border-color: rgba(255, 199, 44, 0.58);
  color: var(--gold-soft);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(860px, 100%);
  margin-top: 2.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 7, 13, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-facts div {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-facts div:last-child {
  border-right: none;
}

.hero-facts dt,
.identity-label,
.section-tag,
.stat-unit,
.outro-tag {
  color: var(--gold-soft);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin-top: 0.32rem;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 800;
}

.hero-scroll-cue {
  position: absolute;
  right: 1.5rem;
  bottom: 1.35rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-scroll-cue span {
  display: block;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.identity-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 13, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.identity-item {
  min-width: 0;
  padding: 1.2rem 1.35rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.identity-item:last-child {
  border-right: none;
}

.identity-value {
  margin-top: 0.42rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

.identity-active {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  color: var(--text);
}

.identity-pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(66, 215, 125, 0.14);
}

.tribute-section,
.matrix-reveal-section,
.journey-section,
.numbers-section {
  position: relative;
  z-index: 1;
  padding: 6.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tribute-section {
  background: rgba(5, 7, 13, 0.52);
}

.tribute-container {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.tribute-container-wide {
  width: min(1240px, 100%);
}

.tribute-intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: 4rem;
  align-items: start;
}

.section-header {
  max-width: 780px;
  margin-bottom: 3rem;
}

.section-header-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header-split {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(280px, 0.42fr);
  gap: 2rem;
  max-width: none;
  align-items: end;
}

.section-header-split p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.section-tag {
  display: block;
  margin-bottom: 0.85rem;
}

.section-display {
  color: var(--text);
  font-size: 3.25rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.section-display::first-line {
  color: var(--gold);
}

.opening-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.opening-text {
  margin-bottom: 1.25rem;
  color: var(--text);
  font-size: 1.34rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.opening-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.legacy-card,
.stat-card,
.timeline-item {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(17, 24, 39, 0.62);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.legacy-card {
  position: relative;
  min-height: 290px;
  padding: 1.35rem;
  overflow: hidden;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.legacy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--sky));
}

.legacy-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.legacy-card:hover {
  border-color: rgba(255, 199, 44, 0.42);
  background: rgba(17, 24, 39, 0.78);
}

.legacy-card:nth-child(2),
.stat-card:nth-child(2) {
  transition-delay: 0.08s;
}

.legacy-card:nth-child(3),
.stat-card:nth-child(3) {
  transition-delay: 0.16s;
}

.legacy-card:nth-child(4),
.stat-card:nth-child(4) {
  transition-delay: 0.24s;
}

.legacy-index,
.timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 199, 44, 0.32);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 900;
}

.legacy-card h3,
.timeline-item h3 {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.2;
}

.legacy-card p,
.timeline-item p,
.stat-desc {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.matrix-reveal-section {
  background: linear-gradient(
    180deg,
    rgba(12, 18, 32, 0.72),
    rgba(5, 7, 13, 0.62)
  );
}

.feature-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--night-2);
  box-shadow: var(--shadow);
}

.feature-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255, 199, 44, 0.26);
}

.matrix-reveal-wrap.is-pending .matrix-img {
  opacity: 0;
}

.matrix-img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.02) contrast(1.02);
  transform-origin: center;
  transition: filter 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
}

.matrix-reveal-wrap:hover .matrix-img {
  filter: saturate(1.08) contrast(1.04);
}

.matrix-canvas,
.matrix-glitch-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.matrix-canvas {
  opacity: 0;
}

.matrix-glitch-layer {
  z-index: 4;
  overflow: hidden;
}

.matrix-caption {
  width: min(760px, 100%);
  margin: 1.75rem auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.matrix-caption.visible {
  opacity: 1;
  transform: translateY(0);
}

.matrix-caption blockquote {
  color: var(--text);
  font-size: 1.24rem;
  font-style: italic;
  line-height: 1.75;
  quotes: none;
}

.matrix-caption cite {
  display: block;
  margin-top: 0.78rem;
  color: var(--gold-soft);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.journey-section {
  background: rgba(5, 7, 13, 0.64);
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: start;
  padding: 1.35rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.62s ease, transform 0.62s ease, border-color 0.2s ease;
}

.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:hover {
  border-color: rgba(255, 199, 44, 0.34);
}

.timeline-item:nth-child(2) {
  transition-delay: 0.08s;
}

.timeline-item:nth-child(3) {
  transition-delay: 0.16s;
}

.timeline-index {
  margin-bottom: 0;
}

.numbers-section {
  background: linear-gradient(
    180deg,
    rgba(17, 24, 39, 0.76),
    rgba(5, 7, 13, 0.64)
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  min-height: 250px;
  padding: 1.45rem;
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.62s ease,
    transform 0.62s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.stat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:hover {
  border-color: rgba(255, 199, 44, 0.38);
  background: rgba(17, 24, 39, 0.78);
}

.stat-number {
  display: block;
  color: var(--gold);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 3.3rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 34px rgba(255, 199, 44, 0.24);
}

.stat-unit {
  display: block;
  margin-top: 0.78rem;
  color: var(--gold-soft);
}

.tribute-outro {
  position: relative;
  overflow: hidden;
  padding: 8rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.2), rgba(5, 7, 13, 0.78)),
    linear-gradient(
    90deg,
    rgba(218, 41, 28, 0.14),
    rgba(255, 199, 44, 0.1),
    rgba(88, 199, 255, 0.12)
  );
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.outro-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(820px, 100%);
  margin: 0 auto;
}

.outro-heading {
  margin-top: 0.9rem;
  color: var(--text);
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
  text-wrap: balance;
}

.outro-sub {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.outro-cta {
  margin-top: 1.75rem;
}

.tribute-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  padding: 2.4rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 7, 13, 0.92);
  text-align: center;
}

.tribute-footer-copy,
.tribute-footer-nav {
  color: var(--subtle);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.tribute-footer-copy a,
.tribute-footer-nav a {
  color: var(--gold-soft);
  text-decoration: none;
}

.tribute-footer-copy a:hover,
.tribute-footer-nav a:hover {
  color: var(--gold);
}

.tribute-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
  justify-content: center;
}

.tribute-footer-muted {
  color: rgba(126, 139, 161, 0.72);
}

@media (max-width: 1160px) {
  .hero-title {
    font-size: 4.35rem;
  }

  .legacy-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legacy-card {
    min-height: 240px;
  }
}

@media (max-width: 900px) {
  .tribute-hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-scrim {
    background:
      linear-gradient(
        180deg,
        rgba(5, 7, 13, 0.92) 0%,
        rgba(5, 7, 13, 0.72) 54%,
        rgba(5, 7, 13, 0.94) 100%
      ),
      linear-gradient(90deg, rgba(5, 7, 13, 0.82), rgba(5, 7, 13, 0.42));
  }

  .hero-title {
    font-size: 3.45rem;
  }

  .hero-lede,
  .opening-copy {
    font-size: 1rem;
  }

  .identity-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .identity-item:nth-child(2) {
    border-right: none;
  }

  .identity-item:nth-child(1),
  .identity-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .tribute-intro-grid,
  .section-header-split {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .tribute-section,
  .matrix-reveal-section,
  .journey-section,
  .numbers-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-display,
  .outro-heading {
    font-size: 2.35rem;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 74px;
  }

  .tribute-nav {
    min-height: 62px;
    padding: 0 1rem;
  }

  .tribute-nav-label {
    display: none;
  }

  .tribute-nav-back {
    max-width: 100%;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }

  .tribute-hero {
    padding: 6.2rem 1rem 4rem;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .hero-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-title {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .hero-typewriter-wrap {
    font-size: 0.86rem;
  }

  .hero-lede {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-button,
  .outro-cta {
    width: 100%;
  }

  .hero-facts,
  .identity-strip,
  .legacy-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts div,
  .identity-item,
  .identity-item:nth-child(2) {
    border-right: none;
  }

  .hero-facts div:not(:last-child),
  .identity-item:not(:last-child),
  .identity-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-scroll-cue {
    display: none;
  }

  .tribute-section,
  .matrix-reveal-section,
  .journey-section,
  .numbers-section {
    padding: 4rem 1rem;
  }

  .section-display,
  .outro-heading {
    font-size: 2rem;
  }

  .opening-text {
    font-size: 1.1rem;
  }

  .legacy-card,
  .stat-card,
  .timeline-item {
    min-height: auto;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .matrix-caption blockquote {
    font-size: 1.05rem;
  }

  .tribute-outro {
    padding: 5.5rem 1rem;
  }

  .tribute-footer-nav {
    flex-direction: column;
  }

  .footer-nav-sep {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .matrix-canvas {
    display: none;
  }

  .matrix-reveal-wrap.is-pending .matrix-img {
    opacity: 1 !important;
  }
}
