:root {
  --paper: #fbfcfc;
  --surface: #f4f6f6;
  --surface-strong: #e9eef1;
  --ink: #102a42;
  --ink-deep: #092238;
  --marine: #174c73;
  --marine-soft: #48687f;
  --char: #263946;
  --char-soft: #526673;
  --line: #d5dfe4;
  --line-strong: #bccbd3;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
  --shell: 1320px;
  --section-space: clamp(5rem, 7vw, 7.5rem);
  --radius: 16px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  overflow-x: hidden;
  color: var(--char);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  color: var(--paper);
  background: var(--marine);
}

:focus-visible {
  border-radius: 3px;
  outline: 2px solid var(--marine);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px rgb(251 252 252 / 92%);
}

[id] {
  scroll-margin-top: 6.25rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0;
  left: -9999px;
  padding: 0.8rem 1rem;
  color: var(--paper);
  background: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  left: 0;
}

.shell {
  width: min(100% - clamp(2.5rem, 7vw, 7rem), var(--shell));
  margin-inline: auto;
}

h1,
h2,
h3 {
  color: var(--ink-deep);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.15rem, 3.6vw, 4rem);
  line-height: 1.01;
}

h2 {
  font-size: clamp(2.55rem, 3.7vw, 3.85rem);
}

h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
}

p {
  text-wrap: pretty;
}

.eyebrow {
  margin-bottom: 1.3rem;
  color: var(--marine);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  padding-block: var(--section-space);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.button {
  display: inline-flex;
  min-height: 3.35rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.45rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  border-color: var(--marine);
  background: var(--marine);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(-1px);
}

.button-small {
  min-height: 2.8rem;
  padding-inline: 1.15rem;
  font-size: 0.8rem;
}

.text-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
  white-space: nowrap;
}

.text-link:hover {
  color: var(--marine);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgb(213 223 228 / 82%);
  background: rgb(251 252 252 / 91%);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 6rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.wordmark {
  display: grid;
  gap: 0.08rem;
  color: var(--ink);
  line-height: 1.1;
  text-decoration: none;
}

.wordmark span {
  font-size: 1.42rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.wordmark small {
  color: var(--char-soft);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.3rem, 2.5vw, 2.5rem);
}

.desktop-nav a {
  color: var(--char-soft);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--ink);
}

.menu-button,
.mobile-nav {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 6rem;
  background: #f8fafb;
}

.hero-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateY(4%) scale(1.01);
  transform-origin: center;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgb(248 250 251 / 98%) 0%, rgb(248 250 251 / 90%) 28%, rgb(248 250 251 / 52%) 45%, rgb(248 250 251 / 0%) 63%);
  pointer-events: none;
}

.hero-stage {
  display: flex;
  min-height: min(840px, calc(100dvh - 6rem));
  align-items: flex-start;
  padding-top: clamp(7rem, 13.5vh, 8.75rem);
  padding-bottom: clamp(4rem, 7vh, 5.5rem);
}

.hero-copy {
  width: min(790px, 56vw);
}

.hero-copy h1 {
  margin-bottom: 1.75rem;
  font-size: clamp(3.45rem, 4.4vw, 4.3rem);
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 48ch;
  color: var(--char-soft);
  font-size: clamp(1.04rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero .button {
  min-height: 3.65rem;
  padding-inline: 1.7rem;
}

.hero .text-link {
  text-decoration-color: #d0a246;
}

/* Delivery rail */
.trust-band {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.hero-method {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 5.5rem;
  align-items: center;
  list-style: none;
}

.hero-method li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
  padding: 1.45rem clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-method li::after {
  height: 1px;
  flex: 1;
  background: var(--line-strong);
  content: "";
}

.hero-method li:last-child {
  border-right: 0;
}

.hero-method li:last-child::after {
  display: none;
}

/* Proposition */
.proposition {
  background: var(--paper);
}

.proposition-intro {
  display: grid;
  max-width: 980px;
  gap: 1.65rem;
  margin-inline: auto;
  text-align: center;
}

.proposition-intro h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.large-copy {
  max-width: 66ch;
  margin-inline: auto;
  color: var(--char-soft);
  font-size: clamp(1.18rem, 1.65vw, 1.45rem);
  line-height: 1.55;
}

.alignment-ledger {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr 1.12fr;
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
  border-block: 1px solid var(--line);
}

.alignment-ledger article {
  min-height: 180px;
  padding: 2rem 1.6rem;
  border-right: 1px solid var(--line);
}

.alignment-ledger article:last-child {
  border-right: 0;
}

.alignment-ledger h3 {
  margin-bottom: 0.75rem;
}

.alignment-ledger span {
  color: var(--char-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* What we do */
.section-heading {
  display: grid;
  max-width: 930px;
  gap: 1.6rem;
  margin-bottom: clamp(3.5rem, 5vw, 5rem);
}

.section-heading .eyebrow {
  margin-bottom: -0.15rem;
}

.section-heading h2 {
  max-width: 17ch;
}

.section-deck {
  max-width: 58ch;
  color: var(--char-soft);
  font-size: 1.08rem;
}

.service-ledger {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.service-row h3 {
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
}

.service-row p {
  max-width: 67ch;
  color: var(--char-soft);
  font-size: 1.02rem;
}

/* Process */
.process-section {
  border-block: 1px solid var(--line);
  background: var(--surface-strong);
}

.process-intro {
  display: grid;
  max-width: 930px;
  gap: 1.5rem;
}

.process-intro h2 {
  max-width: 17ch;
}

.process-intro > p {
  max-width: 58ch;
  color: var(--char-soft);
  font-size: 1.08rem;
}

.process-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.process-grid li {
  min-height: 220px;
  padding: 2rem 1.6rem;
  border-right: 1px solid var(--line-strong);
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid h3 {
  margin-bottom: 1rem;
}

.process-grid p {
  color: var(--char-soft);
  font-size: 0.94rem;
}

/* Human-technology quotient */
.quotient {
  background: var(--surface);
}

.quotient-intro {
  display: grid;
  max-width: 980px;
  gap: 1.5rem;
  margin-inline: auto;
  text-align: center;
}

.quotient-intro h2 {
  max-width: 17ch;
  margin-inline: auto;
}

.quotient-deck {
  color: var(--marine-soft);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 650;
}

.quotient-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: stretch;
  margin-top: clamp(3.5rem, 6vw, 5rem);
}

.quotient-copy {
  display: grid;
  align-content: center;
  gap: 1.5rem;
}

.quotient-copy p {
  max-width: 62ch;
  color: var(--char-soft);
  font-size: 1.06rem;
}

.quotient-principle {
  display: grid;
  min-height: 190px;
  align-content: center;
  gap: 0.7rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 54px rgb(9 34 56 / 6%);
}

.quotient-principle strong {
  max-width: 18ch;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.quotient-principle span {
  color: var(--marine-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

/* Founders */
.founders {
  background: var(--paper);
}

.founders-heading {
  display: grid;
  max-width: 960px;
  gap: 1.5rem;
}

.founders-heading .eyebrow {
  margin-bottom: -0.15rem;
}

.founders-heading h2 {
  max-width: 18ch;
}

.founders-heading > p:last-child {
  max-width: 66ch;
  color: var(--char-soft);
  font-size: 1.05rem;
}

.founder-stories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem);
  margin-top: clamp(3.75rem, 6vw, 5.75rem);
}

.founder-profile {
  min-width: 0;
}

.founder-photo {
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 24px 60px rgb(9 34 56 / 9%);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 700ms var(--ease);
}

.founder-profile:hover .founder-photo img {
  transform: scale(1.018);
}

.founder-copy {
  padding-top: 1.8rem;
}

.founder-discipline {
  margin-bottom: 0.9rem;
  color: var(--marine);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.founder-copy h3 {
  margin-bottom: 0.5rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.founder-role {
  margin-bottom: 1.65rem;
  color: var(--marine-soft);
  font-size: 0.83rem;
  font-weight: 650;
}

.founder-copy > p:not(.founder-discipline, .founder-role) {
  max-width: 64ch;
  margin-bottom: 1.15rem;
  color: var(--char-soft);
  font-size: 0.98rem;
}

/* Principles */
.principles {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.principles-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: start;
}

.principles-grid > div > h2 {
  max-width: 12ch;
  margin-bottom: 1.7rem;
}

.principles-grid > div > p {
  max-width: 49ch;
  color: var(--char-soft);
}

.principles-list {
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.principles-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-block: 1.7rem;
  border-bottom: 1px solid var(--line-strong);
}

.principles-list li > span {
  color: var(--marine-soft);
  font-size: 0.7rem;
  font-weight: 750;
}

.principles-list h3 {
  margin-bottom: 0.5rem;
  font-size: 1.18rem;
}

.principles-list p {
  color: var(--char-soft);
  font-size: 0.92rem;
}

/* Contact and footer */
.contact {
  padding-block: clamp(5rem, 7vw, 7.5rem);
  border-top: 1px solid var(--line);
  background: #dfe9ee;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.62fr);
  gap: clamp(4rem, 9vw, 9rem);
  align-items: end;
}

.contact h2 {
  max-width: 15ch;
}

.contact-copy > p {
  margin-bottom: 2rem;
  color: var(--char-soft);
}

.contact-email {
  display: block;
  width: fit-content;
  margin-top: 1.45rem;
  color: var(--ink);
  font-size: 0.84rem;
  text-underline-offset: 0.3rem;
}

.footer {
  padding-block: 3rem;
  color: #8fa3b0;
  background: #071d2e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
}

.footer-name {
  display: grid;
  gap: 0.45rem;
}

.footer-name strong {
  color: var(--paper);
  font-size: 1rem;
}

.footer-name span,
.footer-meta,
.footer-links a {
  font-size: 0.73rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #cad7de;
  text-underline-offset: 0.25rem;
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid #1a374c;
}

/* Legal pages */
.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.legal-header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.legal-back {
  color: var(--marine);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
}

.legal-main {
  min-height: calc(100dvh - 5rem);
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--surface);
}

.legal-shell {
  width: min(100% - 2.5rem, 780px);
  margin-inline: auto;
}

.legal-kicker {
  margin-bottom: 1rem;
  color: var(--marine);
  font-size: 0.78rem;
  font-weight: 700;
}

.legal-main h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.legal-main h2 {
  margin-top: 2.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
}

.legal-main p,
.legal-main ul {
  color: var(--char-soft);
}

.legal-main p {
  margin-top: 1rem;
}

.legal-main ul {
  display: grid;
  gap: 0.75rem;
  margin-block: 1.2rem;
  padding-left: 1.4rem;
}

/* Motion */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-copy {
    width: min(690px, 64vw);
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 5vw, 3.7rem);
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 1.1rem;
  }

  .founder-stories {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
  }

  .hero {
    padding-top: 5rem;
  }

  .header-inner {
    min-height: 5rem;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    min-width: 4.3rem;
    min-height: 2.7rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    background: var(--paper);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
  }

  .mobile-nav {
    position: fixed;
    z-index: 49;
    top: 5rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: calc(100dvh - 5rem);
    align-content: start;
    overflow-y: auto;
    padding: 2rem clamp(1.25rem, 5vw, 3rem);
    background: var(--paper);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding-block: 1.1rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 650;
    text-decoration: none;
  }

  .hero-backdrop {
    top: auto;
    bottom: 0;
    height: 54%;
    object-position: 73% center;
    transform: none;
  }

  .hero::after {
    background: linear-gradient(180deg, rgb(248 250 251 / 100%) 0%, rgb(248 250 251 / 100%) 49%, rgb(248 250 251 / 78%) 61%, rgb(248 250 251 / 6%) 84%);
  }

  .hero-stage {
    min-height: 780px;
    align-items: flex-start;
    padding-top: 4rem;
    padding-bottom: 21rem;
  }

  .hero-copy {
    width: min(100%, 690px);
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 7.5vw, 3.6rem);
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .quotient-body,
  .principles-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-method {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-method li:nth-child(2) {
    border-right: 0;
  }

  .hero-method li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .alignment-ledger,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .alignment-ledger article:nth-child(2),
  .process-grid li:nth-child(2) {
    border-right: 0;
  }

  .alignment-ledger article:nth-child(-n + 2),
  .process-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-strong);
  }

  .quotient-body {
    gap: 2.5rem;
  }

  .founder-stories {
    grid-template-columns: 1fr;
    gap: 4.5rem;
  }

  .founder-photo {
    max-width: 680px;
  }

  .principles-grid,
  .contact-grid {
    gap: 3.25rem;
  }

  .principles-grid > div > h2,
  .contact h2 {
    max-width: 15ch;
  }
}

@media (max-width: 700px) {
  :root {
    --section-space: 4.75rem;
  }

  .shell {
    width: min(100% - 2.5rem, var(--shell));
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(2.15rem, 9.5vw, 3rem);
  }

  .hero-backdrop {
    height: 44%;
    object-position: 72% center;
  }

  .hero::after {
    background: linear-gradient(180deg, rgb(248 250 251 / 100%) 0%, rgb(248 250 251 / 100%) 54%, rgb(248 250 251 / 75%) 67%, rgb(248 250 251 / 4%) 91%);
  }

  .hero-stage {
    min-height: 680px;
    padding-top: 3.25rem;
    padding-bottom: 13rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 11.4vw, 3.1rem);
  }

  .hero-copy h1 span {
    display: inline;
  }

  .hero-copy h1 span + span::before {
    content: " ";
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.1rem;
  }

  .hero-method,
  .alignment-ledger,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-method li,
  .hero-method li:nth-child(2) {
    min-height: auto;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .hero-method li:last-child {
    border-bottom: 0;
  }

  .alignment-ledger article,
  .alignment-ledger article:nth-child(2),
  .process-grid li,
  .process-grid li:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .alignment-ledger article:last-child,
  .process-grid li:last-child {
    border-bottom: 0;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .quotient-principle {
    min-height: auto;
    padding: 2rem;
  }

  .founder-photo {
    aspect-ratio: 4 / 5;
  }

  .founder-photo img {
    object-position: center 18%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .wordmark small {
    display: none;
  }

  .hero-stage {
    min-height: 680px;
  }

  .principles-list li {
    grid-template-columns: 2.35rem 1fr;
  }

  .legal-header-inner {
    min-height: 4.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
