:root {
  --navy-950: #06101f;
  --navy-900: #0a1628;
  --navy-850: #0d1c34;
  --navy-700: #1a355c;
  --blue-500: #3d7fd6;
  --blue-400: #5b9aef;
  --blue-300: #8bb6f5;
  --gold: #c4a15a;
  --ice: #e7eef9;
  --muted: #9bb0ce;
  --line: rgba(139, 170, 220, 0.22);
  --shadow: 0 24px 60px rgba(2, 10, 24, 0.45);
  --radius: 18px;
  --header-h: 84px;
  --font-display: "Rubik", "Heebo", sans-serif;
  --font-body: "Heebo", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--navy-950);
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100dvh;
  min-height: 100svh;
  font-family: var(--font-body);
  color: var(--ice);
  background:
    radial-gradient(1000px 500px at 90% -10%, rgba(61, 127, 214, 0.16), transparent 55%),
    radial-gradient(800px 420px at -10% 30%, rgba(196, 161, 90, 0.08), transparent 50%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950) 45%, var(--navy-900));
  background-color: var(--navy-950);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: 3px;
  z-index: 100;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--blue-400));
  transform-origin: right center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  backdrop-filter: blur(14px);
  background: rgba(6, 16, 31, 0.92);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  z-index: 2;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: 68px;
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 1.2rem;
  grid-column: 2;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--ice);
  background: linear-gradient(135deg, var(--blue-500), var(--navy-700));
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
  z-index: 2;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(18, 36, 66, 0.7);
  color: var(--blue-300);
  transition: color 0.25s, background 0.25s, border-color 0.25s, transform 0.25s;
}

.social-link:hover,
.social-link:focus-visible {
  color: #fff;
  background: #1877f2;
  border-color: #1877f2;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(18, 36, 66, 0.7);
  padding: 10px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ice);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-500), #2a5fa8);
  color: #fff;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(10, 22, 40, 0.45);
  color: var(--ice);
}

.hero {
  position: relative;
  height: 135vh;
  margin: 0;
  background:
    radial-gradient(900px 420px at 50% 70%, rgba(61, 127, 214, 0.12), transparent 60%),
    #070d18;
}

.hero-pin {
  position: sticky;
  top: var(--header-h);
  height: calc(100svh - var(--header-h));
  overflow: hidden;
  display: grid;
  align-content: start;
  justify-items: center;
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(1.4rem, 4vh, 2.8rem) 0 0;
  text-align: center;
  display: grid;
  justify-items: center;
}

.brand-hero {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 18ch;
  color: var(--blue-300);
  text-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.hero-lead {
  margin: 0.95rem 0 0;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.02rem;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
  pointer-events: auto;
}

.key-hand {
  position: absolute;
  top: 56%;
  width: min(72vw, 680px);
  height: min(56vh, 480px);
  will-change: transform, opacity;
  filter: drop-shadow(0 28px 48px rgba(0, 0, 0, 0.45));
}

.key-hand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

.key-hand-offer {
  right: -12%;
  left: auto;
  transform: translate3d(26vw, -52%, 0);
}

.key-hand-offer img {
  object-position: 70% center;
  transform: scale(1.12);
}

.key-hand-receive {
  left: -12%;
  right: auto;
  transform: translate3d(-26vw, -48%, 0);
}

.key-hand-receive img {
  transform: scaleX(-1) scale(1.12);
  object-position: 30% center;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  inset-inline-start: 50%;
  bottom: 1.2rem;
  transform: translateX(50%);
  width: 26px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  justify-items: center;
  padding-top: 8px;
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue-300);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head-center {
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
}

.section-head p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.process,
.stories,
.reviews,
.contact {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.process-track {
  position: relative;
  padding-top: 2.5rem;
}

.process-rail {
  position: relative;
  height: 4px;
  margin-bottom: 2rem;
  border-radius: 999px;
  background: rgba(139, 170, 220, 0.18);
  overflow: hidden;
}

.process-rail-fill {
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(270deg, var(--gold), var(--blue-400));
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1rem 1.2rem;
  background: linear-gradient(180deg, rgba(18, 36, 66, 0.75), rgba(10, 22, 40, 0.9));
  transition: border-color 0.35s, transform 0.35s var(--ease), box-shadow 0.35s;
}

.process-step.is-active {
  border-color: rgba(196, 161, 90, 0.55);
  box-shadow: 0 16px 36px rgba(2, 10, 24, 0.35);
  transform: translateY(-4px);
}

.step-num {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.customers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.customer-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(10, 22, 40, 0.85);
  aspect-ratio: 4 / 3;
  box-shadow: 0 16px 36px rgba(2, 10, 24, 0.35);
}

.customer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease);
}

.customer-card:hover img {
  transform: scale(1.03);
}

.reviews-deck {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.reviews-deck-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.reviews-hint-mobile {
  display: none;
}

.reviews-deck-stage {
  position: relative;
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
  gap: 1rem;
}

.review-preview {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  min-height: 168px;
  margin-inline: auto;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  border: 1px dashed rgba(196, 161, 90, 0.4);
  background:
    linear-gradient(180deg, rgba(47, 51, 56, 0.65) 0%, rgba(28, 30, 33, 0.85) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  transition:
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}

.review-preview-placeholder {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.review-preview.is-filled {
  border-style: solid;
  border-color: rgba(196, 161, 90, 0.45);
  background:
    linear-gradient(180deg, #2f3338 0%, #1c1e21 100%);
  box-shadow:
    0 18px 40px rgba(2, 10, 24, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.review-preview.is-filled .review-preview-placeholder {
  display: none;
}

.review-preview img {
  width: 100%;
  height: auto;
  max-height: min(42vh, 280px);
  object-fit: contain;
  object-position: center;
  display: none;
  border-radius: 10px;
  background: #242526;
}

.review-preview.is-filled img {
  display: block;
}

.reviews-deck-stack {
  --deck-w: min(100%, 520px);
  --deck-h: 168px;
  --deck-step: 18px;
  position: relative;
  width: var(--deck-w);
  height: calc(var(--deck-h) + (var(--visible, 4) - 1) * var(--deck-step));
  margin-inline: auto;
  margin-top: 0.5rem;
  perspective: 1200px;
  z-index: 1;
}

.review-card {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: var(--deck-h);
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #2a2d31 0%, #1c1e21 100%);
  box-shadow:
    0 14px 34px rgba(2, 10, 24, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  cursor: pointer;
  overflow: hidden;
  transform-origin: center top;
  transition:
    transform 0.45s var(--ease),
    opacity 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.review-card.is-front {
  border-color: rgba(196, 161, 90, 0.4);
  box-shadow:
    0 22px 44px rgba(2, 10, 24, 0.5),
    0 0 0 1px rgba(196, 161, 90, 0.18);
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  pointer-events: none;
  border-radius: 8px;
}

.review-card.is-front:hover {
  border-color: rgba(196, 161, 90, 0.65);
}

.review-card.is-sending {
  pointer-events: none;
  z-index: 30 !important;
}

.review-card:focus-visible {
  outline: 2px solid var(--blue-400);
  outline-offset: 3px;
}

@media (hover: none), (pointer: coarse) {
  .review-preview {
    display: none;
  }

  .reviews-deck-stage {
    gap: 0.5rem;
  }

  .reviews-hint-desktop {
    display: none;
  }

  .reviews-hint-mobile {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-preview {
    transition: none;
  }
}

.section-cta {
  margin-top: 1.75rem;
  display: flex;
  justify-content: center;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(61, 127, 214, 0.18), transparent 60%),
    rgba(13, 28, 52, 0.75);
}

.contact-panel h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.contact-copy p {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
}

.contact-messenger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0 calc(1.15rem + env(safe-area-inset-bottom, 0px));
  background: var(--navy-950);
}

.footer-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}

.footer-brand {
  margin: 0;
  color: var(--ice);
  font-family: var(--font-display);
  font-weight: 700;
  justify-self: start;
}

.footer-credit {
  margin: 0;
  text-align: center;
  color: rgba(155, 176, 206, 0.72);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  justify-self: center;
}

.footer-inner > p:last-child {
  margin: 0;
  justify-self: end;
  text-align: end;
}

@media (max-width: 720px) {
  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.45rem;
  }

  .footer-brand,
  .footer-credit,
  .footer-inner > p:last-child {
    justify-self: center;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes scrollPulse {
  0% {
    opacity: 0.2;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(10px);
  }
  100% {
    opacity: 0.2;
    transform: translateY(18px);
  }
}

@media (max-width: 980px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-messenger {
    width: 100%;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 72px;
  }

  .brand-logo {
    height: 56px;
    max-width: min(180px, 58vw);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    grid-column: 2;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    inset-inline: 0;
    width: 100vw;
    max-width: none;
    margin: 0;
    margin-inline: calc(50% - 50vw);
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    justify-self: stretch;
    gap: 0.2rem;
    padding: 0.85rem 1rem 1.1rem;
    background: rgba(6, 16, 31, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(2, 10, 24, 0.45);
    grid-column: 1 / -1;
    z-index: 60;
    box-sizing: border-box;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.05rem;
  }

  .process-steps,
  .customers-grid {
    grid-template-columns: 1fr;
  }

  .customers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-deck-stack {
    --deck-w: min(100%, 420px);
    --deck-h: 150px;
    --deck-step: 16px;
  }

  .reviews-deck-hint {
    font-size: 0.86rem;
    text-align: center;
  }

  .reviews-hint-desktop {
    display: none;
  }

  .reviews-hint-mobile {
    display: inline;
  }

  .review-preview {
    display: none;
  }

  .key-hand {
    width: 62vw;
    height: min(36vh, 280px);
    top: 68%;
  }

  .key-hand-offer {
    right: -4%;
    left: auto;
    transform: translate3d(30vw, -52%, 0);
  }

  .key-hand-offer img {
    object-position: 80% center;
  }

  .key-hand-receive {
    left: -4%;
    right: auto;
    transform: translate3d(-30vw, -48%, 0);
  }

  .key-hand-receive img {
    object-position: 20% center;
  }

  .hero {
    height: 128vh;
  }

  .hero-content {
    padding-top: clamp(0.9rem, 2.5vh, 1.6rem);
  }

  .hero-lead {
    font-size: 0.95rem;
    max-width: 30ch;
  }

  .hero-actions {
    margin-top: 1rem;
  }

  .brand-hero {
    font-size: clamp(1.35rem, 6.5vw, 1.9rem);
    max-width: 16ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .key-hand {
    transition: none !important;
  }

  .scroll-hint span,
  .customer-card img {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Accessibility widget ===== */
.skip-link {
  position: absolute;
  inset-inline-start: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.a11y-widget {
  position: fixed;
  inset-inline-start: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 120;
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}

.a11y-toggle {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(6, 16, 31, 0.92);
  color: var(--ice);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(2, 10, 24, 0.45);
}

.a11y-toggle:hover,
.a11y-toggle:focus-visible {
  border-color: rgba(196, 161, 90, 0.55);
  outline: none;
}

.a11y-panel {
  width: min(300px, calc(100vw - 2rem));
  padding: 0.85rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(10, 22, 40, 0.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.a11y-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.a11y-panel-head strong {
  font-family: var(--font-display);
}

.a11y-close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: rgba(139, 170, 220, 0.12);
  color: var(--ice);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.a11y-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
}

.a11y-actions button,
.a11y-reset {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(6, 16, 31, 0.75);
  color: var(--ice);
  padding: 0.65rem 0.5rem;
  font: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.a11y-actions button.is-active,
.a11y-actions button[aria-pressed="true"] {
  border-color: rgba(196, 161, 90, 0.65);
  background: rgba(196, 161, 90, 0.16);
  color: #f3e4c0;
}

.a11y-reset {
  width: 100%;
  margin-top: 0.55rem;
  font-weight: 600;
}

html.a11y-text-lg,
html.a11y-text-xl {
  font-size: calc(100% * var(--a11y-scale, 1.12));
}

html.a11y-contrast {
  filter: contrast(1.25);
}

html.a11y-contrast body {
  background: #000;
  color: #fff;
}

html.a11y-grayscale {
  filter: grayscale(1);
}

html.a11y-contrast.a11y-grayscale {
  filter: contrast(1.25) grayscale(1);
}

html.a11y-links a {
  text-decoration: underline !important;
  text-underline-offset: 3px;
  outline: 2px solid transparent;
}

html.a11y-links a:hover,
html.a11y-links a:focus-visible {
  outline-color: var(--gold);
}

html.a11y-readable,
html.a11y-readable body,
html.a11y-readable button,
html.a11y-readable input,
html.a11y-readable textarea {
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
  letter-spacing: 0.01em;
  word-spacing: 0.04em;
}

html.a11y-stop-motion *,
html.a11y-stop-motion *::before,
html.a11y-stop-motion *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

html.a11y-stop-motion .reveal {
  opacity: 1 !important;
  transform: none !important;
}

html.a11y-cursor,
html.a11y-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%23fff' stroke='%23000' stroke-width='2' d='M6 3v22l6-6h9z'/%3E%3C/svg%3E") 2 2, auto !important;
}

@media (max-width: 720px) {
  .a11y-toggle {
    width: 52px;
    height: 52px;
  }
}
