/* ============================================================
   /workers — "Hire AI workers" sales page. Self-contained; linked ONLY by workers.html.
   Shares the SJG brand system with /home (dark + blue→purple→cyan gradient,
   Space Grotesk / Inter / Space Mono). Sells individual AI workers → routes up to /OS.
   ============================================================ */

:root {
  --bg:        #07070C;
  --bg-soft:   #0C0C16;
  --panel:     rgba(255,255,255,0.028);
  --panel-2:   rgba(255,255,255,0.05);
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);

  --text:      #ECECF4;
  --muted:     #9A9AB2;
  --faint:     #6E6E88;

  --accent:    #4D7CFF;
  --accent-2:  #9B6CFF;
  --accent-cy: #38E1FF;
  --grad:      linear-gradient(100deg, #6E9BFF 0%, #9B6CFF 50%, #38E1FF 100%);
  --glow:      rgba(77,124,255,0.30);
  --green:     #4ade80;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'Space Mono', ui-monospace, monospace;

  --maxw: 1180px;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; margin: 0; overflow-wrap: break-word; }
p { margin: 0; }
img { max-width: 100%; display: block; }

/* Engineered grid backdrop */
.grid-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 100% 70% at 50% 0%, #000 25%, transparent 78%);
}
.scanline { position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse 60% 40% at 70% 8%, var(--glow), transparent 70%); opacity: .6; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }

.kicker {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent-cy); display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px;
}
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-cy); box-shadow: 0 0 10px var(--accent-cy); }
.kicker--center { justify-content: center; }

.title { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
.lead { color: var(--muted); font-size: clamp(1rem,1.3vw,1.15rem); max-width: 62ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mono { font-family: var(--font-mono); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 500;
  font-size: 15px; padding: 13px 22px; border-radius: 12px; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s, border-color .2s; }
.btn--primary { background: var(--grad); color: #07070C; font-weight: 600; box-shadow: 0 10px 34px -12px var(--glow); }
.btn--primary:hover { transform: translateY(-2px); }
.btn--ghost { background: rgba(255,255,255,0.04); border-color: var(--border-2); color: var(--text); }
.btn--ghost:hover { background: rgba(255,255,255,0.09); border-color: var(--accent); transform: translateY(-2px); }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

a:focus-visible, button:focus-visible { outline: 2px solid var(--accent-cy); outline-offset: 3px; border-radius: 8px; }

.glass { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-lg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

/* ---------- NAV ---------- */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(7,7,12,0.6); border-bottom: 1px solid var(--border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__logo { height: 26px; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.nav__links a:hover { color: var(--text); }

/* ---------- HERO ---------- */
.hero { padding: 72px 0 84px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(2.4rem, 5.2vw, 4.2rem); margin-bottom: 22px; }
.hero__sub { color: var(--muted); font-size: clamp(1.02rem,1.35vw,1.2rem); max-width: 56ch; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__micro { margin-top: 18px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; color: var(--faint); text-transform: uppercase; }

/* ---------- HERO ROSTER (signature: a team you can hire) ---------- */
.roster { border: 1px solid var(--border-2); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  box-shadow: 0 44px 110px -50px var(--glow), 0 0 0 1px rgba(255,255,255,0.03); max-width: 460px; margin-inline: auto; }
.roster__head { display: flex; align-items: center; justify-content: space-between; padding: 13px 18px;
  border-bottom: 1px solid var(--border); background: rgba(0,0,0,0.28);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.roster__live { display: inline-flex; align-items: center; gap: 7px; color: var(--green); }
.roster__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.roster__list { display: flex; flex-direction: column; }
.rrow { display: flex; align-items: center; gap: 14px; padding: 15px 18px; border-bottom: 1px solid var(--border); }
.rrow:last-child { border-bottom: 0; }
.rrow__ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-2); font-size: 15px; }
.rrow__meta { flex: 1; min-width: 0; }
.rrow__name { font-family: var(--font-display); font-weight: 500; font-size: 14.5px; color: var(--text); }
.rrow__job { font-size: 11.5px; color: var(--faint); font-family: var(--font-mono); letter-spacing: .02em; }
.rrow__status { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--green); flex: none; }
.rrow__status i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 7px var(--green); }
.rrow__status.pulse i { animation: pulse 2.4s ease-in-out infinite; }

/* ---------- PROBLEM / JOBS ---------- */
.jobs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 44px; }
.job { padding: 24px 22px; }
.job__ico { font-size: 20px; margin-bottom: 12px; }
.job h3 { font-size: 1.02rem; margin-bottom: 8px; }
.job p { color: var(--muted); font-size: .9rem; }

/* ---------- WORKER SPOTLIGHTS (alternating) ---------- */
.worker { display: grid; grid-template-columns: 1fr 1.08fr; gap: 48px; align-items: center; margin-top: 64px; }
.worker:first-of-type { margin-top: 44px; }
.worker--flip .worker__copy { order: 2; }
.worker__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-cy); }
.worker__name { font-size: clamp(1.5rem, 2.6vw, 2rem); margin: 12px 0 6px; }
.worker__jd { color: var(--text); font-size: 1.08rem; font-weight: 500; margin-bottom: 18px; }
.worker__list { list-style: none; margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.worker__list li { font-size: .96rem; color: var(--muted); display: flex; gap: 11px; align-items: flex-start; }
.worker__list li::before { content: "→"; color: var(--accent); flex: none; }
.worker__proof { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: .04em; color: var(--muted); background: rgba(74,222,128,0.08); border: 1px solid rgba(74,222,128,0.22);
  padding: 9px 14px; border-radius: 10px; }
.worker__proof b { color: var(--green); font-weight: 400; }

/* Browser-framed shot (real screenshot or illustrative mockup) */
.shot { border: 1px solid var(--border-2); border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  box-shadow: 0 40px 100px -50px var(--glow), 0 0 0 1px rgba(255,255,255,0.03); }
.shot__bar { display: flex; align-items: center; gap: 12px; padding: 11px 15px; border-bottom: 1px solid var(--border); background: rgba(0,0,0,0.28); }
.shot__dots { display: flex; gap: 6px; }
.shot__dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.shot__url { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-family: var(--font-mono); font-size: 11px; color: var(--faint); letter-spacing: .03em; }
.shot__live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; color: var(--accent-cy); letter-spacing: .1em; text-transform: uppercase; }
.shot__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-cy); box-shadow: 0 0 8px var(--accent-cy); }
.shot__img { width: 100%; display: block; }
.shot__cap { text-align: center; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--faint); margin-top: 12px; }
.shot__cap.real { color: var(--green); }

/* Illustrative mockup body (for workers without a real screenshot yet) */
.mock { padding: 18px; display: flex; flex-direction: column; gap: 10px; min-height: 240px; }
.mockrow { display: flex; align-items: center; gap: 12px; background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px; font-size: 12.5px; color: var(--muted); }
.mockrow .tag { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .07em; padding: 3px 8px; border-radius: 6px; flex: none; text-transform: uppercase; }
.mockrow__spacer { flex: 1; }
.mockrow__meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--faint); flex: none; }
.tag.green { background: rgba(74,222,128,0.15); color: var(--green); }
.tag.blue { background: rgba(77,124,255,0.18); color: #6E9BFF; }
.tag.violet { background: rgba(155,108,255,0.18); color: #9B6CFF; }
.tag.cyan { background: rgba(56,225,255,0.14); color: var(--accent-cy); }
.tag.amber { background: rgba(245,180,80,0.16); color: #f5b450; }

/* ---------- HOW IT WORKS ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.step { padding: 30px 26px; position: relative; }
.step__n { font-family: var(--font-mono); font-size: 12px; color: var(--accent-cy); letter-spacing: .14em; }
.step h3 { font-size: 1.12rem; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* ---------- PROOF (SISS) ---------- */
.proof { max-width: 860px; margin: 0 auto; padding: 48px 44px; text-align: center; }
.proof .lead { margin-top: 16px; margin-left: auto; margin-right: auto; }

/* ---------- ROUTING CTA ---------- */
.route { text-align: center; padding: 60px 40px; position: relative; overflow: hidden; }
.route .title { margin-bottom: 12px; }
.route .lead { margin-bottom: 28px; }

/* ---------- CONTACT ---------- */
.contact { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; padding: 44px; }
.contact__actions { display: flex; flex-direction: column; gap: 12px; }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--border); padding: 44px 0 34px; }
.footer__inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer__logo { height: 24px; margin-bottom: 12px; }
.footer p { color: var(--faint); font-size: .9rem; max-width: 36ch; }
.footer__meta { margin-top: 8px; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { color: var(--muted); font-size: .9rem; }
.footer__links a:hover { color: var(--text); }
.footer__bottom { margin-top: 30px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; color: var(--faint); text-transform: uppercase; }

/* ============================================================
   ALIVE-UI — premium, minimal motion & interaction (all behind prefers-reduced-motion)
   ============================================================ */

/* Nav: condense + gain a backdrop on scroll */
.nav__inner { transition: height .28s var(--ease); }
.nav { transition: background .28s var(--ease), box-shadow .28s var(--ease); }
.nav.scrolled { background: rgba(7,7,12,0.82); box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 14px 34px -24px #000; }
.nav.scrolled .nav__inner { height: 58px; }

/* Primary button: a sheen that sweeps across on hover */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.38) 50%, transparent 70%);
  transform: translateX(-130%); }
/* Cards: cursor-tracked light + hover highlight — the glow/border work even under
   reduced-motion (a glow isn't motion); only the lift is gated below. */
@media (hover: hover) {
  .step, .plan, .rel, .faq__item, .why__item, .job, .tier {
    transition: transform .3s var(--ease), border-color .3s, background-image .25s, box-shadow .3s; }
  .step:hover, .plan:hover, .rel:hover, .faq__item:hover, .why__item:hover, .job:hover, .tier:hover {
    background-image: radial-gradient(320px circle at var(--mx, 50%) var(--my, 20%), rgba(125,165,255,0.24), transparent 60%);
    border-color: var(--accent); box-shadow: 0 26px 64px -26px var(--glow); }
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .btn--primary::after { transition: transform .6s var(--ease); }
  .btn--primary:hover::after { transform: translateX(130%); }
  .hero__visual, .hero .worker__shot { transition: transform .45s var(--ease); will-change: transform; }
  .step:hover, .plan:hover, .rel:hover, .faq__item:hover, .why__item:hover, .job:hover, .tier:hover { transform: translateY(-6px); }
}

/* ---------- REVEAL (no-motion-first) ---------- */
.reveal { opacity: 1; }
@keyframes pulse { 0%,100%{ opacity: 1; } 50%{ opacity: .35; } }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s cubic-bezier(.16,.84,.44,1), transform .75s cubic-bezier(.16,.84,.44,1); }
  .reveal.in { opacity: 1; transform: none; }
  /* staggered cascade for grid children */
  .steps > .reveal:nth-child(2), .plans > .reveal:nth-child(2), .related > .reveal:nth-child(2), .why > .reveal:nth-child(2), .jobs > .reveal:nth-child(2), .tiers > .reveal:nth-child(2) { transition-delay: .08s; }
  .steps > .reveal:nth-child(3), .plans > .reveal:nth-child(3), .related > .reveal:nth-child(3), .why > .reveal:nth-child(3), .jobs > .reveal:nth-child(3), .tiers > .reveal:nth-child(3) { transition-delay: .16s; }
  .steps > .reveal:nth-child(4), .jobs > .reveal:nth-child(4) { transition-delay: .24s; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .jobs { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0,1fr); gap: 40px; }
  .roster { max-width: 420px; order: -1; }
  .worker, .worker--flip { grid-template-columns: minmax(0,1fr); gap: 28px; }
  .worker__copy, .worker--flip .worker__copy { order: 0; }
  .worker__shot { order: 2; }
  .steps { grid-template-columns: minmax(0,1fr); }
  .contact { grid-template-columns: minmax(0,1fr); }
  .nav__links { display: none; }
  .section { padding: 72px 0; }
}
@media (max-width: 480px) {
  .hero__title { font-size: clamp(1.95rem, 8.5vw, 2.55rem); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .jobs { grid-template-columns: minmax(0,1fr); }
  .proof, .route, .contact { padding: 32px 22px; }
  .container { padding: 0 18px; }
}

/* ============================================================
   V2 — technical voice · module = pain-eyebrow → headline → copy → CTA
   ============================================================ */

/* Pain eyebrow (the problem the headline then solves) */
.pain { display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 15px; padding-left: 14px; border-left: 2px solid rgba(255,255,255,0.16); line-height: 1.55; }

/* Hero */
.hero__machine { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 12.5px; line-height: 1.75; color: var(--muted); letter-spacing: .01em; max-width: 50ch; }
.hero__machine b { color: var(--accent-cy); font-weight: 400; }

/* Worker module — technical copy body */
.worker__name { font-size: clamp(1.32rem, 2.3vw, 1.72rem); margin: 10px 0 16px; }
.worker__body { color: var(--muted); font-size: 1rem; line-height: 1.7; display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.worker__body b { color: var(--text); font-weight: 500; }
.mod__cta { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.mod__link { font-family: var(--font-display); font-size: 14px; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.mod__link:hover { color: var(--text); }

/* HOW IT WORKS */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.step { padding: 30px 26px; }
.step__n { font-family: var(--font-mono); font-size: 12px; color: var(--accent-cy); letter-spacing: .14em; }
.step h3 { font-size: 1.1rem; margin: 12px 0 8px; }
.step p { color: var(--muted); font-size: .95rem; }

/* THREE WAYS TO HIRE */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; align-items: stretch; }
.plan { padding: 32px 26px; display: flex; flex-direction: column; gap: 14px; position: relative; }
.plan--mid { border-color: rgba(155,108,255,0.4); box-shadow: 0 0 0 1px rgba(155,108,255,0.15), 0 30px 70px -40px var(--glow); }
.plan__badge { position: absolute; top: -11px; left: 26px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; background: var(--grad); color: #07070C; padding: 3px 10px; border-radius: 100px; font-weight: 700; }
.plan__tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-cy); }
.plan--mid .plan__tag { color: var(--accent-2); }
.plan__name { font-size: 1.3rem; }
.plan__terms { display: flex; gap: 8px 16px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--faint); flex-wrap: wrap; }
.plan__terms b { color: var(--text); font-weight: 400; }
.plan__desc { color: var(--muted); font-size: .95rem; flex: 1; }
.plan__price { font-family: var(--font-mono); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--muted);
  padding-top: 4px; border-top: 1px solid var(--border); }
.plan .btn { justify-content: center; margin-top: 2px; }

@media (max-width: 900px) {
  .steps { grid-template-columns: minmax(0,1fr); }
  .plans { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 480px) {
  .mod__cta { flex-direction: column; align-items: stretch; }
  .mod__cta .btn { justify-content: center; }
  .mod__link { justify-content: center; }
}

/* ---------- HERO FLOW · email → Mailroom → the agent that handles it ---------- */
.flow { border: 1px solid var(--border-2); border-radius: var(--radius-lg); overflow: hidden; max-width: 460px; margin-inline: auto;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  box-shadow: 0 44px 110px -50px var(--glow), 0 0 0 1px rgba(255,255,255,0.03); padding-bottom: 4px; }
.flow__head { display: flex; align-items: center; justify-content: space-between; padding: 12px 18px; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.28); font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--faint); }
.flow__live { display: inline-flex; align-items: center; gap: 7px; color: var(--green); }
.flow__live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

.flow__intake { display: flex; align-items: center; gap: 12px; margin: 18px 18px 0; padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--border); background: var(--bg-soft); }
.flow__mail { font-size: 18px; flex: none; }
.flow__intakeName { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--text); }
.flow__cat { font-size: 11px; color: var(--accent-cy); letter-spacing: .04em; margin-top: 1px; }

.flow__pipe { width: 1px; height: 18px; margin: 7px auto; background: linear-gradient(var(--accent-2), transparent); }

.hub { margin: 0 18px; padding: 13px 16px; border-radius: 12px; text-align: center;
  border: 1px solid rgba(155,108,255,0.45); background: rgba(155,108,255,0.07);
  box-shadow: 0 0 0 1px rgba(155,108,255,0.12), 0 20px 50px -30px var(--glow); }
.hub__name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text); }
.hub__do { display: block; font-size: 10px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; margin-top: 3px; }

.flow__branches { position: relative; margin: 15px 18px 16px; padding-left: 20px; }
.flow__branches::before { content: ""; position: absolute; left: 9px; top: 22px; bottom: 22px; width: 1px; background: var(--border-2); }
.branch { position: relative; display: flex; align-items: center; gap: 11px; padding: 10px 12px; margin-top: 8px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg-soft); transition: border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease); }
.branch:first-child { margin-top: 0; }
.branch::before { content: ""; position: absolute; left: -11px; top: 50%; width: 11px; height: 1px; background: var(--border-2); transition: background .35s, box-shadow .35s; }
.branch__tag { font-size: 9px; letter-spacing: .06em; padding: 4px 6px; border-radius: 5px; background: rgba(255,255,255,0.05); color: var(--faint);
  flex: none; width: 66px; text-align: center; transition: color .35s, background .35s; }
.branch__ico { font-size: 15px; flex: none; }
.branch__name { font-family: var(--font-display); font-weight: 500; font-size: 13.5px; color: var(--text); }
.branch__job { font-size: 10.5px; color: var(--faint); letter-spacing: .02em; margin-top: 1px; }

/* Routing (active) state — toggled by JS only when motion is allowed */
.branch.is-active { border-color: rgba(56,225,255,0.5); background: rgba(56,225,255,0.07); box-shadow: 0 0 0 1px rgba(56,225,255,0.15); }
.branch.is-active::before { background: var(--accent-cy); box-shadow: 0 0 9px var(--accent-cy); }
.branch.is-active .branch__tag { color: var(--accent-cy); background: rgba(56,225,255,0.15); }

/* ---------- RICHER FOOTER (sitewide, multi-column) ---------- */
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 34px; }
.footer__brand p { color: var(--faint); font-size: .9rem; max-width: 34ch; }
.footer__brand .footer__meta { margin-top: 8px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__h { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-cy); margin-bottom: 4px; }
.footer__col a { color: var(--muted); font-size: .92rem; }
.footer__col a:hover { color: var(--text); }
@media (max-width: 820px) { .footer__grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 28px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: minmax(0,1fr); } }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; max-width: 760px; margin: 38px auto 0; }
.faq__item { padding: 22px 24px; }
.faq__q { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; margin-bottom: 8px; }
.faq__a { color: var(--muted); font-size: .97rem; line-height: 1.65; }

/* ---------- RELATED WORKERS ---------- */
.related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.rel { padding: 24px 22px; display: block; transition: border-color .2s, transform .2s; }
.rel:hover { border-color: var(--accent); transform: translateY(-3px); }
.rel__tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-cy); }
.rel__name { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; margin: 8px 0 6px; }
.rel__desc { color: var(--muted); font-size: .9rem; }
.rel__go { display: inline-block; margin-top: 12px; font-family: var(--font-display); font-size: 13px; color: var(--muted); }
.rel:hover .rel__go { color: var(--text); }
@media (max-width: 820px) { .related { grid-template-columns: minmax(0,1fr); } }

/* ---------- WORKER-PAGE hero "at a glance" ---------- */
.glance { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 22px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); }
.glance span b { color: var(--accent-cy); font-weight: 400; margin-right: 8px; }

/* ---------- THE FLEET (/OS — agents by division) ---------- */
.fleet { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.fleet__cat { padding: 24px 22px; }
.fleet__tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-cy); }
.fleet__cat h3 { font-size: 1.05rem; margin: 8px 0 2px; }
.fleet__agents { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.fleet__agents li { font-size: .92rem; color: var(--muted); display: flex; gap: 10px; align-items: center; }
.fleet__agents li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 7px var(--glow); flex: none; }
@media (max-width: 1000px) and (min-width: 761px) { .fleet { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) { .fleet { grid-template-columns: minmax(0,1fr); } }

/* ---------- PIPELINE (an order's journey, as a flow) ---------- */
.pipe { margin-top: 42px; }
.pipe__flow { display: flex; align-items: stretch; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pipe__io { display: flex; align-items: center; padding: 14px 16px; border-radius: 12px; border: 1px dashed var(--border-2);
  color: var(--muted); font-family: var(--font-mono); font-size: 12px; letter-spacing: .03em; background: var(--bg-soft); }
.pipe__io--done { border-style: solid; border-color: rgba(74,222,128,.4); color: var(--green); }
.pipe__stage { flex: 1 1 150px; min-width: 140px; padding: 16px 15px; display: flex; flex-direction: column; gap: 6px; }
.pipe__k { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-cy); }
.pipe__stage b { font-family: var(--font-display); font-weight: 500; font-size: .98rem; color: var(--text); }
.pipe__stage span.d { font-size: .82rem; color: var(--muted); }
.pipe__arrow { display: flex; align-items: center; color: var(--accent); font-size: 18px; flex: none; }
.pipe__branch { text-align: center; margin-top: 20px; font-family: var(--font-mono); font-size: 12px; letter-spacing: .03em; color: var(--faint); }
.pipe__branch b { color: #f5b450; font-weight: 400; }
@media (max-width: 760px) {
  .pipe__flow { flex-direction: column; align-items: stretch; }
  .pipe__arrow { transform: rotate(90deg); justify-content: center; height: 22px; }
}

/* ---------- FLEET HUB (six divisions around the company brain) ---------- */
.fhub { position: relative; max-width: 800px; margin: 48px auto 0; aspect-ratio: 16 / 10; }
.fhub__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; z-index: 0; }
.fhub__svg line { stroke: var(--accent); stroke-width: 1; vector-effect: non-scaling-stroke; opacity: .4; }
.fhub__core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2;
  width: 30%; min-width: 172px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 22px;
  background: radial-gradient(circle at 50% 38%, rgba(155,108,255,.20), rgba(255,255,255,.03));
  border: 1px solid rgba(155,108,255,.5); box-shadow: 0 0 0 1px rgba(155,108,255,.14), 0 30px 80px -30px var(--glow); }
.fhub__core span { font-family: var(--font-display); font-weight: 600; font-size: 1rem; color: var(--text); }
.fhub__core small { display: block; font-size: 10.5px; color: var(--muted); margin-top: 7px; line-height: 1.4; }
.fhub__node { position: absolute; transform: translate(-50%,-50%); z-index: 2; width: 156px; padding: 12px 13px;
  border-radius: 12px; text-align: center; background: rgba(12,12,22,0.88); border: 1px solid var(--border-2); backdrop-filter: blur(8px); }
.fhub__tag { display: block; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent-cy); }
.fhub__ag { display: block; font-size: 10.5px; color: var(--faint); margin-top: 5px; line-height: 1.4; }
/* brain feed animation (packets in/out of the core; JS-driven) */
.fhub__core { transition: box-shadow .35s var(--ease), transform .35s var(--ease); }
.fhub__core.pulse { transform: translate(-50%,-50%) scale(1.045);
  box-shadow: 0 0 0 1px rgba(155,108,255,.4), 0 0 52px -6px rgba(155,108,255,.8), 0 30px 80px -30px var(--glow); }
.fhub__node { transition: border-color .3s, box-shadow .3s; }
.fhub__node.on { border-color: var(--accent-cy); box-shadow: 0 0 20px -4px rgba(56,225,255,.45); }
.fhub__packet { position: absolute; width: 9px; height: 9px; border-radius: 50%; z-index: 3; opacity: 0; pointer-events: none;
  background: var(--accent-2); box-shadow: 0 0 11px var(--accent-2), 0 0 4px #fff; }
.fhub__log { text-align: center; margin-top: 20px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em; color: var(--faint); }
.fhub__log b { color: var(--accent-cy); font-weight: 400; }

@media (max-width: 760px) {
  .fhub { position: static; aspect-ratio: auto; display: flex; flex-direction: column; gap: 10px; max-width: 420px; }
  .fhub__svg, .fhub__packet { display: none; }
  .fhub__core, .fhub__node { position: static; transform: none; width: auto; min-width: 0; aspect-ratio: auto; border-radius: 14px; }
  .fhub__core.pulse { transform: none; }
  .fhub__core { order: -1; }
}

/* ---------- LEARNING LOOP (cycle: watch → propose → approve → sharper → round again) ---------- */
.loop { position: relative; margin-top: 42px; padding-top: 36px; }
.loop__back { position: absolute; top: 0; left: 9%; right: 9%; height: 32px; border: 1px solid var(--border-2); border-bottom: none; border-radius: 14px 14px 0 0; }
.loop__back span { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--bg); padding: 0 9px;
  color: var(--accent-cy); font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; }
.loop__note { text-align: center; margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--faint); letter-spacing: .03em; }
@media (max-width: 760px) { .loop__back { display: none; } .loop { padding-top: 0; } }

/* ---------- CONVEYOR (the machine: work flows through the agents; exceptions step out to your desk) ---------- */
.conv { max-width: 880px; margin: 42px auto 0; }
.conv__scene { position: relative; height: 200px; border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--panel); overflow: hidden; }
.conv__belt { position: absolute; left: 0; right: 0; top: 78px; height: 1px;
  background: repeating-linear-gradient(90deg, var(--border-2) 0 14px, transparent 14px 26px); }
.conv__gate { position: absolute; left: 50%; top: 28px; transform: translateX(-50%); width: 132px; height: 96px;
  border-radius: 14px; border: 1px solid rgba(155,108,255,.5); background: rgba(12,12,22,0.92); display: grid; place-items: center;
  z-index: 3; box-shadow: 0 0 0 1px rgba(155,108,255,.12), 0 20px 50px -30px var(--glow); transition: box-shadow .3s; }
.conv__gate span { font-family: var(--font-mono); font-size: 10px; letter-spacing: .13em; color: var(--accent-2);
  text-transform: uppercase; text-align: center; line-height: 1.7; }
.conv__gate.busy { box-shadow: 0 0 0 1px rgba(155,108,255,.4), 0 0 34px -6px var(--glow); }
.conv__desk { position: absolute; right: 22px; bottom: 12px; width: 210px; min-height: 58px; border-radius: 12px;
  border: 1px dashed rgba(245,180,80,.5); padding: 8px 11px; z-index: 2; background: rgba(245,180,80,.04); }
.conv__desk b { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; color: #f5b450;
  text-transform: uppercase; font-weight: 400; }
.citem { position: absolute; top: 62px; display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px;
  border-radius: 9px; background: var(--bg-soft); border: 1px solid var(--border-2); font-size: 11.5px; color: var(--muted);
  white-space: nowrap; z-index: 1; }
.citem .ok { color: var(--green); font-weight: 600; }
.conv__meta { display: flex; justify-content: center; gap: 30px; margin-top: 14px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); }
.conv__meta b { color: var(--green); font-weight: 400; }
.conv__meta b.amb { color: #f5b450; }
@media (max-width: 620px) { .conv__desk { width: 150px; } .citem { font-size: 10.5px; } }

/* ---------- THE WEB (/OS — spiderweb replica of the real agent routing) ---------- */
.web { position: relative; height: 420px; max-width: 1000px; margin: 42px auto 0;
  border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--panel); overflow: hidden; }
.web__svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.web__svg line { stroke: var(--accent); stroke-width: 1; opacity: .3; }
.web__node { position: absolute; transform: translate(-50%,-50%); z-index: 2; text-align: center;
  background: rgba(12,12,22,0.92); border: 1px solid var(--border-2); border-radius: 12px; padding: 10px 14px;
  transition: border-color .3s, box-shadow .3s; max-width: 168px; }
.web__node b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--text); white-space: nowrap; }
.web__node i { display: block; font-style: normal; font-family: var(--font-mono); font-size: 9px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--faint); margin-top: 3px; }
.web__node--in { border-style: dashed; }
.web__node--hub { border-color: rgba(155,108,255,.55); box-shadow: 0 0 0 1px rgba(155,108,255,.14), 0 18px 44px -26px var(--glow); }
.web__node.on { border-color: var(--accent-cy); box-shadow: 0 0 0 1px rgba(56,225,255,.25), 0 0 26px -4px rgba(56,225,255,.35); }
.web__packet { position: absolute; width: 10px; height: 10px; border-radius: 50%; z-index: 4; pointer-events: none;
  opacity: 0; background: var(--accent-cy); box-shadow: 0 0 12px var(--accent-cy), 0 0 4px #fff; }
.web__log { position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%); z-index: 3; white-space: nowrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em; color: var(--muted); }
.web__log b { color: var(--green); font-weight: 400; }
/* desktop node positions (the web) */
@media (min-width: 721px) {
  .web [data-id="email"]    { left: 9%;  top: 46%; }
  .web [data-id="mailroom"] { left: 30%; top: 46%; }
  .web [data-id="orders"]   { left: 60%; top: 12%; }
  .web [data-id="tech"]     { left: 63%; top: 36%; }
  .web [data-id="front"]    { left: 60%; top: 61%; }
  .web [data-id="supinv"]   { left: 56%; top: 86%; }
  .web [data-id="ledger"]   { left: 76%; top: 68%; }
  .web [data-id="treasury"] { left: 90%; top: 87%; }
}
@media (max-width: 720px) {
  .web { height: auto; padding: 18px 16px 44px; display: flex; flex-direction: column; gap: 9px; align-items: stretch; }
  .web__svg, .web__packet { display: none; }
  .web__node { position: static; transform: none; max-width: none; }
}

/* ---------- LIGHT GLYPHS (homepage how-it-works + pillars) ---------- */
.grow__viz { height: 44px; display: flex; align-items: center; justify-content: flex-start; gap: 7px; margin-bottom: 16px; }
.gdot { width: 11px; height: 11px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--glow); }
.gring { width: 32px; height: 32px; border: 1.5px dashed var(--border-2); border-radius: 50%; display: grid; place-items: center; }
.gcore { width: 22px; height: 22px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 14px var(--glow); }
.pillar__ico { width: 32px; height: 32px; color: var(--accent-cy); margin-bottom: 14px; display: block; }

/* The routed packet — travels the spine from the Mailroom into the agent that handles it (JS-driven) */
.flow__packet { position: absolute; left: 5px; top: 0; width: 9px; height: 9px; border-radius: 50%; z-index: 2; pointer-events: none;
  opacity: 0; background: var(--accent-cy); box-shadow: 0 0 10px var(--accent-cy), 0 0 3px #fff; }

@media (max-width: 900px) { .flow { max-width: 420px; } }

/* ══════════════════════════════════════════════════════════════════
   WORKING ILLUSTRATIONS — worker story scenes (machine/matcher/support feed/recovery run/brain)
   Thin-line SVG scenes that visibly work. All animations share the scene
   cycle, run only while [data-scene].run (observer in site.js), and fall
   back to a completed static storyboard under prefers-reduced-motion.
   ══════════════════════════════════════════════════════════════════ */

.scene { position: relative; contain: layout paint; }
.scene svg { width: 100%; height: auto; display: block; }
.scene svg text { font-family: 'Space Mono', monospace; }
.scene [class^="an-"], .scene [class*=" an-"] { animation-play-state: paused; }
.scene.run [class^="an-"], .scene.run [class*=" an-"] { animation-play-state: running; }

/* scene line vocabulary */
.sl        { stroke: rgba(165,165,205,.52); stroke-width: 1.3; fill: none; vector-effect: non-scaling-stroke; }
.sl--dash  { stroke-dasharray: 5 6; }
.sl--blue  { stroke: rgba(110,155,255,.75); }
.sl--cyan  { stroke: rgba(56,225,255,.8); }
.sl--violet{ stroke: rgba(155,108,255,.75); }
.sl--amber { stroke: rgba(245,180,80,.85); }
.sl--green { stroke: rgba(74,222,128,.85); }
.sfill--panel { fill: rgba(255,255,255,.03); }
.stxt      { fill: #9A9AB2; font-size: 10px; letter-spacing: .14em; }
.stxt--dim { fill: #6E6E88; font-size: 9px; }
.stxt--cyan{ fill: #38E1FF; }
.stxt--amber{ fill: #f5b450; }
.stxt--green{ fill: #4ade80; }

/* the judgement-calls tray — shared motif across every scene */
.jtray rect { stroke: rgba(245,180,80,.75); stroke-dasharray: 6 6; fill: rgba(245,180,80,.05); }

/* ── The Mailroom plant ─────────────────────────────────────────── */
.plant-wrap { border: 1px solid rgba(155,108,255,.16); border-radius: var(--radius-lg); background: #0B0B1E; padding: 0 0 10px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.5), inset 0 0 120px rgba(58,37,71,.25); }
.plant-wrap .stagebar, .plant-wrap .scenelog { padding-left: 26px; padding-right: 26px; }
.plant-svg { aspect-ratio: 1000 / 420; }
/* belt crawl */
.an-belt { stroke-dasharray: 7 9; animation: beltmove 1.6s linear infinite; }
@keyframes beltmove { to { stroke-dashoffset: -16; } }
/* loop marker: invisible driver whose animationiteration rotates the microlog */
.loopmark { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; animation: loopmark 12s linear infinite paused; }
.scene.run .loopmark { animation-play-state: running; }
@keyframes loopmark { to { opacity: 0; } }

/* stage labels under the plant */
.stagebar { display: flex; justify-content: space-between; gap: 10px; padding: 18px 8px 14px; }
.stagebar span { font-family: 'Space Mono', monospace; font-size: 13px; letter-spacing: .18em; color: var(--muted); opacity: .4; position: relative; white-space: nowrap; }
.stagebar span b { color: var(--accent-cy); font-weight: 400; margin-right: 6px; }
.stagebar span::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--accent-cy); opacity: 0; box-shadow: 0 0 12px rgba(56,225,255,.8); }
.stagebar span.on { opacity: 1; }
.stagebar span.on::after { opacity: 1; }

/* microlog under scenes */
.scenelog { font-family: 'Space Mono', monospace; font-size: 11.5px; letter-spacing: .08em; color: var(--faint); padding: 0 8px 6px; transition: opacity .25s ease; min-height: 18px; }
.scenelog b { color: var(--accent-cy); font-weight: 400; }

/* ── Order Desk matcher strip ───────────────────────────────────── */
.matcher-svg { aspect-ratio: 640 / 170; margin-bottom: 10px; }
.an-mline1 { animation: mline1 7s linear infinite; }
.an-mline2 { animation: mline2 7s linear infinite; }
.an-mline3 { animation: mline3 7s linear infinite; }
@keyframes mline1 { 0% {transform:translate(0,0); opacity:0;} 6% {opacity:1;} 26%,30% {transform:translate(196px,0);} 44%,100% {transform:translate(196px,0); opacity:1;} }
@keyframes mline2 { 0%,10% {transform:translate(0,0); opacity:0;} 16% {opacity:1;} 36%,40% {transform:translate(196px,0);} 54%,100% {transform:translate(196px,0); opacity:1;} }
@keyframes mline3 { 0%,20% {transform:translate(0,0); opacity:0;} 26% {opacity:1;} 46%,50% {transform:translate(196px,0);} 58% {transform:translate(196px,14px);} 70%,100% {transform:translate(196px,46px); opacity:.55;} }
.an-msku1 { opacity:0; animation: msku1 7s cubic-bezier(.34,1.56,.64,1) infinite; }
@keyframes msku1 { 0%,30% {opacity:0; transform:scale(.7);} 34%,100% {opacity:1; transform:scale(1);} }
.an-msku2 { opacity:0; animation: msku2 7s cubic-bezier(.34,1.56,.64,1) infinite; }
@keyframes msku2 { 0%,40% {opacity:0; transform:scale(.7);} 44%,100% {opacity:1; transform:scale(1);} }
.an-mhold { opacity:0; animation: mhold 7s ease infinite; }
@keyframes mhold { 0%,56% {opacity:0;} 62%,100% {opacity:1;} }
.an-mgate { transform-box: fill-box; transform-origin: center; animation: mgate 7s ease infinite; }
@keyframes mgate { 0%,24% {transform:scale(1);} 27% {transform:scale(1.12);} 30%,34% {transform:scale(1);} 37% {transform:scale(1.12);} 40%,44% {transform:scale(1);} 47% {transform:scale(1.12);} 50%,100% {transform:scale(1);} }

/* ── Credit Control recovery run (canvas) ───────────────────────── */
.ledger-svg { aspect-ratio: 1000 / 300; }

/* ── Safety + proof bands ───────────────────────────────────────── */
.safety { max-width: 640px; margin: 0 auto; text-align: center; padding: 26px 0 4px; }
.safety .jtray-solo { width: 220px; margin: 0 auto 22px; }
.safety h3 { font-family: var(--font-display, 'Space Grotesk'), sans-serif; font-size: clamp(22px, 3vw, 30px); margin: 0 0 12px; }
.safety p { color: var(--muted); line-height: 1.7; }
.proofband { border: 1px solid rgba(74,222,128,.28); background: linear-gradient(180deg, rgba(74,222,128,.06), rgba(74,222,128,.015)); border-radius: var(--radius-lg); padding: 44px 34px; text-align: center; }
.proofband .title { margin-bottom: 10px; }
.proofstats { display: flex; justify-content: center; gap: 54px; margin-top: 28px; flex-wrap: wrap; }
.proofstat { text-align: center; }
.proofstat b { display: block; font-family: 'Space Mono', monospace; font-size: 30px; color: #4ade80; font-weight: 400; }
.proofstat span { font-size: 13px; color: var(--muted); letter-spacing: .04em; }

/* worker layout when the scene is full-bleed (Mailroom / Credit) */
.worker--wide { display: block; }
.worker--wide .worker__copy { max-width: none; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 46px; margin-top: 26px; }
.worker--wide .worker__copy .pain,
.worker--wide .worker__copy .worker__name { grid-column: 1 / -1; }
.worker--wide .mod__cta { grid-column: 1 / -1; }

/* ── Mobile + reduced motion ────────────────────────────────────── */
.scene svg.plant-svg--mobile, .scene svg.ledger-svg--mobile { display: none; }
@media (max-width: 719px) {
  .scene svg.plant-svg, .scene svg.ledger-svg { display: none; }
  .scene svg.plant-svg--mobile { display: block; aspect-ratio: 340 / 520; max-width: 340px; margin: 0 auto; }
  .scene svg.ledger-svg--mobile { display: block; aspect-ratio: 340 / 470; max-width: 340px; margin: 0 auto; }
  .stagebar { flex-direction: column; gap: 8px; align-items: flex-start; }
  .worker--wide .worker__copy { grid-template-columns: minmax(0,1fr); }
  .proofstats { gap: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .scene [class^="an-"], .scene [class*=" an-"], .stagebar span, .stagebar span::after, .loopmark { animation: none !important; }
  /* completed storyboard: everything visible in its end state */
  .an-msku1, .an-msku2, .an-mhold, .an-mline1, .an-mline2 { opacity: 1 !important; }
  .an-mline1 { transform: translate(196px,0); } .an-mline2 { transform: translate(196px,0); }
  .an-mline3 { transform: translate(196px,46px); opacity: 1 !important; }
  .stagebar span { opacity: 1; }
}

/* ── plant v2: hero mail + machine life ── */
.mail rect { stroke-width: 1.6; }
.mail--blue rect { stroke: rgba(110,155,255,.9); fill: rgba(110,155,255,.10); }
.mail--blue .flap { stroke: rgba(110,155,255,.9); fill: none; stroke-width: 1.6; }
.mail--cyan rect { stroke: rgba(56,225,255,.75); fill: rgba(56,225,255,.07); }
.mail--cyan .flap { stroke: rgba(56,225,255,.75); fill: none; stroke-width: 1.6; }
.mail--amber rect { stroke: rgba(245,180,80,.9); fill: rgba(245,180,80,.10); }
.mail--amber .flap { stroke: rgba(245,180,80,.9); fill: none; stroke-width: 1.6; }
.led { fill: rgba(74,222,128,.9); opacity: .25; }
.scene.run .led1 { animation: ledblink 2.1s ease-in-out infinite; }
.scene.run .led2 { animation: ledblink 2.1s ease-in-out .7s infinite; }
.scene.run .led3 { animation: ledblink 2.1s ease-in-out 1.4s infinite; }
@keyframes ledblink { 0%,100% { opacity: .25; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .scene.run .led1, .scene.run .led2, .scene.run .led3 { animation: none; opacity: .6; } }

/* ── Meet The Mailroom (resend-style intro: monochrome + amber only) ── */
.mrm { background: #050506; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.mrm__icon { display: flex; justify-content: center; margin-bottom: 26px; }
.mrm__icon svg { filter: drop-shadow(0 24px 48px rgba(0,0,0,.7)) drop-shadow(0 6px 30px rgba(155,108,255,.14)); animation: mrmfloat 7s ease-in-out infinite; }
@keyframes mrmfloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.mrm__title { margin-bottom: 14px; }
.mrm__amber { background: linear-gradient(100deg, #ECECF4 -10%, #B99CFF 45%, #9B6CFF 90%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.mrm__tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 34px 0 18px; }
.mrm__tab { font: 500 14px var(--font-body, 'Inter'); color: var(--muted); background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09); border-radius: 12px; padding: 10px 16px; cursor: pointer; transition: all .2s ease; }
.mrm__tab:hover { color: var(--text); border-color: rgba(255,255,255,.2); }
.mrm__tab.is-on { color: #B99CFF; background: rgba(155,108,255,.08); border-color: rgba(155,108,255,.45); }
.mrm__panel { display: grid; grid-template-columns: 1fr 44px 1.15fr; align-items: stretch; padding: 26px 28px; gap: 4px; min-height: 300px; }
.mrm__mailhead { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.mrm__lbl { font-family: 'Space Mono', monospace; font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.mrm__time { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--faint); }
.mrm__from { color: var(--muted); font-size: 13.5px; margin: 0 0 6px; }
.mrm__subject { color: var(--text); font-weight: 600; font-size: 16px; margin: 0 0 12px; }
.mrm__body { color: var(--muted); font-size: 14px; line-height: 1.65; white-space: pre-line; }
.mrm__arrow { display: flex; align-items: center; justify-content: center; color: #9B6CFF; font-size: 22px; opacity: .7; }
.mrm__verdict { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .1em; padding: 4px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.16); color: var(--text); }
.mrm__verdict.amber { border-color: rgba(245,166,35,.5); color: #F5C06B; background: rgba(245,166,35,.07); }
.mrm__steps { list-style: none; margin: 0 0 16px; padding: 0; }
.mrm__steps li { color: var(--muted); font-size: 13.5px; line-height: 1.5; padding: 5px 0 5px 22px; position: relative; }
.mrm__steps li::before { content: '✓'; position: absolute; left: 0; color: #7a7a86; font-size: 12px; }
.mrm__steps li.amber::before { content: '⚑'; color: #F5A623; }
.mrm__reply { border-top: 1px solid rgba(255,255,255,.07); padding-top: 14px; }
.mrm__replytext { color: var(--text); font-size: 13.5px; line-height: 1.65; white-space: pre-line; margin: 10px 0 0; opacity: .92; }
.mrm__foot { text-align: center; color: var(--faint); font-size: 13.5px; margin-top: 22px; }
@media (max-width: 860px) {
  .mrm__panel { grid-template-columns: minmax(0,1fr); }
  .mrm__arrow { transform: rotate(90deg); padding: 6px 0; }
}

/* ── premium-clean layer (resend UX manners, SJG identity — Sam 2026-07-03) ── */
.scanline { display: none; }
.nav { background: rgba(7,7,12,.78); border-bottom: 1px solid rgba(255,255,255,.05); }
.hero__visual--icon { display: flex; align-items: center; justify-content: center; }
.hero__render { width: min(420px, 80%); height: auto; filter: drop-shadow(0 40px 90px rgba(0,0,0,.8)) drop-shadow(0 10px 50px rgba(155,108,255,.2)); animation: mrmfloat 7s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero__render { animation: none; } }
.plant-wrap { background: #0A0A0B; border-color: rgba(255,255,255,.07); }

/* ── The Company Brain: the filing cabinet ── */
.brain-wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: center; margin-top: 26px; }
.brain-svg { width: 100%; height: auto; }
.brain-points p { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin: 0 0 16px; }
.brain-points b { color: var(--text); }
.bled { fill: #38E1FF; opacity: 0; }
.bfact, .bans, #drawCust { transform-box: fill-box; }
/* one 14s story: file the card → drawer blinks → question → the card comes back out */
.bfact { transform: translate(40px, 88px); opacity: 0; }
.scene.run .bfact { animation: bfact 14s ease-in-out infinite; }
@keyframes bfact {
  0%      { transform: translate(40px, 88px) scale(1); opacity: 0; }
  4%      { opacity: 1; }
  20%     { transform: translate(420px, 122px) scale(1); opacity: 1; }
  27%     { transform: translate(566px, 138px) scale(.42); opacity: 1; }
  30%,100%{ transform: translate(566px, 138px) scale(.35); opacity: 0; }
}
.scene.run #drawCust { animation: bdrawer 14s ease-in-out infinite; }
@keyframes bdrawer {
  0%,22%  { transform: translate(0, 0); }
  26%,30% { transform: translate(18px, 0); }
  34%     { transform: translate(0, 0); }
  50%,54% { transform: translate(0, 0); }
  58%,64% { transform: translate(18px, 0); }
  70%,100%{ transform: translate(0, 0); }
}
.scene.run .bled { animation: bled 14s linear infinite; }
@keyframes bled { 0%,30% {opacity:0;} 33%,36% {opacity:1;} 39%,55% {opacity:0;} 58%,70% {opacity:1;} 73%,100% {opacity:0;} }
.bask { opacity: 0; }
.scene.run .bask { animation: bask 14s ease infinite; }
@keyframes bask { 0%,40% {opacity:0;} 48%,94% {opacity:1;} 100% {opacity:0;} }
.bans { transform: translate(566px, 158px) scale(.35); opacity: 0; }
.scene.run .bans { animation: bans 14s ease-in-out infinite; }
@keyframes bans {
  0%,58%  { transform: translate(566px, 158px) scale(.35); opacity: 0; }
  62%     { transform: translate(566px, 158px) scale(.5); opacity: 1; }
  74%,92% { transform: translate(400px, 340px) scale(1); opacity: 1; }
  98%,100%{ opacity: 0; }
}
@media (max-width: 860px) { .brain-wrap { grid-template-columns: minmax(0,1fr); } }
@media (prefers-reduced-motion: reduce) {
  .bfact { opacity: 0; }
  .bask { opacity: 1; }
  .bans { transform: translate(400px, 340px) scale(1); opacity: 1; }
}

/* ── Support: the conversation, verbatim ── */
.supfeed { display: flex; flex-direction: column; gap: 10px; padding: 8px 4px; }
.sup { max-width: 88%; border-radius: 14px; padding: 12px 16px; font-size: 13.5px; line-height: 1.5; color: var(--text); opacity: 0; }
.sup__meta { display: block; font-family: 'Space Mono', monospace; font-size: 9.5px; letter-spacing: .14em; color: var(--faint); margin-bottom: 5px; }
.sup--q { align-self: flex-start; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); }
.sup--a { align-self: flex-end; background: rgba(56,225,255,.05); border: 1px solid rgba(56,225,255,.28); }
.sup--a .sup__meta { color: #38E1FF; }
.sup--hold { align-self: flex-end; background: rgba(245,180,80,.06); border: 1px dashed rgba(245,180,80,.55); }
.sup--hold .sup__meta { color: #f5b450; }
.sup--act { align-self: flex-end; background: rgba(155,108,255,.06); border: 1px solid rgba(155,108,255,.4); }
.sup--act .sup__meta { color: #9B6CFF; }
.sup--act b { color: #B99CFF; }
.scene.run .sup { animation: supin 17s ease infinite; }
.scene.run .s1 { animation-delay: 0s; } .scene.run .s2 { animation-delay: .9s; }
.scene.run .s3 { animation-delay: 2.4s; } .scene.run .s4 { animation-delay: 3.3s; }
.scene.run .s5 { animation-delay: 5.0s; } .scene.run .s6 { animation-delay: 6.0s; }
.scene.run .s7 { animation-delay: 7.6s; } .scene.run .s8 { animation-delay: 9.2s; }
@keyframes supin { 0% { opacity: 0; transform: translateY(10px); } 3%, 88% { opacity: 1; transform: translateY(0); } 95%, 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .sup { opacity: 1 !important; animation: none !important; } }

/* ── Credit Control: the recovery run ── */
.cc-ch, .cc-ret, .cc-paid, .cc-disp, .cc-tot { opacity: 0; }
.scene.run .cc-ch1 { animation: ccch1 15s ease-in-out infinite; }
.scene.run .cc-ch2 { animation: ccch2 15s ease-in-out infinite; }
.scene.run .cc-ch3 { animation: ccch3 15s ease-in-out infinite; }
.scene.run .cc-ret1 { animation: ccret1 15s ease-in-out infinite; }
.scene.run .cc-ret2 { animation: ccret2 15s ease-in-out infinite; }
.scene.run .cc-paid1 { animation: ccpop 15s ease infinite; animation-delay: 0s; }
.scene.run .cc-paid2 { animation: ccpop2 15s ease infinite; }
.scene.run .cc-disp { animation: ccdisp 15s ease infinite; }
.scene.run .cc-tot0 { animation: cctot0 15s linear infinite; opacity: 1; }
.scene.run .cc-tot1 { animation: cctot1 15s linear infinite; }
.scene.run .cc-tot2 { animation: cctot2 15s linear infinite; }
@keyframes ccch1 { 0% {opacity:0; transform:translate(250px,95px);} 3% {opacity:1;} 14% {opacity:1; transform:translate(668px,52px);} 17%,100% {opacity:0; transform:translate(668px,52px);} }
@keyframes ccch2 { 0%,8% {opacity:0; transform:translate(250px,140px);} 11% {opacity:1;} 22% {opacity:1; transform:translate(668px,140px);} 25%,100% {opacity:0;} }
@keyframes ccch3 { 0%,16% {opacity:0; transform:translate(250px,185px);} 19% {opacity:1;} 30% {opacity:1; transform:translate(668px,226px);} 33%,100% {opacity:0;} }
@keyframes ccret1 { 0%,24% {opacity:0; transform:translate(690px,50px);} 27% {opacity:1;} 40% {opacity:1; transform:translate(160px,100px);} 43%,100% {opacity:0;} }
@keyframes ccret2 { 0%,48% {opacity:0; transform:translate(690px,136px);} 51% {opacity:1;} 64% {opacity:1; transform:translate(152px,100px);} 67%,100% {opacity:0;} }
@keyframes ccpop { 0%,40% {opacity:0; transform:translate(848px,40px) rotate(-5deg) scale(.6);} 44%,96% {opacity:1; transform:translate(848px,40px) rotate(-5deg) scale(1);} 100% {opacity:0;} }
@keyframes ccpop2 { 0%,64% {opacity:0; transform:translate(848px,126px) rotate(-5deg) scale(.6);} 68%,96% {opacity:1; transform:translate(848px,126px) rotate(-5deg) scale(1);} 100% {opacity:0;} }
@keyframes ccdisp { 0%,34% {opacity:0;} 40%,96% {opacity:1;} 100% {opacity:0;} }
@keyframes cctot0 { 0%,40% {opacity:1;} 42%,100% {opacity:0;} }
@keyframes cctot1 { 0%,42% {opacity:0;} 44%,66% {opacity:1;} 68%,100% {opacity:0;} }
@keyframes cctot2 { 0%,68% {opacity:0;} 70%,97% {opacity:1;} 100% {opacity:0;} }
@media (prefers-reduced-motion: reduce) {
  .cc-paid, .cc-disp, .cc-tot2 { opacity: 1 !important; animation: none !important; }
  .cc-ch, .cc-ret, .cc-tot0, .cc-tot1 { opacity: 0 !important; animation: none !important; }
}

/* ── border beam — a colour line flowing round the box (Resend ref, Sam 2026-07-04) ── */
@property --beam-angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
.beam { position: relative; }
.beam::after {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius-lg); pointer-events: none;
  background: conic-gradient(from var(--beam-angle),
    transparent 0deg 300deg, rgba(56,225,255,.45) 330deg, rgba(155,108,255,.95) 352deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  padding: 1px;
  animation: beamspin 8s linear infinite;
}
.steps .beam:nth-of-type(2)::after { animation-delay: -2.7s; }
.steps .beam:nth-of-type(3)::after { animation-delay: -5.4s; }
@keyframes beamspin { to { --beam-angle: 360deg; } }
@media (prefers-reduced-motion: reduce) {
  .beam::after { animation: none; background: conic-gradient(from 210deg, transparent 0deg 300deg, rgba(56,225,255,.25) 330deg, rgba(155,108,255,.45) 352deg, transparent 360deg); }
}

/* ── 3D worker icons (v11 FLOATING: true-alpha renders, faint baked halo) ──
   loops are alpha video (site.js picks HEVC for Safari / WebM elsewhere) and
   all stills/posters are alpha PNGs — the hero sits straight on the page.
   NB mix-blend-mode is NOT the answer here: Chrome won't blend <video> layers. */
.wicon { width: 112px; height: 112px; display: block; margin-bottom: 14px; }
.wicon--center { margin-left: auto; margin-right: auto; }

/* ── the hero live canvas — the AI team at work (premium: hairlines, tiles, whisper grid) ── */
.hcanvas { position: relative; width: min(600px, 100%); aspect-ratio: 600 / 640; margin: 0 auto;
  background-image: radial-gradient(rgba(155,155,205,.10) 1px, transparent 1px);
  background-size: 26px 26px; }
.hcanvas__lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.hcl { fill: none; stroke: url(#hcl); stroke-width: 1.2; vector-effect: non-scaling-stroke; }
.hcl--amber { stroke: rgba(245,180,80,.5); stroke-dasharray: 5 6; }
.hcl--dim { stroke: rgba(155,108,255,.18); stroke-dasharray: 3 6; }
.hcanvas__count { position: absolute; top: 2%; left: 2%; font-size: 10px; letter-spacing: .16em; color: var(--faint); }  /* top-left: the brain label owns the top-centre now */
.hcanvas__count b { color: #4ade80; font-weight: 400; }
.hcanvas__chip { position: absolute; font: 500 11px var(--font-body, 'Inter'); color: var(--text);
  background: rgba(20,20,30,.72); border: 1px solid rgba(155,108,255,.4); border-radius: 999px;
  padding: 6px 12px; backdrop-filter: blur(6px); white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0,0,0,.5); z-index: 3; }
/* the agents are the HERO of the canvas (Sam 2026-07-05) — biggest thing on it */
.hcanvas__tile { position: absolute; margin: 0; width: 112px; z-index: 2; }
.hcanvas__tile img { display: block; width: 112px; height: 112px;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.55)); }
.hcanvas__tile figcaption { font-family: 'Space Mono', monospace; font-size: 8px; letter-spacing: .14em;
  color: var(--muted); margin-top: 7px; white-space: nowrap; }
.hcanvas__tile figcaption span { display: block; font-size: 8px; color: var(--faint); letter-spacing: .06em; margin-top: 2px; }
.hcanvas__tile figcaption span.ok { color: #4ade80; }
.hcanvas__tile--brain figcaption span { color: #9B6CFF; }
.hcanvas__tray { position: absolute; left: 57%; top: 86%; width: 40%; border: 1px dashed rgba(245,180,80,.6);
  border-radius: 10px; padding: 8px 12px; background: rgba(245,180,80,.04); }
.hcanvas__tray b { display: block; font: 400 9px 'Space Mono', monospace; letter-spacing: .16em; color: #f5b450; }
.hcanvas__tray span { font: 400 8.5px 'Space Mono', monospace; letter-spacing: .06em; color: var(--faint); white-space: nowrap; }
@media (max-width: 980px) {
  /* the mobile canvas is ~354px wide — hero sizes must shrink or the brain lands on
     the worker row; extra aspect height buys the caption tiers room */
  .hcanvas { aspect-ratio: 600 / 700; }
  /* figure-qualified: must out-rank the later desktop 112/128px rules */
  figure.hcanvas__tile { width: 72px; }
  figure.hcanvas__tile img, figure.hcanvas__tile .wicon { width: 72px; height: 72px; }
  figure.hcanvas__tile--brain { width: 76px; }
  figure.hcanvas__tile--brain .wicon { width: 76px; height: 76px; } }

/* hcanvas v2: brain above · workers in the flow · tools per worker · one tray */
.hcl--brain { stroke: rgba(155,108,255,.30); stroke-dasharray: 2 5; }
.hcl--claims { stroke: rgba(56,225,255,.4); }
.hcl--amber { stroke: rgba(245,180,80,.28); }
.hcanvas__tile .tools { color: var(--faint); opacity: .85; letter-spacing: .04em; }
.hcanvas__tile--brain { text-align: center; display: flex; flex-direction: column-reverse; }  /* label ABOVE the brain */
.hcanvas__tile--brain figcaption { margin-top: 0; margin-bottom: 9px; }
.hcanvas__tile--brain video, .hcanvas__tile--brain img { margin: 0 auto; }
.hcanvas__tile--brain figcaption span { color: #9B6CFF; }
.hcanvas__tile .wicon { width: 112px; height: 112px; margin-bottom: 0;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.55)); }
.hcanvas__tile--brain .wicon { width: 128px; height: 128px; }
.hcanvas__tile--brain { width: 128px; }
.hcanvas__tray { left: 18%; top: 82%; width: 44%; }
.hcanvas__out { position: absolute; left: 69%; top: 84%; font-size: 9px; letter-spacing: .08em; color: #4ade80; white-space: nowrap; }

/* hcanvas v3: animation-only routes */
.hcl--ghost { opacity: 0; }
/* the tools live in a tooltip — the illustration does the talking (Sam 2026-07-05):
   hover a worker to see what it works with; the loop flashes it when the worker acts */
.hctip { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); margin-top: 10px;
  font: 400 8px 'Space Mono', monospace; letter-spacing: .08em; color: var(--muted);
  border: 1px solid rgba(155,108,255,.28); border-radius: 8px; padding: 4px 9px;
  background: rgba(20,20,30,.85); white-space: nowrap; opacity: 0; pointer-events: none;
  transition: opacity .25s ease; z-index: 4; }
@media (hover: hover) { .hcanvas__tile:hover .hctip { opacity: 1; } }

.hcl--learn { stroke: rgba(155,108,255,.15); stroke-dasharray: 3 6; }

/* ── the switchboard (#cando) — "what can it do for you?" plain verbs per function ── */
.swb__grid { display: grid; grid-template-columns: 290px minmax(0,1fr); gap: 22px; margin-top: 34px; align-items: stretch; }
.swb__rail { display: flex; flex-direction: column; gap: 10px; }
.swb__tile { display: flex; align-items: center; gap: 14px; text-align: left; padding: 10px 14px;
  font-family: inherit; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; cursor: pointer; position: relative;
  transition: border-color .2s ease, background .2s ease; }
.swb__tile:hover { border-color: rgba(255,255,255,.2); }
.swb__tile.is-on { background: rgba(155,108,255,.06); border-color: rgba(155,108,255,.3); }
.swb__tile.is-on::after {  /* the border beam moves to the live function */
  content: ''; position: absolute; inset: -1px; border-radius: 16px; pointer-events: none;
  background: conic-gradient(from var(--beam-angle),
    transparent 0deg 300deg, rgba(56,225,255,.45) 330deg, rgba(155,108,255,.95) 352deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  padding: 1px; animation: beamspin 8s linear infinite; }
.swb__ticon { width: 48px; height: 48px; border-radius: 12px; display: block; flex: 0 0 48px; }
.swb__twrap { display: block; min-width: 0; }
.swb__word { display: block; font-size: 16px; font-weight: 600; color: var(--text); }
.swb__name { display: block; font-size: 9.5px; letter-spacing: .14em; color: var(--muted); margin-top: 2px; }
.swb__panel { padding: 26px 30px 20px; display: flex; flex-direction: column; }
.swb__phead { display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  border-bottom: 1px solid var(--border); padding-bottom: 12px; }
.swb__pfn { font-size: 12px; letter-spacing: .22em; color: var(--accent-vi, #9B6CFF); }
.swb__pname { font-size: 13px; color: var(--muted); }
.swb__lines { list-style: none; margin: 18px 0 0; padding: 0; flex: 1;
  display: flex; flex-direction: column; gap: 13px; justify-content: center; }
.swb__lines li { font-size: 16.5px; line-height: 1.45; color: var(--text);
  display: flex; gap: 12px; align-items: baseline;
  opacity: 0; transform: translateY(6px); transition: opacity .4s ease, transform .4s ease; }
.swb__lines li.in { opacity: 1; transform: none; }
.swb__lines li::before { content: '✓'; color: #9B6CFF; flex: 0 0 auto; }
.swb__ld { font-size: 8px; color: #4ade80; align-self: center; opacity: .8; }
.swb__foot { margin: 22px 0 0; border-top: 1px solid var(--border); padding-top: 14px;
  font-size: 10.5px; letter-spacing: .1em; color: var(--muted); }
.swb__foot b { color: var(--text); font-weight: 700; }
@media (max-width: 860px) {
  .swb__grid { grid-template-columns: minmax(0,1fr); }
  .swb__rail { flex-direction: row; overflow-x: auto; padding-bottom: 6px;
    scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .swb__rail::-webkit-scrollbar { display: none; }
  .swb__tile { flex: 0 0 auto; }
  .swb__name { display: none; }
  .swb__panel { min-height: 320px; }
}
@media (prefers-reduced-motion: reduce) {
  .swb__lines li { transition: none; opacity: 1; transform: none; }
  .swb__tile.is-on::after { animation: none; }
}

/* ── who it's for (#whofor) — "Recognise your Monday?" identification beat ── */
.wf__grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.15fr); gap: 46px; align-items: center; }
.wf__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.wf__chip { font: 500 13.5px var(--font-body, 'Inter'); color: var(--text);
  border: 1px solid rgba(155,108,255,.3); background: rgba(155,108,255,.06);
  border-radius: 999px; padding: 8px 15px; }
.wf__not { margin-top: 20px; font-size: 14px; line-height: 1.55; color: var(--faint); max-width: 420px; }
.wf__inbox { padding: 10px 22px 0; }
.wf__ihead { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: .16em;
  color: var(--faint); padding: 12px 2px; border-bottom: 1px solid var(--border); }
.wf__row { display: flex; align-items: baseline; gap: 12px; padding: 0 6px;
  border-bottom: 1px solid transparent; border-radius: 8px; overflow: hidden;
  max-height: 0; opacity: 0; transform: translateY(-10px);
  transition: max-height .45s ease, padding .45s ease, opacity .45s ease .12s,
              transform .5s cubic-bezier(.2,.9,.3,1.2) .08s, border-bottom-color .45s ease; }
.wf__row.land { max-height: 64px; padding: 13px 6px; opacity: 1; transform: none;
  border-bottom-color: rgba(255,255,255,.05); animation: wfarrive 1.1s ease-out; }
@keyframes wfarrive { 0% { background: rgba(155,108,255,.14); } 100% { background: transparent; } }
.wf__ifoot { opacity: 0; transition: opacity .8s ease .3s; }
.wf__ifoot.land { opacity: 1; }
.wf__dot { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; align-self: center;
  background: var(--accent-cy, #38E1FF); box-shadow: 0 0 8px rgba(56,225,255,.5); }
.wf__dot--amber { background: #FFB648; box-shadow: 0 0 8px rgba(255,182,72,.55); }
.wf__from { font-size: 14px; font-weight: 600; color: var(--text); flex: 0 0 148px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wf__subj { font-size: 14px; color: var(--muted); flex: 1; min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wf__time { font-size: 10.5px; color: var(--faint); flex: 0 0 auto; }
.wf__ifoot { padding: 12px 2px 14px; font-size: 10px; letter-spacing: .12em; color: var(--faint); text-align: right; }
@media (max-width: 900px) {
  .wf__grid { grid-template-columns: minmax(0,1fr); gap: 30px; }
  .wf__from { flex-basis: 108px; }
  .wf__not { max-width: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wf__row { transition: none; opacity: 1; transform: none; }
}

/* ── worker deep-dive v2: function contract, plumbing strip, before/after, fleet strip ── */
.ct { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; margin-top: 40px; }
.ct__card { padding: 26px 22px; }
.ct__lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; color: var(--accent-vi, #9B6CFF); text-transform: uppercase; }
.ct__card p { color: var(--muted); font-size: .93rem; margin-top: 12px; line-height: 1.6; }
.ct__card p b { color: var(--text); font-weight: 600; }
.ct__bound { text-align: center; margin: 22px auto 0; max-width: 640px; font-size: .95rem; color: var(--muted); }
.ct__bound b { color: var(--text); }
@media (max-width: 980px) { .ct { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .ct { grid-template-columns: minmax(0,1fr); } }
.plumb { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.plumb span { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 14px; border: 1px solid var(--border); border-radius: 999px; color: var(--muted); }
.ba { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; margin-top: 40px; }
.ba__col { padding: 30px 28px; }
.ba__tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; }
.ba__col--before .ba__tag { color: #8f8aa8; }
.ba__col--after .ba__tag { color: #4ade80; }
.ba__col ul { list-style: none; margin: 16px 0 0; padding: 0; }
.ba__col li { color: var(--muted); font-size: .96rem; line-height: 1.6; padding: 7px 0 7px 22px; position: relative; }
.ba__col--before li::before { content: '×'; position: absolute; left: 0; color: #8f8aa8; }
.ba__col--after li::before { content: '✓'; position: absolute; left: 0; color: #4ade80; }
.ba__col--after li { color: var(--text); }
@media (max-width: 820px) { .ba { grid-template-columns: minmax(0,1fr); } }
.fstrip { text-align: center; padding: 44px 30px; }
.fstrip__icons { display: flex; justify-content: center; align-items: center; gap: 22px; flex-wrap: wrap; margin: 26px 0 6px; }
.fstrip__icons img { width: 64px; height: 64px; opacity: .9; transition: transform .25s ease, opacity .25s ease; }
.fstrip__icons a:hover img, .fstrip__icons img:hover { transform: translateY(-4px); opacity: 1; }
.fstrip__lead { max-width: 560px; margin: 0 auto; }

/* ── switchboard meet-link + pricing how-strip + re-hook strip ── */
.swb__meet { display: inline-block; margin-top: 12px; font-size: 10px; letter-spacing: .14em;
  color: var(--accent-vi, #9B6CFF); text-decoration: none; }
.swb__meet:hover { text-decoration: underline; }
.howstrip { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 11.5px; letter-spacing: .05em; color: var(--muted); margin: 4px auto 28px; text-transform: uppercase; }
.howstrip b { color: var(--accent-vi, #9B6CFF); font-weight: 700; margin-right: 6px; }
.howstrip__sep { color: var(--faint); }
.rehook { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  padding: 26px 30px; }
.rehook__copy { flex: 1; min-width: 260px; }
.rehook__line { font-size: 18px; font-weight: 600; color: var(--text); margin: 0 0 12px; }
.rehook__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.rehook__chip { font-family: var(--font-mono); font-size: 10.5px; padding: 6px 12px; border: 1px solid var(--border);
  border-radius: 999px; color: var(--muted); white-space: nowrap; }

/* ── meet-the-team rail (#workers) — compact cards; deep dives live on /workers/* ── */
.team { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; margin-top: 34px; }
.tm__card { display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: 24px 22px 20px; text-decoration: none; transition: transform .25s ease, border-color .25s ease; }
.tm__card:hover { transform: translateY(-4px); border-color: rgba(155,108,255,.35); }
.tm__card .wicon { width: 96px; height: 96px; margin-bottom: 10px; }
.tm__name { font-size: 17px; font-weight: 700; color: var(--text); }
.tm__verb { font-size: 13.5px; line-height: 1.5; color: var(--muted); flex: 1; }
.tm__link { margin-top: 14px; font-size: 9.5px; letter-spacing: .14em; color: var(--accent-vi, #9B6CFF); }
@media (max-width: 980px) { .team { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 520px) { .team { grid-template-columns: minmax(0,1fr); } }

/* ── the mirror (#mirror) — tick what eats your week ── */
.mir { max-width: 780px; margin: 34px auto 0; }
.mir__chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.mir__chip { font: 500 14.5px var(--font-body, 'Inter'); color: var(--text); cursor: pointer;
  border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.03);
  border-radius: 999px; padding: 11px 19px; transition: all .22s ease; }
.mir__chip:hover { border-color: rgba(255,255,255,.3); }
.mir__chip.on { border-color: rgba(155,108,255,.65); background: rgba(155,108,255,.12);
  box-shadow: 0 0 18px rgba(155,108,255,.18); }
.mir__chip--trap.on { border-color: rgba(255,255,255,.12); border-style: dashed;
  background: rgba(255,255,255,.02); color: var(--faint); box-shadow: none; }
.mir__tally { margin-top: 26px; padding: 26px 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 18px; }
.mir__line { margin: 0; font-size: 12px; letter-spacing: .16em; color: var(--muted); min-height: 16px; }
.mir__line b { color: var(--text); }
.mir__team { display: flex; gap: 12px; }
.mir__tw { border-radius: 12px; opacity: .5; filter: grayscale(.6); transition: opacity .35s ease, filter .35s ease, box-shadow .35s ease; }
.mir__tw.on { opacity: 1; filter: none; box-shadow: 0 0 22px rgba(155,108,255,.35); }

/* ── mobile polish (2026-07-04 audit) ── */
@media (max-width: 520px) {
  /* the whofor inbox subjects ARE the story — give them their own full line */
  .wf__row { flex-wrap: wrap; row-gap: 3px; }
  .wf__row.land { max-height: 92px; }
  .wf__from { flex: 1 1 auto; }
  .wf__subj { flex: 0 0 100%; order: 4; padding-left: 19px; }
  /* the proof headline is a paragraph-length claim — cap it on phones */
  .proofband .title { font-size: 1.45rem; }
}

/* ── worker hero scenes (worker-scenes.js) ──────────────────────────
   Each /workers page opens on a living scene: a fixed 560×420 stage,
   uniformly scaled by JS so the px offset-paths never drift. The
   packet/envelope designs are the fleet's (fl__dot / fl__env). */
.wscene { border: 1px solid var(--border-2); border-radius: 14px; overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  box-shadow: 0 40px 100px -50px var(--glow), 0 0 0 1px rgba(255,255,255,0.03); }
.wscene__hd { display: flex; justify-content: space-between; align-items: center; padding: 11px 15px;
  border-bottom: 1px solid var(--border); background: rgba(0,0,0,0.28);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; color: var(--faint); text-transform: uppercase; }
.wscene__live { display: inline-flex; align-items: center; gap: 6px; color: var(--green); }
.wscene__live i { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.wscene__wrap { position: relative; overflow: hidden; aspect-ratio: 560 / 420; }
/* the stage is absolutely positioned so its fixed 560px never widens the
   hero column on phones (the min-content gotcha) — JS only scales it */
.wscene__stage { position: absolute; top: 0; left: 0; width: 560px; height: 420px; transform-origin: top left; }
.ws__actor { position: absolute; transform: translate(-50%,-50%); z-index: 2; }
.ws__lbl { position: absolute; font: 400 10px var(--font-mono); letter-spacing: .14em; color: var(--faint);
  text-transform: uppercase; white-space: nowrap; z-index: 2; }
.ws__chip { position: absolute; font: 400 11px var(--font-mono); letter-spacing: .04em; color: var(--muted);
  border: 1px solid var(--border-2); border-radius: 8px; padding: 6px 11px; background: rgba(14,13,24,0.92);
  white-space: nowrap; z-index: 3; }
.ws__srcline { position: absolute; font: 400 11px var(--font-mono); color: var(--muted); white-space: nowrap; z-index: 2; }
.ws__count { position: absolute; font: 700 22px var(--font-mono); color: var(--text); white-space: nowrap; z-index: 2; }
.ws__panel { position: absolute; border: 1px solid var(--border-2); border-radius: 12px;
  background: rgba(12,11,20,0.55); z-index: 1; }
.ws__slot { position: absolute; width: 218px; font: 400 10.5px var(--font-mono); letter-spacing: .04em;
  color: var(--faint); border: 1px dashed var(--border-2); border-radius: 8px; padding: 7px 11px;
  background: rgba(14,13,24,0.6); white-space: nowrap; z-index: 2; }
.ws__slot.is-on { border-style: solid; border-color: rgba(56,225,255,0.4); color: var(--text); }
.ws__slot.is-on b { color: var(--green); font-weight: 400; }
.ws__dot { --pk: 56,225,255; position: absolute; top: 0; left: 0; width: 30px; height: 7px; border-radius: 4px;
  opacity: 0; z-index: 4; offset-rotate: auto;
  background: linear-gradient(90deg, transparent, rgba(var(--pk),0.75) 60%, rgba(255,255,255,0.95) 96%);
  filter: drop-shadow(0 0 7px rgba(var(--pk),0.75)); }
.ws__dot::after { content: ''; position: absolute; right: -3px; top: 50%; width: 11px; height: 11px;
  transform: translateY(-50%); border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(var(--pk),0.9) 45%, transparent 72%); }
.ws__env { position: absolute; top: 0; left: 0; opacity: 0; z-index: 5; offset-rotate: 0deg; }
.ws__env svg { display: block; filter: drop-shadow(0 0 8px rgba(155,108,255,0.35)); }
.ws__stamp { position: absolute; top: -15px; left: 12px; transform: rotate(-7deg);
  font: 700 8px var(--font-mono); letter-spacing: .14em; white-space: nowrap; border: 1.2px solid currentColor;
  border-radius: 4px; padding: 2px 5px; background: rgba(10,8,18,0.85); opacity: 0; }
.ws__tag { position: absolute; top: 0; left: 0; opacity: 0; z-index: 4; offset-rotate: 0deg;
  transform: translate(-4px, 16px); font: 400 9px var(--font-mono); letter-spacing: .08em;
  color: rgba(220,215,255,0.85); white-space: nowrap; }
.ws__tray { position: absolute; border: 1px dashed rgba(245,180,80,0.55); border-radius: 12px;
  padding: 10px 14px; background: rgba(245,180,80,0.04); z-index: 2; }
.ws__tray b { display: block; font: 400 9.5px var(--font-mono); letter-spacing: .2em; color: #f5b450; }
.ws__tray span { display: inline-block; margin-top: 7px; font: 400 9.5px var(--font-mono); letter-spacing: .04em;
  color: var(--faint); border: 1px solid rgba(245,180,80,0.3); border-radius: 8px; padding: 4px 9px;
  transition: box-shadow .3s ease, color .3s ease; }
.ws__tray span.hot { color: #f5b450; box-shadow: 0 0 16px rgba(245,180,80,0.35); }
.ws__gauge { position: absolute; border-radius: 4px; background: rgba(255,138,61,0.55); z-index: 2;
  transition: height .6s ease, top .6s ease, background .4s ease; }
.ws__thresh { position: absolute; border-top: 1px dashed rgba(245,180,80,0.7); z-index: 3; }
.ws__tline { position: absolute; border-top: 1px solid var(--border-2); z-index: 1; }
.ws__tmark { position: absolute; width: 0; border-left: 1px dashed rgba(245,180,80,0.45); z-index: 1; }
.ws__pdot { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #8f8aa8;
  opacity: 0; z-index: 2; transition: background .4s ease, box-shadow .4s ease; }
.ws__pdot.is-hot { background: #ff6aae; box-shadow: 0 0 12px rgba(255,106,174,0.8); }
.ws__pdot.is-won { background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.6); }
.ws__cell { position: absolute; width: 21px; height: 21px; border: 1px solid var(--border-2);
  border-radius: 5px; background: rgba(255,255,255,0.03); z-index: 2; transition: background .3s ease, border-color .3s ease; }
.ws__cell.is-won { background: rgba(74,222,128,0.25); border-color: rgba(74,222,128,0.6); }
.ws__tile { position: absolute; border-radius: 6px; border: 1px solid var(--border-2); z-index: 2; }
