/* ============================================================
   Cybixicon — landing page
   Design system modelled on wise.com:
   bright green #9FE870, forest green #163300, ink #0E0F0C,
   pill buttons, oversized all-caps display type at 0.85 lh.
   Display face: Archivo 900 (free stand-in for Wise Sans,
   which is proprietary). Body: Inter, as Wise uses.
   ============================================================ */

/* ── Self-hosted faces (latin subset, straight from Google Fonts) ──── */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("/fonts/archivo-subset.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/inter-subset.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand */
  --bright-green:        #9FE870;
  --bright-green-hover:  #8ADB55;
  --forest-green:        #163300;
  --forest-green-hover:  #0D1F00;

  /* Content */
  --ink:                 #0E0F0C;
  --content-secondary:   #454745;
  --content-tertiary:    #6A6C6A;
  --on-dark:             #FFFFFF;
  --on-dark-muted:       #C6D4BC;

  /* Surfaces */
  --bg:                  #FFFFFF;
  --bg-tint:             #F6F8F4;
  --bg-green-tint:       rgba(22, 51, 0, 0.06);
  --border:              #E2E5E0;
  --border-strong:       #C9CEC5;

  /* Type */
  /* Wise's display face is Wise Sans Heavy (proprietary, self-hosted by Wise
     and not licensable). Archivo's variable width axis at 70% matches its
     measured metrics almost exactly: the string "SEND MONEY GLOBALLY" at
     100px is 965px wide vs Wise's 977px (-1.2%), cap height 68.8 vs 70.
     Body text is Inter, which is genuinely what wise.com uses. */
  --font-display:    "Archivo", "Inter", Helvetica, Arial, sans-serif;
  --display-stretch: 70%;
  --font-body:       "Inter", Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: 24px;
  --radius: 20px;
  --radius-lg: 28px;

  --shadow-card: 0 2px 4px rgba(14,15,12,.04), 0 12px 32px rgba(14,15,12,.08);
  --shadow-lift: 0 4px 8px rgba(14,15,12,.05), 0 24px 48px rgba(14,15,12,.12);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--content-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { color: var(--ink); margin: 0; }
p { margin: 0; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
legend { padding: 0; }

:focus-visible {
  outline: 3px solid var(--forest-green);
  outline-offset: 2px;
  border-radius: 4px;
}

.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: absolute; left: 50%; transform: translate(-50%, -200%);
  z-index: 200; background: var(--bright-green); color: var(--forest-green);
  padding: 14px 24px; border-radius: 999px; font-weight: 600; text-decoration: none;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 12px); }

.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--gutter);
}

/* ── Display type (the Wise signature) ──────────────────────── */
.display {
  font-family: var(--font-display); font-stretch: var(--display-stretch);
  font-weight: 900;
  text-transform: uppercase;
  line-height: .85;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.display--hero { font-size: clamp(3.25rem, 8.8vw, 8.25rem); }
.display--xl { font-size: clamp(3.25rem, 7.6vw, 6.5rem); }
.display--lg { font-size: clamp(2.5rem, 5.4vw, 4.25rem); }
.display--md { font-size: clamp(1.75rem, 3.4vw, 2.75rem); line-height: .95; }
.display--sm { font-size: clamp(1.5rem, 2.6vw, 2rem); }

.lede {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--content-secondary);
  max-width: 46ch;
}
.lede--muted { color: var(--content-secondary); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: none;
  padding: 11px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  transition: background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .18s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--bright-green); color: var(--forest-green); }
.btn--primary:hover { background: var(--bright-green-hover); }

.btn--ghost {
  background: transparent; color: var(--forest-green);
  border-color: var(--forest-green);
}
.btn--ghost:hover { background: var(--forest-green); color: var(--bright-green); }

.btn--on-dark {
  background: transparent; color: var(--bright-green);
  border-color: var(--bright-green);
}
.btn--on-dark:hover { background: var(--bright-green); color: var(--forest-green); }

.btn--dark { background: var(--forest-green); color: var(--bright-green); }
.btn--dark:hover { background: var(--forest-green-hover); }

.btn--sm  { padding: 8px 18px; font-size: 15px; }
.btn--lg  { padding: 15px 32px; font-size: 17px; }
.btn--block { display: flex; width: 100%; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.nav.is-stuck { border-color: var(--border); box-shadow: 0 1px 12px rgba(14,15,12,.05); }
.nav__inner {
  display: flex; align-items: center; gap: 32px;
  min-height: 72px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__mark { width: 30px; height: 30px; flex: none; }
.logo__word {
  font-family: var(--font-display);
  font-stretch: normal; /* wordmark reads better uncondensed */
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.03em;
  color: var(--forest-green);
}
.nav__links { display: flex; align-items: center; gap: 28px; margin-right: auto; }
.nav__links > a {
  text-decoration: none; font-weight: 500; font-size: 16px; color: var(--ink);
  padding: 6px 0; position: relative;
}
.nav__links > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--bright-green); transition: right .22s var(--ease);
}
.nav__links > a:hover::after { right: 0; }
.nav__mobile-cta { display: none; }
.nav__actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.nav__link-plain { text-decoration: none; font-weight: 500; font-size: 16px; color: var(--ink); }
.nav__link-plain:hover { text-decoration: underline; }

.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 10px;
  background: none; border: 0;
}
.nav__burger span {
  display: block; height: 2px; width: 100%; background: var(--ink); border-radius: 2px;
  transition: transform .22s var(--ease), opacity .18s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 6vw, 96px);
  background: var(--forest-green);
  background-image: radial-gradient(80% 60% at 100% 0%, rgba(159,232,112,.16), transparent 65%);
  color: var(--on-dark-muted);
}
.hero__mark {
  position: absolute; top: 40px; right: -110px; width: 700px; height: 700px;
  stroke: rgba(159, 232, 112, .10); pointer-events: none;
}
.hero__inner { position: relative; display: flex; flex-direction: column; align-items: flex-start; }
.hero__eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--bright-green);
}
.hero .display--hero { margin-top: 24px; color: var(--bright-green); }
.hero__lede { margin-top: 28px; color: var(--on-dark-muted); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero__note { margin-top: 24px; font-size: 15px; color: rgba(255, 255, 255, .55); }
.hero__stats { width: 100%; margin-top: clamp(48px, 5vw, 72px); }

/* ── Trust bar ──────────────────────────────────────────────── */
.trustbar { padding: 28px 0 40px; border-bottom: 1px solid var(--border); }
.trustbar__label {
  font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--content-tertiary); text-align: center;
}
.trustbar__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; margin-top: 18px;
}
.trustbar__list li {
  font-family: var(--font-display); font-stretch: var(--display-stretch); font-weight: 800; text-transform: uppercase;
  font-size: clamp(15px, 1.6vw, 20px); letter-spacing: -0.01em;
  color: var(--forest-green); opacity: .65;
}

/* ── Generic section ────────────────────────────────────────── */
.section { padding: clamp(64px, 8vw, 112px) 0; }
.section--tint { background: var(--bg-tint); }
.section__head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.section__head .lede { margin-top: 20px; }

.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

/* ── Features ───────────────────────────────────────────────── */
.feature {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--bright-green); color: var(--forest-green);
  margin-bottom: 22px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 {
  font-family: var(--font-display); font-stretch: var(--display-stretch); font-weight: 800; text-transform: uppercase;
  font-size: 22px; letter-spacing: -0.01em; line-height: 1.05; margin-bottom: 12px;
}
.feature p { font-size: 16px; }

/* ── Dark band ──────────────────────────────────────────────── */
.dark {
  background: var(--forest-green);
  color: var(--on-dark);
  padding: clamp(64px, 8vw, 120px) 0;
  background-image: radial-gradient(80% 60% at 100% 0%, rgba(159,232,112,.16), transparent 65%);
}
.dark__inner { max-width: 760px; }
.dark__title { color: var(--bright-green); }
.dark__lede {
  margin: 24px 0 36px; font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.55; color: var(--on-dark-muted); max-width: 46ch;
}
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px 24px; }
.stat { padding: 24px 0; border-top: 1px solid rgba(159,232,112,.28); }
.stat__value {
  font-family: var(--font-display); font-stretch: var(--display-stretch); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2rem, 3.2vw, 2.875rem); line-height: 1; letter-spacing: -0.02em;
  color: var(--on-dark);
}
.stat dd { margin-top: 10px; font-size: 15px; color: var(--on-dark-muted); }

/* ── Process steps ──────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 28px; border-top: 3px solid var(--forest-green); }
.step__num {
  font-family: var(--font-display); font-stretch: var(--display-stretch); font-weight: 900; font-size: 15px;
  letter-spacing: .06em; color: var(--forest-green);
  background: var(--bright-green); border-radius: 999px; padding: 4px 12px;
  display: inline-block; margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display); font-stretch: var(--display-stretch); font-weight: 800; text-transform: uppercase;
  font-size: 24px; letter-spacing: -0.01em; margin-bottom: 12px;
}
.step p { font-size: 16px; }

/* ── Services ───────────────────────────────────────────────── */
.grid--services { gap: 0; border-top: 1px solid var(--border); }
.service {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left .25s var(--ease), background-color .25s var(--ease);
}
.service:hover { padding-left: 20px; padding-right: 12px; background: var(--bg-tint); }
.service h3 {
  font-family: var(--font-display); font-stretch: var(--display-stretch); font-weight: 800; text-transform: uppercase;
  font-size: 24px; letter-spacing: -0.01em; margin-bottom: 12px;
}
.service p { font-size: 16px; }
.service__tags {
  display: block; margin-top: 16px; font-size: 13px; font-weight: 600;
  letter-spacing: .04em; color: var(--content-tertiary);
}

/* ── Industries ─────────────────────────────────────────────── */
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industries li {
  background: var(--bg); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border);
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.industries li:hover { transform: translateY(-4px); border-color: var(--forest-green); }
.industries strong {
  display: block; font-family: var(--font-display); font-stretch: var(--display-stretch); font-weight: 800;
  text-transform: uppercase; font-size: 20px; color: var(--ink);
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.industries span { font-size: 15px; }

/* ── Quote ──────────────────────────────────────────────────── */
.quote-wrap {
  max-width: 900px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 40px;
}
.quote { margin: 0; }
.quote p { text-transform: none; letter-spacing: -0.01em; }
.quote__by {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-top: 32px; text-align: left;
}
.quote__avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  background: var(--bright-green); color: var(--forest-green);
  display: grid; place-items: center;
  font-family: var(--font-display); font-stretch: var(--display-stretch); font-weight: 900; font-size: 20px;
}
.quote__by strong { display: block; color: var(--ink); font-size: 16px; }
.quote__meta { font-size: 14px; color: var(--content-tertiary); }

/* ── Final CTA ──────────────────────────────────────────────── */
.cta { background: var(--bright-green); padding: clamp(64px, 8vw, 120px) 0; }
.cta__inner { max-width: 820px; text-align: center; }
.cta__title { color: var(--forest-green); }
.cta__lede {
  margin: 28px auto 0; max-width: 56ch;
  font-size: clamp(1.0625rem, 1.4vw, 1.1875rem); line-height: 1.55;
  color: var(--forest-green);
}
.cta__form { margin-top: 36px; }
.cta__fields {
  display: flex; gap: 12px; max-width: 560px; margin-inline: auto;
}
.input {
  flex: 1; min-width: 0;
  font-family: var(--font-body); font-size: 16px;
  padding: 15px 22px; border-radius: 999px;
  border: 2px solid var(--forest-green); background: var(--bg); color: var(--ink);
}
.input::placeholder { color: var(--content-tertiary); }
.input:focus { outline: none; box-shadow: 0 0 0 4px rgba(22,51,0,.2); }
.input.is-invalid { border-color: #B4231A; }
.cta__fields .btn--primary { background: var(--forest-green); color: var(--bright-green); }
.cta__fields .btn--primary:hover { background: var(--forest-green-hover); }
.cta__status { margin-top: 14px; font-size: 15px; font-weight: 600; color: var(--forest-green); min-height: 22px; }
.cta__note { margin-top: 24px; font-size: 15px; color: var(--forest-green); }
.cta__note a { font-weight: 600; }

.cta__offices {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 24px 48px;
  max-width: 640px; margin: 28px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(22, 51, 0, .18);
  text-align: left;
}
.cta__office { display: grid; grid-template-columns: 18px 1fr; column-gap: 10px; row-gap: 4px; }
.cta__office svg { width: 18px; height: 18px; margin-top: 1px; color: var(--forest-green); opacity: .8; }
.cta__office__label {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--forest-green);
}
.cta__office__addr {
  grid-column: 2; font-size: 15px; line-height: 1.5;
  color: var(--forest-green); opacity: .85;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer { padding: clamp(56px, 6vw, 80px) 0 40px; }
.footer__grid {
  display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 40px;
}
.footer__slogan {
  margin-top: 18px;
  font-family: var(--font-display); font-stretch: var(--display-stretch); font-weight: 900; text-transform: uppercase;
  /* The <br> in the markup fixes the lockup at two lines — "YOU THINK. /
     WE BUILD." — so it reads the same at every width instead of collapsing
     into a four-line stack when the column gets narrow. */
  font-size: clamp(28px, 2.5vw, 36px); line-height: .95; letter-spacing: -0.02em;
  color: var(--ink);
}
.footer__social {
  list-style: none; display: flex; gap: 10px; margin-top: 24px;
}
.footer__social a {
  display: grid; place-items: center; width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--content-secondary); transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.footer__social a:hover {
  background: var(--forest-green); border-color: var(--forest-green);
  color: var(--bright-green);
}
.footer__social svg { width: 18px; height: 18px; }

.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h2 {
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 4px;
}
.footer__col a { font-size: 15px; text-decoration: none; color: var(--content-secondary); }
.footer__col a:hover { color: var(--ink); text-decoration: underline; }
.footer__offices {
  margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px 40px;
}
.footer__office h2 {
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 10px;
}
.footer__office address {
  font-style: normal; font-size: 15px; line-height: 1.6; color: var(--content-secondary);
}
.footer__office--reach { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer__office--reach h2 { margin-bottom: 0; }
.footer__office--reach a { font-size: 15px; text-decoration: none; color: var(--content-secondary); }
.footer__office--reach a:hover { color: var(--ink); text-decoration: underline; }
.footer__phone {
  font-family: var(--font-display); font-stretch: var(--display-stretch); font-weight: 800; font-size: 18px;
  letter-spacing: -0.01em; color: var(--ink) !important;
}

.footer__bottom {
  margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 8px 32px; justify-content: space-between;
  font-size: 14px; color: var(--content-tertiary);
}

/* ── Reveal on scroll ───────────────────────────────────────── */
/* Hidden only when JS is available to reveal it again — without this,
   a JS failure would leave the whole page below the hero invisible. */
.js .reveal { opacity: 0; transform: translateY(24px); }
.js .reveal.is-visible {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
/* The stagger used to be written per element from script; as CSS it costs
   nothing at start-up. */
.js .reveal:nth-child(2) { transition-delay: 60ms; }
.js .reveal:nth-child(3) { transition-delay: 120ms; }
.js .reveal:nth-child(4) { transition-delay: 180ms; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__mark { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .grid--3, .industries { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav__burger { display: flex; }
  .nav__link-plain, .nav__actions .btn--sm { display: none; }
  .nav__links {
    position: fixed; inset: 72px 0 auto; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 8px 24px 24px;
    transform: translateY(-120%); opacity: 0; pointer-events: none;
    transition: transform .28s var(--ease), opacity .2s var(--ease);
    max-height: calc(100dvh - 72px); overflow-y: auto;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links > a { padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 18px; }
  .nav__links > a::after { display: none; }
  .nav__mobile-cta { display: block; margin-top: 20px; }
  .footer__offices { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid--3, .industries, .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__slogan { max-width: none; }
  .footer__offices { grid-template-columns: 1fr; gap: 28px; }
  .cta__offices { grid-template-columns: 1fr; gap: 20px; max-width: 320px; }
  .service { padding-right: 0; }
  .service:hover { padding-left: 12px; }
  .cta__fields { flex-direction: column; }
  .hero__cta .btn { flex: 1; }
  .trustbar__list { gap: 10px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
