/* ============================================================
   BlitzAI Solutions — v5
   Brand system mirrored from the client proposal deck:
   Space Grotesk display · Space Mono eyebrows · Inter body
   Light canvas · royal blue accent · deep-navy accent panels
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Space+Mono:wght@400;700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  /* surfaces */
  --paper:    #F3F4F7;   /* main canvas            */
  --paper-2:  #FFFFFF;   /* cards                  */
  --paper-3:  #ECEEF3;   /* alt band               */
  --navy:     #0A0E1A;   /* dark accent panels     */
  --navy-2:   #10162A;   /* dark card / hover      */

  /* ink */
  --ink:      #0E1220;   /* headings               */
  --ink-2:    #2A2F3E;
  --body:     #565D6E;   /* body copy              */
  --muted:    #878E9E;   /* faint                  */

  /* accent */
  --blue:     #2F5EF0;
  --blue-ink: #1E45C8;
  --blue-soft:rgba(47,94,240,0.08);
  --blue-line:rgba(47,94,240,0.22);

  /* lines */
  --line:     rgba(14,18,32,0.10);
  --line-2:   rgba(14,18,32,0.06);

  /* on-dark */
  --on-dark:      rgba(255,255,255,0.92);
  --on-dark-2:    rgba(255,255,255,0.58);
  --on-dark-3:    rgba(255,255,255,0.34);
  --on-dark-line: rgba(255,255,255,0.10);

  --shadow-sm: 0 1px 2px rgba(14,18,32,0.04);
  --shadow:    0 2px 8px rgba(14,18,32,0.05), 0 14px 36px rgba(14,18,32,0.07);
  --shadow-lg: 0 6px 16px rgba(14,18,32,0.07), 0 30px 70px rgba(14,18,32,0.12);

  --f-display: 'Space Grotesk', system-ui, sans-serif;
  --f-mono:    'Space Mono', ui-monospace, monospace;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max: 1200px;
  --nh: 88px;
  --radius: 16px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--blue); color: #fff; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 32px; }

/* ── Typographic primitives ──────────────────────────── */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-block;
}
.eyebrow--muted { color: var(--muted); }
.eyebrow--on-dark { color: #6E9BFF; }

.h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(44px, 5.6vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.h3 {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lead {
  font-size: clamp(16px, 1.55vw, 19px);
  color: var(--body);
  line-height: 1.7;
}
.blue { color: var(--blue); }

/* ══ BUTTONS ══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  font-family: var(--f-body);
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 10px;
  letter-spacing: -0.01em;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 1px 2px rgba(47,94,240,0.25), 0 8px 22px rgba(47,94,240,0.20);
}
.btn--primary:hover {
  background: var(--blue-ink);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(47,94,240,0.3), 0 12px 30px rgba(47,94,240,0.30);
}
.btn--ghost {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.btn--on-dark {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--on-dark:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-1px);
}

/* ══ LOGO / BRAND ═════════════════════════════════════ */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__badge { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; display: block; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.brand__name em { font-style: normal; color: var(--blue); }
.brand__sub {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 8.5px;
  letter-spacing: 0.34em;
  color: var(--blue);
  margin-top: 4px;
}
/* adaptive: on dark surfaces */
.brand--on-dark .brand__name { color: #fff; }

/* ══ NAV ══════════════════════════════════════════════ */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 500;
  height: var(--nh);
  background: rgba(243,244,247,0.80);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  border-bottom-color: var(--line-2);
  box-shadow: 0 1px 24px rgba(14,18,32,0.05);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: var(--nh); padding-top: 8px; }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--body);
  padding: 8px 15px; border-radius: 8px; position: relative;
  transition: color .15s, background .15s;
}
.nav__links a:hover { color: var(--ink); background: rgba(14,18,32,0.04); }
.nav__links a.active { color: var(--ink); }
.nav__links a.active::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 2px;
  height: 2px; background: var(--blue); border-radius: 2px;
}

.burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .22s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; top: var(--nh); left: 0; right: 0; z-index: 499;
  background: var(--paper-2); border-bottom: 1px solid var(--line);
  padding: 14px 28px 22px; flex-direction: column; gap: 3px; box-shadow: var(--shadow);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 15px; font-weight: 500; color: var(--body); padding: 12px; border-radius: 8px; }
.mobile-nav a:hover { color: var(--ink); background: rgba(14,18,32,0.04); }
.mobile-nav .btn { margin-top: 10px; justify-content: center; }

/* ══ SECTION SCAFFOLD ═════════════════════════════════ */
.section { padding: 104px 0; }
.section--tight { padding: 84px 0; }
.section--paper2 { background: var(--paper-2); }
.section--paper3 { background: var(--paper-3); }
.section__head { max-width: 760px; margin-bottom: 56px; }
.section__head .h2 { margin-top: 14px; }
.section__head .lead { margin-top: 18px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ══ HERO (bright) ════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden; background: var(--paper);
  padding: calc(var(--nh) + 96px) 0 108px;
  min-height: 90vh; display: flex; align-items: center;
}
.hero__slash {
  position: absolute; right: -70px; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; pointer-events: none; z-index: 0; opacity: .9;
  animation: slashFloat 42s ease-in-out infinite alternate;
}
.hero__glow {
  position: absolute; right: 3%; top: 50%; transform: translateY(-50%);
  width: 560px; height: 560px; border-radius: 50%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(47,94,240,0.08) 0%, transparent 70%);
}
@keyframes slashFloat {
  from { transform: translateY(-53%) translateX(0); }
  to   { transform: translateY(-47%) translateX(-26px); }
}
.hero__inner { position: relative; z-index: 1; max-width: 780px; }
.hero__title { margin: 22px 0 24px; }
.hero__lead { max-width: 560px; margin-bottom: 40px; }
.hero__cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* word reveal */
.rv { display: inline-block; opacity: 0; transform: translateY(18px); animation: rvIn .62s cubic-bezier(.16,1,.3,1) forwards; }
@keyframes rvIn { to { opacity: 1; transform: none; } }

/* ══ CAPABILITY STRIP (dark, blue, fading edges) ═════ */
.strip { background: var(--navy); padding: 24px 0; overflow: hidden; position: relative; }
.strip::before, .strip::after { content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none; }
.strip::before { left: 0; background: linear-gradient(90deg, var(--navy), rgba(10,14,26,0)); }
.strip::after { right: 0; background: linear-gradient(270deg, var(--navy), rgba(10,14,26,0)); }
.strip__row { display: flex; width: max-content; animation: marq 46s linear infinite; }
.strip__row:hover { animation-play-state: paused; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.strip__item {
  display: flex; align-items: center; gap: 18px; padding: 0 26px;
  font-family: var(--f-mono); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); white-space: nowrap;
}
.strip__item--hi { color: #6E9BFF; }
.strip__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; box-shadow: 0 0 8px rgba(47,94,240,0.75); }

/* ══ TWO-CARD CONTRAST (light vs dark) ═══════════════ */
.two-card { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tc { border-radius: var(--radius); padding: 40px 36px; }
.tc .h3 { margin: 14px 0 12px; }
.tc p { font-size: 15px; line-height: 1.7; }
.tc--light { background: var(--paper-2); border: 1px solid var(--line-2); box-shadow: var(--shadow-sm); color: var(--body); }
.tc--dark { background: var(--navy); color: var(--on-dark-2); }
@media (max-width: 760px) { .two-card { grid-template-columns: 1fr; } }

/* ══ PILLARS (services) ══════════════════════════════ */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  background: var(--paper-2); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 32px 30px 30px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue-line); }
.pillar__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.pillar__layer { font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.pillar__icon {
  width: 44px; height: 44px; border-radius: 11px; background: var(--blue-soft);
  color: var(--blue); display: flex; align-items: center; justify-content: center;
  transition: background .22s, transform .22s;
}
.pillar:hover .pillar__icon { background: var(--blue); color: #fff; transform: rotate(-6deg); }
.pillar__title { margin-bottom: 12px; }
.pillar__desc { font-size: 14px; color: var(--body); line-height: 1.7; margin-bottom: 20px; }
.pillar__list { display: flex; flex-direction: column; gap: 9px; border-top: 1px solid var(--line-2); padding-top: 18px; }
.pillar__li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-2); line-height: 1.5; }
.pillar__li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; margin-top: 7px; }

/* ══ MANIFESTO (dark accent panel) ═══════════════════ */
.manifesto { position: relative; overflow: hidden; background: var(--navy); padding: 108px 0; }
.manifesto__slash {
  position: absolute; right: -40px; bottom: -80px; width: 460px; height: 460px;
  pointer-events: none; opacity: .5;
}
.manifesto__inner { position: relative; z-index: 1; max-width: 900px; }
.manifesto__text {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(26px, 3.4vw, 44px); line-height: 1.22; letter-spacing: -0.02em;
  color: #fff; margin-top: 22px;
}
.manifesto__text b { color: #fff; font-weight: 700; }
.manifesto__text .blue { color: #6E9BFF; }
.manifesto__sub { margin-top: 26px; font-size: 16px; color: var(--on-dark-2); line-height: 1.7; max-width: 620px; }

/* ══ STEPS (process) ═════════════════════════════════ */
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 72px 220px 1fr; gap: 32px;
  padding: 30px 0; border-top: 1px solid var(--line); align-items: start;
  transition: background .2s;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num { font-family: var(--f-display); font-weight: 700; font-size: 30px; color: var(--blue); line-height: 1; letter-spacing: -0.03em; }
.step__title { font-family: var(--f-display); font-weight: 600; font-size: 19px; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 6px; }
.step__when { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
.step__desc { font-size: 14.5px; color: var(--body); line-height: 1.75; }

/* ══ STATS band ══════════════════════════════════════ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-top: 44px; border-top: 1px solid var(--line); }
.stat__num { font-family: var(--f-display); font-weight: 700; font-size: clamp(40px, 4.4vw, 60px); line-height: 1; letter-spacing: -0.04em; color: var(--ink); }
.stat__num--blue { color: var(--blue); }
.stat__label { margin-top: 12px; font-size: 14px; color: var(--body); line-height: 1.5; }

/* ══ COMMITMENTS (check list) ════════════════════════ */
.commit { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 48px; }
.commit__item { display: grid; grid-template-columns: 22px 1fr; gap: 12px; padding: 20px 0; border-bottom: 1px solid var(--line-2); align-items: start; }
.commit__check { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.commit__text { font-size: 15px; color: var(--body); line-height: 1.6; }
.commit__text b { color: var(--ink); font-weight: 600; }

/* dark callout bar */
.callout {
  margin-top: 48px; background: var(--navy); border-radius: 16px;
  padding: 30px 34px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
}
.callout__big { font-family: var(--f-display); font-weight: 700; font-size: 40px; color: #fff; letter-spacing: -0.03em; line-height: 1; flex-shrink: 0; }
.callout__big span { color: #6E9BFF; font-size: 18px; }
.callout__text { font-size: 15px; color: var(--on-dark-2); line-height: 1.6; }

/* ══ FAQ ═════════════════════════════════════════════ */
.faq__layout { display: grid; grid-template-columns: 1fr 1.7fr; gap: 72px; align-items: start; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item { background: var(--paper-2); border: 1px solid var(--line-2); border-radius: 12px; overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.faq__item.open { border-color: var(--blue-line); box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; padding: 19px 22px; font-size: 15px; font-weight: 600; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 14px; font-family: var(--f-body); }
.faq__ic { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; }
.faq__ic svg { transition: transform .25s; }
.faq__item.open .faq__ic { background: var(--blue); border-color: var(--blue); }
.faq__item.open .faq__ic svg { transform: rotate(45deg); }
.faq__item.open .faq__ic svg path { stroke: #fff; }
.faq__body { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq__item.open .faq__body { max-height: 400px; }
.faq__ans { padding: 0 22px 20px; border-top: 1px solid var(--line-2); padding-top: 16px; font-size: 14.5px; color: var(--body); line-height: 1.75; }

/* ══ CTA (bright) ════════════════════════════════════ */
.cta__panel {
  position: relative; overflow: hidden; max-width: 980px; margin: 0 auto;
  background: var(--paper-2); border: 1px solid var(--line-2); border-radius: 24px;
  padding: 68px 48px; text-align: center; box-shadow: var(--shadow-lg);
}
.cta__slash { position: absolute; right: -30px; bottom: -70px; width: 300px; height: 300px; opacity: .5; pointer-events: none; }
.cta__title { position: relative; margin: 14px 0 18px; }
.cta__lead { position: relative; max-width: 480px; margin: 0 auto 36px; }
.cta__btns { position: relative; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta__note { position: relative; margin-top: 20px; font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

/* ══ FOOTER (bright) ═════════════════════════════════ */
.foot { background: var(--paper-2); border-top: 1px solid var(--line); }
.foot__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 44px; border-bottom: 1px solid var(--line-2); }
.foot__brand-desc { font-size: 14px; color: var(--body); line-height: 1.7; margin: 20px 0 22px; max-width: 280px; }
.foot__legal { font-size: 12.5px; color: var(--muted); line-height: 1.9; }
.foot__legal a { color: var(--body); }
.foot__legal a:hover { color: var(--blue); }
.foot__col-label { font-family: var(--f-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.foot__links { display: flex; flex-direction: column; gap: 12px; }
.foot__links a { font-size: 14px; color: var(--body); display: inline-flex; align-items: center; gap: 7px; transition: color .15s; width: fit-content; }
.foot__links a::before { content: ''; width: 0; height: 1.5px; background: var(--blue); transition: width .2s; }
.foot__links a:hover { color: var(--ink); }
.foot__links a:hover::before { width: 12px; }
.foot__social-row { display: flex; align-items: center; justify-content: space-between; padding: 26px 0; border-bottom: 1px solid var(--line-2); flex-wrap: wrap; gap: 20px; }
.foot__social-label { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.foot__social { display: flex; gap: 8px; }
.soc {
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--paper); color: var(--body); display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.soc:hover { background: var(--blue); border-color: var(--blue); color: #fff; transform: translateY(-2px); }
.soc svg { width: 16px; height: 16px; }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; padding: 24px 0; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: var(--muted); }
.foot__bottom a { color: var(--body); }
.foot__bottom a:hover { color: var(--blue); }

/* ══ SUBPAGE HERO ════════════════════════════════════ */
.subhero { position: relative; overflow: hidden; background: var(--paper); padding: calc(var(--nh) + 72px) 0 72px; }
.subhero__slash { position: absolute; right: -50px; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; opacity: .85; pointer-events: none; }
.subhero__inner { position: relative; z-index: 1; max-width: 720px; }
.subhero__title { margin: 16px 0 18px; }
.subhero__lead { max-width: 560px; margin-bottom: 32px; }

/* ══ SCROLL REVEAL ═══════════════════════════════════ */
.r0 { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.js-ready .r0 { opacity: 0; transform: translateY(22px); }
.js-ready .r0.in { opacity: 1; transform: none; }

/* ══ RESPONSIVE ══════════════════════════════════════ */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .commit { grid-template-columns: 1fr; gap: 0; }
  .faq__layout { grid-template-columns: 1fr; gap: 36px; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .step { grid-template-columns: 56px 180px 1fr; gap: 24px; }
}
@media (max-width: 760px) {
  :root { --nh: 74px; }
  .wrap { padding: 0 20px; }
  .nav__links, .nav__cta { display: none; }
  .burger { display: flex; }
  .section { padding: 72px 0; }
  .hero { padding: calc(var(--nh) + 48px) 0 64px; min-height: auto; }
  .hero__slash { opacity: .35; right: -140px; }
  .pillars { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 1fr; gap: 6px; padding: 24px 0; }
  .step__num { font-size: 22px; }
  .foot__grid { grid-template-columns: 1fr; gap: 28px; }
  .cta__panel { padding: 48px 24px; }
  .callout { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 460px) {
  .hero__cta, .cta__btns { flex-direction: column; align-items: stretch; }
  .stats { grid-template-columns: 1fr; }
}

/* ══ MOTION / A11Y ═══════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js-ready .r0 { opacity: 1; transform: none; }
  .rv { opacity: 1; transform: none; animation: none; }
}
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
