@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/manrope-400.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/manrope-500.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/manrope-600.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-700.ttf") format("truetype");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/manrope-800.ttf") format("truetype");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/sora-500.ttf") format("truetype");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/assets/fonts/sora-600.ttf") format("truetype");
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/sora-700.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --charcoal: #16212b;
  --graphite: #27404c;
  --graphite-soft: #355564;
  --steel: #62717a;
  --steel-bright: #1f4d5b;
  --off-white: #fffbf4;
  --text: #16212b;
  --muted: #52636f;
  --line: rgba(22, 33, 43, 0.12);
  --line-strong: rgba(22, 33, 43, 0.22);
  --accent: #1f4d5b;
  --accent-soft: rgba(31, 77, 91, 0.11);
  --accent-warm: #9c7244;
  --panel: rgba(255, 251, 244, 0.8);
  --panel-soft: rgba(255, 255, 255, 0.72);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --panel-inverse: linear-gradient(160deg, rgba(24, 40, 50, 0.96), rgba(18, 31, 39, 0.94));
  --panel-inverse-text: #f3ede2;
  --shadow: 0 24px 56px rgba(38, 51, 59, 0.12);
  --focus-ring: #16212b;
  --focus-shadow: rgba(31, 77, 91, 0.2);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --font-heading: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --anchor-offset: 7.75rem;
  --motion-emphasis: 760ms;
  --motion-stagger: 120ms;
  --ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top right, rgba(156, 114, 68, 0.16), transparent 24%),
    radial-gradient(circle at 18% 14%, rgba(31, 77, 91, 0.12), transparent 20%),
    radial-gradient(circle at 72% 58%, rgba(31, 77, 91, 0.08), transparent 26%),
    linear-gradient(180deg, #f6f1e7 0%, #f8f4ed 42%, #f2ece2 100%);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 4px;
}

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

ul {
  list-style: none;
}

p {
  color: var(--muted);
  font-size: 1rem;
}

h1,
h2,
h3,
strong {
  font-family: var(--font-heading);
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1px;
  padding: 0;
  border-radius: 999px;
  background: var(--steel-bright);
  color: var(--charcoal);
  box-shadow: var(--shadow);
  white-space: nowrap;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
}

.skip-link:focus,
.skip-link:focus-visible {
  left: 1rem;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  overflow: visible;
  clip: auto;
  clip-path: none;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
  -webkit-mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
  opacity: 0.42;
  animation: grid-settle 1.2s var(--ease-emphasis) both;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.eyebrow,
.panel-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 231, 0.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
}

.logo-lockup {
  position: relative;
  display: block;
  overflow: hidden;
}

.brand-logo,
.hero-logo,
.footer-logo {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 56%;
  filter: drop-shadow(0 10px 24px rgba(28, 40, 46, 0.14));
}

.header-logo-lockup {
  width: 252px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 252 / 66;
}

.hero-logo-lockup {
  width: min(100%, 390px);
  height: auto;
  aspect-ratio: 390 / 128;
}

.footer-logo-lockup {
  width: min(100%, 288px);
  height: auto;
  aspect-ratio: 288 / 96;
  margin-bottom: 1rem;
}

.brand-logo {
  object-position: center 57%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-size: 0.94rem;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
  transition: color 160ms ease, border-color 160ms ease, text-decoration-color 160ms ease, box-shadow 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  color: var(--steel-bright);
  text-decoration-color: currentColor;
}

.header-link {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.5);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 1.4rem, 0);
  animation: reveal-up var(--motion-emphasis) var(--ease-emphasis) forwards;
  animation-delay: calc(var(--reveal-order, 0) * var(--motion-stagger));
}

.reveal-delay-1 {
  --reveal-order: 1;
}

.reveal-delay-2 {
  --reveal-order: 2;
}

.reveal-delay-3 {
  --reveal-order: 3;
}

.reveal-delay-4 {
  --reveal-order: 4;
}

.hero {
  padding-top: 5.5rem;
}

.hero-grid,
.split-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(3.25rem, 6.4vw, 5rem);
  margin: 1rem 0 1.25rem;
}

.hero-text {
  max-width: 43rem;
  font-size: 1.05rem;
}

.hero-copy {
  position: relative;
  padding-right: 2rem;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: -1.5rem;
  width: 1px;
  background:
    linear-gradient(
      180deg,
      rgba(31, 77, 91, 0),
      rgba(31, 77, 91, 0.32),
      rgba(156, 114, 68, 0.35),
      rgba(31, 77, 91, 0)
    );
}

.hero-ledger,
.hero-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-ledger {
  margin-top: 2rem;
}

.hero-ledger div,
.hero-panel-metrics div {
  padding: 0.95rem 1rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}

.hero-ledger div {
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 14px 34px rgba(38, 51, 59, 0.08);
}

.hero-ledger dt,
.hero-panel-metrics dt {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero-ledger dt {
  color: var(--steel);
}

.hero-ledger dd,
.hero-panel-metrics dd {
  margin-top: 0.4rem;
  font-family: var(--font-heading);
  font-size: 0.98rem;
}

.hero-ledger dd {
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn:focus-visible,
.brand-lockup:focus-visible,
.site-nav a:focus-visible,
.header-link:focus-visible,
.footer-email:focus-visible {
  box-shadow: 0 0 0 4px var(--focus-shadow);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--off-white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.5);
  border-color: var(--line-strong);
  color: var(--charcoal);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.25rem;
}

.hero-points li,
.capability-points li,
.outcome-list li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--muted);
}

.hero-points li {
  padding-top: 1rem;
  border-top: 1px solid var(--line-strong);
}

.hero-points li::before,
.capability-points li::before,
.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.hero-panel,
.detail-panel,
.capability-card,
.step-card,
.framework-panel,
.outcome-panel,
.footer-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.5rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--panel-inverse);
}

.hero-brand {
  display: grid;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-brand h2 {
  font-size: 1.55rem;
  margin: 0.5rem 0 0.7rem;
  color: var(--panel-inverse-text);
}

.hero-brand p:last-child {
  max-width: 32rem;
}

.hero-panel .panel-label {
  color: rgba(243, 237, 226, 0.72);
}

.hero-panel p {
  color: rgba(243, 237, 226, 0.72);
}

.hero-panel-metrics {
  margin: 1.4rem 0 1.5rem;
}

.hero-panel-metrics div {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
}

.hero-panel-metrics dt {
  color: rgba(243, 237, 226, 0.56);
}

.hero-panel-metrics dd {
  color: var(--panel-inverse-text);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.icon-card,
.capability-card {
  --icon-accent: #8fb5bf;
  --icon-surface: rgba(143, 181, 191, 0.12);
  --icon-border: rgba(143, 181, 191, 0.24);
}

.icon-card {
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  align-content: start;
  text-align: center;
  padding: 0.9rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.icon-card strong {
  font-size: 0.94rem;
  color: var(--panel-inverse-text);
}

.icon-card p {
  font-size: 0.88rem;
  color: rgba(243, 237, 226, 0.66);
}

.icon-frame,
.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--icon-border, var(--line-strong));
  background: var(--icon-surface, rgba(255, 255, 255, 0.72));
  color: var(--icon-accent, var(--steel-bright));
}

.icon-frame svg,
.capability-icon svg {
  width: 72%;
  height: 72%;
}

.icon-frame {
  border-color: var(--icon-border, rgba(255, 255, 255, 0.12));
  background: var(--icon-surface, rgba(255, 255, 255, 0.08));
  color: var(--icon-accent, rgba(243, 237, 226, 0.9));
}

.section-copy {
  max-width: 42rem;
}

.section-copy.narrow {
  max-width: 46rem;
}

.section-copy h2,
.framework-panel h2,
.outcome-panel h2,
.footer-copy h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin: 0.9rem 0 1rem;
}

.detail-panel {
  display: grid;
  gap: 1.2rem;
  padding: 1.5rem;
  background: var(--panel-strong);
}

.detail-panel article {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.detail-panel article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-panel strong,
.step-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

.capability-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 2.2rem;
}

.capability-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.75rem;
  align-items: start;
  padding: 1.5rem;
  overflow: hidden;
  background: var(--panel-strong);
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--icon-accent), rgba(22, 33, 43, 0.08));
}

.capability-band-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.capability-card .capability-icon {
  width: 3.75rem;
  height: 3.75rem;
  box-shadow: 0 14px 28px rgba(31, 77, 91, 0.12);
}

.capability-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.capability-card h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  margin: 0.25rem 0 0;
  max-width: 16ch;
}

.capability-band-body {
  display: grid;
  gap: 0.85rem;
}

.capability-points {
  display: grid;
  gap: 0.7rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.step-list {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1rem;
}

.step-list::before {
  content: "";
  position: absolute;
  left: 2.5rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(31, 77, 91, 0), rgba(31, 77, 91, 0.28), rgba(156, 114, 68, 0.28), rgba(31, 77, 91, 0));
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  background: var(--panel-strong);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--off-white);
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(31, 77, 91, 0.18);
  z-index: 1;
}

.framework-panel,
.outcome-panel,
.footer-panel {
  padding: 1.5rem;
}

.framework-panel {
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--panel-inverse);
}

.framework-panel .eyebrow {
  color: rgba(243, 237, 226, 0.7);
}

.framework-panel h2 {
  color: var(--panel-inverse-text);
}

.framework-panel p {
  color: rgba(243, 237, 226, 0.74);
}

.framework-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.framework-tags span {
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--panel-inverse-text);
  font-size: 0.92rem;
}

.outcome-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.site-footer {
  padding-top: 2rem;
}

.footer-panel {
  display: grid;
  align-content: center;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, rgba(31, 77, 91, 0.96), rgba(24, 40, 50, 0.94));
}

.footer-email {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--panel-inverse-text);
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
  transition: color 160ms ease, text-decoration-color 160ms ease, box-shadow 160ms ease;
}

.footer-email:hover,
.footer-email:focus-visible {
  color: var(--steel-bright);
  text-decoration-color: currentColor;
}

.footer-panel p {
  margin-top: 0.9rem;
  color: rgba(243, 237, 226, 0.74);
}

.footer-bottom {
  border-top: 1px solid rgba(138, 154, 165, 0.12);
  padding: 1.25rem 0 2rem;
}

.footer-bottom-inner {
  display: grid;
  gap: 0.6rem;
}

.footer-bottom p {
  font-size: 0.9rem;
}

.legal-entity {
  font-size: 0.88rem;
  line-height: 1.55;
}

main:focus {
  outline: none;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 1.4rem, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes grid-settle {
  from {
    opacity: 0;
    transform: scale(1.04);
  }

  to {
    opacity: 0.35;
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .footer-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-copy::before {
    left: -1rem;
  }

  .hero-points,
  .hero-ledger,
  .hero-panel-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --anchor-offset: 11rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 1.25rem 0 1rem;
    gap: 1.25rem;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    width: 100%;
    flex-wrap: nowrap;
    gap: 0.7rem;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    white-space: nowrap;
    padding: 0.65rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.64);
  }

  .header-link {
    align-self: flex-start;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-copy::before,
  .step-list::before {
    display: none;
  }

  .section {
    padding: 4.75rem 0;
  }

  .icon-row {
    grid-template-columns: 1fr;
  }

  .hero-points,
  .hero-ledger,
  .hero-panel-metrics {
    grid-template-columns: 1fr;
  }

  .hero-points li {
    padding-right: 0;
  }

  .step-list {
    padding-left: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --anchor-offset: 13rem;
  }

  .container {
    width: min(var(--container), calc(100% - 1.25rem));
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .header-link {
    width: 100%;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    object-position: center 57%;
  }

  .header-logo-lockup {
    width: 214px;
    height: auto;
    aspect-ratio: 214 / 56;
  }

  .hero-logo-lockup {
    height: auto;
    aspect-ratio: 390 / 112;
  }

  .footer-logo-lockup {
    width: min(100%, 240px);
    height: auto;
    aspect-ratio: 240 / 80;
  }
}

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

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

  .background-grid,
  .reveal {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  .btn:focus-visible {
    transform: none;
  }
}
