/* ==========================================================================
   Selection Lab — page styles
   Built on the Noora design system tokens in
   _ds/noora-design-system-d69cb762-c356-4708-a19d-3f29d128b7fa/
   ========================================================================== */

/* --- Local tokens -------------------------------------------------------
   Everything else comes from the Noora tokens; these are the few values the
   page adds on top. --accent-soft is --accent-primary (#f30) at low alpha.  */

:root {
  --accent-soft: rgba(255, 51, 0, .10);
  --accent-soft-strong: rgba(255, 51, 0, .16);
  --header-h: 64px;
  /* Where an anchor jump parks a section's top edge, clear of the fixed
     header. The scrollspy reads this back off each section so a clicked
     link and the highlighted link can never disagree. */
  --scroll-offset: calc(var(--header-h) + var(--space-5));
}

/* --- Reset / page ------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--gray-200);
  color: var(--surface-inverse);
  font-family: var(--font-sans), system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: var(--surface-inverse); }
a:hover { color: var(--accent-primary); }

img { max-width: 100%; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-input) 0;
  font-size: var(--text-caption);
  font-weight: var(--weight-heading);
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--accent-primary); outline-offset: 3px; }

/* --- Icons --------------------------------------------------------------
   The source SVGs are stroked with currentColor. Masking them lets `color`
   drive the icon instead of the filter() hack the design canvas used.       */

.icon {
  display: inline-block;
  flex: none;
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: var(--icon) center / contain no-repeat;
  mask: var(--icon) center / contain no-repeat;
}
.icon-lg { width: 24px; height: 24px; }
.icon-sm { width: 14px; height: 14px; }

[data-icon="eye"]            { --icon: url("assets/icons/eye.svg"); }
[data-icon="bolt"]           { --icon: url("assets/icons/bolt.svg"); }
[data-icon="book"]           { --icon: url("assets/icons/book.svg"); }
[data-icon="steps"]          { --icon: url("assets/icons/steps.svg"); }
[data-icon="users"]          { --icon: url("assets/icons/users.svg"); }
[data-icon="handshake"]      { --icon: url("assets/icons/handshake.svg"); }
[data-icon="folder"]         { --icon: url("assets/icons/folder.svg"); }
[data-icon="sparkle"]        { --icon: url("assets/icons/sparkle.svg"); }
[data-icon="faces"]          { --icon: url("assets/icons/faces.svg"); }
[data-icon="send"]           { --icon: url("assets/icons/send.svg"); }
[data-icon="arrow-up-right"] { --icon: url("assets/icons/arrow-up-right.svg"); }
[data-icon="instagram"]      { --icon: url("assets/icons/instagram.svg"); }
[data-icon="linkedin"]       { --icon: url("assets/icons/linkedin.svg"); }
[data-icon="x"]              { --icon: url("assets/icons/x.svg"); }
[data-icon="vimeo"]          { --icon: url("assets/icons/vimeo.svg"); }

/* --- Buttons (DS: components/core/Button.jsx) --------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  border-radius: var(--radius-pill);
  text-decoration: none;
  line-height: 1.2;
  transition: background .2s ease-out, color .2s ease-out, transform .1s ease-out;
}
.btn:active { transform: scale(.98); }

.btn-sm { padding: 8px 16px;  font-size: 14px; }
.btn-md { padding: 12px 22px; font-size: 16px; }
.btn-lg { padding: 16px 28px; font-size: 18px; }

.btn-primary   { background: var(--surface-inverse); color: var(--text-inverse); }
.btn-primary:hover   { background: var(--accent-primary); color: var(--text-inverse); }
.btn-secondary { background: var(--white); color: var(--text-strong); }
.btn-secondary:hover { background: var(--gray-200); color: var(--text-strong); }
.btn-accent    { background: var(--accent-primary); color: var(--text-inverse); }
.btn-accent:hover    { background: var(--black); color: var(--text-inverse); }

/* --- Section label (DS: components/core/SectionLabel.jsx) --------------- */

.section-label {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
  font-size: var(--text-label);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-label);
  line-height: 1.6;
  color: var(--accent-primary);
}

/* --- Header ------------------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 14px clamp(16px, 3vw, var(--page-pad));
  background: transparent;
  transition:
    padding .28s ease-out,
    background-color .28s ease-out,
    box-shadow .28s ease-out,
    backdrop-filter .28s ease-out;
}

/* Past the hero the header lifts off the page as a frosted bar. */
.site-header.is-scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: rgba(241, 241, 241, .72);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  backdrop-filter: blur(16px) saturate(1.6);
  box-shadow: 0 1px 0 rgba(10, 10, 10, .08);
}
/* Without backdrop-filter the translucent bar would leave text unreadable. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header.is-scrolled { background-color: var(--gray-200); }
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  background: var(--surface-inverse);
}
.brand-mark--sm { width: 32px; height: 32px; border-radius: 8px; }

.brand-name {
  font-size: 17px;
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-tight);
  color: var(--white);
  transition: color .2s ease-out;
}
/* Past the hero the header sits on light ground. */
.site-header.is-scrolled .brand-name { color: var(--surface-inverse); }
.brand:hover .brand-name { color: var(--accent-primary); }

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-1);
  background: rgba(255, 255, 255, .92);
  border-radius: var(--radius-pill);
  padding: var(--space-1);
}
.nav-pill a {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  color: var(--text-body);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color .3s ease-out;
}
.nav-pill a:hover { color: var(--text-strong); }
/* Section currently under the header gets the primary accent. */
.nav-pill a.is-active,
.nav-pill a.is-active:hover { color: var(--accent-primary); }

/* The accent ground is one element that slides between links rather than a
   per-link background, so moving between sections reads as one travelling
   pill. JS writes width/translateX; the element is injected by main.js so
   the no-JS page keeps a plain nav. */
.nav-indicator {
  position: absolute;
  top: var(--space-1);
  bottom: var(--space-1);
  left: 0;
  width: 0;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  opacity: 0;
  pointer-events: none;
  transition:
    transform .45s var(--ease-spring),
    width .45s var(--ease-spring),
    opacity .22s ease-out;
}
.nav-pill.has-active .nav-indicator { opacity: 1; }
/* First placement, and re-measures after a resize, must not animate in. */
.nav-indicator.no-anim { transition: none; }

.menu-toggle {
  display: none;
  background: rgba(255, 255, 255, .92);
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-label);
  color: var(--surface-inverse);
  cursor: pointer;
  transition: transform .16s var(--ease-spring);
}
.menu-toggle:active { transform: scale(.97); }

[hidden] { display: none !important; }

.mobile-menu {
  position: absolute;
  top: calc(100% + var(--space-1));
  left: var(--space-4);
  right: var(--space-4);
  background: var(--white);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transform-origin: top center;
  animation: menu-in .2s var(--ease-spring);
}
.mobile-menu a {
  font-size: 17px;
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  color: var(--surface-inverse);
  text-decoration: none;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-input);
  transition: color .3s ease-out, background-color .3s ease-out;
}
.mobile-menu a:hover { background: var(--gray-150); color: var(--accent-primary); }
.mobile-menu a.is-active,
.mobile-menu a.is-active:hover {
  color: var(--accent-primary);
  background: var(--accent-soft);
}
.mobile-menu a.mobile-cta.is-active { color: var(--text-inverse) !important; }
.mobile-cta {
  margin-top: var(--space-2);
  background: var(--surface-inverse);
  color: var(--text-inverse) !important;
  text-align: center;
  font-size: 15px;
  font-weight: var(--weight-heading) !important;
  letter-spacing: var(--tracking-label) !important;
  padding: 14px 20px !important;
  border-radius: var(--radius-pill) !important;
}
.mobile-cta:hover { background: var(--accent-primary); }

@keyframes menu-in {
  from { opacity: 0; transform: scale(.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* Between the pill and the burger the row gets tight — trim it, don't wrap. */
@media (max-width: 1060px) and (min-width: 821px) {
  .nav-pill a { padding: 8px 10px; font-size: 14px; }
}
@media (max-width: 900px) and (min-width: 821px) {
  .brand-name { display: none; }
}

@media (max-width: 820px) {
  .nav-pill, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .site-header.is-scrolled { padding-top: 10px; padding-bottom: 10px; }
}

/* Where the burger replaces the nav, the toggle carries the active section. */
.menu-toggle .menu-toggle-section {
  display: none;
  color: var(--accent-primary);
}
@media (max-width: 820px) {
  .menu-toggle.has-section .menu-toggle-section { display: inline; }
  .menu-toggle.has-section .menu-toggle-section::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 11px;
    margin: 0 8px -1px;
    background: var(--gray-400);
  }
}
@media (max-width: 420px) {
  .menu-toggle { padding: 12px 16px; }
  .menu-toggle.has-section .menu-toggle-section { display: none; }
}

@media (min-width: 821px) {
  .mobile-menu { display: none; }
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--surface-inverse);
}
.hero-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.4);
  border: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s ease-out;
}
.hero-video.is-ready { opacity: 1; }
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 45%, rgba(0,0,0,.6) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, var(--page-pad)) clamp(48px, 8vh, 72px);
}
.hero-eyebrow {
  margin: 0 0 18px;
  font-size: var(--text-caption);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-label);
  color: rgba(255, 255, 255, .7);
}
.hero-title {
  margin: 0;
  font-size: clamp(42px, 8.5vw, var(--text-display));
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-display);
  line-height: .95;
  color: var(--white);
  max-width: 1100px;
  text-wrap: pretty;
}
.hero-title .dot { color: var(--accent-primary); }
.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-top: 40px;
  flex-wrap: wrap;
}

/* --- Generic section ---------------------------------------------------- */

.section {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(90px, 13vw, 150px) clamp(20px, 4vw, var(--page-pad)) 0;
  scroll-margin-top: var(--scroll-offset);
}
.section--tight { padding-top: clamp(70px, 9vw, 110px); }

/* --- About -------------------------------------------------------------- */

.about-title {
  margin: 28px 0 0;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-display);
  line-height: 1;
  color: var(--surface-inverse);
  max-width: 900px;
  text-wrap: pretty;
}
.about-lede {
  margin: var(--space-5) 0 0;
  font-size: clamp(18px, 2vw, var(--text-body-lg));
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-body);
  line-height: 1.4;
  color: var(--surface-inverse);
  max-width: 640px;
  text-wrap: pretty;
}
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: clamp(36px, 5vw, 56px);
}
.prose {
  margin: 0;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  line-height: 1.55;
  color: var(--text-body);
  text-wrap: pretty;
}

/* --- Manifesto (word-by-word scroll reveal) ----------------------------- */

.manifesto {
  margin: 28px 0 0;
  font-size: clamp(30px, 4.5vw, var(--text-h1));
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-tight);
  line-height: 1.08;
  max-width: 1120px;
  text-wrap: pretty;
  color: var(--surface-inverse);
}
/* Only dim words once JS has split them — no-JS keeps full-contrast text. */
.manifesto.is-split { color: var(--text-faint); }
.manifesto.is-split span { transition: color .25s ease-out; }
.manifesto.is-split span.is-lit { color: var(--surface-inverse); }

/* --- Layers ------------------------------------------------------------- */

.layers-lede {
  margin: 20px 0 0;
  font-size: clamp(18px, 2vw, var(--text-body-lg));
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  line-height: 1.4;
  color: var(--text-body);
  max-width: 760px;
  text-wrap: pretty;
}
.layer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: var(--space-3);
  margin-top: var(--space-7);
}
.layer-card {
  background: var(--surface-card);
  border-radius: var(--radius-card);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  color: var(--accent-primary); /* drives the masked icon */
}
.layer-card h3 {
  margin: 14px 0 0;
  font-size: var(--text-body-lg);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-tight);
  color: var(--surface-inverse);
}
.layer-role {
  margin: 0;
  font-size: var(--text-caption);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-label);
  color: var(--text-muted);
}
.layer-body {
  margin: 0;
  font-size: var(--text-body-sm);
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  line-height: 1.5;
  color: var(--text-body);
}
.layer-card--inverse { background: var(--surface-inverse); }
.layer-card--inverse h3 { color: var(--white); }
.layer-card--inverse .layer-body { color: rgba(255, 255, 255, .65); }

/* --- Method ------------------------------------------------------------- */

.method {
  background: var(--surface-inverse);
  margin-top: clamp(70px, 9vw, 120px);
  scroll-margin-top: var(--scroll-offset);
}
.method-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 140px) clamp(20px, 4vw, var(--page-pad));
}
.method-lines {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 20px);
  margin-top: var(--space-7);
}
.method-lines p {
  margin: 0;
  font-size: clamp(26px, 4vw, var(--text-h2));
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-tight);
  line-height: 1.05;
  text-wrap: pretty;
}
.method-lines .lead  { color: var(--white); }
.method-lines .trail { color: #666; }

.principle { margin-top: clamp(80px, 10vw, 120px); }
.principle-eyebrow {
  margin: 0;
  font-size: var(--text-label);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-label);
  color: var(--accent-primary);
}
.principle h2 {
  margin: 18px 0 0;
  font-size: clamp(36px, 6vw, 88px);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-display);
  line-height: .98;
  color: var(--white);
  max-width: 1200px;
  text-wrap: pretty;
}
.principle-body {
  margin: 28px 0 0;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  line-height: 1.5;
  color: rgba(255, 255, 255, .65);
  max-width: 640px;
  text-wrap: pretty;
}

/* --- Team --------------------------------------------------------------- */

#team { padding-top: clamp(90px, 12vw, 140px); }

.bio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: 40px;
  align-items: start;
}
.bio--second { margin-top: clamp(48px, 6vw, 80px); }

.portrait {
  margin: 0;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--gray-300);
}
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.portrait figcaption { display: none; }
/* Shown until a real portrait file exists at the referenced path. */
.portrait.is-empty {
  display: grid;
  place-items: center;
  background: var(--gray-150);
  border: 1px dashed var(--gray-400);
}
.portrait.is-empty img { display: none; }
.portrait.is-empty figcaption {
  display: block;
  font-size: var(--text-caption);
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-label);
  color: var(--text-muted);
}

.bio-copy { display: flex; flex-direction: column; }
.bio-copy h3 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, var(--text-h2));
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-tight);
  color: var(--surface-inverse);
}
.bio-role {
  margin: var(--space-3) 0 0;
  font-size: var(--text-body);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-body);
  color: var(--surface-inverse);
}
.bio-body {
  margin: 20px 0 0;
  font-size: 17px;
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  line-height: 1.5;
  color: var(--text-body);
  max-width: 560px;
  text-wrap: pretty;
}
.bio-body + .bio-body { margin-top: 16px; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: var(--space-3) 18px;
  font-size: var(--text-caption);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-label);
  color: var(--surface-inverse);
  text-decoration: none;
  transition: transform .16s var(--ease-spring), color .2s ease-out;
}
.chip:active { transform: scale(.98); }

/* --- Contact ------------------------------------------------------------ */

#contact { padding-bottom: clamp(90px, 12vw, 140px); }

.contact-card {
  background: var(--surface-card);
  border-radius: var(--radius-card);
  padding: clamp(32px, 5vw, var(--space-8));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: clamp(32px, 4vw, var(--space-7));
}
.contact-title {
  margin: 20px 0 0;
  font-size: clamp(36px, 5vw, var(--space-8));
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-display);
  line-height: 1;
  color: var(--surface-inverse);
}
.contact-body {
  margin: 18px 0 0;
  font-size: 17px;
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  line-height: 1.5;
  color: var(--text-body);
  max-width: 460px;
}
.contact-cta { margin-top: var(--space-6); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.detail-label {
  margin: 0;
  font-size: var(--text-label);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-label);
  color: var(--text-muted);
}
p.detail-value { margin: 6px 0 0; }
a.detail-value { display: inline-block; margin-top: 6px; text-decoration: none; }
.detail-value {
  font-size: var(--text-body);
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-body);
  line-height: 1.4;
  color: var(--surface-inverse);
}

/* --- Footer ------------------------------------------------------------- */

.site-footer {
  background: var(--surface-inverse);
  padding: clamp(18px, 2.5vw, 26px) clamp(20px, 4vw, var(--page-pad));
}
.footer-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-name {
  font-size: var(--text-body-sm);
  font-weight: var(--weight-heading);
  letter-spacing: var(--tracking-tight);
  color: var(--white);
}
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s ease-out;
}
.footer-links a:hover { color: var(--white); }
.footer-links .icon { width: 18px; height: 18px; }
.footer-copy {
  font-size: var(--text-caption);
  font-weight: var(--weight-body);
  letter-spacing: var(--tracking-label);
  color: #666;
  margin-left: 4px;
}

/* --- Scroll reveal ------------------------------------------------------ */

[data-reveal] { opacity: 1; }
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}
.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-header { transition: none; }
  .nav-indicator { transition: opacity .22s ease-out; }
  .js [data-reveal] { transform: none; }
  .mobile-menu { animation: none; }
  .hero-video { transition: none; }
}
