/* ============================================================
   Z-TEAM — "THE OPERATING REPORT"
   Design system per PRD A2. Paper ground, navy ink accent,
   green as live-indicator only. Zero radius. No shadow except
   1px hairline on exhibit frames.
   ============================================================ */

:root{
  --paper:        #F7F5F0;
  --paper-2:      #F1EEE7;   /* faint alternate band */
  --ink:          #16181A;
  --ink-dim:      #5C5F63;   /* 5.89:1 on paper */
  --masthead:     #142F54;
  --accent-ink:   #1A4684;   /* 8.55:1 on paper */

  /* ---- status colours: FILL vs INK ----------------------------------------
     The brand green is #3E9B4F and stays #3E9B4F (manual §2.6/§2.7). It is
     3.21:1 on paper: fine for a dot, a border or a fill (SC 1.4.11 wants 3:1),
     a fail for text (SC 1.4.3 wants 4.5:1) -- and every one of these was being
     used as 11-12px mono text. So the indicator keeps the brand hue and the
     *text* gets a darker tint of it. `--live` paints; `--live-ink` writes.
     --warn was 2.36:1 and failed BOTH bars, so it is corrected outright; it is
     not a brand-locked colour. verify.py measures all of this. ------------- */
  --live:         #3E9B4F;   /* fills / dots only  — 3.21:1 (>=3, non-text OK) */
  --live-ink:     #2E7D3E;   /* text               — 4.68:1 */
  --warn:         #8A6A1F;   /* fills + text       — 4.63:1 */
  --danger:       #B23A3A;   /* fills + text       — 5.42:1 */

  --hairline:     #D9D5CC;   /* decorative rules only — never a control edge */
  --hairline-2:   #E7E3DA;
  --field-line:   #8E8A80;   /* form-control borders — 3.44:1 on #fff (SC 1.4.11) */

  --panel:        #101214;
  --panel-line:   #23262B;
  --console-ok:   #7CCC44;
  --console-wait: #E0B24E;
  --console-dim:  #8B9299;   /* was #6B7178 = 3.81:1 on the panel; now 5.96:1 */
  --console-text: #C7CDD2;

  /* surfaces (the dark skin overrides these in vdr-skin.css) */
  --surface-card:   #F7F5F0;
  --surface-raised: #FFFFFF;
  --ease: cubic-bezier(.25,.6,.3,1);

  --measure: 64ch;
  --col: 1080px;
  --gutter: clamp(20px, 6vw, 96px);

  --font-display: "Bitter", Georgia, serif;
  --font-body:    "Outfit", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  --section-pad: clamp(96px, 13vw, 168px);
}

*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--font-body);
  font-weight:400;
  font-size:18px;
  line-height:1.62;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

::selection{ background:var(--accent-ink); color:var(--paper); }

a{ color:var(--accent-ink); text-decoration:none; }

/* ---- focus ----
   Nothing here removes the focus ring; this designs it. One ring for the paper
   ground, one for the navy chrome. */
:focus-visible{ outline:2px solid var(--accent-ink); outline-offset:2px; }
.masthead :focus-visible, .vfooter :focus-visible{ outline-color:#fff; }

/* ---- skip link (WCAG 2.4.1) ---- */
.skip{
  position:absolute; left:-9999px; top:0; z-index:100;
  font-family:var(--font-mono); font-size:12px; letter-spacing:0.06em;
  background:var(--ink); color:var(--paper); padding:12px 18px;
}
.skip:focus{ left:0; }

/* ---- layout primitives ---- */
.wrap{ width:100%; max-width:var(--col); margin-inline:auto; padding-inline:var(--gutter); }
.section{ padding-block:var(--section-pad); border-top:1px solid var(--hairline); }
.section--plain{ border-top:none; }

/* ---- type ---- */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12px;
  font-weight:500;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--accent-ink);
  margin:0 0 28px;
  display:flex;
  align-items:center;
  gap:12px;
}
.eyebrow::before{
  content:"";
  width:26px; height:1px; background:var(--accent-ink);
  display:inline-block; flex:none;
}

h1,h2,h3{ font-family:var(--font-display); font-weight:700; color:var(--ink); margin:0; }
h1{ font-size:clamp(40px, 6vw, 68px); line-height:1.02; letter-spacing:-0.015em; }
.h2{ font-size:clamp(30px, 4.2vw, 46px); line-height:1.08; letter-spacing:-0.01em; text-wrap:balance; }
.lede{ font-size:clamp(19px,2.1vw,22px); line-height:1.55; color:var(--ink); font-weight:300; max-width:var(--measure); margin:28px 0 0; }
.body{ max-width:var(--measure); color:var(--ink); }
.dim{ color:var(--ink-dim); }

.kicker{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(30px,4.6vw,52px);
  line-height:1.08;
  letter-spacing:-0.01em;
  color:var(--ink);
  text-wrap:balance;
}
.kicker .em{ color:var(--accent-ink); }

/* mono utility label */
.label{
  font-family:var(--font-mono);
  font-size:11.5px;
  font-weight:500;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--ink-dim);
}

/* ---- buttons ---- */
.btn{
  font-family:var(--font-mono);
  font-size:13px;
  font-weight:500;
  letter-spacing:0.04em;
  padding:15px 24px;
  border:1px solid var(--ink);
  background:var(--ink);
  color:var(--paper);
  cursor:pointer;
  display:inline-flex; align-items:center; gap:10px;
  transition:background .18s ease, color .18s ease, border-color .18s ease;
  text-transform:none;
}
.btn:hover{ background:var(--accent-ink); border-color:var(--accent-ink); }
.btn--ghost{ background:transparent; color:var(--ink); }
.btn--ghost:hover{ background:var(--ink); color:var(--paper); border-color:var(--ink); }
.btn--sm{ padding:11px 18px; font-size:12px; }
.btn[disabled]{ opacity:.4; cursor:not-allowed; }
.btn .arr{ transition:transform .18s ease; }
.btn:hover .arr{ transform:translateX(3px); }

/* ============================================================
   MASTHEAD (navy band) + NAV
   ============================================================ */
.masthead{
  position:sticky; top:0; z-index:60;
  background:var(--masthead);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,0.10);
}
.masthead .wrap{ display:flex; align-items:center; gap:24px; height:62px; padding-block:0; }
.masthead__logo{ display:flex; align-items:center; gap:14px; }
.masthead__logo img{ height:26px; width:auto; display:block; }
.masthead__div{ width:1px; height:22px; background:rgba(255,255,255,0.22); }
.masthead__word{
  font-family:var(--font-mono); font-size:13px; font-weight:500;
  letter-spacing:0.22em; color:#fff;
}
/* The product name beside the platform word ("TEAM-Z · AI IT DEPARTMENT"). It
   was in the markup of all three team pages with no rule anywhere, so it
   rendered as 18px body Outfit next to 13px tracked mono. */
.masthead__tagword{
  font-family:var(--font-mono); font-size:10px; font-weight:500;
  letter-spacing:0.10em; text-transform:uppercase; color:rgba(255,255,255,0.48);
}
.masthead nav{ margin-left:auto; display:flex; align-items:center; gap:26px; }
.masthead nav a{
  font-family:var(--font-mono); font-size:12px; letter-spacing:0.08em;
  color:rgba(255,255,255,0.72); transition:color .15s;
}
.masthead nav a:hover{ color:#fff; }
.lang{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:0.06em; color:rgba(255,255,255,0.5); display:flex; gap:7px; }
.lang b{ color:#fff; font-weight:500; }
.langdd__globe{ flex:none; }
.langdd__btn{ min-height:44px; }          /* SC 2.5.5 */
.langdd__menu button{ min-height:44px; }
.masthead .btn{ padding:9px 16px; font-size:12px; background:#fff; color:var(--masthead); border-color:#fff; }
.masthead .btn:hover{ background:var(--live-ink); border-color:var(--live-ink); color:#fff; }

/* ---- mobile chrome ----
   The section links used to vanish under 1020px with nothing in their place, and
   `.navlink--mobile` sat in this file as a class no page ever used: a mobile nav
   designed and never built. This is it. The language control NEVER collapses --
   `.lang{display:none}` here used to take the switcher with it on every page
   except CCTV (which escaped only by not carrying the .lang class), leaving
   phone visitors on a trilingual site with no way to change language. */
.navlinks{ display:flex; align-items:center; gap:26px; }
.navtoggle{
  display:none; font-family:var(--font-mono); font-size:15px; line-height:1;
  color:rgba(255,255,255,0.8); background:transparent;
  border:1px solid rgba(255,255,255,0.24);
  width:30px; height:30px; place-items:center; cursor:pointer; padding:0; position:relative;
}
.navtoggle::after{                        /* 44x44 hit area (SC 2.5.5) */
  content:""; position:absolute; top:50%; left:50%;
  width:44px; height:44px; transform:translate(-50%,-50%);
}
.navtoggle:hover{ color:#fff; border-color:rgba(255,255,255,0.5); }

@media (max-width:1020px){
  .masthead__tagword{ display:none; }
  .masthead nav{ gap:14px; }
  .navtoggle{ display:inline-grid; }
  .navlinks{
    display:none;
    position:absolute; top:62px; right:var(--gutter);
    flex-direction:column; align-items:stretch; gap:0;
    min-width:220px; z-index:70;
    background:var(--masthead); border:1px solid rgba(255,255,255,0.24);
  }
  .masthead.is-navopen .navlinks{ display:flex; }
  .navlinks a.navlink{ padding:14px 18px; min-height:44px; display:flex; align-items:center; }
  .navlinks a.navlink + a.navlink{ border-top:1px solid rgba(255,255,255,0.14); }
}
@media (max-width:560px){
  .masthead__word{ display:none; }
  .masthead__div{ display:none; }
}

/* ============================================================
   01 HERO
   ============================================================ */
.hero{ position:relative; overflow:hidden; }
.hero .wrap{ padding-block:clamp(64px,9vw,110px) clamp(56px,8vw,96px); position:relative; z-index:2; }
.hero__grid{ display:grid; grid-template-columns: 1.15fr 0.85fr; gap:clamp(32px,5vw,72px); align-items:center; }
.hero__copy{ max-width:620px; }
.hero h1{ margin-top:22px; }
.hero h1 .soft{ color:var(--ink-dim); }
.hero__sub{ font-size:clamp(18px,1.9vw,21px); font-weight:300; line-height:1.55; color:var(--ink); max-width:54ch; margin:26px 0 0; }
.hero__cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:38px; }

/* engraved Z exhibit */
.hero__z{ position:relative; justify-self:center; }
.hero__z-frame{
  position:relative;
  border:1px solid var(--hairline);
  background:#fff;
  padding:22px;
}
.hero__z-frame::after{
  content:""; position:absolute; inset:7px; border:1px solid var(--hairline-2); pointer-events:none;
}
.hero__z img{ display:block; width:min(360px, 42vw); height:auto; mix-blend-mode:multiply; }
.hero__z-cap{
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--ink-dim); margin-top:14px; text-align:left; display:flex; justify-content:space-between; gap:12px;
}

/* proof strip */
.proof{
  margin-top:clamp(48px,7vw,76px);
  border-top:1px solid var(--hairline);
  border-bottom:1px solid var(--hairline);
  padding:18px 0;
}
.proof__line{
  font-family:var(--font-mono); font-size:12.5px; letter-spacing:0.08em;
  color:var(--ink-dim); min-height:1.2em; white-space:normal;
}
.proof__line .tok{ color:var(--ink); }
.proof__line .sep{ color:var(--hairline); padding:0 4px; }
.proof__cursor{ display:inline-block; width:8px; height:1.05em; background:var(--accent-ink); transform:translateY(2px); margin-left:2px; animation:blink 1s steps(1) infinite; }
@keyframes blink{ 50%{ opacity:0; } }

/* faint ledger baseline behind hero */
.hero__rule{
  position:absolute; left:0; right:0; bottom:0; height:46%;
  background-image:repeating-linear-gradient(to bottom, transparent 0 31px, var(--hairline-2) 31px 32px);
  opacity:.5; z-index:0; pointer-events:none;
  -webkit-mask-image:linear-gradient(to bottom, transparent, #000 60%);
          mask-image:linear-gradient(to bottom, transparent, #000 60%);
}

/* HERO TREATMENT VARIATIONS (data-hero) */
/* default = letterhead (grid above) */

/* illuminated: Z as oversized drop initial, text wraps beside */
[data-hero="illuminated"] .hero__grid{ display:block; }
[data-hero="illuminated"] .hero__copy{ max-width:none; }
[data-hero="illuminated"] .hero__z{
  float:left; margin:6px clamp(28px,4vw,56px) 0 0; shape-outside:content-box;
}
[data-hero="illuminated"] .hero__z-frame{ border:none; padding:0; background:transparent; }
[data-hero="illuminated"] .hero__z-frame::after{ display:none; }
[data-hero="illuminated"] .hero__z img{ width:min(300px,40vw); }
[data-hero="illuminated"] .hero__z-cap{ display:none; }
[data-hero="illuminated"] .hero h1{ font-size:clamp(38px,5.4vw,62px); }
[data-hero="illuminated"] .hero__cta{ clear:both; }

/* fullbleed: Z huge, bleeding right edge, text left */
[data-hero="fullbleed"] .hero{ }
[data-hero="fullbleed"] .hero__grid{ grid-template-columns: 1fr; }
[data-hero="fullbleed"] .hero__copy{ max-width:640px; position:relative; z-index:2; }
[data-hero="fullbleed"] .hero__z{
  position:absolute; top:50%; right:calc(-1 * clamp(40px,6vw,120px)); transform:translateY(-50%);
  z-index:1; justify-self:auto;
}
[data-hero="fullbleed"] .hero__z-frame{ border:none; padding:0; background:transparent; }
[data-hero="fullbleed"] .hero__z-frame::after{ display:none; }
[data-hero="fullbleed"] .hero__z img{ width:min(560px,52vw); opacity:.16; }
[data-hero="fullbleed"] .hero__z-cap{ display:none; }
@media (max-width:900px){
  [data-hero="fullbleed"] .hero__z{ position:absolute; opacity:1; }
  [data-hero="fullbleed"] .hero__z img{ width:64vw; opacity:.10; }
}

@media (max-width:900px){
  .hero__grid{ grid-template-columns:1fr; gap:36px; }
  .hero__z{ order:-1; justify-self:start; }
  .hero__z img{ width:min(220px,46vw); }
  [data-hero="illuminated"] .hero__z{ float:left; }
}

/* ============================================================
   GENERIC SECTION HEADER
   ============================================================ */
.shead{ max-width:760px; margin-bottom:clamp(48px,6vw,72px); }
.shead .h2{ margin-top:0; }
.shead .lede{ margin-top:24px; }

/* ============================================================
   02 REPLAY
   ============================================================ */
.replay__top{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:36px; }
.replay__progress{ font-family:var(--font-mono); font-size:13px; letter-spacing:0.1em; color:var(--ink-dim); }
.replay__progress b{ color:var(--ink); font-weight:600; }

.replay__stage{
  display:grid; grid-template-columns: 280px 1fr; gap:0;
  border:1px solid var(--hairline); background:#fff;
}
.replay__steps{ border-right:1px solid var(--hairline); background:var(--paper-2); }
.replay__step{
  display:flex; gap:14px; padding:18px 20px; cursor:pointer; border-bottom:1px solid var(--hairline-2);
  text-align:left; width:100%; background:transparent; border-left:3px solid transparent; font-family:inherit;
  transition:background .15s;
}
.replay__step:last-child{ border-bottom:none; }
.replay__step:hover{ background:var(--paper); }
.replay__step[aria-current="true"]{ background:var(--paper); border-left-color:var(--accent-ink); }
.replay__step-n{ font-family:var(--font-mono); font-size:12px; color:var(--ink-dim); flex:none; padding-top:2px; min-width:20px; }
.replay__step[aria-current="true"] .replay__step-n{ color:var(--accent-ink); font-weight:600; }
.replay__step-t{ font-size:14.5px; line-height:1.42; color:var(--ink); }
.replay__step[aria-current="true"] .replay__step-t{ font-weight:500; }

.replay__view{ padding:clamp(20px,3vw,34px); display:flex; flex-direction:column; min-height:480px; background:var(--paper); }
.replay__exhibit{ flex:1; display:flex; align-items:center; justify-content:center; }
.replay__cap{
  font-family:var(--font-mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase;
  color:var(--ink-dim); margin-top:20px; padding-top:14px; border-top:1px solid var(--hairline);
  display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.replay__nav{ display:flex; gap:10px; margin-top:24px; }
.replay__closing{ font-family:var(--font-display); font-weight:600; font-size:clamp(22px,2.6vw,30px); margin-top:40px; color:var(--ink); }

/* email / screenshot mock exhibits */
.mock{
  width:100%; max-width:560px; background:#fff; border:1px solid var(--hairline);
  font-family:var(--font-body); color:var(--ink); margin-inline:auto;
}
.mock--mail{}
.mock__bar{ display:flex; align-items:center; gap:8px; padding:9px 14px; border-bottom:1px solid var(--hairline); background:var(--paper-2); }
.mock__dot{ width:9px; height:9px; border-radius:50%; background:var(--hairline); }
.mock__chip{ margin-left:auto; font-family:var(--font-mono); font-size:10.5px; letter-spacing:0.08em; color:var(--ink-dim); }
.mock__head{ padding:14px 18px; border-bottom:1px solid var(--hairline-2); font-size:13.5px; line-height:1.7; }
.mock__head .k{ display:inline-block; width:54px; color:var(--ink-dim); font-family:var(--font-mono); font-size:11px; letter-spacing:0.04em; text-transform:uppercase; }
.mock__subj{ font-family:var(--font-display); font-weight:600; font-size:15px; margin-top:2px; }
.mock__body{ padding:18px; font-size:14px; line-height:1.62; color:var(--ink); }
.mock__body p{ margin:0 0 12px; }
.mock__body p:last-child{ margin-bottom:0; }
.mock__sig{ font-family:var(--font-mono); font-size:11.5px; color:var(--ink-dim); line-height:1.7; margin-top:14px; }
.redact{ background:var(--ink); color:transparent; padding:0 2px; border-radius:0; user-select:none; box-decoration-break:clone; -webkit-box-decoration-break:clone; }
.redact--nav{ background:var(--accent-ink); }

/* status card mock */
.mock--card{ max-width:460px; }
.card__row{ display:flex; justify-content:space-between; gap:16px; padding:12px 18px; border-bottom:1px solid var(--hairline-2); font-size:13px; }
.card__row:last-child{ border-bottom:none; }
.card__row .ck{ font-family:var(--font-mono); font-size:11px; letter-spacing:0.04em; text-transform:uppercase; color:var(--ink-dim); }
.card__row .cv{ font-weight:500; }
.ok-tick{ color:var(--live-ink); font-family:var(--font-mono); }

/* approval stamp */
.stamp{
  display:inline-flex; flex-direction:column; align-items:center; gap:2px;
  border:1.5px solid var(--accent-ink); color:var(--accent-ink);
  font-family:var(--font-mono); text-transform:uppercase; letter-spacing:0.1em;
  padding:8px 16px; transform:rotate(-1.6deg); line-height:1.3;
}
.stamp b{ font-size:13px; font-weight:600; letter-spacing:0.14em; }
.stamp span{ font-size:10px; opacity:.85; }
.stamp--inline{ transform:rotate(-1.4deg) translateY(-2px); }

@media (max-width:760px){
  .replay__stage{ grid-template-columns:1fr; }
  .replay__steps{ display:flex; overflow-x:auto; border-right:none; border-bottom:1px solid var(--hairline); }
  .replay__step{ flex:none; width:200px; border-bottom:none; border-right:1px solid var(--hairline-2); border-left:none; border-top:3px solid transparent; }
  .replay__step[aria-current="true"]{ border-left-color:transparent; border-top-color:var(--accent-ink); }
  .replay__view{ min-height:auto; }
}

/* ============================================================
   03 WHAT IT IS — cards
   ============================================================ */
.cards{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--hairline); border:1px solid var(--hairline); }
.card{ background:var(--paper); padding:clamp(26px,3vw,38px); }
.card__n{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.1em; color:var(--accent-ink); margin-bottom:18px; }
.card h3{ font-size:21px; line-height:1.2; margin-bottom:12px; }
.card p{ font-size:15.5px; line-height:1.6; color:var(--ink-dim); margin:0; max-width:42ch; }
@media (max-width:720px){ .cards{ grid-template-columns:1fr; } }

.bigkicker{ margin-top:clamp(56px,7vw,84px); padding-top:clamp(40px,5vw,56px); border-top:1px solid var(--hairline); }

/* ============================================================
   04 COMMAND — numbered items
   ============================================================ */
.items{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,4vw,56px) clamp(40px,6vw,80px); }
.item{ border-top:2px solid var(--ink); padding-top:20px; }
.item__n{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.1em; color:var(--ink-dim); margin-bottom:14px; }
.item h3{ font-size:20px; line-height:1.22; margin-bottom:10px; }
.item p{ font-size:15.5px; line-height:1.6; color:var(--ink-dim); margin:0; max-width:46ch; }
@media (max-width:720px){ .items{ grid-template-columns:1fr; } }

.command__stamp{ margin-top:clamp(48px,6vw,72px); display:flex; align-items:center; gap:28px; flex-wrap:wrap; }

/* ============================================================
   05 FUNCTIONS
   ============================================================ */
.fn-group{ margin-bottom:clamp(48px,6vw,72px); }
.fn-tag{
  font-family:var(--font-mono); font-size:11.5px; letter-spacing:0.16em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:9px; margin-bottom:26px;
}
.fn-tag .dot{ width:8px; height:8px; border-radius:50%; flex:none; }
.fn-tag--live{ color:var(--live-ink); }
.fn-tag--live .dot{ background:var(--live); }
.fn-tag--deploy{ color:var(--warn); }
.fn-tag--deploy .dot{ background:var(--warn); }
.fn-tag--bp{ color:var(--ink-dim); }
.fn-tag--bp .dot{ width:8px; height:8px; border-radius:0; border:1px solid var(--ink-dim); background:transparent; }

.fn-live{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--hairline); border:1px solid var(--hairline); }
.fn-live .card{ background:var(--paper); }
.fn-live .card h3{ font-size:18.5px; }
@media (max-width:820px){ .fn-live{ grid-template-columns:1fr; } }

.fn-deploy{ border-top:1px solid var(--hairline); border-bottom:1px solid var(--hairline); padding:24px 0; display:flex; gap:24px; align-items:baseline; flex-wrap:wrap; }
.fn-deploy h3{ font-size:18px; flex:none; min-width:220px; }
.fn-deploy p{ font-size:15.5px; color:var(--ink-dim); margin:0; max-width:52ch; }

/* blueprints as ledger entries */
.bp-intro{ max-width:var(--measure); color:var(--ink-dim); font-size:16px; margin:18px 0 36px; }
.ledger{ border-top:2px solid var(--ink); }
.bp{ border-bottom:1px solid var(--hairline); padding:26px 0; display:grid; grid-template-columns: 200px 1fr; gap:8px clamp(24px,4vw,48px); }
.bp__fn{ font-family:var(--font-display); font-weight:700; font-size:19px; line-height:1.2; grid-row:span 4; }
.bp__rows{ display:grid; gap:0; }
.bp__row{ display:grid; grid-template-columns:120px 1fr; gap:18px; padding:7px 0; border-bottom:1px dotted var(--hairline); align-items:baseline; }
.bp__row:last-child{ border-bottom:none; }
.bp__rk{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-dim); }
.bp__rv{ font-size:14.5px; line-height:1.5; color:var(--ink); }
.bp__line{ font-size:14.5px; color:var(--ink-dim); font-style:italic; }
@media (max-width:680px){
  .bp{ grid-template-columns:1fr; }
  .bp__fn{ grid-row:auto; margin-bottom:8px; }
  .bp__row{ grid-template-columns:96px 1fr; gap:12px; }
}
.bp-cta{ margin-top:36px; font-size:16px; color:var(--ink); max-width:var(--measure); }
.bp-cta a{ border-bottom:1px solid var(--accent-ink); }
.fn-rule{ margin-top:clamp(44px,5vw,64px); padding-top:32px; border-top:1px solid var(--hairline); font-size:17px; line-height:1.6; max-width:var(--measure); color:var(--ink); }
.fn-rule b{ font-weight:500; color:var(--ink); }

/* ============================================================
   06 ENGAGEMENT MODEL
   ============================================================ */
.layers{ display:grid; gap:0; border-top:2px solid var(--ink); }
.layer{ display:grid; grid-template-columns: 260px 1fr; gap:clamp(20px,4vw,56px); padding:32px 0; border-bottom:1px solid var(--hairline); }
.layer__label{ font-family:var(--font-mono); font-size:13px; letter-spacing:0.1em; font-weight:500; color:var(--accent-ink); }
.layer__label .when{ display:block; color:var(--ink-dim); font-size:11px; letter-spacing:0.12em; margin-top:6px; text-transform:uppercase; }
.layer p{ margin:0; font-size:16px; line-height:1.6; color:var(--ink); max-width:54ch; }
@media (max-width:680px){ .layer{ grid-template-columns:1fr; gap:10px; } }
.stance{ margin-top:clamp(40px,5vw,60px); font-family:var(--font-display); font-weight:600; font-size:clamp(20px,2.4vw,26px); line-height:1.4; max-width:30ch; color:var(--ink); }

/* ============================================================
   07 LIVE DESK + CONSOLE
   ============================================================ */
.desk__grid{ display:grid; grid-template-columns: 1fr 1.05fr; gap:clamp(32px,4vw,56px); align-items:start; }
.desk__copy .lede{ margin-top:22px; }
.desk__copy p{ font-size:16px; line-height:1.62; color:var(--ink-dim); max-width:50ch; }
/* A hairline frame on a tinted band, not a coloured left stripe. The side-stripe
   callout is a template tell and is not in this system's vocabulary -- depth here
   comes from hairlines and double rules (§2.6). */
.desk__stress{
  border:1px solid var(--hairline);
  border-top:2px solid var(--accent-ink);
  background:var(--paper-2);
  padding:20px 22px; margin:30px 0;
  font-size:15.5px; line-height:1.6; color:var(--ink);
}
.desk__stress b{ font-weight:500; }
.desk__outcome{ font-size:16px; color:var(--ink-dim); max-width:52ch; }
.desk__cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:30px; align-items:center; }
.bypass{ font-family:var(--font-mono); font-size:12.5px; letter-spacing:0.03em; color:var(--accent-ink); border-bottom:1px solid var(--hairline); padding-bottom:2px; }
.bypass:hover{ border-color:var(--accent-ink); }
.privacy-line{ font-family:var(--font-mono); font-size:11px; letter-spacing:0.04em; line-height:1.6; color:var(--ink-dim); margin-top:28px; max-width:56ch; }

@media (max-width:880px){ .desk__grid{ grid-template-columns:1fr; } }

/* CONSOLE — the single dark element */
.console{
  background:var(--panel); color:var(--console-text); border:1px solid var(--panel-line);
  border-radius:0; font-family:var(--font-mono); position:sticky; top:84px;
  box-shadow:0 1px 0 var(--hairline);
}
.console__head{
  display:flex; align-items:center; gap:10px; padding:13px 16px; border-bottom:1px solid var(--panel-line);
  font-size:11.5px; letter-spacing:0.1em; color:var(--console-dim);
}
.console__head .id{ color:var(--console-text); }
.console__live{ margin-left:auto; display:flex; align-items:center; gap:7px; }
.console__live .d{ width:7px; height:7px; border-radius:50%; background:var(--console-dim); }
.console.is-connected .console__live .d{ background:var(--accent-ink); }
.console.is-connected .console__live{ color:var(--console-ok); }

.console__log{ padding:14px 16px; height:340px; overflow-y:auto; font-size:12.5px; line-height:1.85; }
.console__log::-webkit-scrollbar{ width:8px; }
.console__log::-webkit-scrollbar-thumb{ background:var(--panel-line); }
.logline{ display:flex; gap:12px; padding:2px 0; opacity:0; transform:translateY(4px); animation:logIn .28s ease forwards; }
@keyframes logIn{ to{ opacity:1; transform:none; } }
.logline .ts{ color:var(--console-dim); flex:none; }
.logline .msg{ color:var(--console-text); }
.logline .msg .ok{ color:var(--console-ok); }
.logline .msg .wait{ color:var(--console-wait); }
.logline .msg .accent{ color:#6ea8ff; }
.logline .msg .actor{ color:#fff; }
.logline.is-gate .msg{ color:var(--console-wait); }
.console__foot{ padding:10px 16px; border-top:1px solid var(--panel-line); font-size:10.5px; letter-spacing:0.06em; color:var(--console-dim); display:flex; justify-content:space-between; gap:12px; }
.console__waiting{ color:var(--console-dim); font-style:normal; }

/* ============================================================
   GATE (modal)
   ============================================================ */
.gate-overlay{
  position:fixed; inset:0; background:rgba(16,18,20,0.62); z-index:100;
  display:none; align-items:center; justify-content:center; padding:24px;
}
.gate-overlay.is-open{ display:flex; }
.gate{
  background:var(--paper); border:1px solid var(--ink); width:min(480px,100%);
  max-height:92vh; overflow:auto;
}
.gate__bar{ background:var(--masthead); color:#fff; padding:13px 22px; display:flex; align-items:center; justify-content:space-between; }
.gate__bar .t{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.16em; }
.gate__close{ background:none; border:none; color:rgba(255,255,255,0.7); font-size:20px; cursor:pointer; line-height:1; padding:0; }
.gate__close:hover{ color:#fff; }
.gate__body{ padding:26px 28px 30px; }
.gate__note{ font-size:13.5px; line-height:1.55; color:var(--ink-dim); margin:0 0 22px; }
.field{ margin-bottom:16px; }
.field label{ font-family:var(--font-mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink-dim); display:block; margin-bottom:7px; }
.field input{
  width:100%; padding:12px 14px; border:1px solid var(--field-line); background:#fff; color:var(--ink);
  font-family:var(--font-body); font-size:15px; border-radius:0;
}
.field input:focus{ outline:none; border-color:var(--accent-ink); box-shadow:inset 0 0 0 1px var(--accent-ink); }
.field.err input{ border-color:var(--danger); }
.field__err{ font-family:var(--font-mono); font-size:11px; color:var(--danger); margin-top:6px; display:none; }
.field.err .field__err{ display:block; }
.gate__submit{ width:100%; justify-content:center; margin-top:8px; }
.gate__reject{
  display:none; margin-top:18px; border:1px solid var(--danger); background:#FBF3F2; padding:16px;
  font-size:13.5px; line-height:1.55; color:var(--ink);
}
.gate__reject.show{ display:block; }
.gate__reject .addr{ font-family:var(--font-mono); color:var(--accent-ink); }

/* gate success / desk panel */
.deskpanel{ display:none; }
.deskpanel.show{ display:block; }
.gate__form.hide{ display:none; }
.gate__success-head{ font-family:var(--font-mono); font-size:12px; letter-spacing:0.06em; color:var(--live-ink); margin-bottom:18px; line-height:1.6; }
.deskrow{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:13px 0; border-bottom:1px solid var(--hairline); }
.deskrow:first-of-type{ border-top:1px solid var(--hairline); }
.deskrow .dk{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:0.1em; text-transform:uppercase; color:var(--ink-dim); }
.deskrow .dv{ font-family:var(--font-mono); font-size:14px; color:var(--ink); display:flex; align-items:center; gap:10px; }
.copybtn{ font-family:var(--font-mono); font-size:10px; letter-spacing:0.08em; text-transform:uppercase; border:1px solid var(--field-line); background:#fff; color:var(--ink-dim); padding:4px 8px; cursor:pointer; min-height:44px; }
.copybtn:hover{ border-color:var(--accent-ink); color:var(--accent-ink); }
.copybtn.copied{ color:var(--live-ink); border-color:var(--live-ink); }
.deskpanel__draft{ margin-top:22px; }
.deskpanel__note{ font-family:var(--font-mono); font-size:10.5px; line-height:1.6; color:var(--ink-dim); margin-top:16px; }

/* ============================================================
   08 FAQ
   ============================================================ */
.faq{ border-top:2px solid var(--ink); }
.faq__item{ border-bottom:1px solid var(--hairline); }
.faq__q{
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding:26px 48px 26px 0; position:relative; font-family:var(--font-display); font-weight:600;
  font-size:clamp(18px,2vw,22px); line-height:1.32; color:var(--ink);
}
.faq__q::after{
  content:"+"; position:absolute; right:6px; top:26px; font-family:var(--font-mono); font-weight:400;
  font-size:22px; color:var(--accent-ink); transition:transform .2s;
}
.faq__item.is-open .faq__q::after{ content:"\2013"; }
/* No collapse mechanism here on purpose. This block used to carry
   `.faq__a{ max-height:0; overflow:hidden }`, and because team-z.html loads this
   file BEFORE teamz-platform.css, that max-height was never overridden: the
   platform FAQ opened its grid-template-rows to 1fr inside a container clamped
   to zero height, so no answer could ever be read. The +/- glyph still flipped,
   which is why it looked wired up. The open/close mechanism belongs to the
   consuming page (`.faqp` in teamz-platform.css, `.faq__a` in cctv.css) -- do
   not reintroduce a height rule here. */
.faq__a-inner{ padding:0 60px 28px 0; font-size:16px; line-height:1.64; color:var(--ink-dim); max-width:68ch; }
.faq__a-inner b{ color:var(--ink); font-weight:500; }

/* ============================================================
   09 FINAL CTA
   ============================================================ */
.final{ text-align:left; }
.final .h2{ font-size:clamp(34px,5vw,58px); max-width:18ch; }
.final__cta{ display:flex; flex-wrap:wrap; gap:14px; margin-top:40px; }

/* ============================================================
   10 FOOTER  —  the .vfooter component
   The site used to carry two footers: `.foot*` here and `.vfooter*` in the page
   stylesheets. Every page now uses .vfooter, so the .foot* rules are gone.
   products.js + scripts/sync_chrome.py own the markup.
   ============================================================ */

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* The reveal ENHANCES an already-visible default; it never gates content.
   This used to be `.reveal{opacity:0}` unconditionally, with an
   IntersectionObserver as the only thing that brought it back -- so 19 sections
   of the landing page were invisible if the script failed, and because an
   element below the fold never intersects, the page PRINTED BLANK below the
   fold. Ctrl+P was the repro. The hidden state is now scoped to `.js`, which
   vdr-theme.js sets on <html> in the <head>: no JS, nothing hidden. (§2.8) */
@media (prefers-reduced-motion: no-preference){
  .js .reveal{ opacity:0; transform:translateY(8px); }
  .js .reveal.is-in{ opacity:1; transform:none; transition:opacity .6s ease, transform .6s ease; }
}
@media (prefers-reduced-motion: reduce){
  .logline{ animation:none; opacity:1; transform:none; }
  .proof__cursor{ animation:none; }
}
@media print{
  .reveal, .js .reveal{ opacity:1 !important; transform:none !important; }
  .masthead, .vfooter{ position:static; }
}
