:root {
  --background: #f7f9fc;
  --surface: #ffffff;
  --surface-muted: #eef3f9;
  --surface-blue: #edf4ff;
  --border: #d7e0ec;
  --border-strong: #b8c7da;
  --text: #10233f;
  --body: #45556f;
  --soft: #61718a;
  --primary: #0052cc;
  --primary-dark: #003d9b;
  --primary-soft: #dceaff;
  --accent: #f2c94c;
  --shadow-sm: 0 8px 24px rgba(16, 35, 63, 0.07);
  --shadow-lg: 0 22px 60px rgba(16, 35, 63, 0.13);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --container: 1184px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

main > .section:not(.hero) {
  position: relative;
  border-top: 1px solid var(--border);
}

main > .section:not(.hero)::before {
  position: absolute;
  top: -1px;
  left: max(24px, calc((100vw - var(--container)) / 2));
  width: 64px;
  height: 3px;
  background: var(--primary);
  content: "";
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 82, 204, 0.42);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p,
blockquote {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

h1 {
  max-width: 660px;
  font-size: clamp(3.2rem, 6vw, 4.75rem);
}

h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.35rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--body);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(78px, 8vw, 112px) 0;
}

.section-muted {
  background: var(--surface-muted);
}

.center {
  margin-inline: auto;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(215, 224, 236, 0.86);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--primary);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--text);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: white;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.18);
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  color: white;
  box-shadow: 0 11px 24px rgba(0, 61, 155, 0.2);
  transform: translateY(-2px);
}

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

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  color: var(--primary-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0, 61, 155, 0.4);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  transition: color 160ms ease, text-decoration-color 160ms ease, transform 160ms ease;
}

.text-link:hover {
  transform: translateX(3px);
}

.eyebrow {
  width: fit-content;
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.section-heading.center {
  justify-items: center;
}

.section-heading > p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.07rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 66px 0 72px;
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 82, 204, 0.08), transparent 32%),
    var(--surface);
}

.hero::before {
  position: absolute;
  top: 70px;
  bottom: 70px;
  left: max(20px, calc((100vw - var(--container)) / 2 - 48px));
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(var(--primary), rgba(0, 82, 204, 0.03));
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(400px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.hero-copy {
  display: grid;
  min-width: 0;
  gap: 24px;
}

.js .hero-copy > *,
.js .founder-hero-media {
  animation: hero-enter 620ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.js .hero-copy > :nth-child(3) {
  animation-delay: 130ms;
}

.js .hero-copy > :nth-child(4),
.js .founder-hero-media {
  animation-delay: 190ms;
}

.hero-copy .lead {
  max-width: 590px;
  font-size: clamp(1.08rem, 1.8vw, 1.22rem);
  line-height: 1.62;
}

.script-mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.script-mark::after {
  position: absolute;
  right: 0;
  bottom: -0.05em;
  left: 0;
  z-index: -1;
  height: 0.12em;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(0, 82, 204, 0.28), rgba(242, 201, 76, 0.78));
  content: "";
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 5px;
}

.founder-hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 6px solid var(--surface);
  border-radius: var(--radius-lg);
  background: var(--primary-soft);
  box-shadow: var(--shadow-lg);
}

.founder-hero-media::after,
.founder-image-wrap::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, var(--primary-soft) 20%, #f8fbff 48%, var(--primary-soft) 76%);
  background-size: 220% 100%;
  content: "";
  pointer-events: none;
  transition: opacity 500ms ease;
  animation: image-loading 1.25s ease-in-out infinite;
}

.founder-hero-media.image-ready::after,
.founder-image-wrap.image-ready::before {
  opacity: 0;
  animation: none;
}

.founder-hero-media img,
.founder-image-wrap img {
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 600ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-hero-media img.is-loaded,
.founder-image-wrap img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.hero-photo {
  width: 100%;
  height: min(58vw, 580px);
  min-height: 500px;
  object-fit: cover;
  object-position: center 32%;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  display: grid;
  gap: 4px;
  padding: 25px 24px;
  border-right: 1px solid var(--border);
}

.trust-grid div:first-child {
  padding-left: 0;
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  color: var(--primary-dark);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1;
}

.trust-grid span {
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 650;
}

.method-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 42%),
    var(--surface-blue);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(60px, 9vw, 126px);
}

.method-steps {
  display: grid;
}

.method-steps article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-strong);
  transition: border-color 180ms ease, transform 180ms ease;
}

.method-steps article:hover {
  border-color: var(--primary);
  transform: translateX(5px);
}

.method-steps article:first-child {
  padding-top: 2px;
}

.method-steps article > span {
  padding-top: 4px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.method-steps h3 {
  margin-bottom: 8px;
}

.language-subsection {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
}

.language-subsection-header {
  max-width: 700px;
  gap: 12px;
}

.language-subsection .section-heading h3 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.language-offerings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.language-offerings li {
  display: grid;
  min-height: 126px;
  align-content: center;
  gap: 6px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: var(--primary-dark);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-offerings li:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-3px);
}

.language-offerings li:hover strong {
  color: var(--primary-dark);
}

.language-offerings li:hover span {
  color: var(--body);
}

.language-offerings strong {
  color: white;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.language-offerings span {
  color: #dceaff;
  font-size: 0.92rem;
}

.goal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border-strong);
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
  list-style: none;
}

.goal-list li {
  display: inline-flex;
  align-items: center;
}

.goal-list li:not(:last-child)::after {
  width: 1px;
  height: 18px;
  margin: 0 18px;
  background: var(--border-strong);
  content: "";
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(350px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
}

#about {
  background: linear-gradient(90deg, var(--background), var(--surface));
}

.founder-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  box-shadow: var(--shadow-lg);
}

.founder-image-wrap::after {
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(transparent, rgba(16, 35, 63, 0.16));
  content: "";
  pointer-events: none;
}

.founder-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
}

.founder-copy {
  display: grid;
  gap: 22px;
}

.founder-copy p {
  max-width: 620px;
  font-size: 1.07rem;
}

.founder-copy blockquote {
  max-width: 580px;
  margin-top: 10px;
  padding: 22px 26px;
  border-left: 4px solid var(--primary);
  background: var(--surface-blue);
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 750;
}

.faq-section {
  background: var(--surface);
}

.faq-overview {
  display: grid;
  gap: 32px;
}

.faq-overview .section-heading {
  max-width: 760px;
}

.faq-board {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  display: grid;
  min-height: 300px;
  align-content: start;
  gap: 14px;
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.faq-item:hover {
  border-color: var(--border-strong);
  box-shadow: 0 12px 28px rgba(16, 35, 63, 0.08);
  transform: translateY(-3px);
}

.faq-featured {
  grid-template-columns: minmax(110px, 0.58fr) minmax(0, 1.42fr);
  min-height: 300px;
  align-content: center;
  align-items: center;
  column-gap: clamp(20px, 3vw, 36px);
  border-color: rgba(0, 82, 204, 0.25);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), transparent 54%),
    var(--surface-blue);
}

.faq-featured h3 {
  max-width: 520px;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.faq-featured-copy {
  display: grid;
  gap: 14px;
}

.faq-featured-copy > p:last-child {
  max-width: 580px;
  font-size: 1.07rem;
}

.assessment-duration {
  display: grid;
  gap: 10px;
  color: var(--primary-dark);
}

.assessment-duration strong {
  font-size: clamp(5rem, 7vw, 7rem);
  font-weight: 760;
  letter-spacing: -0.085em;
  line-height: 0.72;
}

.assessment-duration span {
  padding-left: 6px;
  color: var(--body);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.faq-label {
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.faq-item h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  letter-spacing: -0.02em;
}

.faq-item > p:last-child {
  line-height: 1.55;
}

.contact-section {
  background: var(--surface-blue);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  align-items: start;
  gap: clamp(54px, 8vw, 102px);
}

.contact-expectations {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.contact-expectations span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-expectations span::before {
  width: 18px;
  height: 2px;
  background: var(--primary);
  content: "";
}

.scheduler-card {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 340px;
  gap: 18px;
  padding: clamp(32px, 5vw, 54px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.scheduler-card h3 {
  max-width: 420px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.scheduler-card > p:not(.eyebrow) {
  max-width: 48ch;
}

.scheduler-card small {
  color: var(--body);
  font-weight: 650;
}

.legal-document a {
  color: var(--primary-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 55ms);
}

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

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes image-loading {
  from {
    background-position: 100% 0;
  }
  to {
    background-position: -100% 0;
  }
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  align-items: center;
  gap: 30px;
}

.footer-grid > div:first-child {
  display: grid;
  gap: 8px;
}

.site-footer p,
.footer-languages,
.site-footer nav {
  color: var(--soft);
  font-size: 0.88rem;
}

.footer-languages,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 700;
}

.footer-languages {
  padding: 0;
  margin: 0;
  list-style: none;
}

.legal-main {
  min-height: calc(100dvh - 185px);
  padding: 76px 0 104px;
  background: var(--surface);
}

.legal-document {
  width: min(calc(100% - 48px), 760px);
}

.legal-document h1 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 4.2rem);
}

.legal-document h2 {
  margin: 44px 0 12px;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.legal-document p {
  max-width: 70ch;
}

.legal-kicker {
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-note {
  margin-top: 48px;
  padding: 22px 24px;
  border-left: 4px solid var(--primary);
  background: var(--surface-blue);
}

.legal-footer .footer-grid {
  grid-template-columns: 1fr auto;
}

@media (max-width: 920px) {
  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .site-nav a {
    padding: 12px 14px;
  }

  .site-nav .button {
    margin-top: 4px;
  }

  .nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .method-layout,
  .founder-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-photo {
    height: 560px;
    min-height: 0;
  }

  .method-layout,
  .founder-layout,
  .contact-layout {
    gap: 48px;
  }

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

  .faq-featured {
    grid-column: span 2;
    min-height: 320px;
    grid-row: auto;
  }

  .founder-image-wrap {
    max-width: 620px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  h1 {
    font-size: clamp(2.65rem, 11.8vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 44px 0 54px;
  }

  .hero-copy {
    gap: 20px;
  }

  .hero-copy .lead {
    font-size: 1.04rem;
  }

  .hero::before {
    display: none;
  }

  .button-row,
  .button-row .button,
  .button-row .text-link {
    width: 100%;
  }

  .button-row .text-link {
    justify-content: center;
  }

  .hero-photo {
    height: 450px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid div,
  .trust-grid div:first-child {
    padding: 20px 14px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-grid div:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .trust-grid div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .method-steps article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .language-offerings {
    grid-template-columns: 1fr;
  }

  .language-offerings li {
    min-height: 122px;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .goal-list {
    display: grid;
    gap: 9px;
  }

  .goal-list li:not(:last-child)::after {
    display: none;
  }

  .faq-board {
    grid-template-columns: 1fr;
  }

  .faq-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 300px;
  }

  .language-subsection {
    padding: 24px;
  }

  .assessment-duration {
    display: flex;
    align-items: flex-end;
    gap: 16px;
  }

  .assessment-duration strong {
    font-size: 5.5rem;
  }

  .assessment-duration span {
    padding: 0 0 4px;
  }

  .faq-item {
    min-height: 0;
    padding: 24px;
  }

  .founder-image-wrap img {
    height: 500px;
  }

  .legal-document {
    width: min(calc(100% - 30px), 760px);
  }

  .legal-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .method-steps article:hover,
  .language-offerings li:hover,
  .text-link:hover {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--surface);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}
