/* ==========================================================================
   FinWisePoint — Process (working-together) pages.
   Loaded after styles.css and ../services/service.css. Layout mirrors the
   SERVICE pages: hero, then a light body with rich prose on the LEFT and a
   sticky animated figure on the RIGHT. Each figure is a bespoke, JS-driven,
   INFINITELY LOOPED finance-UI animation (process.js + the states below):

     02 Scope      — an engagement that defines itself: responsibilities flip
                     ON via toggles, the monthly fee totals, then it seals to AGREED.
     03 Transition — a handover: tasks travel from "Your plate" to "With us"
                     lane by lane while a progress ring fills.
     04 Operate    — a monthly orbit: a glowing indicator circles Close -> Review
                     -> Report, lighting each, with net cash flow in the centre.

   (01 Listen uses a Lottie, .prc-lottie.) Never tied to scroll.
   ========================================================================== */

/* ---- shared: pull-quote + next-step link (used inside .svc-prose) ---- */
.prc-quote {
  margin: clamp(2.6rem, 5vw, 4rem) 0 0;
  padding-left: clamp(1.1rem, 2vw, 1.6rem);
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  max-width: 26ch;
}
.prc-next {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-top: clamp(1.5rem, 3vw, 2.1rem);
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.prc-next-label { font-family: var(--font-display); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.prc-next-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 1.9rem); letter-spacing: -0.02em; color: var(--text-strong); transition: transform 0.4s var(--ease); }
.prc-next:hover .prc-next-title { transform: translateX(8px); }
.prc-next-arrow { font-size: 1.5rem; color: var(--text-faint); transition: transform 0.4s var(--ease), color 0.3s var(--ease); }
.prc-next:hover .prc-next-arrow { transform: translateX(8px); color: var(--accent); }

/* ==========================================================================
   LAYOUT — prose left, sticky animated card right (mirrors the services)
   ========================================================================== */
.prc-body-grid {
  max-width: none;
  width: auto;   /* reset .container's width:100% so the margins below size the box — prevents overflow on wide screens */
  margin-left: max(calc((100vw - var(--container)) / 2 + var(--gutter)), var(--gutter));
  margin-right: var(--gutter);
  padding-inline: 0;
  display: grid;
  grid-template-columns: minmax(0, 64ch) 1fr;
  column-gap: var(--gutter);
  align-items: start;
}
.prc-fig { position: sticky; top: clamp(96px, 14vh, 140px); display: flex; justify-content: center; }
@media (max-width: 1024px) {
  .prc-body-grid { grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4rem); }
  .prc-fig { position: static; }
}

/* ==========================================================================
   CARD — shared glassy chrome for every animated figure
   ========================================================================== */
.prc-card {
  --pc-accent: #6f9bf2;
  --pc-soft: #9bb8f7;
  --pc-deep: #3f6fd6;
  --pc-ok: #2fbf71;
  --pc-spring: cubic-bezier(0.34, 1.42, 0.52, 1);
  --pc-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  width: min(100%, 520px);
  min-height: 452px;
  padding: clamp(1.6rem, 2.6vw, 2.2rem);
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(135% 95% at 6% -12%, rgba(111, 155, 242, 0.13), transparent 55%),
    radial-gradient(120% 85% at 104% 112%, rgba(47, 191, 113, 0.07), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #edf2ff 100%);
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  box-shadow:
    0 1px 2px rgba(11, 26, 48, 0.05),
    0 2px 12px rgba(11, 26, 48, 0.045),
    0 52px 92px -46px rgba(18, 44, 84, 0.5);
  font-family: var(--font-display);
  color: var(--text-strong);
  overflow: hidden;
}
/* accent hairline along the top edge */
.prc-card::after {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; z-index: 4;
  background: linear-gradient(90deg, transparent, var(--pc-accent) 28%, var(--pc-soft) 62%, transparent);
  opacity: 0.7; pointer-events: none;
}
/* slow diagonal light sheen crossing the glass */
.prc-card::before {
  content: ""; position: absolute; inset: -1px; z-index: 3; pointer-events: none;
  background: linear-gradient(116deg, transparent 41%, rgba(255, 255, 255, 0.4) 50%, transparent 59%);
  transform: translateX(-145%);
  animation: prc-sheen 7.5s cubic-bezier(0.55, 0, 0.25, 1) 1.6s infinite;
}
@keyframes prc-sheen { 0% { transform: translateX(-145%); } 17%, 100% { transform: translateX(145%); } }

.prc-card-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: clamp(1.2rem, 2.4vw, 1.7rem); position: relative; z-index: 2; }
.prc-card-title { font-weight: 600; font-size: 1.06rem; letter-spacing: -0.01em; }
.prc-card-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--pc-accent); background: rgba(111, 155, 242, 0.12);
  border-radius: 999px; padding: 0.32rem 0.74rem; white-space: nowrap;
  transition: color 0.4s var(--ease), background-color 0.4s var(--ease);
}
.prc-card-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; animation: prc-blink 1.7s ease-in-out infinite; }
.prc-card-tag.is-ok { color: var(--pc-ok); background: rgba(47, 191, 113, 0.13); }
@keyframes prc-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
.prc-num { font-variant-numeric: tabular-nums; }

/* shared live status footer */
.prc-status { display: flex; align-items: center; gap: 0.55rem; margin-top: auto; padding-top: 1.1rem; border-top: 1px solid var(--line); font-size: 0.9rem; color: var(--text-muted); position: relative; z-index: 2; }
.prc-status::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--pc-ok); box-shadow: 0 0 0 0 rgba(47, 191, 113, 0.5); animation: prc-pulse 2.4s ease-out infinite; }
.prc-status b { color: var(--text-strong); font-weight: 600; }
@keyframes prc-pulse { 0% { box-shadow: 0 0 0 0 rgba(47, 191, 113, 0.5); } 70%, 100% { box-shadow: 0 0 0 9px rgba(47, 191, 113, 0); } }

/* ---- 01 LISTEN (Lottie) — full animation in the sticky figure column ---- */
.prc-lottie {
  width: min(100%, 460px);
  aspect-ratio: 1080 / 1350;
  margin-inline: auto;
  filter: drop-shadow(0 24px 50px rgba(11, 26, 48, 0.12));
}
.prc-lottie svg { display: block; width: 100%; height: 100%; }
@media (max-width: 1024px) { .prc-lottie { max-width: 380px; } }

/* ==========================================================================
   02 SCOPE — the engagement defines itself: toggles flip ON, fee totals, AGREED
   ========================================================================== */
.agr-rows { display: flex; flex-direction: column; gap: 0.55rem; position: relative; z-index: 2; }
.agr-row {
  display: grid; grid-template-columns: 1fr auto 46px; align-items: center; gap: 0.7rem;
  padding: 0.62rem 0.8rem; border-radius: 13px;
  border: 1px solid transparent;
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.agr-row.is-on { background: rgba(111, 155, 242, 0.08); border-color: rgba(111, 155, 242, 0.22); }
.agr-label { font-size: 0.96rem; font-weight: 500; color: var(--text-muted); transition: color 0.45s var(--ease); }
.agr-row.is-on .agr-label { color: var(--text-strong); }
.agr-cad { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; color: var(--text-faint); background: rgba(11, 26, 48, 0.05); border-radius: 999px; padding: 0.22rem 0.62rem; white-space: nowrap; transition: color 0.45s, background-color 0.45s; }
.agr-row.is-on .agr-cad { color: var(--pc-deep); background: rgba(111, 155, 242, 0.16); }
/* modern toggle */
.agr-toggle { position: relative; width: 44px; height: 25px; border-radius: 999px; background: rgba(11, 26, 48, 0.14); justify-self: end; transition: background-color 0.68s var(--pc-smooth); }
.agr-toggle::after { content: ""; position: absolute; top: 3px; left: 3px; width: 19px; height: 19px; border-radius: 50%; background: #fff; box-shadow: 0 2px 5px rgba(11, 26, 48, 0.28); transition: transform 0.68s var(--pc-spring); }
.agr-row.is-on .agr-toggle { background: linear-gradient(90deg, var(--pc-accent), var(--pc-soft)); box-shadow: 0 4px 12px -2px rgba(111, 155, 242, 0.6); }
.agr-row.is-on .agr-toggle::after { transform: translateX(19px); }

.agr-foot { display: flex; align-items: baseline; justify-content: space-between; margin-top: 1.1rem; padding-top: 1.05rem; border-top: 1px solid var(--line); position: relative; z-index: 2; }
.agr-foot span { font-size: 0.84rem; color: var(--text-muted); }
.agr-foot b { font-size: 1.55rem; font-weight: 600; color: var(--text-strong); }
.agr-foot b small { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
/* AGREED seal */
.agr-seal {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  margin-top: 1rem; padding: 0.7rem; border-radius: 13px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pc-ok); background: rgba(47, 191, 113, 0.1); border: 1px solid rgba(47, 191, 113, 0.28);
  opacity: 0; transform: translateY(10px) scale(0.96);
  transition: opacity 0.5s var(--ease), transform 0.55s var(--pc-spring);
  position: relative; z-index: 2;
}
.prc-agree.is-agreed .agr-seal { opacity: 1; transform: none; }
.agr-lock { width: 16px; height: 16px; position: relative; }
.agr-lock::before { content: ""; position: absolute; left: 2px; bottom: 0; width: 12px; height: 9px; border-radius: 3px; background: var(--pc-ok); }
.agr-lock::after { content: ""; position: absolute; left: 4.5px; top: 0; width: 7px; height: 9px; border: 2px solid var(--pc-ok); border-bottom: none; border-radius: 6px 6px 0 0; transform-origin: bottom; transform: scaleY(0); transition: transform 0.5s var(--pc-spring) 0.15s; }
.prc-agree.is-agreed .agr-lock::after { transform: scaleY(1); }

/* ==========================================================================
   03 TRANSITION — handover: tasks travel "Your plate" -> "With us"; ring fills
   ========================================================================== */
.hand-cols { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.7rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); position: relative; z-index: 2; }
.hand-cols .is-us { color: var(--pc-deep); }
.hand-lanes { display: flex; flex-direction: column; gap: 0.6rem; position: relative; z-index: 2; }
.hand-lane {
  position: relative; height: 42px; border-radius: 12px;
  background: rgba(11, 26, 48, 0.035);
  border: 1px solid var(--line);
  overflow: hidden;
  container-type: inline-size;   /* so the token can travel a lane-width distance (cqw) */
}
/* faint dotted rail the token travels along */
.hand-lane::before {
  content: ""; position: absolute; left: 14px; right: 46px; top: 50%; height: 2px; transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, rgba(11, 26, 48, 0.16) 0 5px, transparent 5px 11px);
}
/* progress fill that grows behind the token as it crosses */
.hand-lane > .hand-fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: linear-gradient(90deg, rgba(111, 155, 242, 0.18), rgba(111, 155, 242, 0.05)); transition: width 1.35s var(--pc-smooth); }
.hand-lane.is-active > .hand-fill { width: calc(100% - 34px); }
.hand-lane.is-done > .hand-fill { width: 100%; background: linear-gradient(90deg, rgba(47, 191, 113, 0.12), rgba(47, 191, 113, 0.05)); }
/* the travelling token */
.hand-token {
  position: absolute; top: 50%; left: 12px; transform: translate(0, -50%);
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.86rem; font-weight: 600; color: var(--text-strong);
  padding: 0.32rem 0.7rem; border-radius: 999px;
  background: #fff; border: 1px solid var(--line-strong);
  box-shadow: 0 4px 12px -4px rgba(11, 26, 48, 0.3);
  white-space: nowrap; z-index: 2;
  transition: transform 1.35s var(--pc-smooth), box-shadow 0.5s;
}
.hand-lane.is-active .hand-token,
.hand-lane.is-done .hand-token { transform: translate(calc(100cqw - 100% - 52px), -50%); }
.hand-lane.is-active .hand-token { box-shadow: 0 6px 18px -4px rgba(111, 155, 242, 0.6); }
/* node that receives the token on the right */
.hand-dock { position: absolute; right: 9px; top: 50%; transform: translateY(-50%); width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--line-strong); display: grid; place-items: center; background: #fff; z-index: 1; transition: border-color 0.4s, background-color 0.4s; }
.hand-dock::after { content: "✓"; font-size: 12px; font-weight: 700; color: #fff; opacity: 0; transform: scale(0.4); transition: opacity 0.3s, transform 0.35s var(--pc-spring); }
.hand-lane.is-done .hand-dock { border-color: var(--pc-ok); background: var(--pc-ok); box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.14); }
.hand-lane.is-done .hand-dock::after { opacity: 1; transform: scale(1); }

.hand-foot { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; padding-top: 1.15rem; position: relative; z-index: 2; }
.hand-ring { width: 46px; height: 46px; flex: none; }
.hand-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.hand-ring .hr-track { fill: none; stroke: rgba(11, 26, 48, 0.1); stroke-width: 5; }
.hand-ring .hr-arc { fill: none; stroke: var(--pc-accent); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 113; stroke-dashoffset: 113; transition: stroke-dashoffset 1.35s var(--pc-smooth); filter: drop-shadow(0 0 4px rgba(111, 155, 242, 0.5)); }
.hand-foot-txt { display: flex; flex-direction: column; }
.hand-foot-txt b { font-size: 1rem; font-weight: 600; color: var(--text-strong); }
.hand-foot-txt span { font-size: 0.8rem; color: var(--text-muted); }

/* ==========================================================================
   04 OPERATE — monthly orbit: indicator circles Close -> Review -> Report
   ========================================================================== */
.prc-orbit { align-items: center; }
.orb-stage { flex: 1; display: grid; place-items: center; width: 100%; }
.orb-ring { position: relative; width: 248px; max-width: 100%; aspect-ratio: 1; margin: 0.4rem auto; }
.orb-ring > svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; }
.orb-track { fill: none; stroke: rgba(11, 26, 48, 0.08); stroke-width: 7; }
.orb-arc { fill: none; stroke: var(--pc-accent); stroke-width: 7; stroke-linecap: round; stroke-dasharray: 628; stroke-dashoffset: 628; transition: stroke-dashoffset 1.4s var(--pc-smooth); filter: drop-shadow(0 0 6px rgba(111, 155, 242, 0.55)); }
/* orbiting indicator: rotor rotates around the ring centre */
.orb-rotor { position: absolute; inset: 0; transition: transform 2.2s var(--pc-smooth); }
.orb-ind { position: absolute; left: 50%; top: 8.33%; width: 20px; height: 20px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff 0%, var(--pc-accent) 55%, var(--pc-deep) 100%); box-shadow: 0 0 0 5px rgba(111, 155, 242, 0.16), 0 0 18px rgba(111, 155, 242, 0.85); }
/* stage nodes around the ring (positions for a 248px box, r ~ 103px) */
.orb-node { position: absolute; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; gap: 5px; }
.orb-node i { width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid var(--line-strong); transition: border-color 0.68s, background-color 0.68s, box-shadow 0.68s, transform 0.68s var(--pc-spring); }
.orb-node span { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; color: var(--text-faint); transition: color 0.45s; }
.orb-node.is-on i { border-color: var(--pc-accent); background: var(--pc-accent); box-shadow: 0 0 0 5px rgba(111, 155, 242, 0.16), 0 0 14px rgba(111, 155, 242, 0.7); transform: scale(1.18); }
.orb-node.is-on span { color: var(--text-strong); }
.orb-node[data-s="0"] { left: 50%; top: 8.33%; }
.orb-node[data-s="1"] { left: 86.1%; top: 70.8%; }
.orb-node[data-s="2"] { left: 13.9%; top: 70.8%; }
.orb-node[data-s="0"] { flex-direction: column-reverse; }   /* label above the top node */
.orb-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.15rem; text-align: center; }
.orb-stagelabel { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pc-deep); }
.orb-kpi { font-size: 1.9rem; font-weight: 600; color: var(--text-strong); line-height: 1; letter-spacing: -0.02em; }
.orb-sub { font-size: 0.78rem; color: var(--text-muted); }

/* ==========================================================================
   01 LISTEN — discovery console: a live waveform listens while finance signals
   are captured one by one and a counter rises
   ========================================================================== */
.lsn-wave { display: flex; align-items: flex-end; gap: 5px; height: 50px; margin-bottom: 1.4rem; position: relative; z-index: 2; }
.lsn-wave i {
  flex: 1; height: 100%; border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, var(--pc-accent), var(--pc-soft));
  box-shadow: 0 0 9px rgba(111, 155, 242, 0.4);
  transform-origin: bottom; transform: scaleY(0.2);
  animation: lsn-wave 3s ease-in-out infinite;
}
.lsn-wave i:nth-child(5n+1) { animation-delay: -0.10s; }
.lsn-wave i:nth-child(5n+2) { animation-delay: -0.55s; }
.lsn-wave i:nth-child(5n+3) { animation-delay: -0.95s; }
.lsn-wave i:nth-child(5n+4) { animation-delay: -1.35s; }
.lsn-wave i:nth-child(5n)   { animation-delay: -0.75s; }
@keyframes lsn-wave { 0%, 100% { transform: scaleY(0.16); } 50% { transform: scaleY(1); } }
.lsn-feed { display: flex; flex-direction: column; position: relative; z-index: 2; }
.lsn-sig {
  display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 0.78rem;
  padding: 0.62rem 0; border-bottom: 1px solid var(--line);
  opacity: 0; transform: translateY(12px);
  transition: opacity 1.1s var(--pc-smooth), transform 1.1s var(--pc-spring);
}
.lsn-sig.is-on { opacity: 1; transform: none; }
.lsn-ic { width: 21px; height: 21px; border-radius: 50%; border: 2px solid var(--line-strong); display: grid; place-items: center; transition: border-color 0.4s, background-color 0.4s, box-shadow 0.4s; }
.lsn-ic::after { content: "✓"; font-size: 11px; font-weight: 700; color: #fff; opacity: 0; transform: scale(0.4); transition: opacity 0.3s, transform 0.35s var(--pc-spring); }
.lsn-sig.is-on .lsn-ic { border-color: var(--pc-accent); background: var(--pc-accent); box-shadow: 0 0 0 4px rgba(111, 155, 242, 0.16), 0 6px 14px -2px rgba(111, 155, 242, 0.55); }
.lsn-sig.is-on .lsn-ic::after { opacity: 1; transform: scale(1); }
.lsn-l { font-size: 0.92rem; color: var(--text-muted); transition: color 0.4s; }
.lsn-sig.is-on .lsn-l { color: var(--text-strong); }
.lsn-v { font-size: 0.72rem; letter-spacing: 0.04em; color: var(--text-faint); opacity: 0; transition: opacity 0.4s 0.1s, color 0.4s; }
.lsn-sig.is-on .lsn-v { opacity: 1; color: var(--pc-deep); }
.lsn-meter { display: flex; align-items: baseline; gap: 0.5rem; margin-top: auto; padding-top: 1.2rem; position: relative; z-index: 2; }
.lsn-meter b { font-size: 2rem; font-weight: 600; color: var(--pc-accent); line-height: 1; }
.lsn-meter span { font-size: 0.84rem; color: var(--text-muted); }

/* ==========================================================================
   REDUCED MOTION — hold each figure at a settled, fully-readable state
   ========================================================================== */
@media (prefers-reduced-motion: reduce) and (min-width: 100000px) { /* disabled: site ignores reduced-motion (always animate) */
  .prc-card::before, .prc-card-tag::before, .prc-status::before, .lsn-wave i { animation: none !important; }
  .lsn-wave i { transform: scaleY(0.6); }
  .lsn-sig { opacity: 1 !important; transform: none !important; }
  .lsn-ic { border-color: var(--pc-accent) !important; background: var(--pc-accent) !important; }
  .lsn-ic::after { opacity: 1 !important; transform: scale(1) !important; }
  .lsn-v { opacity: 1 !important; color: var(--pc-deep) !important; }
  .agr-row { background: rgba(111, 155, 242, 0.08); border-color: rgba(111, 155, 242, 0.22); }
  .agr-row .agr-label { color: var(--text-strong); }
  .agr-toggle { background: linear-gradient(90deg, var(--pc-accent), var(--pc-soft)) !important; }
  .agr-toggle::after { transform: translateX(19px) !important; }
  .prc-agree .agr-seal { opacity: 1 !important; transform: none !important; }
  .prc-agree .agr-lock::after { transform: scaleY(1) !important; }
  .hand-lane .hand-token { transform: translate(calc(100cqw - 100% - 52px), -50%) !important; }
  .hand-lane .hand-fill { width: 100% !important; }
  .hand-dock { border-color: var(--pc-ok) !important; background: var(--pc-ok) !important; }
  .hand-dock::after { opacity: 1 !important; transform: scale(1) !important; }
  .hand-ring .hr-arc { stroke-dashoffset: 0 !important; transition: none !important; }
  .orb-rotor { transform: rotate(0deg) !important; transition: none !important; }
  .orb-node[data-s="0"] i { border-color: var(--pc-accent); background: var(--pc-accent); }
  .orb-arc { stroke-dashoffset: 419 !important; transition: none !important; }
}

/* ==========================================================================
   PHONE TUNING (≤760px). prc-body-grid already stacks at 1024px.
   ========================================================================== */
@media (max-width: 760px) {
  /* Card was dimensioned for ~520px; on a phone drop the wasted min-height and
     shrink the orbit ring so node labels don't crowd the edge. */
  .prc-card { min-height: auto; padding: 1.4rem; border-radius: 20px; }
  .orb-ring { width: min(220px, 72vw); }
  .orb-node span { font-size: 0.66rem; }
  .agr-row { grid-template-columns: 1fr auto 44px; gap: 0.5rem; padding: 0.55rem 0.6rem; }
  .agr-label { font-size: 0.9rem; }

  /* The full-card diagonal sheen sweep repaints the whole card continuously;
     drop it on phones (keep the small status dots). */
  .prc-card::before { animation: none; }

  /* Next-step link: comfortable tap target + a tap (not hover) feedback. */
  .prc-next { padding: 1.1rem 0; min-height: 44px; }
}
@media (hover: none) {
  .prc-next:active .prc-next-title, .prc-next:active .prc-next-arrow { transform: translateX(6px); }
}
