:root {
  color-scheme: light;
  --ink: #142322;
  --muted: #63716e;
  --soft: #f6f1e8;
  --paper: #fffaf2;
  --white: #ffffff;
  --line: rgba(20, 35, 34, 0.12);
  --teal: #176c69;
  --teal-deep: #103f3f;
  --teal-night: #071b24;
  --clay: #bd6040;
  --gold: #e4a566;
  --sand: #f0d7ac;
  --sky: #cbe4de;
  --shadow: 0 26px 80px rgba(13, 34, 36, 0.18);
  --soft-shadow: 0 18px 42px rgba(13, 34, 36, 0.10);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
  --nav-h: 84px;
  --ease: cubic-bezier(.19, 1, .22, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::selection { background: rgba(228, 165, 102, 0.34); }
body.menu-open { overflow: hidden; }
body[data-sky="night"] { --soft: #eef0e8; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid rgba(228, 165, 102, .95); outline-offset: 4px; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-180%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.scroll-sky {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 10%, rgba(228, 165, 102, 0.36), transparent 26%),
    radial-gradient(circle at 12% 18%, rgba(23, 108, 105, 0.18), transparent 34%),
    linear-gradient(180deg, #f7efe2 0%, #eef6f1 42%, #f6f1e8 100%);
  transition: filter 900ms ease, background 900ms ease;
}
body[data-sky="night"] .scroll-sky {
  background:
    radial-gradient(circle at 75% 10%, rgba(226, 205, 144, 0.24), transparent 18%),
    radial-gradient(circle at 16% 20%, rgba(23, 108, 105, 0.16), transparent 32%),
    linear-gradient(180deg, #0b2029 0%, #123f3f 32%, #f6f1e8 86%);
}

.cursor-light {
  position: fixed;
  width: 260px;
  height: 260px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 165, 102, 0.22), transparent 63%);
  mix-blend-mode: screen;
  transition: opacity 180ms ease;
}
body.has-pointer .cursor-light { opacity: .9; }

/* NAV */
.site-hero {
  width: 100%;
  max-width: 100%;
  min-height: 100svh;
  position: relative;
  z-index: 3;
  isolation: isolate;
  color: var(--white);
  overflow: hidden;
  background: var(--teal-deep);
}
.nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  width: min(var(--max), calc(100% - 32px));
  height: 66px;
  padding-inline: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(7, 27, 36, .58);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
  transition: width 240ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.nav.is-scrolled {
  top: 12px;
  height: 66px;
  background: rgba(7, 27, 36, .58);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .22);
}
.nav:hover,
.nav:focus-within,
body.menu-open .nav {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(7, 27, 36, .96);
  box-shadow: 0 22px 68px rgba(0, 0, 0, .32);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.26);
  color: var(--gold);
  font-weight: 900;
  box-shadow: inset 0 1px rgba(255,255,255,.24);
}
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-size: .98rem; letter-spacing: 0; }
.brand-text small { color: rgba(255,255,255,.68); font-size: .76rem; margin-top: 3px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.82);
  font-size: .94rem;
}
.nav-links a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.nav-links a:hover { background: rgba(255,255,255,.11); color: var(--white); transform: translateY(-1px); }
.nav-links .nav-cta {
  margin-left: 4px;
  background: var(--gold);
  color: #1b211f;
  font-weight: 850;
}
.nav-links .nav-cta:hover { background: #f1b978; color: #1b211f; }
.nav-mobile-cta {
  display: none;
  text-decoration: none;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 15px;
  background: rgba(255,255,255,.09);
  color: var(--white);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms var(--ease), opacity 220ms ease;
}
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* HERO */
.hero-visual, .hero-image {
  position: absolute;
  inset: 0;
}
.hero-visual {
  z-index: -2;
  overflow: hidden;
  background: #071b24;
}
.hero-image {
  z-index: 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: min(1700px, 92vw) auto;
  transform: none;
  will-change: auto;
}
.hero-video {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: min(1700px, 92vw);
  height: auto;
  transform: translateX(-50%);
  display: block;
  object-fit: contain;
}
.hero-day { background-image: url('../assets/hero-retz-v2-day.webp'); background-position: center top; opacity: 1; }
.hero-night { display: none; }
body[data-sky="night"] .hero-day { opacity: 1; filter: none; }
.hero-motion {
  display: none;
}
.hero-waves {
  z-index: 1;
  opacity: .18;
  clip-path: polygon(0 12%, 68% 12%, 67% 63%, 0 76%);
  filter: saturate(.88) brightness(1.08);
  animation: wave-breath 7.5s ease-in-out infinite alternate;
}
.hero-grass {
  z-index: 1;
  opacity: .14;
  transform-origin: 88% 76%;
  clip-path: polygon(55% 25%, 100% 14%, 100% 76%, 48% 76%);
  filter: saturate(1.08) brightness(1.03);
  animation: grass-breath 5.8s ease-in-out infinite alternate;
}
body[data-sky="night"] .hero-motion {
  opacity: .07;
  filter: saturate(.7) brightness(.7);
}
@keyframes wave-breath {
  0% { transform: translate3d(-3px, 0, 0) scale(1.006); background-position: 49.7% 50%; }
  55% { transform: translate3d(4px, 1px, 0) scale(1.012); background-position: 50.3% 50.25%; }
  100% { transform: translate3d(-1px, -1px, 0) scale(1.008); background-position: 50% 49.8%; }
}
@keyframes grass-breath {
  0% { transform: translate3d(0, 0, 0) skewX(0deg) scale(1.005); background-position: 50% 50%; }
  50% { transform: translate3d(3px, -1px, 0) skewX(-.16deg) scale(1.012); background-position: 50.2% 49.9%; }
  100% { transform: translate3d(-2px, 1px, 0) skewX(.12deg) scale(1.008); background-position: 49.85% 50.1%; }
}
.hero-visual::after {
  content: none;
}
.orb {
  display: none;
}
.orb-one { width: 360px; height: 360px; right: 10%; top: 12%; background: rgba(228,165,102,.2); animation: float 9s ease-in-out infinite; }
.orb-two { width: 220px; height: 220px; left: 58%; bottom: 18%; background: rgba(23,108,105,.28); animation: float 12s ease-in-out infinite reverse; }
.coast-line {
  display: none;
}
@keyframes float {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(18px,-20px,0) scale(1.06); }
}

.hero-inner {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(28px, 7vw, 84px);
  align-items: center;
  padding: calc(var(--nav-h) + 52px) 0 112px;
}
.hero-copy { max-width: 760px; }
.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .105em;
  font-weight: 880;
}
.eyebrow { color: rgba(255,255,255,.82); }
.eyebrow::before, .kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 4px;
  background: var(--gold);
}
.kicker { color: var(--clay); }
.site-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.85rem, 6.7rem);
  line-height: .89;
  letter-spacing: 0;
  font-kerning: normal;
  font-feature-settings: "kern" 1;
  font-stretch: 94%;
  max-width: 760px;
  overflow-wrap: normal;
  text-wrap: balance;
}
.site-hero h1 span { display: inline; }
.hero-lead {
  max-width: 720px;
  margin-bottom: 30px;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.08rem, 1.24rem, 1.34rem);
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
  background: var(--gold);
  color: #1a211f;
  box-shadow: 0 16px 34px rgba(228,165,102,.30);
}
.button-primary:hover { background: #f2b978; box-shadow: 0 22px 48px rgba(228,165,102,.36); }
.button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}
.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
}
.button-ghost:hover { background: rgba(255,255,255,.17); border-color: rgba(255,255,255,.45); }
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.trust-pills li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .93rem;
}
.trust-pills li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(228,165,102,.11);
}
.hero-panel {
  align-self: end;
  margin-top: 42px;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.045));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 88px rgba(0,0,0,.2);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  overflow: hidden;
}

@media (min-width: 1081px) and (max-height: 980px) {
  .site-hero,
  .hero-inner {
    min-height: 112svh;
  }

  .hero-inner {
    width: min(1280px, calc(100% - 40px));
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
    padding: calc(var(--nav-h) - 12px) 0 34px;
  }

  .hero-copy {
    align-self: start;
    max-width: 820px;
  }

  .site-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(3rem, 4.1vw, 4.8rem);
    line-height: .93;
    max-width: 820px;
  }

  .hero-lead {
    max-width: 720px;
    margin-bottom: 20px;
    font-size: clamp(1rem, 1vw, 1.1rem);
  }

  .trust-pills {
    margin-top: 18px;
  }

  .hero-panel {
    align-self: start;
    margin-top: clamp(548px, 63.5svh, 615px);
    padding: 10px 14px 30px;
  }

  .hero-panel .example-slider {
    min-height: 166px;
  }

  .hero-panel .panel-topline {
    margin-bottom: 7px;
  }

  .hero-panel .panel-label {
    padding: 5px 9px;
  }

  .hero-panel .example-title {
    margin-bottom: 5px;
  }

  .hero-panel p {
    margin-bottom: 10px;
  }

  .hero-panel .example-dots {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 12px;
    margin-top: 0;
    justify-content: center;
    z-index: 3;
  }

  .hero-panel .example-dots button {
    width: 24px;
    height: 7px;
    background: rgba(228,165,102,.5);
  }

  .hero-panel .example-dots button.is-active {
    width: 42px;
    background: var(--gold);
  }
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -35% -10% auto auto;
  width: 230px;
  height: 230px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(228,165,102,.24), transparent 62%);
  pointer-events: none;
}
.panel-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.panel-label {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(228,165,102,.18);
  color: var(--gold);
  border: 1px solid rgba(228,165,102,.22);
  font-weight: 850;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.panel-counter {
  color: rgba(255,255,255,.7);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.example-slider {
  position: relative;
  min-height: 218px;
  z-index: 2;
}
.example-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translate3d(24px, 0, 0) scale(.985);
  transition: opacity 460ms ease, transform 560ms cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.example-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}
.example-title {
  color: var(--white);
  font-size: 1.25rem;
  line-height: 1.14;
  margin-bottom: 8px;
  font-weight: 900;
}
.hero-panel p { color: rgba(255,255,255,.76); margin-bottom: 14px; font-size: .94rem; }
.flow-mini {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  min-width: 0;
}
.flow-mini span {
  flex: 0 0 auto;
  padding: 7px;
  border-radius: 12px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.12);
  font-size: clamp(.72rem, .76rem, .78rem);
  font-weight: 750;
  letter-spacing: 0;
  font-kerning: normal;
  line-height: 1;
  white-space: nowrap;
}
.flow-mini i {
  flex: 0 1 18px;
  min-width: 6px;
  height: 2px;
  background: linear-gradient(90deg, rgba(228,165,102,.35), var(--gold));
  border-radius: 4px;
}
.example-dots {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.example-dots button {
  width: 28px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255,255,255,.25);
  transition: width 220ms ease, background 220ms ease, transform 220ms ease;
}
.example-dots button:hover,
.example-dots button:focus-visible {
  transform: translateY(-1px);
  background: rgba(255,255,255,.48);
}
.example-dots button.is-active {
  width: 46px;
  background: var(--gold);
}

/* SECTIONS */
main {
  position: relative;
  z-index: 2;
  margin-top: -68px;
}
.section {
  position: relative;
  padding: clamp(74px, 9vw, 126px) 0;
}
.problem-section {
  border-radius: 38px 38px 0 0;
  background: var(--soft);
}
.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(26px, 6vw, 86px);
  align-items: start;
}
.section-head h2 {
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 3.7rem, 4.3rem);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}
.section-head p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.12rem, 1.2rem);
}
.section-head.narrow { max-width: 830px; margin-bottom: 34px; }
.problem-stack {
  display: grid;
  gap: 16px;
}
.problem-stack article,
.sector-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,250,242,.76);
  box-shadow: var(--soft-shadow);
  transition: transform 240ms var(--ease), box-shadow 240ms ease, border-color 240ms ease, background 240ms ease;
}
.problem-stack article::after,
.sector-grid article::after {
  content: "";
  position: absolute;
  inset: auto -40px -55px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(23,108,105,.16), transparent 66%);
  transition: transform 260ms var(--ease), opacity 260ms ease;
}
.problem-stack article:hover,
.sector-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(23,108,105,.24);
  background: rgba(255,255,255,.92);
  box-shadow: 0 26px 62px rgba(13,34,36,.14);
}
.problem-stack article:hover::after,
.sector-grid article:hover::after { transform: scale(1.25); }
.problem-stack span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}
.problem-stack h3, .sector-grid strong { display: block; margin-bottom: 8px; font-size: 1.1rem; }
.problem-stack p, .sector-grid p { color: var(--muted); margin-bottom: 0; }

/* AUTOMATION CARDS */
.automation-section {
  background: linear-gradient(180deg, rgba(255,255,255,.32), rgba(246,241,232,.42));
}
.automation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.auto-card {
  --day: none;
  --night: none;
  min-height: 430px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.5);
  background: #0f3637;
  color: var(--white);
  box-shadow: var(--soft-shadow);
  transform: translateZ(0);
  transition: transform 360ms var(--ease), box-shadow 360ms ease, border-color 360ms ease;
}
.tile-media,
.tile-media::before,
.tile-media::after {
  position: absolute;
  inset: 0;
  content: "";
  transition: opacity 520ms ease, transform 700ms var(--ease), filter 520ms ease;
}
.tile-media::before {
  background: #174d4d var(--day) center/cover no-repeat;
  opacity: 1;
  transform: scale(1.04);
}
.tile-media::after {
  background: var(--night) center/cover no-repeat;
  opacity: 0;
  transform: scale(1.08);
  filter: saturate(.94) contrast(1.04);
}
.auto-card:not(.is-loaded) .tile-media::before {
  background:
    radial-gradient(circle at 75% 15%, rgba(228,165,102,.22), transparent 26%),
    linear-gradient(145deg, #176c69, #071b24);
}
.auto-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 18%, rgba(228,165,102,.18), transparent 30%),
    linear-gradient(180deg, rgba(6,22,27,.08), rgba(6,22,27,.72) 57%, rgba(6,22,27,.92));
  transition: background 520ms ease, opacity 520ms ease;
}
.auto-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 20px;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, rgba(255,255,255,.85), transparent);
  opacity: .48;
}
.auto-card:hover,
.auto-card:focus-visible,
.auto-card.is-lit {
  transform: translateY(-10px) scale(1.012);
  box-shadow: 0 38px 92px rgba(13,34,36,.26);
  border-color: rgba(228,165,102,.48);
}
.auto-card:hover .tile-media::before,
.auto-card:focus-visible .tile-media::before,
.auto-card.is-lit .tile-media::before { opacity: .18; transform: scale(1.0); }
.auto-card:hover .tile-media::after,
.auto-card:focus-visible .tile-media::after,
.auto-card.is-lit .tile-media::after { opacity: 1; transform: scale(1.01); }
.auto-card:hover::before,
.auto-card:focus-visible::before,
.auto-card.is-lit::before {
  background:
    radial-gradient(circle at 72% 17%, rgba(228,165,102,.30), transparent 28%),
    linear-gradient(180deg, rgba(6,22,27,.12), rgba(6,22,27,.58) 52%, rgba(4,15,19,.90));
}
.tile-content {
  position: relative;
  z-index: 2;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: auto;
  border-radius: 16px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--gold);
  font-weight: 950;
  backdrop-filter: blur(12px);
}
.auto-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.28rem, 1.48rem, 1.7rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.auto-card .module-subtitle {
  max-width: 92%;
  margin-bottom: 10px;
  color: rgba(255,255,255,.92);
  font-size: .95rem;
  font-weight: 850;
  line-height: 1.22;
}
.auto-card p {
  color: rgba(255,255,255,.78);
  margin-bottom: 18px;
}
.auto-card ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
  min-width: 0;
}
.auto-card li {
  flex: 1 1 0;
  min-width: 0;
  padding: 6px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.82);
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

/* SECTORS */
.sectors-section {
  --photo: none;
  background:
    linear-gradient(180deg, rgba(16,63,63,.46), rgba(7,27,36,.58)),
    var(--photo) center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
  transition: background-color 500ms ease;
}
.sectors-section .kicker { color: var(--gold); }
.sectors-section .section-head p:not(.kicker) { color: rgba(255,255,255,.72); }
.sector-marquee {
  width: 100vw;
  margin: 26px 0 38px calc((min(var(--max), calc(100vw - 40px)) - 100vw) / 2);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.84);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.sector-grid article {
  background: rgba(255,255,255,.075);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
}
.sector-grid article:hover { background: rgba(255,255,255,.12); border-color: rgba(228,165,102,.32); }
.sector-grid strong { color: var(--white); }
.sector-grid p { color: rgba(255,255,255,.72); }

/* PROOF */
.proof-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(23,108,105,.12), transparent 30%),
    linear-gradient(180deg, rgba(246,241,232,.98), rgba(255,250,242,.94));
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.proof-grid article {
  min-height: 220px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(13,34,36,.08);
}
.proof-case { grid-column: span 2; }
.proof-grid strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 1.1rem;
}
.proof-grid p {
  margin: 0;
  color: var(--muted);
}
.proof-grid blockquote {
  margin: 10px 0 12px;
  color: var(--ink);
  font-weight: 800;
}
.placeholder-label {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(228,165,102,.18);
  color: #91512f;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* METHOD */
.method-section {
  background:
    radial-gradient(circle at 82% 12%, rgba(228,165,102,.18), transparent 30%),
    linear-gradient(180deg, rgba(255,250,242,.86), rgba(246,241,232,.96));
}
.method-layout {
  display: grid;
  gap: clamp(26px, 4vw, 46px);
}
.method-head {
  max-width: 900px;
}
.method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: method;
}
.method-list li {
  counter-increment: method;
  display: grid;
  align-content: start;
  gap: 16px;
  align-items: start;
  min-height: 230px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(13,34,36,.08);
}
.method-list li::before {
  content: counter(method);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--teal);
  color: var(--white);
  font-weight: 950;
}
.method-list strong { display: block; margin-bottom: 6px; font-size: 1.06rem; }
.method-list span { color: var(--muted); }

/* TRUST */
.trust-section {
  position: relative;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: #071b24;
  isolation: isolate;
}
.trust-bg-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 27, 36, .88) 0%, rgba(7, 27, 36, .58) 42%, rgba(7, 27, 36, .20) 100%),
    linear-gradient(180deg, rgba(7, 27, 36, .38) 0%, rgba(7, 27, 36, .12) 48%, rgba(7, 27, 36, .76) 100%);
}
.trust-layout {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, .75fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: center;
  padding: clamp(110px, 12vw, 150px) 0;
}
.trust-title { max-width: 760px; }
.trust-title .kicker { color: var(--gold); }
.trust-title h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 5.2rem, 6.4rem);
  line-height: .92;
  letter-spacing: 0;
  text-wrap: balance;
}
.trust-title p:not(.kicker) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.08rem, 1.18rem, 1.28rem);
}
.trust-copy {
  align-self: center;
}
.trust-copy .check-list { margin: 46px 0 0; }
.check-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 18px 18px 18px 54px;
  border-radius: 18px;
  background: rgba(255,255,255,.64);
  border: 1px solid var(--line);
  color: var(--muted);
  box-shadow: 0 12px 28px rgba(13,34,36,.06);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 23px;
  width: 17px;
  height: 10px;
  border-left: 3px solid var(--teal);
  border-bottom: 3px solid var(--teal);
  transform: rotate(-45deg);
}
.check-list strong { color: var(--ink); }
.trust-section .check-list li {
  background: rgba(255,255,255,.56);
  border-color: rgba(255,255,255,.30);
  box-shadow: 0 18px 48px rgba(0,0,0,.12);
  backdrop-filter: blur(14px);
}

/* CTA + FOOTER */
.final-cta {
  --photo: none;
  padding: clamp(74px, 9vw, 118px) 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23,108,105,.42), rgba(7,27,36,.58)),
    var(--photo) center 42%/cover no-repeat;
}
.final-cta .kicker { color: var(--gold); }
.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255,255,255,.045);
  box-shadow: 0 32px 88px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.cta-shell h2 {
  max-width: 780px;
  margin-bottom: 12px;
  font-size: clamp(2.05rem, 3.3rem, 4.2rem);
  line-height: .98;
  letter-spacing: 0;
}
.cta-shell p:not(.kicker) { max-width: 740px; color: rgba(255,255,255,.74); margin-bottom: 0; }
.cta-actions { justify-content: flex-start; margin-top: 24px; }
.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: rgba(7,27,36,.42);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.conversation-progress {
  display: grid;
  gap: 8px;
}
.conversation-progress-text {
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 850;
}
.conversation-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
}
.conversation-progress-bar {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #f1bd7b);
  transition: width 240ms var(--ease);
}
.form-step {
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}
.contact-form.is-conversation-ready .form-step {
  display: none;
}
.contact-form.is-conversation-ready .form-step.is-active {
  display: grid;
}
.form-step legend {
  padding: 0;
  margin-bottom: 2px;
  color: var(--white);
  font-size: clamp(1.25rem, 1.48rem, 1.7rem);
  line-height: 1.08;
  font-weight: 920;
}
.form-step > p {
  margin: -4px 0 4px;
  color: rgba(255,255,255,.72);
}
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.choice-grid.compact {
  grid-template-columns: 1fr;
}
.choice-grid label {
  position: relative;
  display: block;
  min-width: 0;
}
.choice-grid input {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.choice-grid span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 13px;
  border-radius: 15px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  font-weight: 820;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.choice-grid input:checked + span {
  color: #1a211f;
  background: var(--gold);
  border-color: rgba(255,255,255,.24);
}
.choice-grid input:focus-visible + span {
  outline: 3px solid rgba(228,165,102,.95);
  outline-offset: 3px;
}
.form-nav {
  display: flex;
  gap: 10px;
  align-items: center;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.10);
  color: var(--white);
  padding: 12px 14px;
  outline: none;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,.48); }
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(228,165,102,.16);
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.consent-field {
  grid-template-columns: 20px 1fr;
  align-items: start;
  font-weight: 600 !important;
}
.consent-field input {
  width: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--gold);
}
.consent-field a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-form .button { width: 100%; border: 0; cursor: pointer; }
.form-status {
  min-height: 1.4em;
  margin: 0 !important;
  color: rgba(255,255,255,.74) !important;
  font-size: .85rem !important;
}
.footer {
  padding: 30px 0;
  background: #071215;
  color: rgba(255,255,255,.65);
  font-size: .92rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}
.footer p { margin: 0; }
.footer strong, .footer a { color: var(--white); }
.footer a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.24); }
.footer a:hover { border-color: var(--gold); }

.legal-page {
  min-height: 100svh;
  background: var(--soft);
  color: var(--ink);
}
.legal-main {
  padding: 120px 0 76px;
}
.legal-card {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(24px, 5vw, 54px);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255,250,242,.92);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}
.legal-card h1 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.6rem, 4.4rem);
  line-height: 1;
}
.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
}
.legal-card a {
  color: var(--teal);
  font-weight: 800;
}

.lazy-photo:not(.is-loaded) {
  background-color: var(--teal-deep);
}

/* ALTERNATE IMMERSIVE PREVIEW: index.html?view=immersive */
body.view-immersive .site-hero,
body.view-immersive .hero-inner { min-height: 112svh; }
body.view-immersive .hero-inner {
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: end;
  padding-bottom: 154px;
}
body.view-immersive .automation-section { padding-top: clamp(92px, 11vw, 152px); }
body.view-immersive .automation-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
body.view-immersive .auto-card:nth-child(1),
body.view-immersive .auto-card:nth-child(4) { grid-column: span 2; }
body.view-immersive .trust-visual { min-height: 680px; }

/* Capture helpers used by the local comparison/QA links. */
body.section-preview .site-hero,
body.section-preview .footer { display: none; }
body.section-preview main { margin-top: 0; }
body.section-preview main > * { display: none; }
body.preview-automatisations #automatisations,
body.preview-secteurs #secteurs,
body.preview-methode #methode,
body.preview-confiance #confiance { display: block; }

/* REVEAL */
.reveal, .reveal-list > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms var(--ease);
}
.reveal.is-visible, .reveal-list > *.is-visible { opacity: 1; transform: translateY(0); }
.reveal-list > *:nth-child(2) { transition-delay: 70ms; }
.reveal-list > *:nth-child(3) { transition-delay: 140ms; }
.reveal-list > *:nth-child(4) { transition-delay: 210ms; }
.reveal-list > *:nth-child(5) { transition-delay: 280ms; }
.reveal-list > *:nth-child(6) { transition-delay: 350ms; }
.no-js .reveal, .no-js .reveal-list > * { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; align-items: end; padding-top: 130px; }
  .hero-panel { max-width: 560px; align-self: start; }
  .automation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sector-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-case { grid-column: auto; }
  .method-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-shell { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .trust-layout { grid-template-columns: 1fr; align-content: center; }
  .trust-copy { max-width: 760px; }
  body.view-immersive .hero-inner { grid-template-columns: 1fr; }
  body.view-immersive .automation-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body.view-immersive .auto-card:nth-child(1),
  body.view-immersive .auto-card:nth-child(4) { grid-column: auto; }
}

@media (max-width: 860px) {
  :root { --nav-h: 74px; }
  .nav {
    gap: 8px;
    padding-inline: 10px;
  }
  .nav-toggle { display: block; }
  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--gold);
    color: #1b211f;
    font-size: .9rem;
    font-weight: 900;
    white-space: nowrap;
  }
  .nav-links {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(7,27,36,.92);
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: 0 24px 80px rgba(0,0,0,.32);
    backdrop-filter: blur(22px);
    transform: translateY(-14px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms var(--ease);
  }
  body.menu-open .nav-links { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }
  .nav-links a { padding: 14px 16px; }
  .nav-links .nav-cta { margin-left: 0; text-align: center; }
  .brand-text small { display: none; }
  .two-col, .trust-layout { grid-template-columns: 1fr; }
  .site-hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.45rem, 2.85rem, 3.2rem);
    line-height: .9;
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: wrap;
  }
  .site-hero h1 span { display: block; }
  .site-hero h1 br { display: none; }
  .hero-lead { font-size: 1.06rem; }
}

@media (max-width: 680px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .container { width: min(100% - 28px, var(--max)); }
  .nav,
  .nav.is-scrolled {
    left: 14px;
    right: 14px;
    width: auto;
    max-width: none;
    transform: none;
  }
  .site-hero {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    overflow: hidden;
  }
  .trust-section { padding: 0; }
  .trust-layout {
    min-height: 100svh;
    padding: 108px 0 72px;
    gap: 28px;
  }
  .trust-title h2 { font-size: clamp(2.65rem, 3.55rem, 4.35rem); }
  .trust-title p:not(.kicker) { font-size: 1.05rem; }
  .hero-video {
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    max-width: none;
    transform: none;
    object-fit: cover;
    object-position: center top;
  }
  .hero-image { background-size: auto 100%; }
  .hero-inner {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: 920px;
    padding: 96px 14px 110px;
    justify-items: stretch;
  }
  .eyebrow {
    margin-bottom: 10px;
    color: #153638;
    text-shadow: 0 1px 14px rgba(255,255,255,.52);
  }
  .site-hero h1 {
    color: #123235;
    text-shadow: 0 1px 18px rgba(255,255,255,.62);
  }
  .hero-lead {
    color: rgba(18,50,53,.94);
    text-shadow: 0 1px 14px rgba(255,255,255,.72);
    margin-bottom: 26px;
  }
  .hero-copy,
  .hero-lead,
  .hero-panel,
  .example-carousel {
    width: 100%;
    max-width: min(100%, 362px);
    min-width: 0;
  }
  .hero-copy > * {
    max-width: 100%;
  }
  .hero-lead {
    overflow-wrap: break-word;
    word-break: normal;
  }
  .hero-panel {
    box-sizing: border-box;
  }
  .panel-topline {
    min-width: 0;
  }
  .panel-label {
    max-width: calc(100% - 64px);
    font-size: .7rem;
    letter-spacing: .055em;
  }
  .panel-counter {
    flex: 0 0 auto;
    font-size: .72rem;
  }
  .flow-mini {
    flex-wrap: wrap;
    gap: 6px;
    max-width: 100%;
  }
  .flow-mini span {
    padding: 7px 8px;
  }
  .flow-mini i {
    flex: 0 0 12px;
    min-width: 12px;
  }
  .trust-pills {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  .hero-visual::after {
    background:
      linear-gradient(180deg, rgba(7,27,36,.94) 0%, rgba(16,63,63,.76) 54%, rgba(16,63,63,.42) 76%, rgba(246,241,232,.98) 100%);
  }
  .hero-actions, .cta-actions { align-items: stretch; }
  .button {
    width: 100%;
    max-width: 362px;
    min-height: 50px;
    padding: 13px 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.18;
  }
  .trust-pills li {
    width: 100%;
    max-width: 100%;
  }
  .final-cta {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
    overflow: hidden;
  }
  .final-cta .container {
    width: 100%;
    max-width: 100%;
    padding-inline: 14px;
  }
  .cta-shell {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
    padding: 18px 12px;
    border-radius: 24px;
  }
  .cta-copy,
  .contact-form,
  .form-step,
  .conversation-progress,
  .choice-grid,
  .form-row,
  .form-nav {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .contact-form {
    padding: 16px 12px;
    overflow: hidden;
  }
  .form-step legend {
    max-width: 100%;
    font-size: clamp(1.35rem, 1.55rem, 1.7rem);
    overflow-wrap: break-word;
  }
  .choice-grid span {
    width: 100%;
    min-width: 0;
    padding: 11px 12px;
    border-radius: 14px;
  }
  main { margin-top: -44px; }
  .section { padding: 62px 0; }
  .section-head h2 { font-size: clamp(2.05rem, 2.7rem, 3.2rem); }
  .automation-grid, .sector-grid, .proof-grid { grid-template-columns: 1fr; }
  .auto-card, .tile-content { min-height: 460px; }
  .sector-marquee { margin-left: -14px; }
  .method-list { grid-template-columns: 1fr; }
  .method-list li { min-height: auto; padding: 18px; }
  .method-list li::before { width: 40px; height: 40px; }
  .footer-inner { display: grid; }
  .form-row { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .form-nav { display: grid; }
}

@media (max-width: 400px) {
  .brand-mark { width: 40px; height: 40px; border-radius: 13px; }
  .brand-text strong { font-size: .9rem; }
  .hero-inner { min-height: 860px; padding-top: 90px; }
  .site-hero h1 {
    font-size: clamp(1.95rem, 2.08rem, 2.35rem);
    line-height: .96;
  }
  .hero-panel { padding: 18px; }
  .auto-card, .tile-content { min-height: 435px; }
}

@media (hover: none) {
  .cursor-light { display: none; }
  .auto-card.is-lit .tile-media::after { opacity: .92; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-list > * { opacity: 1; transform: none; }
  .cursor-light { display: none; }
  .hero-motion { display: none; }
}
