/* ====================================================
   24 HOURS OF SAUCE — stylesheet
   ==================================================== */

/* ========== RESET + BASE ========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

:root {
  --bg-dark: #0a0d18;
  --bg-darker: #05060d;
  --bg-card: #121624;
  --bg-ice: #eaf2fb;
  --bg-ice-deep: #d5e3f5;
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.72);
  --text-muted: rgba(255, 255, 255, 0.45);
  --text-dark: #0a0d18;
  --text-dark-dim: rgba(10, 13, 24, 0.65);
  --accent-red: #e8202e;
  --accent-red-deep: #a01018;
  --accent-blue: #2e6bc4;
  --accent-blue-deep: #123a7a;
  --accent-gold: #e5b859;
  --accent-gold-deep: #8a5f18;
  --elephant: #2a2e3c;
  --elephant-mid: #3e4456;
  --elephant-light: #596074;
  --rule: rgba(255, 255, 255, 0.09);
  --rule-strong: rgba(255, 255, 255, 0.18);
}

h1, h2, h3, h4 {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-weight: 400;
  margin: 0;
  line-height: 0.92;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

p { margin: 0; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* ========== NAV ========== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(10, 13, 24, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--rule);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: 'Anton', sans-serif;
}
.nav-logo-mark {
  background: var(--accent-red);
  padding: 5px 11px 4px;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #fff;
  transform: skewX(-8deg);
  display: inline-block;
  box-shadow: 0 2px 0 var(--accent-red-deep);
}
.nav-logo-text {
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--accent-red);
  transition: right 0.25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  font-family: 'Anton', sans-serif;
  font-size: 17px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 4px 0 var(--accent-red-deep), 0 10px 30px rgba(232, 32, 46, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--accent-red-deep); }
.btn-ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: transparent;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255,255,255,0.5); }
.arrow-r { transition: transform 0.2s; }
.btn-primary:hover .arrow-r { transform: translateX(4px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}
html[data-shot] .hero { min-height: 820px !important; height: 820px !important; }
html[data-shot] { scroll-behavior: auto !important; }
html[data-shot] .reveal { opacity: 1 !important; transform: none !important; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, #15203a 0%, transparent 50%),
    radial-gradient(ellipse at 80% 10%, #1a2440 0%, transparent 60%),
    linear-gradient(180deg, #0a0d18 0%, #080a15 50%, #050710 100%);
  z-index: -3;
}
.hero-ice {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(120, 170, 230, 0.18) 0%, rgba(120, 170, 230, 0.05) 50%, transparent 100%);
  z-index: -2;
}
.rink-lines {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.4;
}
.rink-circle {
  position: absolute;
  left: 50%; bottom: 30%;
  transform: translateX(-50%);
  width: min(600px, 70vw);
  aspect-ratio: 3 / 1;
  border: 2px solid rgba(80, 140, 210, 0.45);
  border-radius: 50%;
}
.rink-circle::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 12px; height: 12px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(232, 32, 46, 0.6);
}
.rink-faceoff-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent-red);
  opacity: 0.7;
  box-shadow: 0 0 10px rgba(232, 32, 46, 0.5);
}
.rink-fo-l { left: 18%; bottom: 34%; }
.rink-fo-r { right: 18%; bottom: 34%; }
.rink-blue {
  position: absolute;
  top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 0%, rgba(46, 107, 196, 0.55) 40%, rgba(46, 107, 196, 0.55) 100%);
}
.rink-blue-left { left: 30%; }
.rink-blue-right { right: 30%; }
.rink-red {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, transparent 0%, rgba(232, 32, 46, 0.55) 40%, rgba(232, 32, 46, 0.55) 100%);
  transform: translateX(-50%);
}
.rink-goal-l {
  position: absolute;
  left: 6%; bottom: 30%;
  width: 60px; height: 30px;
  border: 2px solid rgba(80, 140, 210, 0.45);
  border-right: none;
}
.rink-goal-r {
  position: absolute;
  right: 6%; bottom: 30%;
  width: 60px; height: 30px;
  border: 2px solid rgba(80, 140, 210, 0.45);
  border-left: none;
}

/* snow */
.snow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.flake {
  position: absolute;
  top: -20px;
  color: rgba(255, 255, 255, 0.7);
  animation: snowfall linear infinite;
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
}
@keyframes snowfall {
  0%   { transform: translateY(-40px) translateX(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(110vh) translateX(60px) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 5vw;
  margin: 0 auto;
  max-width: 1200px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 8px 16px;
  border: 1px solid var(--rule-strong);
  border-radius: 40px;
  background: rgba(255,255,255,0.02);
}
.eye-dot {
  width: 8px; height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232, 32, 46, 0.25);
  animation: pulseDot 1.8s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 32, 46, 0.25); }
  50%      { box-shadow: 0 0 0 8px rgba(232, 32, 46, 0.0); }
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(70px, 14vw, 240px);
  color: #fff;
  margin: 0 auto;
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.6);
}
.ht-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em;
}
.ht-twentyfour {
  gap: 0.25em;
}
.ht-24 {
  display: inline-block;
  transform: translateY(0.02em);
}
.ht-hours {
  font-family: 'Anton', sans-serif;
  font-size: 0.32em;
  letter-spacing: 0.25em;
  transform: translateY(-0.8em);
  color: var(--text-dim);
  border-left: 3px solid var(--accent-red);
  padding-left: 0.4em;
  line-height: 1;
}
.ht-of {
  font-size: 0.3em;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin: -0.1em 0 -0.1em;
  font-style: italic;
  transform: translateY(-0.2em);
}
.ht-sauce {
  position: relative;
  color: var(--accent-red);
  font-size: 1.2em;
  text-shadow: 0 0 40px rgba(232, 32, 46, 0.4), 0 6px 40px rgba(0, 0, 0, 0.6);
  -webkit-text-stroke: 2px rgba(10, 13, 24, 0.2);
}
.ht-drip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.04em;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0.06em 0.12em rgba(232, 32, 46, 0.35));
  pointer-events: none;
}

.hero-sub {
  font-size: clamp(15px, 1.5vw, 19px);
  color: var(--text-dim);
  max-width: 620px;
  margin: 30px auto 0;
  line-height: 1.55;
}
.hero-sub strong {
  color: var(--text);
  border-bottom: 2px solid var(--accent-red);
  padding-bottom: 1px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* hero stampede */
.hero-stampede {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 150px;
  pointer-events: none;
  z-index: 2;
}
.hero-ground {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(150, 180, 220, 0.5) 50%, transparent 100%);
}
.stampede {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  gap: 60px;
  white-space: nowrap;
  will-change: transform;
}
.stampede-back {
  bottom: 8px;
  animation: herdMove 26s linear infinite;
  opacity: 0.55;
  filter: blur(0.5px);
}
.stampede-front {
  bottom: 0;
  animation: herdMove 18s linear infinite;
}
@keyframes herdMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.stampede svg {
  flex: 0 0 auto;
  color: var(--elephant);
  filter: drop-shadow(0 8px 0 rgba(0,0,0,0.3));
}
.stampede-back svg { color: var(--elephant); opacity: 0.7; }
.stampede-front svg { color: var(--elephant-light); }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  z-index: 4;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--text-muted));
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 10px;
  background: var(--accent-red);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { top: -10px; }
  100% { top: 40px; }
}

/* ========== SECTIONS ========== */
.section {
  padding: 120px 0;
  position: relative;
}
.section-head {
  text-align: center;
  margin-bottom: 70px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.tag {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--accent-red);
  padding: 5px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--accent-red);
  border-bottom: 1px solid var(--accent-red);
}
.section-title {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.88;
  color: var(--text);
}
.section-title em {
  color: var(--accent-red);
  font-style: italic;
  font-family: 'Anton', serif;
}
.section-sub {
  font-size: 16px;
  color: var(--text-dim);
  margin-top: 18px;
  line-height: 1.55;
}

/* ========== SAUCE SECTION ========== */
.section-sauce {
  background:
    linear-gradient(180deg, #0a0d18 0%, #0e1324 30%, #0e1324 70%, #0a0d18 100%);
  position: relative;
}
.section-sauce::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(46, 107, 196, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.sauce-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  position: relative;
}
.urban-card {
  background: #fff;
  color: var(--text-dark);
  padding: 28px 32px;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 8px 30px rgba(0, 0, 0, 0.3);
  transform: rotate(-1.5deg);
  position: relative;
  font-family: 'Inter', sans-serif;
  transition: transform 0.3s;
}
.urban-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border: 2px solid var(--accent-blue);
  border-radius: 6px;
  pointer-events: none;
  opacity: 0.1;
}
.urban-card:hover { transform: rotate(-0.5deg) translateY(-4px); }
.urban-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #eef2f8;
}
.urban-logo {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--accent-blue);
}
.urban-u {
  display: inline-block;
  background: var(--accent-blue);
  color: #fff;
  padding: 2px 8px;
  margin-right: 2px;
  border-radius: 2px;
}
.urban-meta {
  font-size: 11px;
  color: #7a8499;
  letter-spacing: 0.02em;
}
.urban-term {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.urban-pos {
  font-size: 14px;
  color: #7a8499;
  font-style: italic;
  letter-spacing: 0.02em;
}
.urban-def {
  font-size: 17px;
  line-height: 1.6;
  color: #3a4258;
  margin: 18px 0;
}
.urban-def strong {
  color: var(--accent-red);
  font-weight: 700;
}
.urban-example {
  font-size: 14px;
  color: #5a6478;
  padding-left: 14px;
  border-left: 3px solid var(--accent-red);
  margin-bottom: 20px;
}
.urban-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.urban-tags span {
  font-size: 11px;
  color: var(--accent-blue);
  padding: 4px 10px;
  background: #eaf1fb;
  border-radius: 20px;
  font-weight: 600;
}
.urban-footer {
  display: flex;
  gap: 22px;
  padding-top: 14px;
  border-top: 1px solid #eef2f8;
  font-size: 13px;
  font-weight: 600;
  color: #7a8499;
}
.urban-footer .up { color: #2a8a3a; }
.urban-footer .down { color: #c62828; }

/* sauce visual */
.sauce-visual {
  position: relative;
}
.sauce-visual-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
  text-align: center;
}
.sauce-diagram {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.sauce-arc {
  stroke-dashoffset: 600;
  stroke-dasharray: 600;
  animation: drawArc 3s ease-out infinite;
}
@keyframes drawArc {
  0%   { stroke-dashoffset: 600; }
  30%  { stroke-dashoffset: 0; }
  80%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
.flying-puck {
  animation: puckFly 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes puckFly {
  0%   { transform: translate(-116px, 170px) scale(0.8); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translate(0, -40px) scale(1); }
  90%  { opacity: 1; }
  100% { transform: translate(114px, 170px) scale(0.8); opacity: 0; }
}

.sauce-aside {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 70px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(232, 32, 46, 0.08), rgba(46, 107, 196, 0.05));
  border-left: 4px solid var(--accent-red);
  border-radius: 2px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.aside-mark {
  font-family: 'Anton', sans-serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--accent-red);
}
.sauce-aside h4 {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 10px;
  color: var(--text);
}
.sauce-aside p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

/* ========== TEAM ========== */
.section-team {
  background: linear-gradient(180deg, #0a0d18 0%, #0c1020 100%);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--rule);
  padding: 40px 32px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.team-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 2px;
  background: var(--accent-red);
  transition: width 0.4s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 32, 46, 0.4);
  background: linear-gradient(180deg, rgba(232,32,46,0.05), rgba(255,255,255,0.01));
}
.team-card:hover::before { width: 100%; }
.team-card-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent-red);
  margin-bottom: 26px;
}
.team-card-icon {
  width: 84px; height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 24px;
}
.team-card-icon svg { width: 100%; height: 100%; }
.team-card-middle .team-card-icon { color: var(--text); }
.team-card h3 {
  font-size: 32px;
  margin-bottom: 14px;
  color: var(--text);
}
.team-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ========== MONTREAL ========== */
.section-montreal {
  background: linear-gradient(180deg, #0c1020 0%, #14182a 50%, #0c1020 100%);
  position: relative;
  overflow: hidden;
}
.montreal-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0 0, rgba(229, 184, 89, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(232, 32, 46, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.section-montreal .section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  flex-wrap: wrap;
}
.fleur {
  color: var(--accent-gold);
  font-size: 0.8em;
  filter: drop-shadow(0 0 20px rgba(229, 184, 89, 0.5));
}
.montreal-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.mtl-text {
  position: relative;
  z-index: 2;
}
.mtl-route {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
}
.route-pt { display: flex; align-items: center; gap: 10px; }
.route-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 0 4px rgba(232, 32, 46, 0.2);
}
.route-pt:last-child .route-dot { background: var(--accent-gold); box-shadow: 0 0 0 4px rgba(229, 184, 89, 0.2); }
.route-line {
  flex: 1;
  max-width: 140px;
  height: 2px;
  background: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
}
.route-line-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-red), var(--accent-gold));
  transform: translateX(-100%);
  animation: route 3s ease-in-out infinite;
}
@keyframes route {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}
.mtl-headline {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 22px;
}
.mtl-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 38px;
}
.mtl-body strong {
  color: var(--text);
}
.mtl-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 460px;
}
.stat {
  padding: 18px 14px 16px;
  border: 1px solid var(--rule-strong);
  background: rgba(255,255,255,0.02);
  text-align: center;
}
.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--accent-gold);
  margin-bottom: 6px;
}
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.cup-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}
.cup-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(229, 184, 89, 0.35) 0%, transparent 60%);
  filter: blur(40px);
  animation: cupGlow 4s ease-in-out infinite;
}
@keyframes cupGlow {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}
.cup-svg {
  width: 70%;
  max-width: 320px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)) drop-shadow(0 0 40px rgba(229, 184, 89, 0.3));
  animation: cupFloat 5s ease-in-out infinite;
}
@keyframes cupFloat {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50%      { transform: translateY(-10px) rotate(0.5deg); }
}
.cup-shadow {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: 180px; height: 16px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.6) 0%, transparent 70%);
  filter: blur(4px);
  animation: cupShadow 5s ease-in-out infinite;
}
@keyframes cupShadow {
  0%, 100% { width: 180px; opacity: 0.6; }
  50%      { width: 160px; opacity: 0.4; }
}

/* ========== ROSTER ========== */
.section-roster {
  background: linear-gradient(180deg, #0c1020 0%, #0a0d18 100%);
  position: relative;
  overflow: hidden;
}
.section-roster::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 0%, rgba(232, 32, 46, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 100%, rgba(46, 107, 196, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.roster-block {
  margin-top: 70px;
  position: relative;
}
.roster-block:first-of-type { margin-top: 0; }
.roster-block-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
}
.roster-pos-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  background: var(--accent-red);
  color: #fff;
  box-shadow: 0 3px 0 var(--accent-red-deep);
  transform: skewX(-8deg);
  letter-spacing: 0.04em;
}
.roster-pos-d {
  background: var(--accent-blue);
  box-shadow: 0 3px 0 var(--accent-blue-deep);
}
.roster-block-label {
  font-family: 'Anton', sans-serif;
  font-size: 32px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.roster-block-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  padding: 4px 10px;
  border: 1px solid var(--rule-strong);
  border-radius: 20px;
}
.roster-block-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--rule-strong), transparent);
}
.roster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.player {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 24px 24px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.005));
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}
.player::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}
.roster-block:nth-of-type(2) .player::before { background: var(--accent-blue); }
.player:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 32, 46, 0.35);
  background: linear-gradient(180deg, rgba(232,32,46,0.04), rgba(255,255,255,0.01));
}
.roster-block:nth-of-type(2) .player:hover {
  border-color: rgba(46, 107, 196, 0.4);
  background: linear-gradient(180deg, rgba(46,107,196,0.05), rgba(255,255,255,0.01));
}
.player:hover::before { transform: scaleY(1); }

.player-num {
  font-family: 'Anton', sans-serif;
  font-size: 62px;
  line-height: 0.85;
  color: var(--text);
  letter-spacing: -0.01em;
  flex: 0 0 auto;
  min-width: 54px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.3);
  position: relative;
}
.player-cc {
  display: inline-block;
  font-size: 14px;
  color: var(--accent-gold);
  background: rgba(229, 184, 89, 0.15);
  padding: 2px 7px;
  border: 1px solid var(--accent-gold);
  margin-left: 4px;
  vertical-align: top;
  letter-spacing: 0.05em;
}
.player-body { flex: 1; min-width: 0; }
.player-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.player-pos {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.player-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--accent-red);
  text-transform: uppercase;
  padding: 3px 8px;
  background: rgba(232, 32, 46, 0.12);
  border: 1px solid rgba(232, 32, 46, 0.3);
  font-weight: 700;
}
.roster-block:nth-of-type(2) .player-tag {
  color: #7fb0ff;
  background: rgba(46, 107, 196, 0.15);
  border-color: rgba(46, 107, 196, 0.4);
}
.captain-tag {
  color: var(--accent-gold) !important;
  background: rgba(229, 184, 89, 0.15) !important;
  border-color: rgba(229, 184, 89, 0.4) !important;
}
.player-name {
  font-family: 'Anton', sans-serif;
  font-size: 34px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.player-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-dim);
}
.player-captain {
  border-color: rgba(229, 184, 89, 0.3);
  background: linear-gradient(180deg, rgba(229, 184, 89, 0.05), rgba(255,255,255,0.005));
}
.player-captain::before { background: var(--accent-gold) !important; }

/* ========== ANDRE ========== */
.section-andre {
  background: #030509;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.andre-noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(232, 32, 46, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}
.section-andre::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(255,255,255,0.012) 3px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
  z-index: 1;
}
.andre-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.andre-text {
  position: relative;
}
.andre-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 22px;
  padding: 6px 12px;
  border: 1px solid rgba(232, 32, 46, 0.35);
  border-radius: 40px;
  background: rgba(232, 32, 46, 0.08);
}
.rec-dot {
  width: 8px; height: 8px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: recBlink 1.4s ease-in-out infinite;
}
@keyframes recBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.andre-title {
  font-size: clamp(90px, 16vw, 220px);
  line-height: 0.82;
  color: var(--text);
  letter-spacing: -0.02em;
  text-shadow: 0 10px 50px rgba(232, 32, 46, 0.25);
  margin-bottom: 10px;
}
.andre-role {
  font-family: 'Anton', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  color: var(--accent-red);
  font-style: italic;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
.andre-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 460px;
  margin-bottom: 40px;
}
.astat {
  padding: 14px 18px;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.02);
}
.astat-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.astat-val {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  color: var(--text);
  letter-spacing: 0.02em;
}
.andre-quote {
  position: relative;
  font-family: 'Anton', serif;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
  color: var(--text-dim);
  font-style: italic;
  padding: 0 0 0 32px;
  max-width: 500px;
  margin: 0;
  border-left: 3px solid var(--accent-red);
}
.andre-quote footer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}
.quote-mark {
  position: absolute;
  left: 8px; top: -20px;
  font-size: 80px;
  color: var(--accent-red);
  opacity: 0.3;
  line-height: 1;
}

.andre-visual {
  position: relative;
}
.andre-frame-wrap {
  position: relative;
  aspect-ratio: 784 / 1176;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  background: #000;
  overflow: hidden;
  border: 1px solid rgba(232, 32, 46, 0.3);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 80px rgba(0, 0, 0, 0.5);
}
.andre-frame-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.9) 100%);
  z-index: 3;
  pointer-events: none;
}
.andre-frame {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  filter: contrast(1.05) saturate(1.1);
}
.andre-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0,0,0,0) 0px,
    rgba(0,0,0,0) 2px,
    rgba(0,0,0,0.35) 2px,
    rgba(0,0,0,0.35) 3px
  );
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.andre-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.5) 100%);
  z-index: 4;
  pointer-events: none;
}
.andre-corners {
  position: absolute;
  inset: 12px;
  z-index: 5;
  pointer-events: none;
}
.corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 2px solid var(--accent-red);
}
.c-tl { top: 0; left: 0; border-right: none; border-bottom: none; }
.c-tr { top: 0; right: 0; border-left: none; border-bottom: none; }
.c-bl { bottom: 0; left: 0; border-right: none; border-top: none; }
.c-br { bottom: 0; right: 0; border-left: none; border-top: none; }

.andre-hud {
  position: absolute;
  inset: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 5;
  pointer-events: none;
  font-family: 'JetBrains Mono', monospace;
}
.hud-top, .hud-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.hud-rec {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-red);
  font-weight: 700;
}
.hud-rec-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
  animation: recBlink 1.4s ease-in-out infinite;
}
.hud-no strong {
  font-size: 16px;
  color: var(--accent-red);
}
.hud-id {
  color: rgba(255,255,255,0.6);
}
.andre-caption {
  text-align: center;
  margin-top: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ========== HERD ========== */
.section-herd {
  background: linear-gradient(180deg, #0a0d18 0%, #141827 100%);
  padding: 140px 0 0;
}
.herd-scene {
  position: relative;
  height: 440px;
  width: 100vw;
  margin: 40px 0 0;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.herd-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0c1223 0%, #1a2340 40%, #2a3658 70%, #3a2a1e 90%, #2a1a10 100%);
}
.herd-sun {
  position: absolute;
  top: 30%; right: 15%;
  width: 80px; height: 80px;
  background: radial-gradient(circle, #f5c76a 0%, #d4852a 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(2px);
  box-shadow: 0 0 80px rgba(245, 199, 106, 0.6);
}
.herd-mtn {
  position: absolute;
  left: 0; right: 0; bottom: 38%;
  height: 120px;
  background: linear-gradient(180deg, #1a2238 0%, #0c1020 100%);
  clip-path: polygon(0 100%, 0 60%, 8% 30%, 14% 55%, 22% 10%, 30% 40%, 38% 20%, 46% 55%, 54% 15%, 62% 45%, 70% 25%, 78% 55%, 86% 18%, 94% 48%, 100% 25%, 100% 100%);
  opacity: 0.7;
}
.herd-ground {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background:
    linear-gradient(180deg, #4a3220 0%, #2a1a10 60%, #1a0f08 100%);
}
.herd-ground::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(95deg, transparent 0px, transparent 30px, rgba(0,0,0,0.15) 30px, rgba(0,0,0,0.15) 31px);
  opacity: 0.5;
}
.herd-row {
  position: absolute;
  left: 0; right: 0;
  display: flex;
  gap: 40px;
  white-space: nowrap;
  will-change: transform;
}
.herd-row-back {
  bottom: 32%;
  animation: herdMove 40s linear infinite;
  opacity: 0.4;
  filter: blur(1.2px);
  transform: scale(0.55);
  transform-origin: center bottom;
}
.herd-row-mid {
  bottom: 14%;
  animation: herdMove 26s linear infinite;
  opacity: 0.75;
  transform: scale(0.78);
  transform-origin: center bottom;
  filter: blur(0.3px);
}
.herd-row-front {
  bottom: -20px;
  animation: herdMove 16s linear infinite;
}
.herd-row svg {
  flex: 0 0 auto;
  color: #1a0f08;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5));
}
.herd-row-back svg { color: #2a1a10; }
.herd-row-mid svg { color: #1a0f08; }
.herd-row-front svg { color: #0a0805; }

.herd-dust {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 40%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 400px 60px at 20% 90%, rgba(190, 140, 80, 0.5) 0%, transparent 60%),
    radial-gradient(ellipse 500px 70px at 60% 85%, rgba(190, 140, 80, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse 350px 50px at 85% 88%, rgba(200, 150, 90, 0.45) 0%, transparent 60%);
  animation: dustDrift 8s linear infinite;
}
.herd-dust-back { opacity: 0.4; animation-duration: 14s; }
.herd-dust-mid { opacity: 0.6; animation-duration: 10s; }
.herd-dust-front { opacity: 0.8; animation-duration: 7s; }
@keyframes dustDrift {
  from { transform: translateX(10%); }
  to { transform: translateX(-10%); }
}
.herd-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10,13,24,1) 0%, transparent 12%, transparent 88%, rgba(10,13,24,1) 100%),
    linear-gradient(180deg, rgba(10,13,24,0.3) 0%, transparent 20%);
}

.herd-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 60px auto 0;
  max-width: 900px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.fact {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid var(--rule);
}
.fact:last-child { border-right: none; }
.fact-num {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 10px;
}
.fact-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ========== FINAL ========== */
.section-final {
  padding: 160px 6vw;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: #0a0d18;
}
.final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(232, 32, 46, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, #0a0d18 0%, #1a0a10 50%, #0a0d18 100%);
}
.section-final::before {
  content: "24 HOURS OF SAUCE ";
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  font-family: 'Anton', sans-serif;
  font-size: 20vw;
  color: rgba(255,255,255,0.025);
  white-space: nowrap;
  text-align: center;
  pointer-events: none;
  line-height: 1;
}
.final-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.final-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent-red);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.final-title {
  font-size: clamp(50px, 10vw, 140px);
  line-height: 0.88;
  color: var(--text);
}
.final-accent {
  color: var(--accent-red);
  -webkit-text-stroke: 2px rgba(232, 32, 46, 0.3);
  text-shadow: 0 0 60px rgba(232, 32, 46, 0.4);
}
.final-sig {
  margin-top: 40px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ========== FOOTER ========== */
.footer {
  padding: 50px 0 60px;
  background: var(--bg-darker);
  border-top: 1px solid var(--rule);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-mark {
  background: var(--accent-red);
  padding: 4px 10px 3px;
  color: #fff;
  transform: skewX(-8deg);
  display: inline-block;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-links a:hover { color: var(--accent-red); }
.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav { padding: 12px 0; }
  .section { padding: 90px 0; }
  .sauce-grid { grid-template-columns: 1fr; gap: 40px; }
  .team-grid { grid-template-columns: 1fr; }
  .montreal-grid { grid-template-columns: 1fr; gap: 40px; }
  .mtl-stats { max-width: 100%; }
  .cup-wrap { min-height: 340px; }
  .andre-wrap { grid-template-columns: 1fr; gap: 50px; }
  .andre-stats { grid-template-columns: 1fr; }
  .herd-facts { grid-template-columns: 1fr; }
  .fact { border-right: none; border-bottom: 1px solid var(--rule); }
  .fact:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .roster-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: clamp(60px, 20vw, 140px); }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.15em; padding: 6px 12px; }
  .ht-hours { font-size: 0.28em; }
  .hero-cta { flex-direction: column; align-items: stretch; padding: 0 10vw; }
  .btn { justify-content: center; }
  .sauce-aside { flex-direction: column; gap: 0; padding: 24px; }
  .aside-mark { font-size: 60px; }
  .herd-scene { height: 320px; }
  .urban-term { font-size: 40px; }
  .mtl-stats { grid-template-columns: 1fr 1fr; }
  .mtl-stats .stat:last-child { grid-column: 1 / -1; }
}

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