/* ============================================================
   matrlsai.in — Shared Stylesheet
   Mobile-first, framework-free, Netlify-drop deployable
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@800;900&family=Inter:wght@400;500;600&family=Spline+Sans+Mono:wght@400;500&display=swap');

/* ── 1. Design tokens ──────────────────────────────────────── */
:root {
  --ink:     #13348C;
  --royal:   #1A4FBF;
  --amber:   #F0BC2E;
  --paper:   #EEF3FC;
  --paper-2: #E1EAFA;
  --green:   #15803D;
  --black:   #16213B;

  --ff-display: 'Archivo', sans-serif;
  --ff-body:    'Inter', sans-serif;
  --ff-mono:    'Spline Sans Mono', monospace;

  --max-w: 1160px;
  --header-h: 64px;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 100px;
}

/* ── 2. Reset & base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--black);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── 3. Focus ──────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── 4. Layout ─────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: 1.5rem;
}

/* ── 5. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-royal  { background: var(--royal); color: #fff; }
.btn-royal:hover  { background: var(--ink); }

.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover  { background: #166534; }

.btn-amber  { background: var(--amber); color: var(--ink); }
.btn-amber:hover  { background: #d4a520; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-ghost-dark {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.15);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.16); }

.btn-lg { padding: 0.8rem 1.75rem; font-size: 1rem; }

/* ── 6. Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: #fff;
  border-bottom: 1px solid var(--paper-2);
  box-shadow: 0 1px 0 0 var(--paper-2);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}
.header-brand { flex-shrink: 0; }
.header-brand img { height: 30px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-nav a {
  color: var(--black);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.site-nav a:hover { color: var(--royal); background: var(--paper); }
.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--black);
  border-radius: var(--radius-sm);
  margin-left: auto;
}
.nav-toggle:hover { background: var(--paper); }

/* ── 7. Section typography helpers ────────────────────────── */
.eyebrow {
  display: block;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 1.025rem;
  color: #4a5568;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2.75rem;
}
.section-header { margin-bottom: 2.75rem; }

/* ── 8. Home — Hero ────────────────────────────────────────── */
.home-hero {
  padding: 5.5rem 0 4.5rem;
  text-align: center;
  background: var(--paper);
}
.hero-badge {
  display: inline-block;
  background: var(--paper-2);
  color: var(--royal);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(26,79,191,0.15);
}
.home-hero h1 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-inline: auto;
}
.home-hero h1 .accent { color: var(--royal); }
.home-hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #4a5568;
  max-width: 660px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero-logo-full {
  margin: 3rem auto 0;
  height: 56px;
  width: auto;
  opacity: 0.75;
}

/* ── 9. Home — Pillars ─────────────────────────────────────── */
.pillars-section {
  background: #fff;
  padding: 5rem 0;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.pillar-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  border-color: var(--paper-2);
  box-shadow: 0 4px 20px rgba(26,79,191,0.07);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--paper-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  font-size: 1.4rem;
}
.pillar-card h3 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pillar-card p {
  color: #4a5568;
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ── 10. Home — Project band ───────────────────────────────── */
.project-band {
  background: var(--ink);
  padding: 5.5rem 0;
  text-align: center;
}
.project-band .eyebrow { color: var(--amber); }
.project-band h2 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.project-band p {
  color: rgba(255,255,255,0.72);
  font-size: 1.075rem;
  max-width: 520px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

/* ── 11. SwiftLR — Hero ────────────────────────────────────── */
.swiftlr-hero {
  padding: 5rem 0 4rem;
  background: var(--paper);
}
.swiftlr-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.swiftlr-hero-logo {
  height: 48px;
  width: auto;
  margin-bottom: 2rem;
}
.swiftlr-hero h1 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.9rem, 3.75vw, 3rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.swiftlr-hero-sub {
  font-size: 1.05rem;
  color: #4a5568;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.step-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.step-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--paper-2);
  border: 1px solid rgba(26,79,191,0.12);
  color: var(--ink);
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
}
.step-chip-num { color: var(--royal); }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.trust-line {
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-check { color: var(--green); font-weight: 600; }

/* ── 12. Before / After visual ─────────────────────────────── */
.before-after-wrap {
  position: relative;
  height: 460px;
  user-select: none;
}
.ba-card {
  position: absolute;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.4rem;
  width: 210px;
}

/* Old handwritten card */
.ba-card-old {
  top: 0;
  left: 0;
  background: #f8f0e0;
  border: 1px solid #c9b99a;
  box-shadow: 3px 3px 0 #c9b99a, 0 1px 4px rgba(0,0,0,0.08);
  z-index: 2;
}
.ba-label-old {
  font-family: var(--ff-mono);
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9c7a56;
  margin-bottom: 0.85rem;
}
.ba-row-old {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.82rem;
}
.ba-key-old { font-weight: 600; color: #4a3520; min-width: 58px; }
.ba-val-old { color: #6b5030; font-style: italic; }
.ba-tag-old {
  margin-top: 1.1rem;
  display: inline-block;
  background: #e8d5b8;
  color: #7a5c3a;
  font-family: var(--ff-mono);
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  line-height: 1.4;
}

/* New SwiftLR card */
.ba-card-new {
  bottom: 0;
  right: 0;
  width: 240px;
  background: #fff;
  border: 1px solid var(--paper-2);
  box-shadow: 0 8px 32px rgba(19,52,140,0.13), 0 2px 8px rgba(0,0,0,0.04);
  z-index: 2;
}
.ba-new-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--paper-2);
}
.ba-new-header img { height: 18px; width: auto; }
.ba-new-title {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--royal);
  font-weight: 500;
}
.ba-row-new {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
}
.ba-key-new { color: #6b7280; min-width: 70px; }
.ba-val-new { font-weight: 500; color: var(--black); text-align: right; }
.ba-received {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0.75rem -1.4rem -1.25rem;
  padding: 0.65rem 1.4rem;
  background: #f0fdf4;
  border-top: 1px solid #dcfce7;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
}
.ba-received-sub {
  font-weight: 400;
  font-size: 0.72rem;
  color: #166534;
  opacity: 0.75;
}

/* Diagonal arrow overlay */
.ba-arrow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

/* ── 13. Problem band ──────────────────────────────────────── */
.problem-band {
  background: var(--ink);
  border-top: 4px solid var(--amber);
  border-bottom: 4px solid var(--amber);
  padding: 5rem 0;
}
.problem-quote {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1rem;
}
.problem-quote em { color: var(--amber); font-style: italic; }
.problem-sub {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.pain-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.pain-icon { font-size: 1.5rem; margin-bottom: 0.7rem; }
.pain-card h3 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}
.pain-card p { font-size: 0.875rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── 14. How it works ──────────────────────────────────────── */
.how-section { background: #fff; padding: 5rem 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.step-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.step-num {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--royal);
  font-weight: 500;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.step-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.step-card h3 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.step-card p { font-size: 0.9rem; color: #4a5568; line-height: 1.65; }

/* ── 15. Features ──────────────────────────────────────────── */
.features-section { background: var(--paper); padding: 5rem 0; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  border: 1px solid var(--paper-2);
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 4px 18px rgba(26,79,191,0.08); }
.feature-icon { font-size: 1.5rem; display: block; margin-bottom: 0.7rem; }
.feature-card h3 {
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.feature-card p { font-size: 0.865rem; color: #4a5568; line-height: 1.6; }

/* ── 16. Punch band ────────────────────────────────────────── */
.punch-band {
  background: var(--amber);
  padding: 5rem 0;
  text-align: center;
}
.punch-band h2 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.punch-band p {
  font-size: 1.1rem;
  color: rgba(19,52,140,0.8);
  max-width: 480px;
  margin: 0 auto;
  font-style: italic;
}

/* ── 17. Final CTA band ────────────────────────────────────── */
.final-cta-band {
  background: var(--ink);
  padding: 5.5rem 0;
  text-align: center;
}
.final-cta-band h2 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 0.75rem;
}
.final-cta-band > .container > p {
  color: rgba(255,255,255,0.68);
  font-size: 1.025rem;
  margin-bottom: 2rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.share-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.share-label {
  width: 100%;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
}

/* ── 18. Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding-top: 4rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-col {}
.footer-brand-logo { height: 34px; width: auto; margin-bottom: 1rem; }
.footer-brand-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  max-width: 300px;
}
.footer-project-mark {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-project-mark img { height: 24px; width: auto; }
.footer-project-mark span {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
}
.footer-links-col h4 {
  font-family: var(--ff-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 1rem;
}
.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s;
}
.footer-links-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 1.25rem 0;
}
.footer-bottom p {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
}

/* ── 19. Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .swiftlr-hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: fixed;
    inset-block: var(--header-h) auto;
    inset-inline: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.35rem;
    border-bottom: 1px solid var(--paper-2);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-size: 1.05rem; width: 100%; padding: 0.6rem 0.75rem; }
  .nav-cta { width: 100%; margin-left: 0; margin-top: 0.5rem; }
  .nav-cta .btn { width: 100%; justify-content: center; }

  /* Pain grid 1-col on small screens */
  .pain-grid { grid-template-columns: 1fr; }

  /* Footer 1-col */
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand-col { grid-column: auto; }
}

/* ── Legal pages ────────────────────────────────────────────── */
.legal-hero {
  padding: 4rem 0 2.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--paper-2);
}
.legal-hero h1 {
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.legal-hero p {
  color: #6b7280;
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  margin-top: 0.75rem;
}
.legal-body {
  padding: 3.5rem 0 5rem;
  background: #fff;
}
.legal-body h2 {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 2.5rem 0 0.6rem;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: 720px;
}
.legal-body ul {
  margin: 0.25rem 0 1rem 1.4rem;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 720px;
}
.legal-body ul li { margin-bottom: 0.3rem; }
.legal-body a { color: var(--royal); text-decoration: underline; }
.legal-body strong { color: var(--black); font-weight: 600; }
.legal-divider {
  border: none;
  border-top: 1px solid var(--paper-2);
  margin: 2.5rem 0;
  max-width: 720px;
}

/* ── Coming soon indicators ────────────────────────────────── */
.coming-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--paper-2);
  color: var(--royal);
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(26,79,191,0.3);
  margin-left: 0.5rem;
  white-space: nowrap;
}
.coming-soon-notice {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(26,79,191,0.25);
}
.coming-soon-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255,255,255,0.2);
}
.coming-soon-link {
  color: rgba(255,255,255,0.35);
  font-size: 0.875rem;
  font-style: italic;
  cursor: default;
}

/* Before/After stacks on narrow */
@media (max-width: 580px) {
  .before-after-wrap {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .ba-card-old,
  .ba-card-new {
    position: static;
    width: 100%;
    max-width: 360px;
    align-self: center;
  }
  .ba-arrow-svg { display: none; }
}
