/* ============================================================
   AUTOMUNDO 2026
   Brand colour + type from Automundo (AEADE); layout and motion new.
   ============================================================ */

@font-face {
  font-family: "novelin-italic";
  src: url("../assets/fonts/novelin/novelin-black-italic.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "menda";
  src: url("../assets/fonts/menda/menda.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "menda-bold";
  src: url("../assets/fonts/menda/menda-bold.ttf") format("truetype");
  font-display: swap;
}

:root {
  --blue: #004a98;
  --royal: #0f2a76;
  --blue-deep: #00152e;
  --night: #03060d;
  --orange: #ff8300;
  --orange-2: #fa6400;
  --orange-3: #fb8332;
  --orange-4: #c85000;
  --orange-5: #ff8928;
  --red-orange: #fc5c1a;
  /* panel accent colours: panel tints, edges and glows only, never body copy */
  --cyan: #38d6ff;
  --violet: #8a6bff;
  --white: #ffffff;
  --text-2: rgba(255, 255, 255, .74);
  --text-3: rgba(255, 255, 255, .56);
  --line: rgba(255, 255, 255, .1);
  --glass: rgba(7, 12, 30, .58);

  --font-display: "menda-bold", "Helvetica Neue", Arial, sans-serif;
  --font-body: "menda", "Helvetica Neue", Arial, sans-serif;
  --font-accent: "novelin-italic", "menda-bold", Arial, sans-serif;

  --gutter: clamp(20px, 4vw, 56px);

  --d-s: .3s;
  --d-m: .5s;
  --d-l: .9s;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-inout: cubic-bezier(.65, .05, .36, 1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* CSS weave: fallback surface when WebGL is unavailable or JS is off.
     Painted on the root canvas, underneath the fixed WebGL layer. */
  background-color: var(--night);
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,.12) 0 1px, transparent 1px 3px, rgba(0,0,0,.35) 3px 4px, transparent 4px 6px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,.1) 0 1px, transparent 1px 3px, rgba(0,0,0,.3) 3px 4px, transparent 4px 6px),
    radial-gradient(120% 80% at 50% 40%, var(--royal) 0%, #020a1f 70%);
  background-blend-mode: overlay, overlay, normal;
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 6px;
}

/* ============================================================
   WebGL carbon surface
   ============================================================ */
.carbon {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.has-carbon .carbon { opacity: 1; }

/* ============================================================
   Scroll progress
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-orange), var(--orange));
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 950;
  pointer-events: none;
}

/* ============================================================
   Preloader
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: var(--night);
  transition: opacity .8s var(--ease-inout), visibility .8s var(--ease-inout);
}
#preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.no-js #preloader { display: none; }

.preloader-mark {
  width: min(260px, 60vw);
  height: auto;
  animation: preloader-pulse 1.6s var(--ease-inout) infinite;
}
@keyframes preloader-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}
.preloader-bar {
  width: min(220px, 50vw);
  height: 2px;
  background: rgba(255,255,255,.14);
  overflow: hidden;
}
.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--orange);
  transition: width .25s var(--ease-out);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--blue-deep) url("../assets/frames-sm/frame_0001.webp") center / cover no-repeat;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,10,30,.55) 0%, rgba(0,10,30,0) 30%, rgba(0,10,30,0) 60%, rgba(0,10,30,.7) 100%);
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(480px circle at var(--gx, 50%) var(--gy, 50%), rgba(255,131,0,.16), transparent 70%);
  transition: opacity var(--d-m) var(--ease-out);
}
.hero-glow.is-active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 44px) var(--gutter) clamp(40px, 6vw, 64px);
  pointer-events: none;
  /* frame content behind the copy varies from bright paint to dark glass */
  text-shadow: 0 2px 6px rgba(0,8,24,.55), 0 10px 30px rgba(0,8,24,.45);
}
.hero-kicker {
  font-family: var(--font-accent);
  color: var(--orange-5);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: clamp(.8rem, 1.3vw, 1rem);
}
.hero-wordmark {
  align-self: flex-start;
  margin: 0;
  filter: drop-shadow(0 10px 30px rgba(0,8,24,.5));
}
.hero-wordmark img { width: min(46vw, 460px); min-width: 220px; height: auto; }
.hero-tagline {
  align-self: center;
  text-align: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.6rem, 5vw, 3.4rem);
}
.hero-tagline .chip {
  display: inline-block;
  background: #df4f0c;
  padding: .1em .35em;
  margin: 0 .15em;
  transform: skewX(-6deg);
  text-shadow: none;
}
.hero-tagline .chip span { display: inline-block; transform: skewX(6deg); }

.hero-footer-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-datebox .when {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  text-transform: uppercase;
}
.hero-datebox .when b { color: var(--orange); font-size: 1.3em; }
.hero-datebox .where {
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 4px;
}
.hero-footer-end {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-hours {
  font-family: var(--font-accent);
  text-transform: uppercase;
  font-size: clamp(.95rem, 1.8vw, 1.25rem);
}
.hero-hours b { color: var(--orange-5); font-weight: normal; }
.hero-cta { pointer-events: auto; text-shadow: none; }

.scroll-cue {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  animation: cue-bounce 1.8s var(--ease-inout) infinite;
}
.scroll-cue svg { width: 16px; height: 16px; }
@keyframes cue-bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ============================================================
   Chapters (content over the carbon surface)
   ============================================================ */
.chapter {
  position: relative;
  padding: clamp(96px, 16vh, 180px) var(--gutter);
  overflow: clip;
}
.wrap {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-accent);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: clamp(.78rem, 1.1vw, .92rem);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--red-orange), var(--orange));
}

/* ============================================================
   Glow panels — tinted glass over the carbon, gradient edge,
   and a spotlight that follows the cursor (--mx/--my set in main.js)
   ============================================================ */
.glow-card {
  --tint-a: rgba(56, 214, 255, .24);
  --tint-b: rgba(138, 107, 255, .2);
  --edge-a: rgba(56, 214, 255, .6);
  --edge-b: rgba(252, 92, 26, .55);
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(120% 100% at 0% 0%, var(--tint-a), transparent 62%),
    radial-gradient(120% 100% at 100% 100%, var(--tint-b), transparent 62%),
    var(--glass);
}
.glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1px;
  border-radius: inherit;
  background:
    radial-gradient(220px circle at var(--mx, -999px) var(--my, -999px), rgba(255, 255, 255, .95), rgba(56, 214, 255, .7) 35%, transparent 75%),
    linear-gradient(135deg, var(--edge-a), rgba(138, 107, 255, .22) 38%, rgba(255, 255, 255, .06) 62%, var(--edge-b));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  pointer-events: none;
}

/* small copy sits directly on a lit, busy surface — a soft dark halo keeps it legible */
.eyebrow, .lede, .stat-label, .note, .finale-date, .info-sub {
  text-shadow: 0 1px 14px rgba(0, 0, 0, .9), 0 0 2px rgba(0, 0, 0, .7);
}

.title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  line-height: 1.02;
  margin: 0;
  max-width: 18ch;
}

/* word-mask reveal targets (built by splitWords in main.js) */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: .1em;
  margin-bottom: -.1em;
}
.word-mask-inner {
  display: inline-block;
  will-change: transform;
  text-shadow: 0 0 calc(var(--glow, 0) * 30px) rgba(170, 205, 255, calc(var(--glow, 0) * .7));
}

/* banner motif: white + orange racing stripes */
.stripes {
  position: absolute;
  left: 0;
  bottom: 12%;
  width: 64vw;
  height: 90px;
  z-index: 1;
  pointer-events: none;
  transform: rotate(-11deg);
  transform-origin: 0 100%;
}
.stripes span {
  position: absolute;
  left: -6vw;
  width: 100%;
  transform-origin: 0 50%;
}
.stripes span:first-child {
  top: 0;
  height: clamp(16px, 2.6vw, 40px);
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.5) 55%, rgba(255,255,255,0) 100%);
}
.stripes span:last-child {
  top: clamp(26px, 4.2vw, 62px);
  height: clamp(7px, 1.1vw, 16px);
  background: linear-gradient(90deg, var(--red-orange) 0%, rgba(252,92,26,.55) 55%, rgba(252,92,26,0) 100%);
}
.stripes--right {
  left: auto;
  right: 0;
  top: 1%;
  bottom: auto;
  width: 50vw;
  transform: rotate(-11deg);
  transform-origin: 100% 0;
}
.stripes--band {
  top: clamp(20px, 3vh, 40px);
  bottom: auto;
  width: 100vw;
  transform: rotate(-2.5deg);
  transform-origin: 0 0;
}
.stripes--right span { left: auto; right: -6vw; transform-origin: 100% 50%; }
.stripes--right span:first-child { background: linear-gradient(270deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.5) 55%, rgba(255,255,255,0) 100%); }
.stripes--right span:last-child { background: linear-gradient(270deg, var(--red-orange) 0%, rgba(252,92,26,.55) 55%, rgba(252,92,26,0) 100%); }

/* ============================================================
   Statement
   ============================================================ */
.chapter--statement {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.chapter--statement .wrap { width: 100%; }
.statement {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.5rem, 7.4vw, 6.8rem);
  line-height: .96;
  letter-spacing: -.01em;
  margin: 0;
  max-width: 13ch;
}
.statement em {
  font-family: var(--font-accent);
  font-style: normal;
  color: var(--orange);
}
.lede {
  margin-top: clamp(28px, 4vw, 44px);
  max-width: 46ch;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  color: var(--text-2);
}

/* ============================================================
   Stats
   ============================================================ */
.chapter--stats {
  padding-top: clamp(150px, 20vh, 200px);
  padding-bottom: clamp(40px, 8vh, 90px);
}
.stats {
  --tint-a: rgba(56, 214, 255, .22);
  --tint-b: rgba(252, 92, 26, .2);
  list-style: none;
  margin: 0;
  padding: 0 clamp(20px, 3vw, 44px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 24px;
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
}
.stats::after,
.info-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(380px circle at var(--mx, -999px) var(--my, -999px), rgba(56, 214, 255, .2), rgba(138, 107, 255, .1) 45%, transparent 70%);
}
.stat {
  --divider: linear-gradient(transparent, rgba(255, 255, 255, .16), transparent) right / 1px 100% no-repeat;
  padding: 38px 28px 34px 0;
  background: var(--divider);
}
.stat + .stat { padding-left: 28px; }
.stat:last-child { background: none; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.8rem);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #ffffff 0%, #d6ecff 50%, #6fcfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(56, 214, 255, .28));
}
.stat:nth-child(odd) .stat-num {
  background-image: linear-gradient(180deg, #ffc27a 0%, var(--orange) 45%, var(--red-orange) 100%);
  filter: drop-shadow(0 0 22px rgba(252, 92, 26, .32));
}
.stat-label {
  display: block;
  margin-top: 14px;
  font-size: .95rem;
  color: var(--text-2);
  max-width: 22ch;
}

/* ============================================================
   Brand wall
   ============================================================ */
.brand-wall {
  list-style: none;
  margin: clamp(40px, 6vw, 64px) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.brand {
  --cols: 7;
  flex: 0 0 calc((100% - (var(--cols) - 1) * 10px) / var(--cols));
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  /* no backdrop blur here: 33 blurred regions over a redrawing canvas is too heavy */
  --glass: rgba(6, 11, 28, .78);
  --tint-a: rgba(56, 214, 255, .15);
  --tint-b: rgba(138, 107, 255, .12);
  --edge-a: rgba(56, 214, 255, .32);
  --edge-b: rgba(252, 92, 26, .26);
  transition: box-shadow var(--d-s) var(--ease-out), transform var(--d-s) var(--ease-out);
}
.brand:nth-child(3n + 2) { --tint-a: rgba(138, 107, 255, .17); --tint-b: rgba(252, 92, 26, .11); }
.brand:nth-child(3n) { --tint-a: rgba(252, 92, 26, .13); --tint-b: rgba(56, 214, 255, .12); }
.brand img {
  width: 86%;
  height: auto;
  color: transparent;
  font-size: 0;
  filter: brightness(0) invert(1);
  opacity: .72;
  transition: opacity var(--d-s) var(--ease-out), transform var(--d-m) var(--ease-out);
}
.brand img.is-mono { filter: none; }
.brand::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.16) 50%, transparent 58%);
  transform: translateX(-55%);
  transition: transform .9s var(--ease-out);
  pointer-events: none;
}
.brand:hover { box-shadow: 0 14px 34px -14px rgba(56, 214, 255, .55); transform: translateY(-2px); }
.brand:hover img { opacity: 1; transform: scale(1.05); }
.brand:hover::after { transform: translateX(55%); }

.note {
  margin-top: 24px;
  text-align: center;
  font-size: .85rem;
  color: var(--text-3);
}

/* ============================================================
   Info
   ============================================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: clamp(40px, 6vw, 64px);
}
.info-card {
  --ic: var(--cyan);
  --ic-glow: rgba(56, 214, 255, .55);
  grid-column: span 4;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 18px;
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
}
.info-card:nth-child(2) {
  --tint-a: rgba(138, 107, 255, .28);
  --tint-b: rgba(56, 214, 255, .16);
  --ic: #b8a8ff;
  --ic-glow: rgba(138, 107, 255, .6);
}
.info-card--price {
  --tint-a: rgba(252, 92, 26, .24);
  --tint-b: rgba(138, 107, 255, .2);
  --edge-a: rgba(252, 92, 26, .7);
  --edge-b: rgba(138, 107, 255, .5);
  --ic: var(--orange);
  --ic-glow: rgba(252, 92, 26, .6);
}
.info-card--place {
  --tint-a: rgba(56, 214, 255, .22);
  --tint-b: rgba(252, 92, 26, .22);
}
.info-icon {
  display: block;
  width: 48px;
  height: 48px;
  padding: 11px;
  margin-bottom: 22px;
  border-radius: 14px;
  color: var(--ic);
  background: linear-gradient(135deg, var(--tint-a), var(--tint-b)), rgba(255, 255, 255, .03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1), 0 12px 30px -12px var(--ic-glow);
}
.info-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-accent);
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .82rem;
  color: var(--text-3);
}
.info-main {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.25;
}
.info-sub { margin-top: 6px; font-size: .92rem; color: var(--text-2); }
.price {
  font-size: 1.5em;
  background: linear-gradient(180deg, #ffc27a 0%, var(--orange) 45%, var(--red-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pay {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pay li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  font-size: .88rem;
}
.pay svg { width: 18px; height: 18px; color: var(--orange); }

.info-card--place {
  grid-column: span 12;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .02em;
  color: var(--white);
  transition: background var(--d-s) var(--ease-out), box-shadow var(--d-s) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
}
.btn:hover::after { transform: translateX(120%); }
.btn--primary {
  background: linear-gradient(100deg, var(--red-orange), var(--orange-2));
  box-shadow: 0 10px 30px rgba(252, 92, 26, .28);
}
.btn--primary:hover { box-shadow: 0 14px 38px rgba(252, 92, 26, .45); }
.btn--lg { min-height: 58px; padding: 18px 34px; font-size: 1.05rem; }


/* ============================================================
   Finale
   ============================================================ */
.chapter--finale {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
}
.chapter--finale .wrap { width: 100%; display: flex; flex-direction: column; align-items: center; }
.finale-logo { width: min(460px, 78vw); height: auto; margin-bottom: 34px; }
.finale-line {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6.4vw, 5.6rem);
  line-height: 1;
}
.finale-date {
  margin: 18px 0 40px;
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  font-size: clamp(.95rem, 1.6vw, 1.2rem);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: 48px var(--gutter);
  background: rgba(2, 4, 10, .88);
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 32px;
}
.footer-mark { width: 140px; height: auto; }
.footer-org { color: var(--text-2); font-size: .9rem; }
.footer-social {
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  transition: background var(--d-s) var(--ease-out), border-color var(--d-s) var(--ease-out);
}
.footer-social a:hover { background: var(--orange-2); border-color: var(--orange-2); }
.footer-social svg { width: 18px; height: 18px; }
.footer-credit { width: 100%; font-size: .8rem; color: var(--text-3); }

/* ============================================================
   Fallbacks
   ============================================================ */
.motion-fallback [data-lit],
.motion-fallback [data-hero],
.motion-fallback [data-stripe],
.motion-fallback .word-mask-inner {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .brand { --cols: 5; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { background: none; }
  .stat:nth-child(3) { padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .info-card { grid-column: span 6; }
  .info-card--price { grid-column: span 12; }
}

@media (max-width: 640px) {
  .hero-footer-row { flex-direction: column; align-items: flex-start; }
  .brand { --cols: 3; }
  .stats { grid-template-columns: 1fr; }
  .stat, .stat + .stat { padding: 26px 0 22px; background: none; }
  .stat + .stat { border-top: 1px solid var(--line); }
  .info-card { grid-column: span 12; }
  .stripes--right { width: 80vw; }
  .footer-social { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue, .preloader-mark { animation: none; }
}
