/* ==========================================================================
   YOCTO 2026 — Vertical money pages (Services / Industries).
   These pages reuse shell.css + page-home.css for hero, trust, problem,
   process, cases, founder, FAQ and final-CTA. This file only adds the
   money-page-specific deltas: the "what we do" step cards and the bespoke
   cycle/diagram animation that replaces the LTV Parthenon temple.
   ========================================================================== */

/* Step cards in the "what we do" section use a body paragraph (not a KPI list). */
.pillar-card .pc-body { margin: 0; font-family: var(--font-sans); font-size: 14px; line-height: 1.65; color: var(--fg2); }

/* Bespoke per-vertical diagram (reuses the .temple wrapper). The orbit/flow
   arcs animate a dashed "current". Nodes stay visible. */
.regimen .rc-arc { stroke-dashoffset: 0; animation: rc-flow 1.4s linear infinite; }
@keyframes rc-flow { to { stroke-dashoffset: -24; } }
.rc-node { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .regimen .rc-arc { animation: none; } }
