/* =========================================================
   Amiovox.ai Product Pages — shared system for VoxCare & VoxForce
   Brand: Trust Blue / Care Teal / Deep Navy / Soft Slate / Clean Light
   Tokens mirror the live Partner Portal (portal.amiovox.ai) --amio-*
   Tailwind theme 1:1, so marketing pages and the app stay in sync.
   Class namespace: body.product / .product ... (shared by both pages)
   ========================================================= */

:root{
  --amio-blue: #0284C7;      /* Trust Blue */
  --amio-blue-deep: #0369A1; /* H3 / active state */
  --amio-teal: #0D9488;      /* Care Teal */
  --amio-teal-deep: #0B7A70;
  --amio-navy: #0F172A;      /* Deep Navy */
  --amio-slate: #64748B;     /* Soft Slate */
  --amio-body: #334155;      /* main body copy */
  --amio-light: #F8FAFC;     /* Clean Light */
  --amio-white: #FFFFFF;
  --amio-border: #E2E8F0;
  --amio-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
  --amio-shadow-lg: 0 12px 28px rgba(15,23,42,0.10);

  --amio-font-head: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --amio-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Calibri, Roboto, sans-serif;

  --amio-max: 1160px;
  --amio-pad: clamp(20px, 5vw, 64px);
  --amio-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body.product{
  margin: 0;
  background: var(--amio-light);
  color: var(--amio-body);
  font-family: var(--amio-font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.product h1, .product h2, .product h3{
  font-family: var(--amio-font-head);
  color: var(--amio-navy);
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.product h1{ font-size: 48px; line-height: 1.2; }
.product h2{ font-size: 32px; line-height: 1.3; }
.product h3{ font-size: 20px; line-height: 1.4; color: var(--amio-blue-deep); }

.product p{ margin: 0 0 1em; color: var(--amio-body); }
.product a{ color: inherit; }

.product .wrap{
  max-width: var(--amio-max);
  margin: 0 auto;
  padding-left: var(--amio-pad);
  padding-right: var(--amio-pad);
}

.product .eyebrow{
  font-family: var(--amio-font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amio-teal);
  margin: 0 0 14px;
  display: block;
}

.product section{ padding: 88px 0; }
@media (max-width: 720px){ .product section{ padding: 64px 0; } }

.product .section-head{ max-width: 640px; margin: 0 0 48px; }
.product .section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.product .section-head h2{ font-size: clamp(26px, 3.4vw, 36px); }

/* -------------------- Buttons -------------------- */
.product .btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--amio-font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s var(--amio-ease), box-shadow 0.18s var(--amio-ease), border-color 0.18s var(--amio-ease), color 0.18s var(--amio-ease);
  white-space: nowrap;
}
.product .btn:active{ transform: translateY(1px); }
.product .btn-primary{
  background: linear-gradient(90deg, var(--amio-blue), var(--amio-teal));
  color: var(--amio-white);
}
.product .btn-primary:hover{ box-shadow: 0 8px 20px rgba(2,132,199,0.28); }
.product .btn-ghost{ background: transparent; color: var(--amio-navy); border-color: var(--amio-border); }
.product .btn-ghost:hover{ border-color: var(--amio-slate); }
.product .btn-on-navy{ background: linear-gradient(90deg, var(--amio-blue), var(--amio-teal)); color: var(--amio-white); }

.product a:focus-visible, .product button:focus-visible, .product .btn:focus-visible{
  outline: 2px solid var(--amio-blue);
  outline-offset: 3px;
}

/* -------------------- Nav -------------------- */
.product header.site-nav{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248,250,252,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--amio-border);
}
.product .nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.product .brand-lockup{ display: flex; align-items: center; gap: 10px; text-decoration: none; }
.product .brand-lockup img{ height: 34px; width: auto; display: block; }
.product .brand-lockup .parent-tag{
  font-family: var(--amio-font-body);
  font-size: 11.5px;
  color: var(--amio-slate);
  border-left: 1px solid var(--amio-border);
  padding-left: 10px;
  margin-left: 2px;
}
/* When brand-lockup is a plain container (not itself a link) so its
   monogram/name/tagline can each link independently — e.g. the
   product-page tagline links back to the amiovox.ai hub while the
   name still just scrolls to top. */
.product .brand-lockup a{ text-decoration: none; color: inherit; }

/* Text-composed lockup (monogram image + live text) — matches the
   Partner Portal's own header treatment, used by pages without a
   pre-baked wordmark image (e.g. VoxForce). */
.product .lockup-name{
  font-family: var(--amio-font-head); font-weight: 800; font-size: 21px;
  color: var(--amio-navy); line-height: 1.1; display: block; text-decoration: none;
}
.product .lockup-name .accent{ color: var(--amio-blue); }
.product .lockup-tag{
  font-size: 12.5px; color: var(--amio-slate); font-style: italic; margin-top: 1px;
  display: block; text-decoration: none;
}
.product .lockup-tag:hover{ color: var(--amio-blue-deep); text-decoration: underline; }
.product .hero .lockup-name{ font-size: 30px; }
.product .hero .lockup-tag{ font-size: 14px; }

.product .nav-links{ display: flex; gap: 34px; list-style: none; margin: 0; padding: 0; }
.product .nav-links a{
  text-decoration: none; color: var(--amio-navy); font-size: 14.5px; font-weight: 500; opacity: 0.82;
}
.product .nav-links a:hover{ opacity: 1; color: var(--amio-blue-deep); }

.product .nav-cta{ display: flex; align-items: center; gap: 22px; }
.product .nav-toggle{ display: none; }

.product .mobile-menu{ display: none; border-top: 1px solid var(--amio-border); background: var(--amio-light); }
.product .mobile-menu ul{ list-style: none; margin: 0; padding: 10px var(--amio-pad) 18px; }
.product .mobile-menu a{
  display: block; padding: 12px 0; text-decoration: none; color: var(--amio-navy);
  font-size: 15.5px; font-weight: 500; border-bottom: 1px solid var(--amio-border);
}
.product .mobile-menu a:last-child{ border-bottom: none; }

@media (max-width: 860px){
  .product .nav-links{ display: none; }
  .product .nav-toggle{
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 8px; border: 1px solid var(--amio-border);
    background: none; cursor: pointer; color: var(--amio-navy);
  }
  .product .nav-cta .btn-primary{ padding: 10px 16px; font-size: 13.5px; }
  .product .mobile-menu.open{ display: block; }
}

/* -------------------- Hero -------------------- */
.product .hero{ padding-top: 68px; padding-bottom: 30px; overflow: hidden; }
.product .hero-inner{ text-align: center; }
.product .hero img.hero-logo{ height: auto; width: 100%; max-width: 320px; margin: 0 auto 30px; display: block; }
.product .hero h1{
  font-size: clamp(32px, 5.4vw, 54px);
  max-width: 17ch; margin-left: auto; margin-right: auto;
}
.product .hero .lede{
  max-width: 620px; margin: 22px auto 34px; font-size: 17.5px; color: var(--amio-slate);
}
.product .hero-actions{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }

/* -------------------- Path chooser (hub hero) -------------------- */
.product .path-cards{
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 880px; margin: 0 auto 56px; text-align: left;
}
.product .path-card{
  display: block; background: var(--amio-white); border: 1px solid var(--amio-border);
  border-top: 3px solid var(--amio-blue); border-radius: 16px; padding: 26px 26px 22px;
  text-decoration: none; color: inherit; box-shadow: var(--amio-shadow);
  transition: transform 0.2s var(--amio-ease), box-shadow 0.2s var(--amio-ease);
}
.product .path-card:hover{ transform: translateY(-3px); box-shadow: var(--amio-shadow-lg); }
.product .path-card.alt{ border-top-color: var(--amio-teal); }
.product .path-card .path-tag{
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--amio-blue-deep); display: block; margin-bottom: 10px;
}
.product .path-card.alt .path-tag{ color: var(--amio-teal); }
.product .path-card h3{ font-size: 19px; margin-bottom: 8px; }
.product .path-card p{ font-size: 14.5px; margin-bottom: 14px; }
.product .path-card .path-link{
  display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--amio-navy);
}
.product .path-card:hover .path-link{ color: var(--amio-blue-deep); }
.product .path-card.alt:hover .path-link{ color: var(--amio-teal); }
@media (max-width: 640px){ .product .path-cards{ grid-template-columns: 1fr; } }

/* -------------------- Pulse-to-waveform illustration (hub hero) -------------------- */
.product .pulse-figure{ max-width: 980px; margin: 0 auto; }
.product .pulse-figure svg{ display: block; width: 100%; height: auto; }
.product .pulse-figure .pulse-line{ fill: none; stroke: var(--amio-navy); stroke-width: 2.25; stroke-linecap: round; stroke-linejoin: round; }
.product .pulse-caption{
  display: flex; justify-content: space-between; max-width: 980px; margin: 10px auto 0;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amio-slate);
}
.product .pulse-line{ stroke-dasharray: 2450; stroke-dashoffset: 2450; animation: amio-draw 2.6s var(--amio-ease) 0.2s forwards; }
@keyframes amio-draw{ to{ stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce){ .product .pulse-line{ animation: none; stroke-dashoffset: 0; } }

/* -------------------- Leadership -------------------- */
.product .team-grid{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; max-width: 720px; }
.product .team-card{ border-top: 2px solid var(--amio-border); padding-top: 20px; }
.product .team-card .initial{
  width: 46px; height: 46px; border-radius: 50%; background: var(--amio-navy); color: var(--amio-white);
  font-family: var(--amio-font-head); font-weight: 700; font-size: 17px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.product .team-card h3{ font-size: 18px; margin-bottom: 2px; color: var(--amio-navy); }
.product .team-card .role{ display: block; font-size: 13px; color: var(--amio-blue-deep); font-weight: 600; margin-bottom: 12px; }
.product .team-card p{ font-size: 14.5px; }
@media (max-width: 860px){ .product .team-grid{ grid-template-columns: 1fr; gap: 28px; } }

.product .back-to-hub{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 600; color: var(--amio-slate); text-decoration: none; margin-bottom: 22px;
}
.product .back-to-hub:hover{ color: var(--amio-blue-deep); }

/* -------------------- Stat strip -------------------- */
.product .stat-strip{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 12px; }
.product .stat{ border-top: 2px solid var(--amio-border); padding-top: 16px; }
.product .stat .num{
  font-family: var(--amio-font-head); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 38px); color: var(--amio-navy); display: block; margin-bottom: 6px;
}
.product .stat .label{ font-size: 14px; color: var(--amio-slate); line-height: 1.5; }
@media (max-width: 720px){ .product .stat-strip{ grid-template-columns: 1fr; gap: 20px; } }

/* -------------------- Two column -------------------- */
.product .two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 860px){ .product .two-col{ grid-template-columns: 1fr; gap: 36px; } }

/* -------------------- Cascade timeline -------------------- */
.product .cascade{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--amio-border); }
.product .cascade-step{ padding: 26px 22px 26px 0; border-right: 1px solid var(--amio-border); position: relative; }
.product .cascade-step:last-child{ border-right: none; }
.product .cascade-step .day{
  font-family: var(--amio-font-body); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em;
  color: var(--amio-teal); text-transform: uppercase; display: block; margin-bottom: 10px;
}
.product .cascade-step .icon{ width: 34px; height: 34px; margin-bottom: 14px; color: var(--amio-blue); }
.product .cascade-step h3{ font-size: 17.5px; color: var(--amio-navy); }
.product .cascade-step p{ font-size: 14.5px; margin-bottom: 0; }
.product .cascade-step.exception .day{ color: var(--amio-blue-deep); }
@media (max-width: 860px){
  .product .cascade{ grid-template-columns: 1fr; border-top: none; }
  .product .cascade-step{ border-right: none; border-top: 1px solid var(--amio-border); padding: 22px 0; }
}

.product .addon-pill{
  margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-start;
  background: var(--amio-white); border: 1px solid var(--amio-border); border-radius: 16px;
  padding: 16px 20px; max-width: 720px; box-shadow: var(--amio-shadow);
}
.product .addon-pill .tag{
  flex: none; font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--amio-white); background: var(--amio-slate); padding: 4px 9px; border-radius: 6px; margin-top: 2px;
}
.product .addon-pill p{ margin: 0; font-size: 14.5px; color: var(--amio-navy); }
.product .addon-pill p span{ color: var(--amio-slate); }

/* -------------------- Card grid (e.g. Who Qualifies) -------------------- */
.product .community-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product .community-card{
  background: var(--amio-white); border: 1px solid var(--amio-border); border-left: 3px solid var(--amio-teal);
  border-radius: 16px; padding: 22px 22px 20px; box-shadow: var(--amio-shadow);
}
.product .community-card h3{ font-size: 16px; margin-bottom: 4px; color: var(--amio-navy); }
.product .community-card .fund{
  font-size: 12.5px; font-weight: 600; color: var(--amio-blue-deep); margin: 0 0 8px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.product .community-card p:last-child{ font-size: 14px; margin-bottom: 0; }
@media (max-width: 860px){ .product .community-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .product .community-grid{ grid-template-columns: 1fr; } }

/* -------------------- Econ card -------------------- */
.product .econ-card{ background: var(--amio-white); border: 1px solid var(--amio-border); border-radius: 16px; padding: 30px 32px; box-shadow: var(--amio-shadow); }
.product .econ-card .kicker{ font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amio-slate); margin-bottom: 18px; display: block; }
.product .econ-row{ display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-top: 1px solid var(--amio-border); }
.product .econ-row:first-of-type{ border-top: none; }
.product .econ-row .k{ font-size: 14.5px; color: var(--amio-slate); }
.product .econ-row .v{ font-family: var(--amio-font-head); font-weight: 700; font-size: 17px; color: var(--amio-navy); }
.product .econ-row.total{ border-top: 2px solid var(--amio-navy); margin-top: 6px; }
.product .econ-row.total .v{ font-size: 24px; color: var(--amio-teal); }
.product .econ-row.total .k{ color: var(--amio-navy); font-weight: 600; }

/* -------------------- Trust band -------------------- */
.product .trust-band{
  background: #EFF8F7; color: var(--amio-navy); padding: 88px 0; position: relative; overflow: hidden;
  border-top: 1px solid var(--amio-border); border-bottom: 1px solid var(--amio-border);
}
.product .trust-band::before{
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 15% 20%, rgba(2,132,199,0.08), transparent 45%),
                     radial-gradient(circle at 85% 80%, rgba(13,148,136,0.08), transparent 40%);
  pointer-events: none;
}
.product .trust-band .wrap{ position: relative; }
.product .trust-quote{ font-family: var(--amio-font-head); font-weight: 700; font-size: clamp(24px, 3.6vw, 38px); line-height: 1.28; max-width: 16ch; margin: 0 0 22px; color: var(--amio-navy); }
.product .trust-band .lede{ color: var(--amio-slate); max-width: 560px; font-size: 16.5px; margin-bottom: 44px; }
.product .trust-checks{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 40px; max-width: 720px; }
.product .trust-checks li{ list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--amio-navy); }
.product .trust-checks svg{ flex: none; width: 18px; height: 18px; color: var(--amio-teal); margin-top: 2px; }
@media (max-width: 640px){ .product .trust-checks{ grid-template-columns: 1fr; } }

/* -------------------- Pricing -------------------- */
.product .pricing-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product .price-card{ background: var(--amio-white); border: 1px solid var(--amio-border); border-radius: 16px; padding: 30px 26px; border-top: 3px solid var(--amio-navy); box-shadow: var(--amio-shadow); }
.product .price-card.featured{ border-top-color: var(--amio-teal); }
.product .price-card .tag{ font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amio-teal); margin-bottom: 10px; display: block; }
.product .price-card h3{ font-size: 20px; margin-bottom: 10px; color: var(--amio-navy); }
.product .price-card p{ font-size: 14.5px; }
@media (max-width: 860px){ .product .pricing-grid{ grid-template-columns: 1fr; } }

/* -------------------- Powered by -------------------- */
.product .powered-strip{ border-top: 1px solid var(--amio-border); border-bottom: 1px solid var(--amio-border); padding: 34px 0; }
.product .powered-strip .wrap{ display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.product .powered-strip p{ margin: 0; font-size: 13.5px; letter-spacing: 0.02em; color: var(--amio-slate); }
.product .powered-strip strong{ color: var(--amio-navy); }

/* -------------------- CTA / Contact -------------------- */
.product .cta-band{ background: var(--amio-white); color: var(--amio-navy); padding: 88px 0 76px; border-top: 1px solid var(--amio-border); }
.product .cta-inner{ display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 860px){ .product .cta-inner{ grid-template-columns: 1fr; gap: 40px; } }
.product .cta-band h2{ color: var(--amio-navy); font-size: clamp(26px, 3.4vw, 36px); max-width: 12ch; }
.product .cta-band .lede{ color: var(--amio-slate); font-size: 16px; margin-bottom: 0; }

.product .contact-form{ display: grid; gap: 14px; }
.product .contact-form label{ display: block; font-size: 12.5px; letter-spacing: 0.04em; color: var(--amio-slate); margin-bottom: 6px; }
.product .contact-form input, .product .contact-form textarea{
  width: 100%; background: var(--amio-light); border: 1px solid var(--amio-border); border-radius: 8px;
  padding: 12px 14px; color: var(--amio-navy); font-family: var(--amio-font-body); font-size: 14.5px;
}
.product .contact-form input::placeholder, .product .contact-form textarea::placeholder{ color: #A5B0C0; }
.product .contact-form input:focus, .product .contact-form textarea:focus{ outline: none; border-color: var(--amio-blue); background: var(--amio-white); }
.product .contact-form textarea{ resize: vertical; min-height: 96px; }
.product .form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px){ .product .form-row{ grid-template-columns: 1fr; } }
.product .form-note{ font-size: 12.5px; color: var(--amio-slate); margin-top: 4px; }
.product .form-status{ font-size: 13.5px; color: var(--amio-teal); min-height: 18px; margin-top: 6px; }

/* -------------------- Footer -------------------- */
.product footer.site-footer{ background: var(--amio-navy); color: #94A3B8; padding: 44px 0 40px; }
.product .footer-inner{ display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.product .footer-inner .brand-lockup .parent-tag{ color: #94A3B8; border-left-color: rgba(148,163,184,0.3); }
.product .footer-tag{ font-size: 13px; color: #94A3B8; margin: 0; }
.product .footer-links{ display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.product .footer-links a{ text-decoration: none; font-size: 13.5px; color: #94A3B8; }
.product .footer-links a:hover{ color: var(--amio-white); }
.product .footer-meta{
  margin-top: 22px; padding-top: 22px; border-top: 1px solid rgba(148,163,184,0.18);
  font-size: 12.5px; color: #64748B; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.product .footer-monogram{ display: flex; align-items: center; gap: 8px; opacity: 0.85; }
.product .footer-monogram img{ height: 22px; width: auto; display: block; }
.product .footer-monogram span{ font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: #64748B; }

/* -------------------- Converging lines flourish -------------------- */
/* Matches the Partner Portal's sign-in panel: bars of decreasing width
   converging toward a center point, framing a pull-quote or logo. */
.product .converge{ display: flex; flex-direction: column; gap: 8px; width: 100%; max-width: 420px; margin: 0 auto; opacity: 0.35; }
.product .converge span{ display: block; height: 1px; background: var(--amio-navy); }
.product .converge.up span:nth-child(1){ margin: 0 28% 0 0; }
.product .converge.up span:nth-child(2){ margin: 0 24% 0 8%; }
.product .converge.up span:nth-child(3){ margin: 0 20% 0 16%; }
.product .converge.up span:nth-child(4){ margin: 0 16% 0 24%; }
.product .converge.up span:nth-child(5){ margin: 0 12% 0 32%; }
.product .converge.up span:nth-child(6){ margin: 0 8% 0 40%; }
.product .converge.up span:nth-child(7){ margin: 0 4% 0 48%; }
.product .converge.up span:nth-child(8){ margin: 0 0 0 56%; }
.product .converge.down span:nth-child(1){ margin: 0 0 0 28%; }
.product .converge.down span:nth-child(2){ margin: 0 8% 0 24%; }
.product .converge.down span:nth-child(3){ margin: 0 16% 0 20%; }
.product .converge.down span:nth-child(4){ margin: 0 24% 0 16%; }
.product .converge.down span:nth-child(5){ margin: 0 32% 0 12%; }
.product .converge.down span:nth-child(6){ margin: 0 40% 0 8%; }
.product .converge.down span:nth-child(7){ margin: 0 48% 0 4%; }
.product .converge.down span:nth-child(8){ margin: 0 56% 0 0; }

/* -------------------- Reveal on scroll -------------------- */
.product .reveal{ opacity: 0; transform: translateY(14px); transition: opacity 0.7s var(--amio-ease), transform 0.7s var(--amio-ease); }
.product .reveal.in{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .product .reveal{ opacity: 1; transform: none; transition: none; } }

/* -------------------- Small-phone refinement -------------------- */
@media (max-width: 420px){
  .product .hero{ padding-top: 48px; padding-bottom: 22px; }
  .product .hero .lede{ font-size: 16px; }
  .product .price-card{ padding: 22px 20px; }
  .product .econ-card{ padding: 22px 20px; }
  .product .community-card{ padding: 18px 18px 16px; }
  .product .cascade-step{ padding: 18px 0; }
  .product .wrap{ padding-left: 16px; padding-right: 16px; }
  .product .stat-strip{ gap: 22px; }
  .product .trust-band{ padding: 56px 0; }
  .product .cta-band{ padding: 56px 0 48px; }
  .product .nav-cta{ gap: 10px; }
  .product .nav-cta .btn-primary{ padding: 9px 12px; font-size: 12.5px; }
}
