/* ==========================================================================
   Simple, LLC v3 — Kinetic Brutalism / Video-First
   Per ui-ux-pro-max design system (design-system/simple-llc-v3/MASTER.md)
   Space Grotesk single-family · 0 radius · 2px borders · 100ms color moves
   Brand override: #0a2463 navy-slate · #F5222D red · #F4F5F9 inverted paper
   ========================================================================== */

:root {
  --bg: #0a2463;
  --surface: #10307c;
  --fg: #ffffff;
  --muted: #96a2c8;
  --red: #f5222d;
  --red-press: #c8151f;
  --navy: #0a2463;
  --deep-navy: #0a2463; /* Chandler R4: brand Deep Navy */
  --paper: #f4f5f9;
  --ink: #0a2463;
  --ink-muted: #35447f;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(10, 36, 99, 0.2);
  --grotesk: "Space Grotesk", system-ui, sans-serif;
  --pad: clamp(20px, 4.5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: clip; }
body {
  font-family: var(--grotesk);
  font-size: 17px;
  line-height: 1.55;
  background: var(--bg);
  color: var(--fg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

h1, h2, h3 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
}

/* brand dot: round circle per the style guide (Chandler note R1-1) */
.dot { display: inline-block; width: 0.22em; height: 0.22em; border-radius: 50%; background: var(--red); margin-left: 0.12em; }
.dot-navy, .dot-navy-sm { background: var(--navy); }
.dot-hero { width: 0.16em; height: 0.16em; }
.dot-inline { display: inline-block; width: 0.18em; height: 0.18em; border-radius: 50%; background: var(--red); margin-left: 0.14em; }
.nowrap { white-space: nowrap; }

/* ---------------- buttons: flood inversion on hover ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.06em;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear;
}
.btn-lg { min-height: 58px; padding: 0 32px; font-size: 15px; }
.btn-red { background: var(--red); border-color: var(--red); color: #fff; }
.btn-red:hover { background: #fff; border-color: #fff; color: var(--red); }
.btn-ghost { background: transparent; border-color: #fff; color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-navy:hover { background: #fff; border-color: #fff; color: var(--navy); }
.btn-rtt { background: #1b75bb; border-color: #1b75bb; color: #fff; }
.btn-rtt:hover { background: #7fc63f; border-color: #7fc63f; color: #0a2463; }

/* ---------------- nav ---------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: 76px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 0 var(--pad);
  background: color-mix(in srgb, var(--deep-navy) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--line);
}
.brand {
  font-weight: 700; font-size: 44px; letter-spacing: 0.02em; /* 2x per Chandler R6 */
  display: inline-flex; align-items: baseline;
  line-height: 1;
}
@media (max-width: 560px) { .brand { font-size: 34px; } }
.nav-links { display: none; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.nav-links a {
  font-size: 12.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.1s linear, color 0.1s linear;
}
.nav-links a:hover { border-bottom-color: var(--red); }
.nav-rtt { color: #7fc63f; white-space: nowrap; }
.nav-rtt:hover { border-bottom-color: #1b75bb !important; }
.nav-cta-m { display: none !important; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta { min-height: 44px; padding: 0 18px; font-size: 12.5px; }
.burger {
  width: 48px; height: 44px;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 7px;
  padding: 0 11px;
  background: transparent; border: 2px solid #fff;
}
.burger span { height: 2px; background: #fff; transition: transform 0.2s ease; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(4.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child { transform: translateY(-4.5px) rotate(-45deg); }

@media (min-width: 1020px) {
  .nav-links { display: flex; }
  .burger { display: none; }
}
@media (max-width: 1019px) {
  .nav-cta { display: none; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--line);
    padding: 0 var(--pad) 16px;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
  .nav-cta-m { display: block !important; color: var(--red); }
}

/* ---------------- hero: full-viewport video ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 70%;
  transform-origin: center;
  will-change: transform, opacity;
}
.hero-scrim {
  position: absolute; inset: 0;
  /* 60% dark overlay per Video-First Hero pattern */
  background:
    linear-gradient(180deg, rgba(10, 36, 99, 0.72) 0%, rgba(10, 36, 99, 0.35) 40%, rgba(10, 36, 99, 0.78) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 140px var(--pad) clamp(88px, 14vh, 150px);
}
.hero-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: #fff;
  border: 2px solid var(--line);
  background: rgba(10, 36, 99, 0.45);
  padding: 10px 16px;
  margin-bottom: clamp(22px, 4vh, 40px);
}
.hero-title {
  font-size: clamp(52px, 9.5vw, 150px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-wrap: balance;
}
.hero-title > span { display: block; } /* line spans only — inner dot/nowrap stay inline */
.hero-title .nowrap { display: inline; }
.hero-title .dot { display: inline-block; }
/* "Simple" in the brand-card blue + round red dot (Chandler note R1-1).
   Soft light halo keeps the navy legible over the video. */
.hero-title em {
  font-style: normal;
  color: var(--deep-navy);
  text-shadow: 0 0 34px rgba(255, 255, 255, 0.55), 0 0 90px rgba(255, 255, 255, 0.3);
}
.hero-sub {
  max-width: 620px;
  margin-top: clamp(20px, 3.5vh, 34px);
  font-size: clamp(17px, 1.6vw, 21px);
  color: #e8ebf5;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(26px, 4.5vh, 44px); }
.hero-foot {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 14px var(--pad);
  border-top: 2px solid var(--line);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: #cdd4ea;
  background: rgba(10, 36, 99, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.vid-toggle {
  background: transparent; border: 2px solid var(--line); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 8px 14px;
  transition: background-color 0.1s linear, color 0.1s linear;
}
.vid-toggle:hover { background: #fff; color: var(--navy); }
.hero-scroll { border-bottom: 2px solid var(--red); padding-bottom: 2px; }
@media (max-width: 640px) { .hero-loc { display: none; } }

/* ---------------- marquee (5s-loop linear, hard clip) ---------------- */
.marquee {
  overflow: hidden;
  background: var(--red);
  border-block: 2px solid var(--red);
}
.marquee-track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  padding: 13px 0;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #fff;
  animation: mq 22s linear infinite;
}
.marquee-track b { font-size: 8px; color: var(--navy); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------------- stats ---------------- */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-bottom: 2px solid var(--line);
}
.stat {
  padding: clamp(30px, 4.5vw, 56px) var(--pad);
  border-right: 2px solid var(--line);
  border-top: 2px solid var(--line);
}
.stat:nth-child(2n) { border-right: none; }
.stat:nth-child(-n + 2) { border-top: none; }
.stat b {
  display: block;
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 700; line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat b.stat-word { font-size: clamp(30px, 3.4vw, 52px); padding-top: 0.35em; }
.stat i {
  display: block; margin-top: 10px;
  font-style: normal; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--muted);
}
@media (min-width: 900px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat { border-top: none; }
  .stat:nth-child(2n) { border-right: 2px solid var(--line); }
  .stat:last-child { border-right: none; }
}

/* ---------------- sections ---------------- */
.sec { padding: clamp(76px, 10vw, 140px) var(--pad); }
.sec-bar {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: clamp(30px, 4.5vw, 54px);
}
.sec-tag {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--red);
}
.sec-no { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; color: var(--muted); }
.sec-h {
  font-size: clamp(34px, 5.6vw, 84px);
  max-width: 20ch;
  margin-bottom: 20px;
}
.sec-p { max-width: 640px; font-size: clamp(16px, 1.4vw, 19px); color: var(--muted); margin-bottom: clamp(36px, 5vw, 60px); }

.sec-light { background: var(--paper); color: var(--ink); }
.sec-light .sec-bar { border-color: var(--line-dark); }
.sec-light .sec-no { color: var(--ink-muted); }
.sec-light .sec-p { color: var(--ink-muted); }

/* Branding section speaks in the brand Deep Navy (Chandler R4/R5) */
#branding .sec-h { color: var(--deep-navy); }
#branding .sec-p { color: var(--deep-navy); }
#branding .noteb h3,
#branding .noteb p { color: var(--deep-navy); }

/* Training section field is Deep Navy (Chandler R5; was base #0a2463 navy-slate) */
#training { background: var(--deep-navy); }
#training .train-rtt { background: rgba(255, 255, 255, 0.08); }
#training .train-cell span,
#training .sec-p { color: #c9d3ef; }

/* ---------------- services grid ---------------- */
.svc-grid {
  display: grid; grid-template-columns: 1fr;
  border: 2px solid var(--line);
}
@media (min-width: 760px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1140px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc {
  position: relative;
  padding: clamp(26px, 3.4vw, 44px);
  border: 2px solid var(--line);
  margin: -1px;
  transition: background-color 0.1s linear, color 0.1s linear;
}
.svc-no {
  display: block;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 40px;
}
.svc h3 { font-size: clamp(22px, 2.2vw, 30px); margin-bottom: 12px; }
.svc p { font-size: 15.5px; color: var(--muted); transition: color 0.1s linear; }
.svc-flag {
  display: inline-block; margin-top: 22px;
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  border: 2px solid currentColor;
  padding: 8px 12px;
}
a.svc:hover { background: var(--red); color: #fff; }
a.svc:hover .svc-no, a.svc:hover p { color: #fff; }

/* ---------------- training ---------------- */
.train { display: grid; border: 2px solid var(--line); }
@media (min-width: 900px) { .train { grid-template-columns: repeat(3, 1fr); } }
.train-cell { padding: clamp(26px, 3.4vw, 44px); border: 2px solid var(--line); margin: -1px; }
.train-cell b { display: block; font-size: clamp(48px, 5.5vw, 80px); line-height: 1; letter-spacing: -0.02em; }
.train-cell span { display: block; margin-top: 12px; font-size: 15px; color: var(--muted); max-width: 300px; }
.train-rtt { background: var(--surface); display: flex; flex-direction: column; justify-content: space-between; gap: 22px; }
.train-q { font-size: clamp(26px, 2.6vw, 38px); font-weight: 700; text-transform: uppercase; }

/* ---------------- gallery ---------------- */
.gallery {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border: 2px solid var(--line-dark);
  margin-bottom: clamp(36px, 5vw, 56px);
}
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.g-cell {
  position: relative;
  aspect-ratio: 1;
  display: grid; place-items: center;
  border: 2px solid var(--line-dark);
  margin: -1px;
  padding: 12%;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
}
.g-cell img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.g-cell:hover img { transform: scale(1.06); }
.g-cell span { position: absolute; top: 10px; left: 12px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.2em; color: var(--ink-muted); }
/* white-on-black artwork sits on a dark tile so its baked background disappears */
.g-dark { background: #000; }
.g-dark span { color: rgba(255, 255, 255, 0.55); }
/* very wide strips get a little extra breathing room */
.g-wide { padding: 16% 9%; }
/* whitespace-trimmed artwork runs close to the tile edge (R3) */
.g-tight { padding: 5%; }

.notes { display: grid; gap: 0; border: 2px solid var(--line-dark); }
@media (min-width: 800px) { .notes { grid-template-columns: repeat(3, 1fr); } }
.noteb { padding: clamp(22px, 3vw, 36px); border: 2px solid var(--line-dark); margin: -1px; }
.noteb h3 { font-size: 20px; margin-bottom: 10px; }
.noteb p { font-size: 15px; color: var(--ink-muted); }

/* ---------------- The Simple Method (red field) ---------------- */
.sec-red { background: var(--red); color: #fff; }
.sec-red .sec-bar { border-color: rgba(255, 255, 255, 0.4); }
.sec-tag-onred { color: #fff; }
.sec-no-onred { color: rgba(255, 255, 255, 0.7); }
.sec-red .sec-h { color: #fff; }
.sec-p-onred { color: rgba(255, 255, 255, 0.94); }
.dot-inline-navy { background: var(--navy); } /* red fields take the navy dot */
.creed { list-style: none; display: grid; border: 2px solid rgba(255, 255, 255, 0.4); }
@media (min-width: 900px) { .creed { grid-template-columns: repeat(4, 1fr); } }
.creed li { padding: clamp(24px, 3vw, 38px); border: 2px solid rgba(255, 255, 255, 0.4); margin: -1px; }
.creed b {
  display: block;
  font-size: clamp(48px, 5vw, 76px); font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  margin-bottom: 16px;
}
.creed h3 { font-size: 21px; margin-bottom: 8px; }
.creed p { font-size: 15px; color: rgba(255, 255, 255, 0.92); }
.btn-paper-red { background: var(--paper); border-color: var(--paper); color: var(--red); }
.btn-paper-red:hover { background: transparent; border-color: #fff; color: #fff; }

/* ---------------- section CTA rows + training router sub ---------------- */
.sec-cta { margin-top: clamp(30px, 4vw, 48px); }
.train-rtt-sub { display: block; font-size: 15px; color: var(--muted); max-width: 300px; }

/* ---------------- process ---------------- */
.steps { list-style: none; display: grid; border: 2px solid var(--line-dark); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.steps li { padding: clamp(24px, 3vw, 38px); border: 2px solid var(--line-dark); margin: -1px; }
.steps b {
  display: block;
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  margin-bottom: 18px;
}
.steps h3 { font-size: 22px; margin-bottom: 8px; }
.steps p { font-size: 15px; color: var(--ink-muted); }

/* ---------------- CTA red field ---------------- */
.cta { background: var(--red); color: #fff; padding: clamp(84px, 12vw, 170px) var(--pad); }
.cta-mark { font-size: 22px; font-weight: 700; letter-spacing: 0.02em; display: inline-flex; align-items: baseline; margin-bottom: 30px; }
.cta-h { font-size: clamp(44px, 8vw, 130px); letter-spacing: -0.02em; }
.cta-dot { color: var(--navy); }
.cta-p { margin-top: 22px; font-size: clamp(17px, 1.6vw, 21px); max-width: 460px; color: rgba(255, 255, 255, 0.94); }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 42px; }
.cta-mail {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 3px;
}
.cta-mail:hover { border-color: #fff; }

/* ---------------- footer ---------------- */
.foot {
  display: grid; gap: 24px;
  padding: clamp(44px, 6vw, 72px) var(--pad);
  border-top: 2px solid var(--line);
}
.brand-foot { font-size: 26px; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 16px 26px; }
.foot-nav a {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.foot-nav a:hover { border-color: var(--red); }
.foot p { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; line-height: 2; }

/* ---------------- static intake page ---------------- */
.intake-page {
  min-height: 100svh;
  background: var(--paper);
  color: var(--ink);
}
.intake-page .nav {
  position: sticky;
  background: color-mix(in srgb, var(--deep-navy) 96%, transparent);
}
.intake-page .intake-nav-links { display: flex; }
@media (max-width: 1019px) {
  .intake-page .intake-nav {
    height: auto;
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    padding-block: 16px;
  }
  .intake-page .intake-nav-links {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 22px;
    width: 100%;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: transparent;
    border-bottom: 0;
  }
  .intake-page .intake-nav-links a {
    border-bottom: 2px solid transparent;
    padding: 4px 0;
  }
}
.intake-shell {
  padding: clamp(44px, 7vw, 90px) var(--pad) clamp(72px, 9vw, 120px);
}
.intake-hero {
  max-width: 980px;
  margin-bottom: clamp(40px, 6vw, 76px);
}
.intake-title {
  color: var(--ink);
  font-size: clamp(44px, 8vw, 118px);
  max-width: 12ch;
}
.intake-title .dot { vertical-align: baseline; }
.intake-sub {
  color: var(--ink-muted);
  max-width: 680px;
}
.intake-panel {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  border: 2px solid var(--line-dark);
  background: #fff;
}
@media (min-width: 980px) {
  .intake-panel { grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr); }
}
.intake-copy,
.intake-form {
  padding: clamp(24px, 4vw, 48px);
}
.intake-copy {
  background: var(--deep-navy);
  color: #fff;
}
.intake-copy h2 {
  font-size: clamp(30px, 4vw, 56px);
  margin: 16px 0 18px;
  max-width: 11ch;
}
.intake-copy p {
  color: #d7ddf1;
  max-width: 420px;
}
.intake-fallback {
  margin-top: 24px;
  font-size: 14px;
}
.intake-fallback a {
  color: #fff;
  border-bottom: 2px solid var(--red);
}
.intake-form {
  display: grid;
  gap: 20px;
}
.intake-form fieldset {
  display: grid;
  gap: 10px;
  border: 2px solid var(--line-dark);
  padding: 18px;
}
.intake-form legend,
.intake-form label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.intake-form .choice {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
}
.field-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 700px) {
  .field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  margin-top: 8px;
  border: 2px solid var(--line-dark);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font: 500 16px/1.4 var(--grotesk);
  padding: 13px 14px;
}
.intake-form textarea { resize: vertical; }
.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.form-note {
  color: var(--ink-muted);
  font-size: 13px;
}
.intake-foot {
  background: var(--deep-navy);
  color: #fff;
}

/* ---------------- kinetic reveals ---------------- */
html.js [data-k] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
html.js [data-k].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-k] { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .hero-media video { transform: none !important; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
