/* ─── Design tokens (matched from app) ──────────────────────────────── */
:root {
  --bg: #24272C;
  --surface: #2C3037;
  --accent: #25E6A7;
  --accent-dim: rgba(37, 230, 167, 0.10);
  --accent-glow: rgba(37, 230, 167, 0.20);
  --border: rgba(255, 255, 255, 0.06);
  --line: #3A3F47;
  --text: #E4E6E9;
  --text-dim: #8A9099;
  --text-muted: #555A62;
  --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'Space Mono', 'SF Mono', Menlo, monospace;
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
}

/* ─── Page container (privacy page) ────────────────────────────────── */
.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}

/* ─── Band system ──────────────────────────────────────────────────── */
.band {
  width: 100%;
  background: var(--bg);
  margin-bottom: 0;
}

.band-alt {
  background: var(--surface);
}

.band + .band {
  border-top: 1px solid var(--line);
}

.band-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.band-inner-wide {
  max-width: 840px;
}

/* Band density tiers */
.band-hero {
  padding: 72px 0 40px;
}

.band:not(.band-hero):not(.band-faq) {
  padding: 48px 0;
}

.band-faq {
  padding: 32px 0 40px;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  margin-bottom: 56px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 56px;
}

.logo-mark {
  height: 22px;
  width: auto;
}

.logo-wordmark {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-wordmark .shot { color: var(--text); }
.logo-wordmark .rack { color: var(--accent); }

.hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text);
}

.hero .sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  margin: 0 auto 40px;
}

.cta-btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--bg);
  background: var(--accent);
  padding: 14px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: opacity 0.15s;
}

.cta-btn:hover {
  opacity: 0.88;
}

.cta-note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ─── Demo slot ─────────────────────────────────────────────────────── */
.demo-slot {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.demo-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.demo-frame img,
.demo-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Section shared ────────────────────────────────────────────────── */
section {
  margin-bottom: 48px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 16px;
}

/* ─── How it works ──────────────────────────────────────────────────── */
.steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.steps li {
  counter-increment: step;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 17px;
  line-height: 1.5;
}

.steps li::before {
  content: counter(step);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border-radius: 50%;
}

/* Step sub-lanes (chord + label, one per line) */
.step-lanes {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ─── Keycap styling (matches app .keycap-inline) ───────────────────── */
kbd {
  font-family: var(--font);
  font-size: inherit;
  font-weight: 500;
  color: var(--text-dim);
  background: var(--surface);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
  white-space: nowrap;
}

.band-alt kbd {
  background: var(--bg);
}

/* Chord wrapper — never wraps mid-combo; dim color for + separators */
.chord {
  white-space: nowrap;
  color: var(--text-dim);
}

/* ─── Differentiators ───────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.card {
  background: var(--surface);
  border-radius: 4px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s;
}

.card:hover {
  transform: translateY(-2px);
}

.band-alt .card {
  background: var(--bg);
}

/* Claude Desktop card keeps emerald accent */
.card-claude::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.cards .card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.5;
  flex: 1;
}

.cards .card p {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.5;
}


/* ─── FAQ ───────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list details:first-child {
  border-top: 1px solid var(--border);
}

.faq-list summary {
  padding: 11px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-size: 18px;
  color: var(--text-dim);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.15s;
}

.faq-list details[open] summary::after {
  content: "\2212";
}

.faq-list .faq-answer {
  padding: 0 0 11px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ─── Focus rings (on-brand, never default blue) ───────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ─── Footer ────────────────────────────────────────────────────────── */
.site-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--text-dim);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-logo {
  height: 24px;
  width: auto;
  opacity: 0.6;
  filter: brightness(1.15) saturate(1.3);
}


/* ─── Responsive ────────────────────────────────────────────────────── */
@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero .sub {
    font-size: 20px;
  }
}

@media (max-width: 599px) {
  .page {
    padding: 48px 16px 40px;
  }

  .band-hero {
    padding-top: 48px;
  }

  .band-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .demo-slot {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero .sub {
    font-size: 16px;
  }

  .logo-lockup {
    gap: 12px;
  }

  .logo-mark {
    height: 18px;
  }

  .logo-wordmark {
    font-size: 22px;
  }

  .steps li {
    font-size: 15px;
  }
}

/* ─── Privacy page ──────────────────────────────────────────────────── */
.prose {
  max-width: 600px;
}

.prose h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.prose h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.prose p {
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 16px;
}

.prose a {
  color: var(--accent);
  text-decoration: none;
}

.prose a:hover {
  text-decoration: underline;
}

/* ─── Hero vignette (scoped under .srx-stage) ──────────────────────── */

.srx-stage {
  --panel: #1F2226;
  --accent-hi: #3DF0B6;
  --dim: #8A9099;
  --line: #3A3F47;
  --ink: #06251B;
  --rule: rgba(37, 230, 167, 0.28);
  --clay: #C15F3C;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  box-sizing: border-box;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  position: relative;
}

/* headers */
.srx-stage .head,
.srx-stage .chead { display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 14px; box-sizing: border-box; }
.srx-stage .head { border-bottom: 1px solid var(--rule); background: var(--panel); }
.srx-stage .chead { border-bottom: 1px solid #17191C; }
.srx-stage .mark { width: 22px; height: 22px; flex: 0 0 22px; display: inline-flex; align-items: center; justify-content: center; }
.srx-stage .sr-mark { width: auto; flex: 0 0 auto; }
.srx-stage .sr-mark img { height: 14px; width: auto; display: block; filter: brightness(1.15) saturate(1.3); }
.srx-stage .claude-tile { background: var(--clay); border-radius: 6px; overflow: hidden; }
.srx-stage .wm { font-weight: 700; font-size: 14px; line-height: 20px; color: var(--text); letter-spacing: -0.01em; }
.srx-stage .wm b { color: var(--accent); }
.srx-stage .ctitle { font-size: 14px; line-height: 20px; color: var(--text); font-weight: 700; letter-spacing: -0.01em; }
.srx-stage .badge { position: relative; min-width: 26px; height: 18px; background: var(--accent); border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; margin-left: auto; }
.srx-stage .badge span { position: absolute; font-family: 'Space Mono', monospace; font-size: 10px; font-weight: 700; color: var(--ink); opacity: 0; }
.srx-stage .n0 { animation: srx-b0 12s infinite; }
.srx-stage .n1 { animation: srx-b1 12s infinite; }
.srx-stage .n2 { animation: srx-b2 12s infinite; }
.srx-stage .n3 { animation: srx-b3 12s infinite; }

/* LEFT pane */
.srx-stage .pane-l { flex: 1.1; min-width: 0; display: flex; flex-direction: column; overflow: hidden; border-right: 1px solid #17191C; }
.srx-stage .rack { flex: 1 1 auto; min-height: 0; position: relative; padding: 13px 14px 4px; display: flex; flex-direction: column; justify-content: center; gap: 10px; overflow: hidden; }
.srx-stage .item { opacity: 0; flex: 0 0 auto; display: flex; width: 100%; }
.srx-stage .item.i1 { animation: srx-it1 12s infinite; }
.srx-stage .item.i2 { animation: srx-it2 12s infinite; }
.srx-stage .item.i3 { animation: srx-it3 12s infinite; }
.srx-stage .shot { flex: 1; display: flex; gap: 12px; align-items: center; background: var(--surface); border-radius: 8px; padding: 11px; }
.srx-stage .thumb { width: 84px; flex: 0 0 84px; height: 52px; background: #fff; border-radius: 4px; overflow: hidden; border: 1px solid #E2E4E6; display: flex; flex-direction: column; }
.srx-stage .tbar { height: 12px; background: #ECEEF0; display: flex; align-items: center; gap: 3px; padding: 0 6px; flex: 0 0 auto; }
.srx-stage .tbar i { width: 3px; height: 3px; border-radius: 50%; background: #C4C8CC; font-style: normal; }
.srx-stage .tbody { padding: 8px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.srx-stage .sh { height: 4px; border-radius: 2px; margin-bottom: 5px; background: linear-gradient(90deg, #D6D9DC 0px, #E8EAEC 40px, #D6D9DC 80px); background-size: 200px 100%; animation: srx-shimmer 1.4s infinite linear; }
.srx-stage .sh.a { width: 80%; }
.srx-stage .sh.b { width: 55%; }
.srx-stage .sh-btn { width: 26px; height: 7px; border-radius: 2px; background: var(--accent); }
.srx-stage .sh-img { height: 28px; border-radius: 2px; background: #DDE6E1; position: relative; overflow: hidden; }
.srx-stage .sh-img::after { content: ""; position: absolute; left: 6px; bottom: 5px; width: 16px; height: 16px; border-radius: 50%; background: #BFD6CB; }
.srx-stage .sh-img::before { content: ""; position: absolute; right: 6px; top: 5px; width: 26px; height: 6px; border-radius: 2px; background: #CBDAD1; }
.srx-stage .meta { display: flex; flex: 1; flex-direction: column; gap: 4px; min-width: 0; }
.srx-stage .meta .mt { font-size: 13px; color: var(--text); font-weight: 500; }
.srx-stage .meta .ms { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--dim); }
.srx-stage .clip { flex: 1; display: flex; flex-direction: column; justify-content: center; background: var(--surface); border-radius: 8px; padding: 11px 14px; }
.srx-stage .clip p { margin: 0; font-family: 'Space Mono', monospace; font-size: 10px; line-height: 1.7; color: var(--dim); }
.srx-stage .clip p b { color: var(--accent); font-weight: 400; }

/* left SENDING state */
.srx-stage .sending { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; z-index: 3; opacity: 0; animation: srx-sendState 12s infinite; pointer-events: none; background: var(--bg); }
.srx-stage .pulse { width: 72px; height: 72px; border-radius: 50%; background: var(--accent); animation: srx-pulse 1.1s infinite ease-out; display: flex; align-items: center; justify-content: center; }
.srx-stage .pulse svg { display: block; width: 30px; height: 30px; }
.srx-stage .send-txt { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--accent); letter-spacing: 0.04em; }

.srx-stage .ammo { flex: 0 0 auto; padding: 6px 14px 14px; }
.srx-stage .hint { font-size: 11px; color: var(--dim); text-align: center; margin: 0 0 9px; animation: srx-hint 12s infinite; opacity: 0; }
.srx-stage .send { position: relative; background: var(--accent); border-radius: 8px; height: 38px; display: flex; align-items: center; justify-content: center; font-weight: 500; font-size: 13px; color: var(--ink); animation: srx-snd 12s infinite; overflow: hidden; }
.srx-stage .send-idle,
.srx-stage .send-busy { position: absolute; left: 0; right: 0; text-align: center; }
.srx-stage .send-idle { animation: srx-sIdle 12s infinite; }
.srx-stage .send-busy { opacity: 0; animation: srx-sBusy 12s infinite; }

/* RIGHT pane */
.srx-stage .pane-r { flex: 1; min-width: 0; background: var(--panel); display: flex; flex-direction: column; position: relative; }
.srx-stage .cbody { flex: 1; min-height: 0; position: relative; padding: 14px 14px 8px; display: flex; flex-direction: column; overflow: hidden; }
.srx-stage .ambient { display: flex; flex-direction: column; gap: 12px; flex: 1 1 auto; min-height: 0; justify-content: flex-start; overflow: hidden; }
.srx-stage .ambient .al { height: 10px; border-radius: 3px; background: linear-gradient(90deg, #242830 0px, #2E333B 55px, #242830 110px); background-size: 220px 100%; animation: srx-shimmer 1.8s infinite linear; }
.srx-stage .ambient .al.short { width: 60%; }
.srx-stage .thread { flex: 0 0 auto; display: flex; flex-direction: column; gap: 6px; padding-top: 10px; margin-top: 6px; border-top: 1px solid #22262C; }
.srx-stage .al2 { height: 3px; background: #D6D9DC; border-radius: 1px; margin-bottom: 3px; width: 80%; }
.srx-stage .al2.s { width: 50%; }
.srx-stage .thread .msg { margin-left: auto; max-width: 86%; background: var(--surface); border-radius: 10px 10px 3px 10px; padding: 8px; opacity: 0; animation: srx-msg 12s infinite; }
.srx-stage .attach { display: flex; gap: 6px; margin-bottom: 6px; }
.srx-stage .att { width: 46px; height: 36px; border-radius: 4px; background: #fff; border: 1px solid #E2E4E6; overflow: hidden; opacity: 0; display: flex; flex-direction: column; }
.srx-stage .att .ab { height: 7px; flex: 0 0 7px; background: #ECEEF0; }
.srx-stage .att .ac { padding: 4px; flex: 1; }
.srx-stage .att.img .ac { display: flex; align-items: center; justify-content: center; padding: 0; }
.srx-stage .att .al { height: 3px; background: #D6D9DC; border-radius: 1px; margin-bottom: 3px; width: 80%; }
.srx-stage .att .al.s { width: 50%; }
.srx-stage .att.txt { background: var(--panel); border-color: var(--line); display: flex; align-items: center; justify-content: center; }
.srx-stage .att.txt::after { content: "SQL"; font-family: 'Space Mono', monospace; font-size: 9px; color: var(--accent); }
.srx-stage .att.a1 { animation: srx-att1 12s infinite; }
.srx-stage .att.a2 { animation: srx-att2 12s infinite; }
.srx-stage .att.a3 { animation: srx-att3 12s infinite; }
.srx-stage .reply { display: flex; flex-direction: column; gap: 8px; opacity: 1; margin-top: 8px; }
.srx-stage .rl { height: 10px; border-radius: 3px; background: linear-gradient(90deg, #262A30 0px, #333941 55px, #262A30 110px); background-size: 220px 100%; animation: srx-shimmer 1.6s infinite linear; opacity: 0; }
.srx-stage .rl.a { width: 94%; animation: srx-shimmer 1.6s infinite linear, srx-rl1 12s infinite; }
.srx-stage .rl.b { width: 88%; animation: srx-shimmer 1.6s infinite linear, srx-rl2 12s infinite; }
.srx-stage .rl.c { width: 90%; animation: srx-shimmer 1.6s infinite linear, srx-rl3 12s infinite; }
.srx-stage .rl.d { width: 84%; animation: srx-shimmer 1.6s infinite linear, srx-rl4 12s infinite; }
.srx-stage .rl.e { width: 92%; animation: srx-shimmer 1.6s infinite linear, srx-rl5 12s infinite; }
.srx-stage .rl.f { width: 66%; animation: srx-shimmer 1.6s infinite linear, srx-rl6 12s infinite; }
.srx-stage .csent { display: flex; align-items: center; gap: 6px; font-family: 'Space Mono', monospace; font-size: 11px; color: var(--accent); opacity: 0; animation: srx-csent 12s infinite; margin-top: 2px; }

/* Claude composer bar */
.srx-stage .composer-bar { flex: 0 0 auto; margin: 6px 12px 12px; display: flex; align-items: center; gap: 9px; background: var(--bg); border: 1px solid var(--line); border-radius: 9px; padding: 8px 10px; }
.srx-stage .cb-attach { display: flex; flex: 0 0 auto; }
.srx-stage .cb-input { flex: 1; font-size: 12px; color: #5A616B; }
.srx-stage .cb-send { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 6px; background: var(--clay); display: flex; align-items: center; justify-content: center; }

/* vignette keyframes */
@keyframes srx-shimmer { 0% { background-position: -120px 0; } 100% { background-position: 120px 0; } }
@keyframes srx-pulse { 0% { transform: scale(0.85); opacity: 1; } 70% { transform: scale(1.15); opacity: 0.5; } 100% { transform: scale(0.85); opacity: 1; } }

@keyframes srx-b0 { 0%, 2% { opacity: 1; } 4%, 96% { opacity: 0; } 98%, 100% { opacity: 1; } }
@keyframes srx-b1 { 0%, 4% { opacity: 0; } 6%, 12% { opacity: 1; } 14%, 100% { opacity: 0; } }
@keyframes srx-b2 { 0%, 12% { opacity: 0; } 14%, 20% { opacity: 1; } 22%, 100% { opacity: 0; } }
@keyframes srx-b3 { 0%, 20% { opacity: 0; } 22%, 92% { opacity: 1; } 96%, 100% { opacity: 0; } }

@keyframes srx-it1 { 0%, 3% { opacity: 0; transform: translateY(8px); } 7%, 50% { opacity: 1; transform: translateY(0); } 54%, 100% { opacity: 0; transform: translateY(8px); } }
@keyframes srx-it2 { 0%, 11% { opacity: 0; transform: translateY(8px); } 15%, 50% { opacity: 1; transform: translateY(0); } 54%, 100% { opacity: 0; transform: translateY(8px); } }
@keyframes srx-it3 { 0%, 19% { opacity: 0; transform: translateY(8px); } 23%, 50% { opacity: 1; transform: translateY(0); } 54%, 100% { opacity: 0; transform: translateY(8px); } }

@keyframes srx-hint { 0%, 26% { opacity: 0; } 30%, 50% { opacity: 1; } 54%, 100% { opacity: 0; } }
@keyframes srx-sIdle { 0%, 50% { opacity: 1; } 51%, 90% { opacity: 0; } 94%, 100% { opacity: 1; } }
@keyframes srx-sBusy { 0%, 51% { opacity: 0; } 54%, 90% { opacity: 1; } 91%, 100% { opacity: 0; } }
@keyframes srx-snd { 0%, 50% { background: var(--accent); transform: scale(1); } 53% { background: var(--accent-hi); transform: scale(1.03); } 57%, 100% { background: var(--accent); transform: scale(1); } }

@keyframes srx-sendState { 0%, 52% { opacity: 0; } 56%, 88% { opacity: 1; } 95%, 100% { opacity: 0; } }
@keyframes srx-pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 230, 167, 0.4); } 50% { transform: scale(1.05); box-shadow: 0 0 0 8px rgba(37, 230, 167, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 230, 167, 0); } }

@keyframes srx-msg { 0%, 54% { opacity: 0; transform: translateY(6px); } 60%, 95% { opacity: 1; transform: translateY(0); } 99%, 100% { opacity: 0; } }
@keyframes srx-att1 { 0%, 56% { opacity: 0; transform: scale(0.7); } 61%, 95% { opacity: 1; transform: scale(1); } 99%, 100% { opacity: 0; } }
@keyframes srx-att2 { 0%, 58% { opacity: 0; transform: scale(0.7); } 63%, 95% { opacity: 1; transform: scale(1); } 99%, 100% { opacity: 0; } }
@keyframes srx-att3 { 0%, 60% { opacity: 0; transform: scale(0.7); } 65%, 95% { opacity: 1; transform: scale(1); } 99%, 100% { opacity: 0; } }
@keyframes srx-rl1 { 0%, 64% { opacity: 0; } 69%, 95% { opacity: 1; } 99%, 100% { opacity: 0; } }
@keyframes srx-rl2 { 0%, 68% { opacity: 0; } 73%, 95% { opacity: 1; } 99%, 100% { opacity: 0; } }
@keyframes srx-rl3 { 0%, 72% { opacity: 0; } 77%, 95% { opacity: 1; } 99%, 100% { opacity: 0; } }
@keyframes srx-rl4 { 0%, 74% { opacity: 0; } 79%, 95% { opacity: 1; } 99%, 100% { opacity: 0; } }
@keyframes srx-rl5 { 0%, 76% { opacity: 0; } 81%, 95% { opacity: 1; } 99%, 100% { opacity: 0; } }
@keyframes srx-rl6 { 0%, 78% { opacity: 0; } 83%, 95% { opacity: 1; } 99%, 100% { opacity: 0; } }
@keyframes srx-csent { 0%, 66% { opacity: 0; } 72%, 95% { opacity: 1; } 99%, 100% { opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .srx-stage .n0, .srx-stage .n1, .srx-stage .n2, .srx-stage .n3,
  .srx-stage .item, .srx-stage .send, .srx-stage .hint,
  .srx-stage .msg, .srx-stage .att, .srx-stage .reply,
  .srx-stage .rl, .srx-stage .csent, .srx-stage .sending,
  .srx-stage .bl, .srx-stage .sh { animation: none; }
  .srx-stage .n3 { opacity: 1; }
  .srx-stage .item, .srx-stage .hint { opacity: 1; }
  .srx-stage .msg, .srx-stage .att, .srx-stage .rl, .srx-stage .csent { opacity: 1; transform: none; }
  .srx-stage .sending { opacity: 0; }
  .srx-stage .send-busy { opacity: 0; }
  .srx-stage .send-idle { opacity: 1; }
}
