/* LedgerChat — Ink & Citrus.
   Near-black canvas, electric lime accent, Space Grotesk headlines over Geist text. Dark by design. */
:root {
  color-scheme: dark;
  --paper: #0A0A0B;
  --paper-deep: #121214;
  --surface: #141416;
  --ink: #F5F5F4;
  --ink-soft: #A2A2A8;
  --ink-faint: #74747C;
  --clay: #D7FF3E;
  --clay-ink: #0A0A0B;
  --clay-soft: rgba(215, 255, 62, 0.13);
  --olive: #8FE3C0;
  --line: rgba(245, 245, 244, 0.10);
  --line-strong: rgba(245, 245, 244, 0.22);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5), 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 40px 80px -40px rgba(0, 0, 0, 0.9);
  --radius: 20px;
  --radius-sm: 13px;
  --maxw: 1160px;
  --step--1: clamp(0.84rem, 0.8rem + 0.2vw, 0.95rem);
  --step-0: clamp(1.02rem, 0.97rem + 0.25vw, 1.14rem);
  --step-1: clamp(1.24rem, 1.12rem + 0.55vw, 1.55rem);
  --step-2: clamp(1.55rem, 1.3rem + 1.1vw, 2.2rem);
  --step-3: clamp(2.1rem, 1.6rem + 2.2vw, 3.4rem);
  --step-4: clamp(2.8rem, 1.9rem + 4vw, 5.2rem);
  --display: "Sora", ui-sans-serif, system-ui, sans-serif;
  --body: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Paper grain: a hand-made feel without an image request. */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.16;
  background-image: radial-gradient(rgba(245, 245, 244, 0.5) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* Display serif carries the big statements; the sans keeps small headings sturdy. */
h1, h2 { font-family: var(--display); font-weight: 600; line-height: 1.02; letter-spacing: -0.035em; margin: 0 0 0.42em; }
h1 { font-size: var(--step-4); letter-spacing: -0.028em; }
h2 { font-size: var(--step-3); }
h3, h4 { font-family: var(--body); font-weight: 700; letter-spacing: -0.015em; line-height: 1.25; margin: 0 0 0.5em; }
h3 { font-size: var(--step-1); }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; }
img, svg { max-width: 100%; display: block; }
em { font-style: italic; color: var(--clay); }

.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; position: relative; z-index: 2; }
.section { padding: clamp(4.5rem, 10vw, 9rem) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--step--1); font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--clay); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 2rem; height: 1px; background: currentColor; }
.lede { font-size: var(--step-1); color: var(--ink-soft); max-width: 48ch; line-height: 1.55; }

/* ─── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(16px) saturate(140%);
  background: color-mix(in oklab, var(--paper) 84%, transparent);
  border-bottom: 1px solid transparent; transition: border-color 0.35s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 0.65rem; font-family: var(--display); font-weight: 700; font-size: 1.16rem; letter-spacing: -0.03em; text-decoration: none; }
.brand svg { width: 32px; height: 32px; color: var(--clay); }
.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a { text-decoration: none; color: var(--ink-soft); font-size: var(--step--1); font-weight: 500; transition: color 0.2s ease; }
.nav a:hover { color: var(--ink); }
.nav a.btn, .nav a.btn:hover { color: var(--btn-ink); }
@media (max-width: 760px) { .nav .nav-link { display: none; } }

.btn {
  --btn-bg: var(--clay); --btn-ink: var(--clay-ink);
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.9rem 1.5rem; border-radius: 999px; border: 1px solid transparent;
  background: var(--btn-bg); color: var(--btn-ink);
  font: inherit; font-weight: 600; font-size: var(--step--1); text-decoration: none; cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.9,.25,1), box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: var(--shadow-sm);
  will-change: transform;
}
.btn:hover { box-shadow: 0 14px 30px -12px color-mix(in oklab, var(--clay) 65%, transparent); }
.btn--ghost { --btn-bg: transparent; --btn-ink: var(--ink); border-color: var(--line-strong); box-shadow: none; }
.btn--ghost:hover { background: var(--paper-deep); box-shadow: none; }
.btn--lg { padding: 1.1rem 1.9rem; font-size: var(--step-0); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero { position: relative; padding: clamp(3rem, 7vw, 6.5rem) 0 clamp(3rem, 7vw, 6rem); overflow: clip; }
.hero .wrap { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 920px) { .hero .wrap { grid-template-columns: 1fr; } }

/* Headline assembles line by line on load */
.line-mask { display: block; overflow: hidden; }
.js .line-mask > span { display: block; transform: translateY(110%); opacity: 0; }
.line-mask > span { display: block; }
.is-ready .line-mask > span { animation: riseIn 1s cubic-bezier(.16,1,.3,1) forwards; }
.is-ready .line-mask:nth-child(2) > span { animation-delay: 0.09s; }
.is-ready .line-mask:nth-child(3) > span { animation-delay: 0.18s; }
@keyframes riseIn { to { transform: translateY(0); opacity: 1; } }

.js .fade-up { opacity: 0; transform: translateY(16px); }
.is-ready .fade-up { animation: fadeUp 0.9s cubic-bezier(.16,1,.3,1) forwards; }
.is-ready .fade-up[data-delay="1"] { animation-delay: 0.28s; }
.is-ready .fade-up[data-delay="2"] { animation-delay: 0.4s; }
.is-ready .fade-up[data-delay="3"] { animation-delay: 0.52s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2.2rem; }
.hero-note { margin-top: 1.5rem; font-size: var(--step--1); color: var(--ink-faint); display: flex; align-items: center; gap: 0.5rem; }

/* Warm light behind the hero, gently parallaxed */
.glow { position: absolute; inset: -25% -15% auto; height: 130%; pointer-events: none; z-index: 0; filter: blur(80px); opacity: 0.55; }
.glow span { position: absolute; display: block; border-radius: 50%; mix-blend-mode: screen; animation: drift 30s ease-in-out infinite; }
.glow { opacity: 0.32; }
.glow span:nth-child(1) { width: 48vw; height: 48vw; left: 2%; top: 14%; background: color-mix(in oklab, var(--clay) 48%, transparent); }
.glow span:nth-child(2) { width: 32vw; height: 32vw; right: 8%; top: 2%; background: color-mix(in oklab, #8FE3C0 45%, transparent); animation-delay: -11s; }
.glow span:nth-child(3) { width: 30vw; height: 30vw; left: 46%; top: 44%; background: color-mix(in oklab, var(--olive) 40%, transparent); animation-delay: -20s; }
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  33% { transform: translate3d(5%, -6%, 0) scale(1.09); }
  66% { transform: translate3d(-4%, 6%, 0) scale(0.94); }
}

/* ─── Phone with a WhatsApp-style chat (always light, like the real app) ───────── */
.phone {
  --wa-green: #25D366;
  --wa-header: #F7F5F3;
  --wa-wall: #EFE7DE;
  --wa-in: #FFFFFF;
  --wa-out: #D9FDD3;
  --wa-text: #111B21;
  --wa-meta: #667781;
  --wa-tick: #53BDEB;
  position: relative; width: min(352px, 100%); margin-inline: auto;
  background: #0E0E10; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 42px; padding: 11px; box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.6);
}
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; translate: -50% 0; width: 104px; height: 26px; border-radius: 999px; background: #0E0E10; z-index: 3; }
.phone-screen {
  position: relative; border-radius: 32px; overflow: hidden; background: var(--wa-wall);
  /* Fixed like a real screen: the conversation scrolls inside it instead of stretching the page. */
  display: flex; flex-direction: column; height: 620px; color: var(--wa-text);
  font-size: 0.87rem; line-height: 1.42;
}

/* Status + app bar */
.wa-status { background: var(--wa-header); padding: 12px 20px 4px; display: flex; justify-content: space-between; font-size: 0.72rem; font-weight: 600; color: var(--wa-text); }
.wa-status .sig { letter-spacing: 2px; }
.wa-bar { background: var(--wa-header); display: flex; align-items: center; gap: 10px; padding: 6px 12px 10px; border-bottom: 1px solid rgba(0,0,0,0.07); }
.wa-back { color: var(--wa-meta); font-size: 1.1rem; line-height: 1; }
.wa-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--clay); color: #0A0A0B; display: grid; place-items: center; flex: none; padding: 6px; }
.wa-avatar svg { width: 100%; height: 100%; }
.wa-who { flex: 1; min-width: 0; }
.wa-who b { display: block; font-size: 0.88rem; font-weight: 600; }
.wa-who span { font-size: 0.7rem; color: var(--wa-meta); }
.wa-icons { display: flex; gap: 14px; color: var(--wa-meta); }
.wa-icons svg { width: 17px; height: 17px; }

/* Chat wall with the faint doodle texture */
.wa-chat {
  flex: 1; min-height: 0; padding: 12px 10px 8px; display: flex; flex-direction: column; justify-content: flex-end; gap: 7px; overflow: hidden;
  background-color: var(--wa-wall);
  background-image:
    radial-gradient(circle at 12px 18px, rgba(0,0,0,0.035) 2px, transparent 2px),
    radial-gradient(circle at 46px 62px, rgba(0,0,0,0.028) 3px, transparent 3px),
    radial-gradient(circle at 78px 28px, rgba(0,0,0,0.03) 1.5px, transparent 1.5px);
  background-size: 96px 96px, 128px 128px, 72px 72px;
}
.wa-day { align-self: center; background: #E2F0F7; color: #4A6572; font-size: 0.66rem; font-weight: 500; padding: 4px 10px; border-radius: 8px; box-shadow: 0 1px 1px rgba(0,0,0,0.06); margin-bottom: 2px; }

.msg {
  position: relative; max-width: 82%; padding: 6px 9px 5px; border-radius: 8px;
  background: var(--wa-in); box-shadow: 0 1px 1px rgba(0,0,0,0.13); color: var(--wa-text);
  opacity: 0; transform: translateY(8px) scale(0.98); animation: pop 0.38s cubic-bezier(.16,1,.3,1) forwards;
  align-self: flex-start; border-top-left-radius: 0;
}
.msg::after { content: ""; position: absolute; top: 0; left: -7px; width: 0; height: 0; border: 7px solid transparent; border-top-color: var(--wa-in); border-right: 0; border-bottom: 0; }
.msg--out { align-self: flex-end; background: var(--wa-out); border-top-left-radius: 8px; border-top-right-radius: 0; }
.msg--out::after { left: auto; right: -7px; border-top-color: var(--wa-out); border-left: 0; border-right: 0 solid transparent; }
.msg--card { width: 88%; }
.msg b { font-weight: 600; }
.msg .meta { display: flex; align-items: center; justify-content: flex-end; gap: 3px; font-size: 0.63rem; color: var(--wa-meta); margin-top: 1px; }
.msg .meta .tick { color: var(--wa-tick); font-size: 0.72rem; line-height: 1; }
.msg small { display: block; font-size: 0.74rem; color: var(--wa-meta); margin-top: 2px; }

/* WhatsApp interactive reply buttons and list rows */
.wa-actions { display: grid; gap: 2px; margin: 6px -9px -5px; }
.wa-btn { background: var(--wa-in); color: #027EB5; font-size: 0.82rem; font-weight: 500; text-align: center; padding: 8px; border-top: 1px solid rgba(0,0,0,0.07); }
.msg--out .wa-actions .wa-btn { background: var(--wa-out); }
.wa-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.chip { font-size: 0.75rem; font-weight: 500; padding: 4px 9px; border-radius: 999px; background: #F0F2F5; color: #027EB5; border: 1px solid rgba(0,0,0,0.05); }

/* PDF attachment card */
.wa-doc { display: flex; align-items: center; gap: 9px; background: rgba(0,0,0,0.05); border-radius: 7px; padding: 8px; }
.wa-doc .pdf { width: 30px; height: 34px; border-radius: 4px; background: #fff; display: grid; place-items: center; font-size: 0.55rem; font-weight: 700; color: #D93025; border: 1px solid rgba(0,0,0,0.08); }
.wa-doc .info { min-width: 0; }
.wa-doc .info b { display: block; font-size: 0.78rem; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa-doc .info span { font-size: 0.66rem; color: var(--wa-meta); }

/* Typing indicator + composer */
.typing { display: inline-flex; gap: 3px; align-items: center; height: 1.1em; }
.typing i { width: 6px; height: 6px; border-radius: 50%; background: #9AA6AC; animation: blink 1.3s infinite; }
.typing i:nth-child(2) { animation-delay: 0.18s; }
.typing i:nth-child(3) { animation-delay: 0.36s; }
.wa-input { background: var(--wa-wall); padding: 8px 10px 14px; display: flex; align-items: center; gap: 8px; }
.wa-field { flex: 1; background: #fff; border-radius: 999px; padding: 9px 14px; color: #8696A0; font-size: 0.8rem; box-shadow: 0 1px 1px rgba(0,0,0,0.08); display: flex; align-items: center; justify-content: space-between; }
.wa-field span:last-child { color: #8696A0; letter-spacing: 3px; }
.wa-mic { width: 38px; height: 38px; border-radius: 50%; background: var(--wa-green); display: grid; place-items: center; flex: none; box-shadow: 0 1px 2px rgba(0,0,0,0.2); }
.wa-mic svg { width: 17px; height: 17px; color: #fff; }
@keyframes blink { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-2px); } }
@keyframes pop { to { opacity: 1; transform: translateY(0) scale(1); } }

/* ─── Stats band with counters ───────────────────────────── */
.stats { border-block: 1px solid var(--line); background: var(--paper-deep); }
.stats .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: clamp(2rem, 4vw, 3rem) 0; }
@media (max-width: 800px) { .stats .wrap { grid-template-columns: repeat(2, 1fr); } }
.stat__n { font-family: var(--display); font-weight: 600; font-size: var(--step-3); line-height: 1; color: var(--clay); letter-spacing: -0.04em; }
.stat__l { font-size: var(--step--1); color: var(--ink-soft); margin-top: 0.4rem; }

/* ─── Marquee ────────────────────────────────────────────── */
.marquee { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--paper); padding: 1.1rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee__track { display: flex; gap: 3.2rem; width: max-content; animation: slide 34s linear infinite; }
.marquee span { font-family: var(--display); font-weight: 500; font-size: var(--step-2); color: var(--ink-faint); white-space: nowrap; display: inline-flex; align-items: center; gap: 3.2rem; }
.marquee span::after { content: "✦"; font-size: 0.7em; color: var(--clay); }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ─── Cards, steps, pricing, faq ─────────────────────────── */
.grid { display: grid; gap: 1.3rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 920px) { .grid--3 { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2.1rem); box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(.16,1,.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.card:hover { transform: translateY(-6px) rotate(-0.35deg); box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card h3 { margin-bottom: 0.45rem; }
.card p:last-child { margin-bottom: 0; }
.icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: var(--clay-soft); color: var(--clay); margin-bottom: 1.1rem; }
.icon svg { width: 22px; height: 22px; }

.steps { counter-reset: step; display: grid; gap: 1.2rem; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 920px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 3rem; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0; width: 2.2rem; height: 2.2rem; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 0.98rem;
  background: var(--clay); color: var(--clay-ink);
}
.step h3 { font-size: var(--step-0); }

.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.3rem; max-width: 900px; margin-inline: auto; }
@media (max-width: 820px) { .price-grid { grid-template-columns: 1fr; } }
.plan { display: flex; flex-direction: column; gap: 1.1rem; position: relative; }
.plan--featured { border-color: color-mix(in oklab, var(--clay) 42%, var(--line)); box-shadow: var(--shadow-lg); }
.plan__tag { position: absolute; top: 1.3rem; right: 1.3rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--clay); background: var(--clay-soft); padding: 0.3rem 0.65rem; border-radius: 999px; }
.plan__price { font-family: var(--display); font-weight: 600; letter-spacing: -0.04em; font-size: var(--step-3); line-height: 1; display: flex; align-items: baseline; gap: 0.35rem; }
.plan__price span { font-size: var(--step--1); color: var(--ink-faint); font-family: var(--body); }
.features { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.65rem; font-size: var(--step--1); color: var(--ink-soft); }
.features li { display: flex; gap: 0.6rem; align-items: flex-start; }
.features svg { width: 18px; height: 18px; flex: none; color: var(--clay); margin-top: 2px; }

.faq { max-width: 780px; margin-inline: auto; display: grid; gap: 0.65rem; }
details.qa { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); padding: 0.2rem 1.2rem; }
details.qa summary { cursor: pointer; padding: 1.05rem 0; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary::after { content: "+"; font-size: 1.5rem; color: var(--clay); transition: transform 0.3s cubic-bezier(.16,1,.3,1); line-height: 1; }
details.qa[open] summary::after { transform: rotate(45deg); }
details.qa p { margin: 0 0 1.05rem; font-size: var(--step--1); }

/* ─── CTA + footer ───────────────────────────────────────── */
.cta { position: relative; overflow: hidden; background: var(--clay); color: var(--clay-ink); border-radius: 30px; padding: clamp(2.6rem, 6vw, 5rem); text-align: center; }
.cta::after { content: ""; position: absolute; width: 60%; aspect-ratio: 1; right: -12%; bottom: -45%; border-radius: 50%; background: radial-gradient(circle, rgba(10,10,11,0.22), transparent 62%); }
.cta h2, .cta em { color: var(--clay-ink); }
.cta p { color: color-mix(in oklab, var(--clay-ink) 78%, transparent); margin-inline: auto; max-width: 48ch; }
.cta .btn { --btn-bg: var(--clay-ink); --btn-ink: var(--clay); }
.site-footer { border-top: 1px solid var(--line); padding: 3.2rem 0 2.6rem; margin-top: clamp(3rem, 7vw, 6rem); }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: center; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.site-footer a { color: var(--ink-soft); text-decoration: none; font-size: var(--step--1); }
.site-footer a:hover { color: var(--clay); }
.site-footer small { color: var(--ink-faint); font-size: var(--step--1); }

/* ─── Legal pages + error ────────────────────────────────── */
.doc { max-width: 760px; margin-inline: auto; padding: clamp(3rem, 7vw, 5rem) 0; }
.doc h1 { font-size: var(--step-3); }
.doc h2 { font-size: var(--step-1); margin-top: 2.6rem; }
.doc ul { color: var(--ink-soft); padding-left: 1.2rem; display: grid; gap: 0.45rem; }
.doc .meta { color: var(--ink-faint); font-size: var(--step--1); }
.doc table { width: 100%; border-collapse: collapse; margin: 1.3rem 0; font-size: var(--step--1); }
.doc th, .doc td { text-align: left; padding: 0.75rem 0.6rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.doc th { color: var(--ink); font-weight: 600; }
.doc td { color: var(--ink-soft); }
.err { min-height: 76vh; display: grid; place-items: center; text-align: center; }
.err__code { font-family: var(--display); font-weight: 700; font-size: clamp(5rem, 22vw, 12rem); line-height: 0.85; letter-spacing: -0.05em; color: var(--clay); opacity: 0.2; }
.err h1 { margin-top: -0.3em; }

/* ─── Scroll reveal + parallax ───────────────────────────── */
.js .reveal { opacity: 0; transform: translateY(22px); }
.reveal { transform: none; transition: opacity 0.85s cubic-bezier(.16,1,.3,1), transform 0.85s cubic-bezier(.16,1,.3,1); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.1s; }
.reveal[data-delay="2"] { transition-delay: 0.2s; }
.reveal[data-delay="3"] { transition-delay: 0.3s; }
[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .card, .btn { transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .glow span, .msg, .typing i, .marquee__track { animation: none !important; }
  .msg { opacity: 1; transform: none; }
  .line-mask > span, .fade-up { opacity: 1; transform: none; animation: none !important; }
  [data-parallax] { transform: none !important; }
}
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 6px; }
