/* chatbridge2 landing page — feat/lp-v1
   Thesis (docs/lp-thesis.md): "It's late, the lamp is on, the house asleep —
   you open chatbridge, and the team you've been needing quietly arrives."

   Aesthetic derived from thesis (not from devtool genre default):
     - warm humanist serif headline (Newsreader/Georgia) — library at midnight
     - humanist sans body (Inter/system-ui)
     - mono ONLY inside terminal/code excerpts
     - warm deep ink (#0E1018) + warm-tan signature accent (#C99B6A) + green CTA
     - no gradient-orb aesthetic; the product state IS the hero visual
*/

:root {
  /* color — warm-ink dark mode, NOT cool slate */
  --bg: #0E1018;
  --bg-elev: #141823;
  --bg-card: #161A26;
  --bg-card-soft: #131722;
  --hairline: #1F2330;
  --hairline-strong: #2A2F40;

  /* paper-warm ink, not clinical white */
  --ink: #F2EEE5;
  --ink-mid: #C9CBD2;
  --ink-muted: #8A9099;
  --ink-faint: #5F6470;

  /* warm signature accent — used sparingly: brand dot, kickers, ONE decorative rule */
  --signature: #C99B6A;
  --signature-soft: rgba(201, 155, 106, 0.12);

  /* CTA — reserved for the "go" action only */
  --go: #22C55E;
  --go-hover: #16A34A;
  --go-on-go: #062612;

  /* support */
  --warn: #E0B36A;
  --danger: #D9756C;

  /* type — system fallbacks for the mock per vm-cx1 #7070 "no Google Fonts in prod"
     production packaging will self-host Newsreader (400/500) + Inter (400/500/600) +
     JetBrains Mono (400/500) as woff2 under /v2/static/fonts/ */
  --font-serif: "Newsreader", Georgia, "Iowan Old Style", "Charter", Cambria, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* scale */
  --t-xs: 12px;
  --t-sm: 13px;
  --t-base: 16px;
  --t-lg: 18px;
  --t-xl: 22px;
  --t-2xl: 28px;
  --t-3xl: 36px;
  --t-4xl: 52px;
  --t-5xl: 72px;

  /* space */
  --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 */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;

  /* motion */
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t-med: 240ms var(--ease);
}

/* ─── reset / base ─────────────────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--t-base);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
}
/* removed body{overflow-x:hidden} per vm-cx1 #7076 — fix sources, not symptoms */
img, svg, video { max-width: 100%; height: auto; }
main { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
code, pre { font-family: var(--font-mono); }
::selection { background: var(--signature-soft); color: var(--ink); }

/* the brand glyph: a single warm dot. only place the signature color appears as a fill. */
.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signature);
  vertical-align: middle;
  margin-right: 10px;
  box-shadow: 0 0 0 4px var(--signature-soft);
}

/* the kicker — a humanist sentence-case eyebrow with a hairline rule.
   Lowercase + sentence-case so it matches the headline voice (mac-mod-cc
   #7077: uppercase letter-spaced eyebrow is the last genre-default tell). */
.kicker {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--signature);
  margin-bottom: var(--s-4);
  font-style: italic;
}
.kicker__rule {
  width: 24px;
  height: 1px;
  background: var(--signature);
  opacity: 0.6;
}
.kicker__text { font-style: italic; }

/* ─── nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  padding: var(--s-4) var(--s-7);
  background: rgba(14, 16, 24, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: var(--t-lg);
  letter-spacing: -0.005em;
  color: var(--ink);
}
.nav__brand-name { font-feature-settings: "ss01" on; }
.nav__sub {
  margin-left: 4px;
  color: var(--ink-faint);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: var(--t-sm);
}
.nav__items {
  display: flex;
  align-items: center;
  gap: var(--s-7);
  font-size: var(--t-sm);
}
.nav__items a {
  color: var(--ink-muted);
  transition: color var(--t-fast);
}
.nav__items a:hover { color: var(--ink); }
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.nav__signin {
  font-size: var(--t-sm);
  color: var(--ink-muted);
  transition: color var(--t-fast);
}
.nav__signin:hover { color: var(--ink); }

/* ─── button ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 11px 18px;
  border-radius: var(--r-md);
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  white-space: nowrap;
}
.btn--primary {
  background: var(--go);
  color: var(--go-on-go);
  font-weight: 600;
}
.btn--primary:hover { background: var(--go-hover); }
.btn--ghost {
  background: transparent;
  border-color: var(--hairline-strong);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink-muted);
  background: rgba(255, 255, 255, 0.03);
}
.btn--sm { padding: 8px 14px; font-size: var(--t-xs); }
.btn--lg { padding: 14px 22px; font-size: var(--t-base); }
.btn:focus-visible {
  outline: 2px solid var(--go);
  outline-offset: 3px;
}

/* ─── hero ────────────────────────────────────────────────────────────── */
/* Two columns on desktop: warm copy left, calm activity panel right.
   Stacks single-column on narrow viewports; activity panel below copy. */
.hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--s-10) var(--s-7) var(--s-9);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-8);
  align-items: center;
}
.hero__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s-5);
}
.hero__h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(32px, 5.6vw, var(--t-5xl));
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  /* no max-width: let column width control wrap. Explicit <br> in HTML
     forces the "at the keyboard." line break regardless. */
}
.hero__sub {
  margin: 0;
  max-width: 50ch;
  width: 100%;
  font-size: var(--t-lg);
  line-height: 1.6;
  color: var(--ink-mid);
  font-weight: 400;
}
.hero__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-top: var(--s-2);
}
.hero__caption {
  margin: 0;
  font-size: var(--t-xs);
  color: var(--ink-faint);
  letter-spacing: 0.01em;
}

/* ─── arrival panel (the hero visual: "team arriving") ──────────────── */
/* This is the EMOTIONAL PAYLOAD: product state, not decoration.
   Composed to feel like quiet workshop activity captured mid-evening. */
.arrival {
  width: 100%;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-6) var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.012),
    0 30px 60px -28px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
}
.arrival__body { min-width: 0; }
.arrival__line, .arrival__when { word-wrap: break-word; overflow-wrap: anywhere; }
/* a single warm 1px top edge — the only chrome decoration on the page */
.arrival::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--signature) 12%, var(--signature) 88%, transparent 100%);
  opacity: 0.32;
}
.arrival__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--hairline);
}
.arrival__title {
  font-family: var(--font-serif);
  font-size: var(--t-lg);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.arrival__pulse {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--t-xs);
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.arrival__pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--go);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.16);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.92); }
}
.arrival__feed {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.arrival__item {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-3) 0;
  opacity: 0;
  animation: arrive 600ms var(--ease) forwards;
  animation-delay: calc(var(--enter, 0) * 110ms);
}
@keyframes arrive {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.arrival__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--hairline-strong);
  background: var(--bg-card-soft);
  flex: 0 0 auto;
}
/* avatar tinting per role — quiet, never loud */
.arrival__avatar--reviewer   { background: rgba(201, 155, 106, 0.16); border-color: rgba(201, 155, 106, 0.35); color: #E6C9A8; }
.arrival__avatar--builder    { background: rgba(122, 178, 217, 0.14); border-color: rgba(122, 178, 217, 0.32); color: #BEDCEF; }
.arrival__avatar--security   { background: rgba(217, 117, 108, 0.14); border-color: rgba(217, 117, 108, 0.32); color: #ECC5C0; }
.arrival__avatar--docs       { background: rgba(159, 184, 152, 0.14); border-color: rgba(159, 184, 152, 0.32); color: #D5E2CC; }
.arrival__avatar--researcher { background: rgba(184, 156, 199, 0.14); border-color: rgba(184, 156, 199, 0.32); color: #DCC8E5; }

.arrival__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.arrival__line {
  font-size: var(--t-base);
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.arrival__when {
  font-size: var(--t-xs);
  color: var(--ink-faint);
}
.arrival__foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-2);
  padding-top: var(--s-3);
  border-top: 1px solid var(--hairline);
  font-size: var(--t-xs);
  color: var(--ink-muted);
}
.arrival__foot-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--signature);
  opacity: 0.65;
  flex: 0 0 auto;
}
.arrival__foot-sep { color: var(--ink-faint); }
.arrival__foot-meta { color: var(--ink-faint); font-style: italic; }

/* ─── section head (used by values / how / stack) ────────────────────── */
.section-head {
  width: 100%;
  max-width: 720px;
  margin: 0 auto var(--s-7);
  text-align: center;
}
.section-head .kicker {
  justify-content: center;
}
.section-head__h {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.6vw, var(--t-3xl));
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.018em;
  color: var(--ink);
}

/* ─── values ─────────────────────────────────────────────────────────── */
.values {
  padding: var(--s-9) var(--s-7);
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.008), transparent 100%);
}
.values__list {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
}
.value {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.value__num {
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--signature);
  font-style: italic;
  letter-spacing: 0;
}
.value__h {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--t-xl);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.value p {
  margin: 0;
  color: var(--ink-mid);
  font-size: 15.5px;
  line-height: 1.66;
}

/* ─── how it works (the terminal lives here, demoted) ─────────────────── */
.how {
  padding: var(--s-10) var(--s-7);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.how__split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: var(--s-8);
  align-items: start;
  min-width: 0;
}
.how__steps { min-width: 0; }
.how__steps {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}
.how__step {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.how__step-num {
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--signature);
  font-style: italic;
  letter-spacing: 0;
}
.how__step-h {
  margin: 0;
  font-family: var(--font-serif);
  font-size: var(--t-xl);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.how__step p {
  margin: 0;
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.65;
}
.how__step code {
  background: rgba(255, 255, 255, 0.05);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 12.5px;
  color: var(--ink);
}

.terminal {
  margin: 0;
  width: 100%;
  min-width: 0;
  background: var(--bg-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.012),
    0 24px 50px -22px rgba(0, 0, 0, 0.55);
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding: 10px 14px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--hairline);
}
.terminal__bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.terminal__bullet--red    { background: var(--danger); }
.terminal__bullet--yellow { background: var(--warn); }
.terminal__bullet--green  { background: var(--go); }
.terminal__path {
  margin-left: var(--s-3);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--ink-muted);
}
.terminal__body {
  margin: 0;
  padding: 18px 22px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink);
  text-align: left;
  /* long shell lines must scroll inside the terminal, not blow out the page */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: pre;
  scrollbar-width: thin;
}
.terminal__body::-webkit-scrollbar { height: 6px; }
.terminal__body::-webkit-scrollbar-thumb { background: var(--hairline-strong); border-radius: 4px; }
.t-line { white-space: pre; }
.t-line { display: block; }
.t-line--muted { color: var(--ink-muted); }
.t-line--good  { color: var(--go); }
.t-prompt {
  display: inline-block;
  min-width: 14px;
  margin-right: 10px;
  color: var(--ink-faint);
  font-weight: 500;
}
.t-line--good .t-prompt { color: var(--go); }
.t-token { color: var(--signature); }
.t-emph  { color: var(--ink); font-weight: 500; }
.terminal__caption {
  padding: var(--s-3) var(--s-5) var(--s-4);
  border-top: 1px solid var(--hairline);
  background: var(--bg-card-soft);
  font-size: var(--t-xs);
  color: var(--ink-faint);
  font-style: italic;
}

/* ─── stack ─────────────────────────────────────────────────────────── */
.stack {
  padding: var(--s-9) var(--s-7);
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.008), transparent 100%);
}
.stack__grid {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-4);
}
.stack__grid li {
  min-width: 0;
  padding: var(--s-4) var(--s-5);
  border: 1px solid var(--hairline);
  border-radius: var(--r-md);
  background: var(--bg-card);
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.55;
  display: flex;
  align-items: baseline;
  gap: var(--s-4);
}
.stack__grid li > span:last-child { min-width: 0; flex: 1 1 auto; }
.stack__tag {
  flex: 0 0 auto;
  min-width: 76px;
  font-family: var(--font-sans);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--signature);
  font-style: italic;
  letter-spacing: 0;
}

/* ─── closer ─────────────────────────────────────────────────────────── */
.closer {
  padding: var(--s-10) var(--s-7);
  border-top: 1px solid var(--hairline);
  text-align: center;
}
.closer__inner {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: var(--s-5);
  justify-items: center;
}
.closer__h {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.closer__sub {
  margin: 0;
  font-size: var(--t-sm);
  color: var(--ink-muted);
  max-width: 48ch;
}

/* ─── foot ───────────────────────────────────────────────────────────── */
.foot {
  padding: var(--s-6) var(--s-7);
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}
.foot__row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3) var(--s-5);
  font-size: var(--t-xs);
  color: var(--ink-faint);
}
.foot__brand { color: var(--ink-muted); }

/* ─── responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: var(--s-7); }
  .how__split { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* tablet middle band — collapse 3-col / 2-col grids before they crunch
   (mac-mod-cc #7077 + vm-cx1 #7078) */
@media (max-width: 880px) {
  .values__list { grid-template-columns: 1fr; gap: var(--s-6); }
  .stack__grid { grid-template-columns: 1fr; }
  .nav__items { gap: var(--s-5); }
}

@media (max-width: 720px) {
  .nav { padding: var(--s-3) var(--s-5); gap: var(--s-3); }
  .nav__items { display: none; }
  .nav__signin { display: none; }
  .hero { padding: var(--s-7) var(--s-5) var(--s-6); }
  .values { padding: var(--s-7) var(--s-5); }
  .how { padding: var(--s-7) var(--s-5); }
  .stack { padding: var(--s-7) var(--s-5); }
  .closer { padding: var(--s-7) var(--s-5); }
  .foot { padding: var(--s-5); }
  .values__list { grid-template-columns: 1fr; gap: var(--s-6); }
  .stack__grid { grid-template-columns: 1fr; }
  .terminal__body { font-size: 12px; padding: var(--s-4); line-height: 1.75; }
  .arrival { padding: var(--s-5); }
  .arrival__head { flex-wrap: wrap; gap: var(--s-2); }
}

@media (max-width: 480px) {
  /* mobile header is logo-only — cold visitors are here to READ, in-flow
     CTAs do the action work (mac-mod-cc #7081, vm-cx1 #7082 override). */
  .nav__right .btn { display: none; }
  .hero__h1 { font-size: 28px; letter-spacing: -0.015em; }
  .hero__sub { font-size: 15px; max-width: 100%; }
  .section-head__h { font-size: 24px; }
  .closer__h { font-size: 24px; }
  .stack__grid li { flex-direction: column; gap: var(--s-1); align-items: flex-start; }
  .stack__tag { min-width: 0; }
  /* terminal in proof column shrinks comfortably */
  .terminal__path { font-size: 11px; }
  .terminal__body { font-size: 11.5px; }
  /* prevent any super-narrow squeeze on the activity panel */
  .arrival__item { grid-template-columns: 30px 1fr; gap: var(--s-3); }
  .arrival__avatar { width: 30px; height: 30px; font-size: 13px; }
  .arrival__title { font-size: var(--t-base); }
  .arrival__line { font-size: 14.5px; }
  .arrival__head { gap: var(--s-3); }
  /* keep buttons inside the hero column at mobile */
  .hero__cta .btn { font-size: var(--t-xs); padding: 10px 14px; }
}

@media (max-width: 360px) {
  /* extra-narrow safety: don't let anything peek out */
  .hero { padding: var(--s-6) var(--s-4) var(--s-5); }
  .values, .how, .stack, .closer { padding: var(--s-6) var(--s-4); }
  .foot { padding: var(--s-4); }
  .arrival { padding: var(--s-4); }
  .nav { padding: var(--s-3) var(--s-4); }
  .hero__h1 { font-size: 26px; line-height: 1.1; }
  .hero__sub { font-size: 14px; }
  .arrival__line { font-size: 13.5px; }
  .arrival__title { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .arrival__item { opacity: 1; transform: none; }
  .arrival__pulse-dot { animation: none; }
}
