/* ZAVoiceAI — shared styles */

:root{
  --bg: #0a0d14;
  --bg-raised: #10141e;
  --surface: #131826;
  --surface-2: #1a2033;
  --border: #232a3d;
  --border-soft: #1b2132;
  --text: #eef1f8;
  --text-dim: #a7b0c5;
  --text-faint: #6b7488;
  --accent: #22d3ee;
  --accent-strong: #67e8f9;
  --accent-soft: rgba(34,211,238,0.12);
  --accent-ink: #06222b;
  --good: #34d399;
  --good-soft: rgba(52,211,153,0.12);
  --warn: #fbbf24;
  --danger: #fb7185;
  --shadow-1: 0 1px 2px rgba(0,0,0,0.4), 0 12px 32px -8px rgba(0,0,0,0.55);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1120px;
  --font-sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

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

html{ scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg{ max-width: 100%; display: block; }

a{ color: inherit; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- background texture ---------- */
.bg-grid{
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
}

/* ---------- header ---------- */
header.site{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10,13,20,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text);
}
.brand-mark{
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(155deg, var(--accent) 0%, #0e7490 100%);
  position: relative;
  flex: none;
}
.brand-mark::after{
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 10px; height: 10px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 2px var(--bg);
}
.brand-mark::before{
  content: "";
  position: absolute;
  left: 50%; top: 58%;
  width: 3px; height: 8px;
  transform: translate(-50%,0);
  background: var(--accent-ink);
  border-radius: 2px;
  opacity: .55;
}
.nav-links{
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a{
  text-decoration: none;
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s;
}
.nav-links a:hover{ color: var(--text); }
.nav-cta{ display:flex; align-items:center; gap:14px; }
.nav-toggle{
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px; height: 40px;
  color: var(--text);
  align-items: center;
  justify-content: center;
}

/* ---------- buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, border-color .15s, background .15s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.25) inset, 0 8px 24px -10px rgba(34,211,238,0.55);
}
.btn-primary:hover{ background: var(--accent-strong); }
.btn-ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover{ border-color: var(--accent); color: var(--accent-strong); }
.btn-lg{ padding: 14px 26px; font-size: 15.5px; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }

/* ---------- type ---------- */
.kicker{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kicker::before{
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
h1, h2, h3, h4{
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
h1{ font-size: clamp(34px, 5.4vw, 58px); line-height: 1.06; }
h2{ font-size: clamp(26px, 3.6vw, 38px); line-height: 1.12; }
h3{ font-size: 19px; line-height: 1.3; }
p{ margin: 0; }
.lede{
  color: var(--text-dim);
  font-size: 18px;
  line-height: 1.6;
  max-width: 56ch;
}
.section-head{
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head h2{ margin: 14px 0 14px; }
.section-head p{ color: var(--text-dim); font-size: 16.5px; max-width: 54ch; }
.stat-line{
  margin-top: 18px;
  padding: 14px 18px;
  border-left: 2px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  color: var(--text-dim);
  max-width: 58ch;
}
.stat-line strong{ color: var(--text); }
.stat-source{
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.eyebrow-row{ display:flex; align-items:center; gap:10px; }

section{ padding: 96px 0; }
section.tight{ padding: 64px 0; }
.divider{
  border: none;
  border-top: 1px solid var(--border-soft);
  margin: 0;
}

/* ---------- hero ---------- */
.hero{
  padding: 88px 0 40px;
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero-grid > *{ min-width: 0; }
.hero-copy h1{ margin: 18px 0 20px; }
.hero-actions{
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-note{
  margin-top: 28px;
  font-size: 13.5px;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg{ flex: none; color: var(--good); }

/* ---------- phone mockup ---------- */
.phone{
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  background: linear-gradient(180deg, #151c2c, #0d121d);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 14px;
  box-shadow: var(--shadow-1);
  position: relative;
}
.phone-screen{
  background: var(--bg);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.phone-status{
  display:flex; justify-content: space-between; align-items:center;
  padding: 10px 18px 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
}
.phone-call-head{
  padding: 22px 20px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border-soft);
}
.phone-call-head .avatar{
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint);
  font-size: 20px;
}
.phone-call-head .num{ font-weight: 600; font-size: 15px; }
.phone-call-head .status{
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--accent-strong);
  font-family: var(--font-mono);
  display:flex; align-items:center; justify-content:center; gap:6px;
}
.phone-call-head .status::before{
  content:"";
  width: 6px; height:6px; border-radius:50%;
  background: var(--accent);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse{ 0%,100%{ opacity:1 } 50%{ opacity:.35 } }

.transcript{ padding: 16px 18px 20px; display:flex; flex-direction:column; gap:10px; }
.bubble{
  max-width: 84%;
  padding: 9px 13px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.45;
}
.bubble.ai{
  align-self: flex-start;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-bottom-left-radius: 4px;
  color: var(--text);
}
.bubble.caller{
  align-self: flex-end;
  background: var(--accent-soft);
  border: 1px solid rgba(34,211,238,0.25);
  border-bottom-right-radius: 4px;
  color: var(--accent-strong);
}
.phone-actions{
  display: flex;
  gap: 10px;
  padding: 4px 18px 20px;
}
.phone-actions .pbtn{
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 600;
  font-family: var(--font-mono);
}
.pbtn.decline{ background: rgba(251,113,133,0.12); color: var(--danger); border: 1px solid rgba(251,113,133,0.25); }
.pbtn.answer{ background: var(--good-soft); color: var(--good); border: 1px solid rgba(52,211,153,0.3); }

/* ---------- real app screenshots ---------- */
/* Source screenshots are full-device captures (status bar to gesture bar) at
   a very tall native aspect ratio. Crop to a squarer window showing the top
   of the screen (header + first content) so the mockup reads as a phone
   frame, not an elongated strip. */
.phone-shot{ position: relative; padding: 10px; }
.phone-shot .phone-screen-img{
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 17.5;
  object-fit: cover;
  object-position: top center;
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  display: block;
}
.phone-tag{
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow-1);
  z-index: 2;
}
.phone-shot.small{ max-width: 240px; margin: 0 auto; padding: 8px; }
.phone-shot.small .phone-screen-img{ border-radius: 16px; }

/* ---------- illustrated scene banner ---------- */
.scene{
  height: 200px;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.scene-art{ width: 100%; height: 100%; display: block; }
@media (max-width: 640px){ .scene{ height: 140px; } }

/* ---------- screenshot gallery ---------- */
.gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.gallery-item{ margin: 0; min-width: 0; }
.gallery-item figcaption{
  margin-top: 16px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-dim);
  line-height: 1.5;
}
.gallery-item figcaption strong{
  color: var(--text);
  font-size: 14.5px;
  display: block;
  margin-bottom: 2px;
}
@media (max-width: 880px){
  .gallery{
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 62%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .gallery-item{ scroll-snap-align: start; }
}
@media (max-width: 480px){
  .gallery{ grid-auto-columns: 78%; }
}

/* ---------- problem cards ---------- */
.trio{ display:grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.problem-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.problem-card .num{
  font-family: var(--font-mono);
  color: var(--text-faint);
  font-size: 12.5px;
  margin-bottom: 14px;
}
.problem-card h3{ margin-bottom: 8px; }
.problem-card p{ color: var(--text-dim); font-size: 14.5px; }

/* ---------- steps ---------- */
.steps{ display:flex; flex-direction:column; }
.step{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--border-soft);
}
.step:first-child{ border-top: none; padding-top: 0; }
.step-num{
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-strong);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
}
.step h3{ margin-bottom: 8px; }
.step p{ color: var(--text-dim); max-width: 60ch; }
.step code.mmi{
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 6px;
  color: var(--accent-strong);
}

/* ---------- feature grid ---------- */
.feat-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
}
.feat{
  background: var(--surface);
  padding: 30px 26px;
}
.feat .icon{
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat h3{ margin-bottom: 8px; font-size: 16.5px; }
.feat p{ color: var(--text-dim); font-size: 14px; }

/* ---------- audience ---------- */
.audience-list{ display:grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.audience-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
}
.audience-item .check{
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--good-soft);
  color: var(--good);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.audience-item p{ color: var(--text-dim); font-size: 14.5px; }
.audience-item strong{ color: var(--text); font-size: 15px; display:block; margin-bottom:2px; }

/* ---------- pricing ---------- */
.price-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.price-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.price-card.highlight{
  border-color: rgba(34,211,238,0.4);
  background: linear-gradient(180deg, rgba(34,211,238,0.06), var(--surface) 40%);
  position: relative;
}
.price-card .plan-name{ font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.price-tag{
  position: absolute; top: -12px; right: 28px;
  background: var(--accent); color: var(--accent-ink);
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .04em;
}
.price-amount{
  font-size: 40px;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 6px 0 4px;
}
.price-amount small{ font-size: 15px; font-weight: 500; color: var(--text-faint); }
.price-sub{ color: var(--text-faint); font-size: 13.5px; margin-bottom: 24px; }
.price-features{ list-style: none; margin: 0 0 28px; padding: 0; display:flex; flex-direction:column; gap: 12px; flex: 1; }
.price-features li{
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; color: var(--text-dim);
}
.price-features li svg{ flex:none; color: var(--good); margin-top: 3px; }
.price-note{
  margin-top: 20px;
  font-size: 12.5px;
  color: var(--text-faint);
  text-align: center;
}

/* ---------- faq ---------- */
.faq-list{ display: flex; flex-direction: column; }
.faq-item{ border-top: 1px solid var(--border-soft); }
.faq-item:last-child{ border-bottom: 1px solid var(--border-soft); }
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .plus{
  flex: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  font-family: var(--font-mono);
  transition: transform .18s;
}
.faq-item[open] summary .plus{ transform: rotate(45deg); color: var(--accent-strong); border-color: var(--accent); }
.faq-item .a{
  padding: 0 4px 24px;
  color: var(--text-dim);
  font-size: 15px;
  max-width: 70ch;
}

/* ---------- final cta ---------- */
.cta-band{
  border: 1px solid var(--border);
  background: radial-gradient(ellipse 120% 140% at 50% 0%, rgba(34,211,238,0.09), transparent 60%), var(--surface);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
}
.cta-band h2{ margin-bottom: 14px; }
.cta-band p{ color: var(--text-dim); max-width: 48ch; margin: 0 auto 30px; }

/* ---------- waitlist form ---------- */
.waitlist-form{
  display: flex;
  gap: 10px;
  max-width: 420px;
}
.waitlist-form input[type=email]{
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--text);
  font-size: 14.5px;
  font-family: var(--font-sans);
}
.waitlist-form input[type=email]:focus{ outline: 2px solid var(--accent); outline-offset: 1px; }
.waitlist-form.center{ margin: 0 auto; }
.form-status{ font-size: 13px; margin-top: 12px; color: var(--text-faint); min-height: 18px; }
.form-status.ok{ color: var(--good); }
.form-status.err{ color: var(--danger); }

/* ---------- footer ---------- */
footer.site{
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 40px;
  margin-top: 40px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p{ color: var(--text-faint); font-size: 13.5px; max-width: 32ch; margin-top: 14px; }
.footer-col h4{
  font-family: var(--font-mono);
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ text-decoration: none; color: var(--text-dim); font-size: 14px; }
.footer-col a:hover{ color: var(--accent-strong); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  font-size: 12.5px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- legal pages ---------- */
.legal{ padding: 64px 0 100px; }
.legal .container{ max-width: 760px; }
.legal h1{ font-size: clamp(28px,4vw,38px); margin-bottom: 8px; }
.legal .updated{ color: var(--text-faint); font-size: 13.5px; font-family: var(--font-mono); margin-bottom: 48px; }
.legal h2{ font-size: 20px; margin: 40px 0 14px; }
.legal p, .legal li{ color: var(--text-dim); font-size: 15.5px; line-height: 1.7; }
.legal ul{ padding-left: 22px; margin: 12px 0; }
.legal li{ margin-bottom: 8px; }
.legal a{ color: var(--accent-strong); text-decoration: underline; text-decoration-color: rgba(34,211,238,0.35); }
.legal strong{ color: var(--text); }

/* ---------- responsive ---------- */
@media (max-width: 880px){
  .nav-links{
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border-soft);
    padding: 8px 24px 18px;
  }
  .nav-links.open{ display: flex; }
  .nav-links a{ padding: 12px 0; width: 100%; }
  .nav-links a::after{ display: none; }
  .nav-toggle{ display: flex; }
  .hero-grid{ grid-template-columns: 1fr; gap: 48px; }
  .hero-copy{ order: 1; text-align: left; }
  .hero-phone{ order: 0; }
  .trio{ grid-template-columns: 1fr; }
  .feat-grid{ grid-template-columns: 1fr 1fr; }
  .audience-list{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; gap: 28px; }
  section{ padding: 64px 0; }
}
@media (max-width: 560px){
  .feat-grid{ grid-template-columns: 1fr; }
  .waitlist-form{ flex-direction: column; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .step{ grid-template-columns: 1fr; }
}

/* ---------- scroll progress bar ---------- */
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  z-index: 60;
  will-change: transform;
}

/* ---------- scroll reveal ---------- */
/* Only hide content once JS confirms it can animate it back in. */
.js-scroll .reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
  transition-delay: var(--reveal-delay, 0s);
}
.js-scroll .reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .js-scroll .reveal{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- hero phone parallax mount ---------- */
.hero-phone{ will-change: transform; }

/* ---------- scrollspy active nav link ---------- */
.nav-links a{ position: relative; }
.nav-links a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .25s ease;
}
.nav-links a.active{ color: var(--text); }
.nav-links a.active::after{ transform: scaleX(1); }

/* ---------- count-up numbers ---------- */
.step-num.in-view{ border-color: var(--accent); color: var(--accent-strong); transition: border-color .4s, color .4s; }
