/* ============================================================
   RELENTLESS ENTERPRISES - The House Behind the Brands
   Freight-manifest identity, two themes:
   - light (default): warm concrete / kraft-paper daylight
   - dark: carbon steel night dock
   Safety orange is the signal color in both; teal is reserved
   for verified / license / COA states.
   ============================================================ */

:root {
  /* light theme (default) - warm paper, never bright white */
  --bg: #f1efe8;
  --panel: #faf9f4;
  --panel-2: #e9e6dc;
  --text: #191b1f;
  --muted: #5c6068;
  --orange: #ff5a1f;            /* fills, buttons, decorative marks */
  --accent-ink: #bc430e;        /* orange for TEXT on the bg (AA-safe) */
  --orange-soft: rgba(255, 90, 31, 0.1);
  --teal: #0e7c72;              /* verified / license / COA states */
  --line: #d9d5c9;
  --paper: #f4f0e8;
  --header-bg: rgba(241, 239, 232, 0.82);
  --btn-ink: #14161a;           /* text on orange fills, both themes */

  /* child-brand tokens for the house-of-brands cards */
  --puffy-blue: #a9d8f5;
  --puffy-ink: #0b0d0f;
  --grifters-pink: #ff2b83;
  --grifters-cyan: #35c8d9;
  --grifters-ink: #08090b;

  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;

  --shell: 1180px;
  --pad: clamp(20px, 5vw, 44px);
  --rhythm: clamp(72px, 11vw, 130px);
  --radius: 6px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] {
  --bg: #0d0e11;
  --panel: #14161b;
  --panel-2: #1a1d24;
  --text: #edeef0;
  --muted: #8b919c;
  --accent-ink: #ff5a1f;
  --orange-soft: rgba(255, 90, 31, 0.12);
  --teal: #3dd4c8;
  --line: #262a33;
  --header-bg: rgba(13, 14, 17, 0.8);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 80% -10%, rgba(255, 90, 31, 0.07), transparent 40rem),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color 0.3s, color 0.3s;
}
body.is-gated { overflow: hidden; height: 100vh; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.svg-defs { position: absolute; width: 0; height: 0; }

use, symbol { stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

::selection { background: var(--orange); color: #14161a; }

.shell { width: min(var(--shell), 100% - (var(--pad) * 2)); margin-inline: auto; }

.mono { font-family: var(--font-mono); }

/* ---------- Label panel (shipping-label motif) ---------- */
.label-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.label-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--panel-2);
  border-bottom: 1px solid var(--line);
}

/* ---------- Kickers ---------- */
.eyebrow, .kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 20px;
}
.kicker { color: var(--muted); }
.kicker::before { content: "// "; color: var(--accent-ink); }

/* ---------- Buttons ---------- */
.btn {
  --bpad: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--bpad);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn--sm { --bpad: 10px 16px; font-size: 12.5px; }
.btn--lg { --bpad: 16px 30px; font-size: 15px; }
.btn--block { width: 100%; }

.btn--fill { background: var(--orange); color: var(--btn-ink); border-color: var(--orange); }
.btn--fill:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255, 90, 31, 0.3); }

.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent-ink); color: var(--accent-ink); transform: translateY(-2px); }

/* ---------- Theme toggle ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  transition: color 0.25s, border-color 0.25s, transform 0.25s var(--ease-out);
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--accent-ink); border-color: var(--accent-ink); transform: rotate(15deg); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle__sun { display: none; }
.theme-toggle__moon { display: block; }
[data-theme="dark"] .theme-toggle__sun { display: block; }
[data-theme="dark"] .theme-toggle__moon { display: none; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  background:
    repeating-linear-gradient(-45deg, rgba(255, 90, 31, 0.05) 0 18px, transparent 18px 44px),
    var(--bg);
  display: grid;
  place-items: center;
  padding: var(--pad);
}
.age-gate.is-hidden { display: none; }
.age-gate__panel { width: min(500px, 100%); text-align: center; }
.age-gate__stamp {
  display: inline-block;
  margin: 30px auto 8px;
  padding: 8px 18px;
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 28px);
  letter-spacing: 0.06em;
  color: var(--accent-ink);
  border: 3px solid var(--accent-ink);
  border-radius: 4px;
  transform: rotate(-3deg);
}
.age-gate__panel h1 { font-size: clamp(26px, 4.6vw, 36px); margin: 10px 0 12px; font-weight: 700; letter-spacing: -0.01em; }
.age-gate__panel #ageCopy { color: var(--muted); margin: 0 auto 26px; max-width: 40ch; }
.age-gate__actions { display: flex; flex-direction: column; gap: 12px; padding: 0 clamp(16px, 6vw, 48px); }
.age-gate__fine { font-size: 11px; color: var(--muted); line-height: 1.6; margin: 24px 0; padding: 0 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background-color 0.3s;
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.site-header__row { display: flex; align-items: center; gap: 18px; height: 66px; }
.brand { display: inline-flex; align-items: baseline; gap: 8px; margin-right: auto; }
.brand__mark { width: 20px; height: 20px; color: var(--accent-ink); align-self: center; }
.brand__name { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.02em; }
.brand__sub { font-size: 10px; letter-spacing: 0.2em; color: var(--muted); }
.nav { display: flex; gap: 26px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; position: relative; }
.nav a:hover { color: var(--text); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--orange); transition: width 0.25s var(--ease-out);
}
.nav a:hover::after { width: 100%; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--text); }

.nav-mobile { display: none; flex-direction: column; padding: 0 var(--pad) 16px; border-bottom: 1px solid var(--line); }
.nav-mobile a { padding: 12px 0; color: var(--text); border-bottom: 1px solid var(--line); font-weight: 500; }
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile__cta { color: var(--accent-ink) !important; }
.nav-mobile.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(64px, 10vw, 120px); padding-bottom: clamp(48px, 7vw, 80px); overflow: hidden; }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 75%);
  pointer-events: none;
}
[data-theme="dark"] .hero__grid { opacity: 0.22; }
.hero__headline {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 26px;
}
.hero__sub { position: relative; font-size: clamp(16px, 2vw, 19px); color: var(--muted); max-width: 620px; margin: 0 0 34px; font-weight: 300; }
.hero__actions { position: relative; display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: clamp(48px, 8vw, 90px); }

/* ---------- Supply line ---------- */
.supply { position: relative; }
.supply__track { height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; }
.supply__fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--orange), #ff8a4d); transition: width 1.6s var(--ease-out); }
.supply.in-view .supply__fill { width: 100%; }
.supply__nodes { display: flex; justify-content: space-between; list-style: none; margin: 14px 0 0; padding: 0; }
.supply__node { display: flex; align-items: center; gap: 8px; font-size: clamp(9px, 1.4vw, 12px); letter-spacing: 0.12em; color: var(--muted); opacity: 0.4; transition: opacity 0.5s, color 0.5s; }
.supply__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: 2px solid var(--muted); transition: background 0.4s, border-color 0.4s, box-shadow 0.4s; }
.supply.in-view .supply__node { opacity: 1; color: var(--text); }
.supply.in-view .supply__dot { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 10px rgba(255, 90, 31, 0.6); }
.supply.in-view .supply__node:nth-child(1) { transition-delay: 0.15s; } .supply.in-view .supply__node:nth-child(1) .supply__dot { transition-delay: 0.15s; }
.supply.in-view .supply__node:nth-child(2) { transition-delay: 0.55s; } .supply.in-view .supply__node:nth-child(2) .supply__dot { transition-delay: 0.55s; }
.supply.in-view .supply__node:nth-child(3) { transition-delay: 0.95s; } .supply.in-view .supply__node:nth-child(3) .supply__dot { transition-delay: 0.95s; }
.supply.in-view .supply__node:nth-child(4) { transition-delay: 1.35s; } .supply.in-view .supply__node:nth-child(4) .supply__dot { transition-delay: 1.35s; }

/* ---------- Manifest bar ---------- */
.manifest { border-block: 1px solid var(--line); background: var(--panel); padding: 14px 0; }
.manifest__row { display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: space-between; }
.manifest__chip { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.08em; color: var(--muted); }
.manifest__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 8px rgba(20, 160, 148, 0.5); }

/* ---------- Sections ---------- */
.section { padding-block: var(--rhythm); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 22px;
  max-width: 18ch;
}
.section__intro { color: var(--muted); font-size: clamp(15.5px, 1.9vw, 18px); max-width: 600px; margin: 0 0 clamp(34px, 5vw, 54px); font-weight: 300; }

/* ---------- Capabilities ---------- */
.cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cap-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 56px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.cap-card:hover { transform: translateY(-4px); border-color: var(--accent-ink); box-shadow: 0 14px 34px rgba(25, 27, 31, 0.08); }
.cap-card__icon { width: 38px; height: 38px; color: var(--accent-ink); margin-bottom: 20px; }
.cap-card h3 { font-size: 18px; margin: 0 0 10px; font-weight: 700; letter-spacing: -0.01em; }
.cap-card p { color: var(--muted); font-size: 14.5px; margin: 0; line-height: 1.55; font-weight: 300; }
.cap-card__tag { position: absolute; left: 22px; bottom: 20px; font-size: 10px; letter-spacing: 0.14em; color: var(--accent-ink); }
.cap-card--hot { border-color: rgba(255, 90, 31, 0.5); background: linear-gradient(180deg, var(--orange-soft), var(--panel) 55%); }

/* ---------- House of brands ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.brand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 26px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.brand-card:hover { transform: translateY(-6px); }
.brand-card__label { font-size: 10.5px; letter-spacing: 0.14em; margin-bottom: auto; opacity: 0.75; }
.brand-card__name { font-family: var(--font-display); font-size: clamp(38px, 4.5vw, 52px); line-height: 1; margin: 18px 0 10px; }
.brand-card__tagline { font-size: 14.5px; line-height: 1.5; margin-bottom: 22px; opacity: 0.85; max-width: 30ch; }
.brand-card__cta { font-weight: 600; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 7px; margin-top: auto; }

/* Puffy skin: white paper, black ink, powder blue, rounded */
.brand-card--puffy {
  background: #ffffff;
  color: var(--puffy-ink);
  border: 2px solid var(--puffy-ink);
  box-shadow: 0 16px 44px rgba(169, 216, 245, 0.3);
}
.brand-card--puffy .brand-card__name { font-family: "Fredoka", var(--font-display); font-weight: 600; letter-spacing: 0.02em; margin-top: 12px; }
.brand-card--puffy .brand-card__cloud { width: 96px; height: auto; margin-top: 18px; filter: drop-shadow(0 6px 0 var(--puffy-blue)); }
.brand-card--puffy .brand-card__cta { color: #2b6c8f; }
.brand-card--puffy:hover { box-shadow: 0 20px 54px rgba(169, 216, 245, 0.5); }

/* GRIFTERS skin: ink, pink/cyan, real wordmark, dot grid, hard shadow */
.brand-card--grifters {
  background:
    radial-gradient(rgba(244, 240, 232, 0.05) 1px, transparent 1.4px),
    var(--grifters-ink);
  background-size: 14px 14px, auto;
  color: var(--paper);
  border: 1px solid rgba(244, 240, 232, 0.2);
  box-shadow: 8px 8px 0 rgba(255, 43, 131, 0.28);
}
.brand-card__wordmark { width: min(240px, 85%); margin: 14px 0 12px; filter: drop-shadow(3px 3px 0 rgba(255, 43, 131, 0.4)); }
.brand-card__faces { display: flex; gap: 10px; margin-top: 16px; }
.brand-card__faces img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid rgba(244, 240, 232, 0.25);
  transform: rotate(-4deg);
  box-shadow: 3px 3px 0 rgba(53, 200, 217, 0.35);
  transition: transform 0.25s var(--ease-out);
}
.brand-card__faces img + img { transform: rotate(3deg); box-shadow: 3px 3px 0 rgba(255, 43, 131, 0.35); }
.brand-card--grifters:hover .brand-card__faces img { transform: rotate(-1deg) translateY(-2px); }
.brand-card--grifters:hover .brand-card__faces img + img { transform: rotate(1deg) translateY(-2px); }
.brand-card--grifters .brand-card__label { color: var(--grifters-cyan); }
.brand-card--grifters .brand-card__cta { color: var(--grifters-cyan); }
.brand-card--grifters:hover { box-shadow: 10px 10px 0 rgba(255, 43, 131, 0.45); }

/* Next-drop slot: parent's own skin, dashed crate */
.brand-card--next { background: var(--panel); border: 2px dashed var(--line); color: var(--text); }
.brand-card--next .brand-card__label { color: var(--accent-ink); }
.brand-card__name--ghost { color: transparent; -webkit-text-stroke: 1.5px var(--muted); }
.brand-card--next .brand-card__tagline { color: var(--muted); }
.brand-card--next .brand-card__cta--link { color: var(--accent-ink); }

/* ---------- Compliance ---------- */
.compliance { background: var(--panel); border-block: 1px solid var(--line); }
.compliance__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 70px); align-items: start; }
.compliance__panel { background: var(--bg); }
.compliance__list { list-style: none; margin: 0; padding: 8px 0; }
.compliance__list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 20px; }
.compliance__list li + li { border-top: 1px dashed var(--line); }
.compliance__icon { width: 30px; height: 30px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.compliance__list h3 { font-size: 16px; margin: 0 0 4px; font-weight: 700; }
.compliance__list p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ---------- Partner / form ---------- */
.partner__inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(34px, 6vw, 70px); align-items: start; }
.partner__aside { margin-top: 30px; padding-top: 24px; border-top: 1px solid var(--line); }
.partner__aside-label { font-size: 11px; letter-spacing: 0.14em; color: var(--muted); margin: 0 0 8px; }
.partner__mail { font-weight: 600; font-size: clamp(16px, 2vw, 19px); color: var(--accent-ink); word-break: break-all; }
.partner__mail:hover { text-decoration: underline; }
.partner__micro { font-size: 13px; color: var(--muted); margin: 16px 0 0; line-height: 1.5; font-weight: 300; }

.form__body { padding: clamp(20px, 3.4vw, 30px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.form__row .field { margin-bottom: 0; }
.field label { font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.req { color: var(--accent-ink); font-size: 10px; letter-spacing: 0.1em; }
.opt { color: var(--muted); font-size: 10px; letter-spacing: 0.1em; }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c6068' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
[data-theme="dark"] .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b919c' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18); }
.field input::placeholder { color: var(--muted); opacity: 0.7; }
.field__error { color: var(--accent-ink); font-size: 12.5px; margin-top: 6px; display: none; }
.field.is-invalid input, .field.is-invalid select { border-color: var(--accent-ink); }
.field.is-invalid .field__error { display: block; }
.form__success { color: var(--teal); font-weight: 600; margin: 16px 0 0; text-align: center; font-size: 15px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--panel); }
.footer__top { display: flex; justify-content: space-between; gap: 40px; padding-block: clamp(40px, 6vw, 64px) 34px; flex-wrap: wrap; }
.footer__name { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); letter-spacing: 0.01em; }
.footer__tagline { font-size: 11px; letter-spacing: 0.12em; color: var(--muted); margin: 10px 0 0; }
.footer__cols { display: flex; gap: clamp(36px, 6vw, 80px); }
.footer__col { display: flex; flex-direction: column; gap: 11px; }
.footer__col h4 { font-size: 11px; letter-spacing: 0.14em; color: var(--accent-ink); margin: 0 0 4px; font-weight: 500; }
.footer__col a { color: var(--muted); font-size: 14px; transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }
.footer__legal { padding-bottom: 36px; }
.footer__legal .mono:first-child { font-size: 11px; letter-spacing: 0.1em; color: var(--teal); margin: 0 0 14px; border-top: 1px dashed var(--line); padding-top: 22px; }
.footer__legal p { color: var(--muted); font-size: 12px; line-height: 1.6; margin: 0 0 12px; max-width: 88ch; font-weight: 300; }
.footer__copy { opacity: 0.8; }

/* ---------- Reveal states ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
[data-reveal].in-view { opacity: 1; transform: none; }

[data-reveal-words] .word-mask { display: inline-block; overflow: hidden; vertical-align: top; }
[data-reveal-words] .word-inner { display: inline-block; transform: translateY(110%); transition: transform 0.6s var(--ease-out); }
[data-reveal-words].in-view .word-inner { transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .cap-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-grid { grid-template-columns: 1fr; }
  .compliance__inner, .partner__inner { grid-template-columns: 1fr; }
  .manifest__row { justify-content: flex-start; }
}

@media (max-width: 620px) {
  body { font-size: 15.5px; }
  .cap-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__row .field { margin-bottom: 16px; }
  .hero__actions .btn { flex: 1; }
  .footer__top { flex-direction: column; }
  .supply__node { letter-spacing: 0.06em; }
}

/* ---------- Reduced motion: freeze to final states ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  [data-reveal-words] .word-inner { transform: none; }
  .supply__fill { width: 100%; }
  .supply__node { opacity: 1; color: var(--text); }
  .supply__dot { background: var(--orange); border-color: var(--orange); }
}
