/* ==========================================================================
   Desktop Pro Web Design — main stylesheet
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand red scale (the only brand colour) */
  --red-200: #FFB3B8;
  --red-300: #FF7A82;
  --red-400: #FF4B55;
  --red-500: #E11D2E;
  --red-600: #C8102E;
  --red-700: #A80F1E;
  --red-800: #6E0A15;
  --red-900: #2A070B;

  /* Neutrals */
  --black: #0B0B0D;
  --ink-900: #111114;
  --ink-800: #17171B;
  --ink-700: #202026;
  --ink-600: #2E2E36;
  --grey-500: #6B6B76;
  --grey-400: #A3A3AD;
  --grey-300: #C9C9D0;
  --grey-200: #E4E4E8;
  --grey-100: #F3F3F5;
  --white: #FFFFFF;

  /* Semantic */
  --bg: var(--black);
  --surface: var(--ink-800);
  --surface-2: var(--ink-700);
  --border: #26262D;
  --border-strong: #3A3A44;
  --text: #F5F5F7;
  --text-muted: var(--grey-400);
  --primary: var(--red-500);
  --primary-hover: var(--red-600);
  --accent-text: var(--red-400); /* red text on dark: 5.3:1 */
  --on-primary: var(--white);
  --focus: var(--red-300);

  /* Type */
  --font-display: "Russo One", "Arial Black", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing (8pt) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px; --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --container: 1200px;
  --gutter: clamp(16px, 4vw, 40px);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in: cubic-bezier(.7, 0, .84, 0);
  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 800ms;

  --z-header: 40;
  --z-menu: 50;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; font-synthesis: none; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--red-500); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--white); color: var(--black);
  padding: 10px 16px; border-radius: var(--radius-sm); font-weight: 600;
}
.skip-link:focus { top: 16px; }

.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;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(56px, 8vw, 96px) 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow--red { color: var(--accent-text); }
.eyebrow::before { content: "("; color: var(--accent-text); }
.eyebrow::after { content: ")"; color: var(--accent-text); }
.eyebrow--plain::before, .eyebrow--plain::after { content: none; }

.h-display { font-size: clamp(3rem, 9vw, 7.5rem); }
.h-1 { font-size: clamp(2.5rem, 6.2vw, 5rem); }
.h-2 { font-size: clamp(2rem, 4.6vw, 3.6rem); }
.h-3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); letter-spacing: -0.01em; line-height: 1.15; }
.red { color: var(--accent-text); }
.lead { font-size: clamp(1.0625rem, 1.5vw, 1.25rem); color: var(--text-muted); max-width: 60ch; }
.muted { color: var(--text-muted); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--primary);
  --btn-fg: var(--on-primary);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  border-radius: var(--radius-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: 1rem; letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color var(--dur-fast) ease, color var(--dur-fast) ease,
              border-color var(--dur-fast) ease, transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
  touch-action: manipulation;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform var(--dur) var(--ease-out); }
.btn:hover { background: var(--primary-hover); box-shadow: 0 10px 30px -10px rgba(225, 29, 46, .6); }
.btn:hover svg.arrow { transform: translate(2px, -2px); }
.btn:active { transform: scale(.97); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--text); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--ink-700); border-color: var(--grey-500); box-shadow: none; }
.btn--white { --btn-bg: var(--white); --btn-fg: var(--black); }
.btn--white:hover { background: var(--grey-200); box-shadow: 0 10px 30px -10px rgba(0,0,0,.5); }
.btn--sm { min-height: 44px; padding: 0 18px; font-size: .9375rem; }
.btn--lg { min-height: 60px; padding: 0 32px; font-size: 1.0625rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--border-strong);
  padding: 6px 0;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease-out); }
.link-arrow:hover { color: var(--accent-text); border-color: var(--accent-text); }
.link-arrow:hover svg { transform: translate(2px, -2px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 16px 0 auto; z-index: var(--z-header);
  pointer-events: none;
}
.nav {
  pointer-events: auto;
  max-width: calc(var(--container) - 2 * 16px);
  margin: 0 auto; width: calc(100% - 2 * var(--gutter));
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 8px 8px 8px 18px;
  background: rgba(17, 17, 20, .72);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  transition: background-color var(--dur), border-color var(--dur), transform var(--dur) var(--ease-out);
}
.site-header.is-scrolled .nav { background: rgba(11, 11, 13, .9); border-color: var(--border-strong); }

.brand { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; }
.brand__mark { width: 52px; height: 52px; margin: -8px 0 -8px -4px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.125rem; letter-spacing: -0.01em; }
.brand__name b { color: var(--accent-text); font-weight: 800; }
.brand__tag { font-family: var(--font-mono); font-size: .625rem; letter-spacing: .28em; color: var(--text-muted); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  position: relative;
  padding: 10px 14px; border-radius: var(--radius-pill);
  font-size: .9375rem; font-weight: 500; color: var(--grey-300);
  transition: color var(--dur-fast), background-color var(--dur-fast);
}
.nav__links a:hover { color: var(--white); background: var(--ink-700); }
.nav__links a[aria-current="page"] { color: var(--white); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 50%; bottom: 4px;
  width: 5px; height: 5px; margin-left: -2.5px; border-radius: 50%;
  background: var(--red-500);
}
.nav__cta { display: flex; align-items: center; gap: 8px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink-700); border: 1px solid var(--border-strong);
  cursor: pointer; align-items: center; justify-content: center;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 18px; height: 2px; background: var(--white); border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), background-color var(--dur-fast);
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; }
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  pointer-events: auto;
  position: fixed; inset: 88px var(--gutter) auto; z-index: var(--z-menu);
  background: var(--ink-900); border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 12px;
  opacity: 0; transform: translateY(-8px) scale(.98); visibility: hidden;
  transition: opacity var(--dur-fast) ease, transform var(--dur) var(--ease-out), visibility 0s linear var(--dur);
}
.mobile-menu.is-open { opacity: 1; transform: none; visibility: visible; transition-delay: 0s; }
.mobile-menu a:not(.btn) {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px; border-radius: var(--radius-sm);
  font-family: var(--font-display); font-weight: 700; font-size: 1.375rem; letter-spacing: -0.01em;
}
.mobile-menu a:not(.btn):hover, .mobile-menu a[aria-current="page"] { background: var(--ink-700); }
.mobile-menu a[aria-current="page"] { color: var(--accent-text); }
.mobile-menu .btn { width: 100%; margin-top: 8px; }

@media (max-width: 1100px) {
  .nav__cta .btn--ghost { display: none; }
}
@media (max-width: 960px) {
  .nav__links { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 420px) {
  .nav__cta .btn span.hide-xs { display: none; }
  .nav__cta .btn { padding: 0 14px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 140px 0 88px;
  overflow: hidden;
  isolation: isolate;
}
.hero__grid {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
}
/* Hero backgrounds drawn on a canvas so they react to the cursor (js/main.js) */
.hero__fx { width: 100%; height: 100%; background: none; pointer-events: none; }
.hero__glow {
  position: absolute; z-index: -1; pointer-events: none;
  width: 900px; height: 900px; right: -260px; top: -300px;
  background: radial-gradient(circle, rgba(225, 29, 46, .35) 0%, rgba(225, 29, 46, 0) 62%);
  filter: blur(10px);
}
.hero__inner { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(32px, 5vw, 72px); align-items: end; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  background: rgba(23,23,27,.7);
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey-300);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red-500); position: relative; flex: none; }
.pulse-dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--red-500); opacity: 0;
  animation: pulse 2.2s var(--ease-out) infinite;
}
@keyframes pulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.8); opacity: 0; } }

.hero h1 { margin-top: 28px; font-size: clamp(3rem, 7.4vw, 5.5rem); }
.hero h1 .line { display: block; }
.hero .lead { margin-top: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero__note { margin-top: 20px; font-size: .9375rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.hero__note svg { width: 18px; height: 18px; color: var(--accent-text); }

/* Code window decoration */
.code-card {
  background: linear-gradient(180deg, var(--ink-800), var(--ink-900));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.02) inset;
  overflow: hidden;
  transform: rotate(2deg);
}
.code-card__bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.code-card__bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--ink-600); }
.code-card__bar i:first-child { background: var(--red-500); }
.code-card__bar span { margin-left: 8px; font-family: var(--font-mono); font-size: .75rem; color: var(--grey-500); }
.code-card pre {
  margin: 0; padding: 18px 18px 22px;
  font-family: var(--font-mono); font-size: .8125rem; line-height: 1.8; color: var(--grey-300);
  white-space: pre-wrap;
}
.code-card .tk-k { color: var(--red-300); }
.code-card .tk-s { color: var(--white); }
.code-card .tk-c { color: var(--grey-500); }
.caret { display: inline-block; width: 8px; height: 1.1em; background: var(--red-500); vertical-align: -3px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

.scroll-cue {
  position: absolute; left: var(--gutter); bottom: 28px;
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .18em; color: var(--grey-500);
  display: flex; align-items: center; gap: 12px;
}
.scroll-cue::after { content: ""; width: 48px; height: 1px; background: var(--grey-500); transform-origin: left; animation: cue 2.4s var(--ease-out) infinite; }
@keyframes cue { 0% { transform: scaleX(0); } 60%, 100% { transform: scaleX(1); opacity: 0; } }

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .code-card { transform: none; max-width: 520px; }
  .scroll-cue { display: none; }
}

/* Page hero (inner pages) */
.page-hero { position: relative; padding: 180px 0 72px; overflow: hidden; isolation: isolate; }
.page-hero .hero__glow { width: 700px; height: 700px; right: -240px; top: -320px; }
.page-hero h1 { margin-top: 20px; font-size: clamp(2.75rem, 7vw, 5.75rem); }
.page-hero .lead { margin-top: 24px; }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--border);
  background: var(--ink-900);
  overflow: hidden; padding: 22px 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: marquee 40s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 40px; padding-right: 40px; }
.marquee__item {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  letter-spacing: -0.01em; color: var(--grey-300); white-space: nowrap;
}
.marquee__sep { width: 10px; height: 10px; background: var(--red-500); transform: rotate(45deg); flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Statement (word reveal) ---------- */
.statement { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 4.4vw, 3.6rem); line-height: 1.12; letter-spacing: -0.01em; max-width: 22ch; margin-top: 28px; }
.statement .w { opacity: .18; transition: opacity 400ms ease; }
.statement .w.is-on { opacity: 1; }
.statement .w.red { color: var(--accent-text); }

/* ---------- Section head ---------- */
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; flex-wrap: wrap; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 { margin-top: 18px; }
.section-head .lead { max-width: 44ch; }

/* ---------- Services list ---------- */
.svc-list { border-top: 1px solid var(--border); }
.svc-row {
  position: relative; display: grid;
  grid-template-columns: 72px 1fr 1.1fr 56px; gap: 24px; align-items: center;
  padding: 30px 8px; border-bottom: 1px solid var(--border);
  isolation: isolate; overflow: hidden;
}
.svc-row::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, var(--red-800), var(--red-900) 70%);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform var(--dur) var(--ease-out);
}
.svc-row:hover::before, .svc-row:focus-visible::before { transform: scaleY(1); }
.svc-row__num { font-family: var(--font-mono); font-size: .875rem; color: var(--accent-text); }
.svc-row__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 2.6vw, 2.1rem); letter-spacing: -0.01em; line-height: 1.1; }
.svc-row__desc { color: var(--text-muted); font-size: 1rem; transition: color var(--dur-fast); }
.svc-row:hover .svc-row__desc { color: var(--grey-200); }
.svc-row__arrow {
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center; justify-self: end;
  transition: background-color var(--dur-fast), border-color var(--dur-fast), transform var(--dur) var(--ease-out);
}
.svc-row__arrow svg { width: 18px; height: 18px; }
.svc-row:hover .svc-row__arrow { background: var(--white); color: var(--black); border-color: var(--white); transform: rotate(-45deg); }
@media (max-width: 800px) {
  .svc-row { grid-template-columns: 44px 1fr 48px; padding: 24px 4px; row-gap: 8px; }
  .svc-row__desc { grid-column: 2 / 3; grid-row: 2; }
  .svc-row__arrow { grid-column: 3; grid-row: 1 / span 2; }
}

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 960px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: border-color var(--dur), transform var(--dur) var(--ease-out), background-color var(--dur);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(225, 29, 46, .12); color: var(--red-400);
  border: 1px solid rgba(225, 29, 46, .3);
  margin-bottom: 28px;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.5rem; letter-spacing: -0.01em; line-height: 1.15; }
.card p { margin-top: 12px; color: var(--text-muted); }
.card .ticks { margin-top: 20px; }

.ticks li { display: flex; gap: 12px; align-items: flex-start; padding: 7px 0; color: var(--grey-200); font-size: 1rem; }
.ticks li svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--red-400); }

/* Light section variant */
.section--light { background: var(--grey-100); color: var(--black); }
.section--light .eyebrow { color: var(--grey-500); }
.section--light .eyebrow::before, .section--light .eyebrow::after, .section--light .red { color: var(--red-600); }
.section--light .lead, .section--light .muted { color: #4A4A55; }
.section--light .card { background: var(--white); border-color: var(--grey-200); box-shadow: 0 1px 2px rgba(0,0,0,.04); }
.section--light .card:hover { border-color: var(--grey-300); box-shadow: 0 24px 48px -24px rgba(0,0,0,.18); }
.section--light .card p { color: #4A4A55; }
.section--light .card__icon { background: #FDECEE; color: var(--red-600); border-color: #F9CDD2; }
.section--light .ticks li { color: #2A2A31; }
.section--light .ticks li svg { color: var(--red-600); }
.section--light .link-arrow { color: var(--black); border-color: var(--grey-300); }
.section--light .link-arrow:hover { color: var(--red-600); border-color: var(--red-600); }
.section--light .card__tag { color: var(--red-600); }

.card__tag { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-text); display: block; margin-bottom: 12px; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 96px); }
.process__sticky { position: sticky; top: 130px; align-self: start; }
.process__sticky h2 { margin-top: 18px; }
.process__sticky .lead { margin-top: 24px; }
.process__sticky .btn { margin-top: 32px; }
.steps { counter-reset: step; }
.step { position: relative; padding: 0 0 48px 76px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; left: 0; top: -4px;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: .875rem; font-weight: 500;
  background: var(--ink-800); border: 1px solid var(--border-strong); color: var(--white);
  transition: background-color var(--dur), border-color var(--dur);
}
.step::after {
  content: ""; position: absolute; left: 25.5px; top: 56px; bottom: 4px; width: 1px;
  background: linear-gradient(var(--border-strong), transparent);
}
.step:last-child::after { display: none; }
.step.is-visible::before { background: var(--red-500); border-color: var(--red-500); }
.step h3 { font-size: 1.625rem; letter-spacing: -0.01em; line-height: 1.15; }
.step p { margin-top: 10px; color: var(--text-muted); max-width: 48ch; }
@media (max-width: 860px) {
  .process { grid-template-columns: 1fr; }
  .process__sticky { position: static; }
}

/* ---------- Work / case study ---------- */
.work-card {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color var(--dur);
}
.work-card:hover { border-color: var(--border-strong); }
.work-card__media { position: relative; display: flex; align-items: center; padding: clamp(20px, 3vw, 40px); background: radial-gradient(circle at 30% 20%, var(--red-800), var(--ink-900) 70%); overflow: hidden; }
.browser {
  width: 100%;
  border-radius: 12px; overflow: hidden; background: var(--ink-900);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
  transition: transform var(--dur-slow) var(--ease-out);
}
.work-card:hover .browser { transform: translateY(-6px) scale(1.01); }
.browser__bar { display: flex; align-items: center; gap: 6px; padding: 10px 12px; background: var(--ink-800); border-bottom: 1px solid var(--border); }
.browser__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--ink-600); }
.browser__url { margin-left: 10px; flex: 1; max-width: 260px; font-family: var(--font-mono); font-size: .6875rem; color: var(--grey-400); background: var(--ink-700); border-radius: 6px; padding: 4px 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.browser img { aspect-ratio: 16 / 10; object-fit: cover; object-position: top; width: 100%; }
.work-card__body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; }
.work-card__meta { display: flex; gap: 12px; flex-wrap: wrap; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); }
.work-card__meta span + span::before { content: "/"; margin-right: 12px; color: var(--accent-text); }
.work-card h3 { margin-top: 16px; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.work-card p { margin-top: 14px; color: var(--text-muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag { font-size: .8125rem; font-weight: 500; padding: 6px 12px; border-radius: var(--radius-pill); border: 1px solid var(--border-strong); color: var(--grey-200); }
.work-card__foot { margin-top: auto; padding-top: 28px; }
@media (max-width: 900px) { .work-card { grid-template-columns: 1fr; } }

.placeholder-card {
  border: 1px dashed var(--border-strong); border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; gap: 12px;
  min-height: 260px; color: var(--text-muted);
}
.placeholder-card h3 { color: var(--text); font-size: 1.5rem; letter-spacing: -0.01em; }

/* ---------- Feature split (services page) ---------- */
.svc-detail { display: grid; grid-template-columns: 100px 1fr 1fr; gap: clamp(24px, 4vw, 56px); padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--border); scroll-margin-top: 110px; }
.svc-detail__num { font-family: var(--font-mono); color: var(--accent-text); font-size: .9375rem; padding-top: 10px; }
.svc-detail h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
.svc-detail .for { margin-top: 18px; display: inline-flex; gap: 8px; align-items: center; font-size: .9375rem; color: var(--grey-300); }
.svc-detail .for strong { color: var(--white); font-weight: 600; }
.svc-detail p.lead { margin-top: 18px; }
.svc-detail__list h3 { font-family: var(--font-mono); font-weight: 500; font-size: .8125rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.svc-detail__list .ticks li { border-bottom: 1px solid var(--border); padding: 14px 0; }
@media (max-width: 900px) { .svc-detail { grid-template-columns: 1fr; gap: 20px; } .svc-detail__num { padding: 0; } }

/* Jump nav chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  font-size: .9375rem; font-weight: 500; color: var(--grey-200);
  transition: background-color var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.chip:hover { background: var(--red-500); border-color: var(--red-500); color: var(--white); }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 24px 0; min-height: 44px;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.125rem, 2vw, 1.375rem); letter-spacing: 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { width: 32px; height: 32px; flex: none; border-radius: 50%; border: 1px solid var(--border-strong); position: relative; transition: transform var(--dur) var(--ease-out), background-color var(--dur-fast); }
.faq summary .plus::before, .faq summary .plus::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 2px; margin: -1px 0 0 -6px; background: currentColor; border-radius: 2px; }
.faq summary .plus::after { transform: rotate(90deg); transition: transform var(--dur) var(--ease-out); }
.faq details[open] summary .plus { background: var(--red-500); border-color: var(--red-500); }
.faq details[open] summary .plus::after { transform: rotate(0deg); }
.faq details p { padding: 0 0 24px; color: var(--text-muted); max-width: 70ch; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; isolation: isolate;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--red-500) 0%, var(--red-700) 60%, var(--red-800) 100%);
  padding: clamp(40px, 7vw, 96px);
  display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: end;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .18;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 100% 0%, #000, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, #000, transparent 60%);
}
.cta-band .eyebrow, .cta-band .eyebrow::before, .cta-band .eyebrow::after { color: rgba(255,255,255,.85); }
.cta-band h2 { margin-top: 18px; font-size: clamp(2.25rem, 5.6vw, 4.5rem); }
.cta-band p { margin-top: 18px; color: rgba(255,255,255,.9); max-width: 52ch; font-size: 1.125rem; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; align-items: stretch; }
.cta-band .btn--ghost { --btn-fg: var(--white); border-color: rgba(255,255,255,.5); }
.cta-band .btn--ghost:hover { background: rgba(0,0,0,.18); border-color: var(--white); }
.cta-band__phone { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -0.01em; text-align: center; margin-top: 4px; }
@media (max-width: 860px) { .cta-band { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-methods { display: grid; gap: 14px; }
.contact-method {
  display: flex; gap: 18px; align-items: center;
  padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border);
  transition: border-color var(--dur-fast), background-color var(--dur-fast);
}
a.contact-method:hover { border-color: var(--red-500); background: var(--ink-700); }
.contact-method__icon { width: 52px; height: 52px; border-radius: 14px; flex: none; display: grid; place-items: center; background: var(--red-500); color: var(--white); }
.contact-method__icon svg { width: 24px; height: 24px; }
.contact-method small { display: block; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.contact-method strong { display: block; font-family: var(--font-display); font-size: 1.375rem; letter-spacing: -0.01em; margin-top: 2px; overflow-wrap: anywhere; }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 44px); }
.form h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); }
.form > p { margin-top: 10px; color: var(--text-muted); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 28px; }
.form__grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form__grid { grid-template-columns: 1fr; } }
.field label, .field legend { display: block; font-weight: 600; font-size: .9375rem; margin-bottom: 8px; padding: 0; }
.field .req { color: var(--accent-text); }
.field input, .field textarea, .field select {
  width: 100%; min-height: 52px; padding: 14px 16px;
  background: var(--ink-900); color: var(--text);
  border: 1px solid var(--border-strong); border-radius: 12px;
  font: inherit; font-size: 1rem;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--grey-500); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red-400); box-shadow: 0 0 0 4px rgba(225,29,46,.25); }
.field.has-error input, .field.has-error textarea { border-color: var(--red-300); }
.field__error { display: none; margin-top: 8px; font-size: .875rem; color: var(--red-300); align-items: center; gap: 6px; }
.field.has-error .field__error { display: flex; }
.field__help { margin-top: 8px; font-size: .875rem; color: var(--text-muted); }
fieldset.field { border: 0; margin: 0; padding: 0; min-width: 0; }
.check-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.check-chip { position: relative; }
.check-chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check-chip span {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 16px;
  border: 1px solid var(--border-strong); border-radius: var(--radius-pill);
  font-size: .9375rem; color: var(--grey-200); cursor: pointer; user-select: none;
  transition: background-color var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
}
.check-chip span::before { content: ""; width: 14px; height: 14px; border-radius: 4px; border: 1.5px solid var(--grey-500); transition: inherit; }
.check-chip input:checked + span { background: rgba(225,29,46,.16); border-color: var(--red-400); color: var(--white); }
.check-chip input:checked + span::before { background: var(--red-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E") center/12px no-repeat; border-color: var(--red-500); }
.check-chip input:focus-visible + span { outline: 3px solid var(--focus); outline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__submit { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form__submit .btn[disabled] { opacity: .6; cursor: progress; }
.form__submit small { color: var(--text-muted); font-size: .875rem; }
.form-summary { display: none; margin-top: 20px; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--red-400); background: rgba(225,29,46,.1); color: var(--grey-100); font-size: .9375rem; }
.form-summary.is-visible { display: block; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 72px 0 32px; margin-top: clamp(72px, 10vw, 120px); background: var(--ink-900); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-top p { color: var(--text-muted); margin-top: 18px; max-width: 34ch; font-size: .9375rem; }
.footer-col h3 { font-family: var(--font-mono); font-weight: 500; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 14px; }
.footer-col a { display: inline-block; padding: 6px 0; color: var(--grey-300); font-size: .9375rem; transition: color var(--dur-fast); }
.footer-col a:hover { color: var(--white); }
.footer-col li { line-height: 1.4; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 56px; padding-top: 24px; border-top: 1px solid var(--border); font-size: .875rem; color: var(--grey-500); }
.footer-word { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.01em; line-height: .8; font-size: clamp(3rem, 13.2vw, 12rem); color: var(--ink-800); margin-top: 48px; user-select: none; white-space: nowrap; overflow: hidden; }
.footer-word b { color: var(--red-900); font-weight: 800; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-top > :first-child { grid-column: 1 / -1; } }

/* Floating call button (mobile) */
.call-fab {
  position: fixed; right: 16px; bottom: 16px; z-index: var(--z-header);
  display: none; align-items: center; gap: 10px;
  min-height: 56px; padding: 0 22px 0 18px; border-radius: var(--radius-pill);
  background: var(--red-500); color: var(--white); font-weight: 600;
  box-shadow: 0 12px 30px -8px rgba(225,29,46,.7);
  transform: translateY(120%); transition: transform var(--dur) var(--ease-out);
}
.call-fab svg { width: 20px; height: 20px; }
.call-fab.is-visible { transform: none; }
@media (max-width: 760px) { .call-fab { display: inline-flex; } }

/* ---------- Misc blocks ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.prose p + p { margin-top: 18px; }
.prose p { color: var(--grey-300); font-size: 1.125rem; }

.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.value { background: var(--bg); padding: clamp(24px, 3vw, 40px); }
.value span { font-family: var(--font-mono); color: var(--accent-text); font-size: .875rem; }
.value h3 { margin-top: 14px; font-size: 1.5rem; letter-spacing: -0.01em; line-height: 1.15; }
.value p { margin-top: 10px; color: var(--text-muted); }
@media (max-width: 640px) { .values { grid-template-columns: 1fr; } }

.notice { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; border-radius: var(--radius); background: var(--ink-800); border: 1px solid var(--border); border-left: 3px solid var(--red-500); }
.notice svg { width: 22px; height: 22px; flex: none; color: var(--red-400); margin-top: 2px; }
.notice p { color: var(--grey-300); }
.notice strong { color: var(--white); }

/* ---------- Blog index ---------- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media (max-width: 760px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: clamp(24px, 3vw, 34px); border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  transition: border-color var(--dur), transform var(--dur) var(--ease-out), background-color var(--dur);
}
.post-card:hover { border-color: var(--red-500); transform: translateY(-4px); background: var(--ink-700); }
.post-card--featured { grid-column: 1 / -1; background: linear-gradient(135deg, var(--red-900), var(--ink-800) 60%); }
.post-card__meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); }
.post-card__cat { color: var(--accent-text); }
.post-card h2, .post-card h3 { font-size: clamp(1.3rem, 2.2vw, 1.75rem); line-height: 1.15; }
.post-card--featured h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); max-width: 26ch; }
.post-card p { color: var(--text-muted); }
.post-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text); }
.post-card__more svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease-out); }
.post-card:hover .post-card__more { color: var(--accent-text); }
.post-card:hover .post-card__more svg { transform: translateX(4px); }
.post-card a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

/* ---------- Blog article ---------- */
.article-hero { padding: 170px 0 48px; position: relative; overflow: hidden; isolation: isolate; }
.article-hero .hero__glow { width: 700px; height: 700px; right: -240px; top: -320px; }
.article-hero h1 { font-size: clamp(2.1rem, 5vw, 3.75rem); line-height: 1.08; max-width: 22ch; margin-top: 18px; }
.article-hero .lead { margin-top: 20px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: .9375rem; color: var(--text-muted); }
.breadcrumb a { color: var(--grey-300); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--border-strong); }
.breadcrumb a:hover { color: var(--white); }
.article-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 24px; font-size: .9375rem; color: var(--text-muted); }
.article-meta strong { color: var(--grey-200); font-weight: 600; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 1000px) { .article-layout { grid-template-columns: 1fr; } .article-aside { display: none; } }
.article-aside { position: sticky; top: 120px; display: grid; gap: 16px; }
.toc { padding: 22px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.toc h2 { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.toc ol { margin: 0; padding-left: 18px; color: var(--text-muted); font-size: .9375rem; }
.toc li { padding: 5px 0; line-height: 1.35; }
.toc a { color: var(--grey-300); }
.toc a:hover { color: var(--accent-text); }
.aside-cta { padding: 22px; border-radius: var(--radius); background: linear-gradient(135deg, var(--red-600), var(--red-800)); }
.aside-cta p { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; }
.aside-cta .btn { width: 100%; margin-top: 14px; }

.article { max-width: 72ch; font-size: 1.125rem; line-height: 1.75; color: var(--grey-200); }
.article > * + * { margin-top: 1.1em; }
.article h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); line-height: 1.15; color: var(--white); margin-top: 2.2em; scroll-margin-top: 110px; }
.article h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); line-height: 1.2; color: var(--white); margin-top: 1.8em; scroll-margin-top: 110px; }
.article h2 + p, .article h3 + p { margin-top: .6em; }
.article a { color: var(--red-300); text-decoration: underline; text-underline-offset: 3px; }
.article a:hover { color: var(--white); }
.article strong { color: var(--white); font-weight: 600; }
.article ul, .article ol { padding-left: 1.3em; }
.article li + li { margin-top: .45em; }
.article li::marker { color: var(--red-400); }
.article blockquote { margin: 1.6em 0; padding: 6px 0 6px 22px; border-left: 3px solid var(--red-500); font-size: 1.25rem; line-height: 1.5; color: var(--white); }
.article table { width: 100%; border-collapse: collapse; font-size: 1rem; display: block; overflow-x: auto; }
.article th, .article td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--border); vertical-align: top; }
.article th { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
.article td:first-child { color: var(--white); font-weight: 600; }
.article hr { border: 0; border-top: 1px solid var(--border); margin: 2.4em 0; }

.answer-box { margin-top: 0; padding: 24px 26px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--red-500); }
.answer-box__label { display: block; font-family: var(--font-mono); font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 8px; }
.answer-box p { color: var(--white); font-size: 1.1875rem; line-height: 1.6; }
.callout { padding: 20px 22px; border-radius: var(--radius); background: rgba(225, 29, 46, .08); border: 1px solid rgba(225, 29, 46, .35); }
.callout strong:first-child { color: var(--red-300); }
.checklist { list-style: none; padding-left: 0 !important; }
.checklist li { position: relative; padding-left: 34px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .3em; width: 20px; height: 20px; border-radius: 6px;
  background: var(--red-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3.5 8.5l3 3 6-7'/%3E%3C/svg%3E") center/13px no-repeat;
}
.article .faq { margin-top: 1em; }
.article .faq summary { font-family: var(--font-display); color: var(--white); }
.article .faq details p { font-size: 1.0625rem; }
.sources { font-size: .9375rem; color: var(--text-muted); }
.sources ol { padding-left: 1.3em; }
.sources li + li { margin-top: .5em; }
.sources a { color: var(--grey-300); overflow-wrap: anywhere; }
.article-cta { margin-top: 2.6em; padding: clamp(24px, 4vw, 40px); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--red-500), var(--red-800)); color: var(--white); }
.article-cta h2 { margin-top: 0 !important; }
.article-cta p { color: rgba(255,255,255,.92); }
.article-cta .btn { margin-top: 18px; margin-right: 10px; }
.article-cta a.btn { color: var(--black); text-decoration: none; }
.article-cta a.btn--ghost { color: var(--white); border-color: rgba(255,255,255,.55); }

/* ---------- Reveal animations ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); transition-delay: calc(var(--i, 0) * 70ms); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.js .reveal-mask { display: block; overflow: hidden; padding-bottom: .06em; }
.js .reveal-mask > span { display: block; transform: translateY(105%); transition: transform 1s var(--ease-out); transition-delay: calc(var(--i, 0) * 110ms + 100ms); }
.js .is-loaded .reveal-mask > span { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js .reveal, .js .reveal-mask > span { opacity: 1; transform: none; }
  .statement .w { opacity: 1; }
  .marquee__track { animation: none; }
}
