/* ============================================================
   ECOPOD KIOSK · We Refill For The Future
   Palette: Abyss #071E26 · Pod Blue #3D5CB8 · Mint #5FC9B0
            Tide #8FE3CF · Seafoam #EDF7F2
   Type:    Bricolage Grotesque (display) · Archivo (body) · Space Mono (labels)
   ============================================================ */

:root {
  --abyss: #071E26;
  --abyss-2: #0A2A33;
  --pod: #3D5CB8;
  --mint: #5FC9B0;
  --tide: #8FE3CF;
  --seafoam: #EDF7F2;
  --ink: #10231F;
  --muted: rgba(237, 247, 242, 0.66);
  --muted-dark: rgba(16, 35, 31, 0.72);
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Archivo", sans-serif;
  --mono: "Space Mono", monospace;
  --wrap: min(1200px, 92vw);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--abyss);
  color: var(--seafoam);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: var(--wrap); margin-inline: auto; }
.mono { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }

h1, h2, h3 { font-family: var(--display); line-height: 1.05; font-weight: 700; letter-spacing: -0.015em; }
h2 { font-size: clamp(2rem, 4.6vw, 3.6rem); margin-bottom: 1.4rem; }
h3 { font-size: 1.25rem; }
em { font-style: italic; }
.grad {
  background: linear-gradient(92deg, var(--mint), var(--tide));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.solution .grad, .team .grad {
  background: linear-gradient(92deg, #1F6B56, var(--pod));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.team .pitbull .grad {
  background: linear-gradient(92deg, var(--mint), var(--tide));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.btn:focus-visible, .nav__links a:focus-visible, .nav__logo:focus-visible, .mobilemenu a:focus-visible {
  outline: 2px solid var(--mint); outline-offset: 3px; border-radius: 4px;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tide);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.eyebrow--dark { color: #2C7A66; }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint); flex: none;
  box-shadow: 0 0 12px var(--mint);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn--mint { background: var(--mint); color: var(--abyss); }
.btn--mint:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(95, 201, 176, 0.35); }
.btn--ghost { border-color: rgba(237,247,242,0.4); color: var(--seafoam); }
.btn--ghost:hover { border-color: var(--mint); color: var(--tide); transform: translateY(-2px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; gap: 2.2rem;
  padding: 0.9rem 4vw;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(7, 30, 38, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(143, 227, 207, 0.12);
  padding: 0.6rem 4vw;
}
.nav__logo img { height: 44px; width: auto; filter: drop-shadow(0 1px 6px rgba(7,30,38,0.5)); }
.nav__links { display: flex; gap: 1.8rem; margin-left: auto; }
.nav__links a {
  font-size: 0.92rem; font-weight: 500; color: var(--seafoam);
  position: relative; padding: 0.2rem 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--mint);
  transition: width 0.25s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { flex: none; }
.nav__burger { display: none; }

.mobilemenu { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding: 0 0 clamp(4rem, 9vh, 7rem);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; transform-origin: center; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7,30,38,0.42) 0%, rgba(7,30,38,0.12) 35%, rgba(7,30,38,0.82) 100%),
    linear-gradient(100deg, rgba(7,30,38,0.55) 0%, rgba(7,30,38,0) 55%);
}
.hero__content { width: var(--wrap); margin-inline: auto; max-width: 56rem; margin-left: max(4vw, calc((100vw - 1200px) / 2)); }
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero__title {
  font-size: clamp(3.2rem, 10.5vw, 8.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 0.96;
  margin-bottom: 1.6rem;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: inline-block; }
.hero__title em {
  font-style: italic; font-weight: 300;
  color: var(--tide);
}
.hero__sub { max-width: 34rem; color: var(--muted); font-size: 1.08rem; margin-bottom: 2.2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__scrollcue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1.5px solid rgba(237,247,242,0.5); border-radius: 999px;
}
.hero__scrollcue span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 9px;
  margin-left: -2px; border-radius: 4px; background: var(--tide);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(14px); opacity: 0.2; } }

/* ---------- signature ring ---------- */
.ring svg { width: 100%; height: 100%; overflow: visible; }
.ring text {
  font-family: var(--mono); font-size: 12.5px;
  fill: var(--tide); text-transform: uppercase;
}
.ring--hero {
  position: absolute; right: clamp(1rem, 6vw, 6rem); bottom: clamp(5rem, 14vh, 9rem);
  width: clamp(120px, 15vw, 190px); aspect-ratio: 1;
  z-index: 2;
}
.ring--hero .ring__arrow path { stroke: var(--tide); stroke-width: 2.4; fill: none; opacity: 0.9; }
.ring--mission { width: min(340px, 70vw); aspect-ratio: 1; margin-inline: auto; }
.ring--mission circle { fill: none; stroke: rgba(143,227,207,0.35); stroke-width: 1; stroke-dasharray: 3 6; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--abyss-2);
  border-block: 1px solid rgba(143, 227, 207, 0.18);
  overflow: hidden; padding: 1.05rem 0;
}
.marquee__track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee__track span {
  font-family: var(--display); font-weight: 600; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--tide); white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- problem ---------- */
.problem { padding: clamp(4rem, 8vw, 6.5rem) 0 0; }
.problem__lead { max-width: 18ch; }
.problem__lead mark {
  background: none; color: var(--tide);
  text-decoration: underline; text-decoration-color: rgba(95,201,176,0.5);
  text-decoration-thickness: 3px; text-underline-offset: 6px;
}
.problem__note { max-width: 44rem; color: var(--muted); margin-top: 1.2rem; }
.problem__media {
  margin: clamp(3rem, 7vw, 5rem) auto 0; width: min(1400px, 96vw);
  border-radius: 18px; overflow: hidden; position: relative;
}
.problem__media img { width: 100%; height: clamp(320px, 58vh, 620px); object-fit: cover; }
.problem__media figcaption {
  position: absolute; left: 1.4rem; bottom: 1.2rem;
  color: var(--seafoam); opacity: 0.85;
  background: rgba(7,30,38,0.55); padding: 0.45rem 0.9rem; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.problem__manifesto { padding: clamp(3.5rem, 7vw, 5.5rem) 0; text-align: center; }
.manifesto__line { font-family: var(--display); font-weight: 400; font-size: clamp(1.3rem, 2.6vw, 2rem); color: var(--muted); }
.manifesto__line--big {
  font-size: clamp(1.9rem, 4.6vw, 3.6rem);
  font-weight: 700; color: var(--seafoam); line-height: 1.15;
}
.manifesto__line em { color: var(--tide); }

/* ---------- solution ---------- */
.solution { background: var(--seafoam); color: var(--ink); padding: clamp(5rem, 11vw, 9rem) 0 0; }
.solution h2 { color: var(--ink); }
.solution__header { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.solution__intro { max-width: 46rem; color: var(--muted-dark); font-size: 1.08rem; }
.solution__grid {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: stretch;
}
.steps { list-style: none; display: grid; gap: 1.1rem; margin-bottom: 2rem; }
.step {
  display: flex; gap: 1.3rem; align-items: flex-start;
  background: #FFFFFF; border-radius: 16px; padding: 1.5rem 1.6rem;
  border: 1px solid rgba(16,35,31,0.08);
  box-shadow: 0 6px 24px rgba(16, 35, 31, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16,35,31,0.1); }
.step__num {
  flex: none; width: 3.4rem;
  font-size: 2.6rem; font-weight: 700; line-height: 1;
  background: linear-gradient(160deg, var(--mint), var(--pod));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.85;
}
.step h3 { color: var(--ink); margin-bottom: 0.3rem; font-size: 1.12rem; }
.step p { color: var(--muted-dark); font-size: 0.95rem; }
.machineframe {
  position: relative; width: 100%; height: 100%; min-height: 460px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(16,35,31,0.22);
}
.machineframe img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.patentchip {
  position: absolute; left: 1.2rem; bottom: 1.2rem;
  background: rgba(7,30,38,0.72); color: var(--tide);
  padding: 0.55rem 1rem; border-radius: 999px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(143,227,207,0.3);
}
.solution__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.scard {
  background: #FFFFFF; border-radius: 16px; padding: 1.6rem;
  border: 1px solid rgba(16,35,31,0.08);
  box-shadow: 0 6px 24px rgba(16, 35, 31, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scard:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(16,35,31,0.12); }
.scard h3 { margin-bottom: 0.5rem; color: var(--ink); }
.scard p { color: var(--muted-dark); font-size: 0.95rem; }
.solution__visual { display: block; }
.solution__refill {
  margin: clamp(3.5rem, 8vw, 6rem) auto 0; width: min(1400px, 96vw);
  border-radius: 18px 18px 0 0; overflow: hidden; position: relative;
}
.solution__refill img { width: 100%; height: clamp(340px, 62vh, 640px); object-fit: cover; }
.solution__refill figcaption {
  position: absolute; left: 1.4rem; bottom: 1.2rem;
  color: var(--seafoam); background: rgba(7,30,38,0.55);
  padding: 0.45rem 0.9rem; border-radius: 999px; backdrop-filter: blur(6px);
}

/* ---------- video ---------- */
.video { background: var(--abyss-2); padding: clamp(4.5rem, 9vw, 7rem) 0; }
.videoframe {
  position: relative; margin-top: 2.2rem;
  border-radius: 20px; overflow: hidden; cursor: pointer;
  aspect-ratio: 16 / 9;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.videoframe img, .videoframe iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border: 0;
}
.videoframe::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,30,38,0.05) 55%, rgba(7,30,38,0.6));
  transition: background 0.3s ease; pointer-events: none;
}
.videoframe.is-playing::after { display: none; }
.videoframe__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 86px; height: 86px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--mint); color: var(--abyss);
  box-shadow: 0 12px 40px rgba(95,201,176,0.45);
  transition: transform 0.25s ease; z-index: 2;
}
.videoframe:hover .videoframe__play,
.videoframe:focus-visible .videoframe__play { transform: translate(-50%, -50%) scale(1.1); }
.videoframe.is-playing .videoframe__play, .videoframe.is-playing .videoframe__label { display: none; }
.videoframe__label {
  position: absolute; left: 1.4rem; bottom: 1.2rem; z-index: 2;
  color: var(--seafoam); background: rgba(7,30,38,0.62);
  padding: 0.45rem 0.9rem; border-radius: 999px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.videoframe:focus-visible { outline: 3px solid var(--mint); outline-offset: 3px; }

/* ---------- mission ---------- */
.mission { position: relative; padding: clamp(5rem, 12vw, 10rem) 0; isolation: isolate; overflow: hidden; }
.mission__bg { position: absolute; inset: 0; z-index: -1; }
.mission__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.mission__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--abyss) 0%, rgba(7,30,38,0.55) 30%, rgba(7,30,38,0.55) 70%, var(--abyss) 100%);
}
.mission__grid {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}
.mission__copy h2 { max-width: 22ch; }
.mission__copy p { max-width: 40rem; color: var(--muted); margin-bottom: 1rem; }
.mission__sig { color: var(--tide); margin-top: 1.4rem; }

/* ---------- press ---------- */
.press { padding: clamp(5rem, 11vw, 9rem) 0; background: var(--abyss-2); }
.press__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
  margin-top: 2.4rem;
}
.pcard {
  border: 1px solid rgba(143,227,207,0.16); border-radius: 16px;
  padding: 1.7rem; background: rgba(7,30,38,0.55);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pcard:hover { transform: translateY(-4px); border-color: rgba(143,227,207,0.45); }
.pcard h3 { color: var(--tide); margin-bottom: 0.6rem; font-size: 1.28rem; }
.pcard p { color: var(--muted); font-size: 0.92rem; }
.pcard__kicker { color: rgba(143,227,207,0.55); margin-bottom: 0.8rem; font-size: 0.68rem; }
.pcard__cnn { height: 30px; width: auto; margin-bottom: 0.9rem; }

/* ---------- team ---------- */
.team { background: var(--seafoam); color: var(--ink); padding: clamp(5rem, 11vw, 9rem) 0 0; }
.team h2 { color: var(--ink); }
.team__intro { max-width: 44rem; color: var(--muted-dark); margin-bottom: 2.6rem; }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.tcard {
  background: #FFFFFF; border-radius: 18px; padding: 1.4rem;
  border: 1px solid rgba(16,35,31,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tcard:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(16,35,31,0.12); }
.tcard__photo {
  border-radius: 12px; overflow: hidden; aspect-ratio: 4/5; margin-bottom: 1rem;
  background: linear-gradient(140deg, #DFF2EA, #C5E8DB);
}
.tcard__photo img { width: 100%; height: 100%; object-fit: cover; }
.tcard__photo--mono {
  display: grid; place-items: center; position: relative; overflow: hidden;
  background:
    radial-gradient(120% 90% at 20% 15%, rgba(95,201,176,0.35), transparent 60%),
    radial-gradient(110% 100% at 85% 90%, rgba(61,92,184,0.28), transparent 55%),
    linear-gradient(140deg, #DFF2EA, #C5E8DB);
}
.tcard__photo--mono::after {
  content: ""; position: absolute; inset: -30% -55% auto auto;
  width: 130%; aspect-ratio: 1; border-radius: 50%;
  border: 1.5px dashed rgba(44,122,102,0.35);
}
.tcard__photo--mono span {
  font-family: var(--display); font-weight: 800; font-size: 3rem;
  background: linear-gradient(92deg, var(--mint), var(--pod));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.tcard h3 { color: var(--ink); font-size: 1.06rem; }
.tcard__role { color: #2C7A66; margin: 0.25rem 0 0.7rem; }
.tcard > p:last-child { color: var(--muted-dark); font-size: 0.88rem; line-height: 1.55; }

.pitbull {
  margin-top: clamp(4rem, 9vw, 7rem);
  background: linear-gradient(120deg, var(--abyss) 30%, #123A4A 100%);
  color: var(--seafoam);
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.pitbull__inner { max-width: 62rem; position: relative; }
.pitbull__kicker { color: var(--tide); margin-bottom: 0.9rem; }
.team .pitbull h2, .pitbull__name {
  color: var(--seafoam);
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}
.pitbull__bio { color: var(--muted); max-width: 44rem; font-size: 1.08rem; }
.pitbull { position: relative; overflow: hidden; }
.pitbull::after {
  content: "\201C";
  position: absolute; right: 4vw; top: -6rem;
  font-family: var(--display); font-weight: 800;
  font-size: 28rem; line-height: 1;
  color: rgba(143, 227, 207, 0.07);
  pointer-events: none;
}

/* ---------- contact ---------- */
.contact { padding: clamp(5rem, 11vw, 9rem) 0; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start; }
.contact__tag { font-family: var(--display); font-size: 1.35rem; color: var(--tide); margin-bottom: 2rem; }
.contact__meta { list-style: none; display: grid; gap: 1.1rem; }
.contact__meta li { display: grid; gap: 0.2rem; color: var(--seafoam); }
.contact__meta .mono { color: var(--tide); }
.contact__meta a:hover { color: var(--tide); }
.contact__form { display: grid; gap: 1.1rem; background: var(--abyss-2); border: 1px solid rgba(143,227,207,0.16); border-radius: 18px; padding: 1.8rem; }
.field { display: grid; gap: 0.4rem; }
.field label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tide); }
.field input, .field textarea {
  background: rgba(237,247,242,0.06);
  border: 1px solid rgba(237,247,242,0.18);
  border-radius: 10px; padding: 0.8rem 0.95rem;
  color: var(--seafoam); font-family: var(--body); font-size: 1rem;
  transition: border-color 0.25s ease;
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: 2px solid var(--mint); outline-offset: 1px; border-color: transparent; }
.contact__form .btn { justify-self: start; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid rgba(143,227,207,0.14); padding: 2rem 0; background: var(--abyss); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__logo { height: 36px; width: auto; }
.footer .mono { color: var(--muted); }

/* ---------- reveal defaults (JS enhances) ---------- */
.reveal { opacity: 0; transform: translateY(28px); }
.clipreveal { clip-path: inset(12% 6% 12% 6% round 18px); opacity: 0.001; }
.no-js .reveal, .no-motion .reveal { opacity: 1; transform: none; }
.no-js .clipreveal, .no-motion .clipreveal { clip-path: none; opacity: 1; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .solution__grid, .mission__grid, .contact__grid { grid-template-columns: 1fr; }
  .press__grid { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .ring--mission { order: 2; margin-top: 2.5rem; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: grid; gap: 6px; margin-left: auto;
    background: none; border: none; cursor: pointer; padding: 10px;
  }
  .nav__burger span { display: block; width: 26px; height: 2px; background: var(--seafoam); transition: transform 0.3s ease, opacity 0.3s ease; }
  .nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobilemenu {
    display: grid; position: fixed; inset: 0; z-index: 40;
    background: rgba(7,30,38,0.97); backdrop-filter: blur(10px);
    place-content: center; gap: 1.6rem; text-align: center;
    opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .mobilemenu.is-open { opacity: 1; pointer-events: auto; visibility: visible; transition-delay: 0s; }
  .mobilemenu a { font-family: var(--display); font-weight: 700; font-size: 1.6rem; color: var(--seafoam); }
  .mobilemenu__cta { color: var(--mint) !important; }
  .press__grid, .team__grid, .solution__cards { grid-template-columns: 1fr; }
  .ring--hero { display: none; }
  .hero__title { font-size: clamp(2.7rem, 13vw, 4rem); }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .hero__scrollcue span { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .clipreveal { clip-path: none; opacity: 1; }
  * { transition-duration: 0.01ms !important; }
}
