/* =============================================================================
   Plotbook marketing site — built on @plotbook/tokens (assets/plotbook-tokens.css)
   Navy ink on bone paper. One amber dot. Flat. Field-ready.
   ========================================================================== */

*, *::before, *::after { 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;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--pb-amber); color: var(--pb-navy); }

/* ---- shared layout primitives ---- */
.wrap { width: min(1200px, 100% - 48px); margin-inline: auto; }
.wrap--narrow { width: min(880px, 100% - 48px); margin-inline: auto; }
section { position: relative; }

.eyebrow {
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--muted); margin: 0;
}
.eyebrow--amber { color: var(--pb-brand-700); }
.eyebrow--bone { color: rgba(244,241,234,0.62); }

.mono { font-family: var(--font-mono); font-weight: 500; }

h1, h2, h3 { color: var(--fg-strong); margin: 0; text-wrap: balance; }
p { text-wrap: pretty; }

/* type scale for marketing (larger than product ramp) */
.display {
  font-weight: 700; font-size: clamp(40px, 6.2vw, 76px); line-height: 0.98;
  letter-spacing: -0.04em; color: var(--fg-strong);
}
.h-sec {
  font-weight: 700; font-size: clamp(30px, 4vw, 46px); line-height: 1.04;
  letter-spacing: -0.035em;
}
.h-card { font-weight: 600; font-size: 21px; line-height: 1.2; letter-spacing: -0.02em; }
.lede { font-size: clamp(18px, 2vw, 21px); line-height: 1.5; color: var(--muted); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 15.5px; letter-spacing: -0.01em;
  padding: 13px 22px; border-radius: var(--radius-lg);
  border: 1px solid transparent; transition: opacity var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--amber { background: var(--pb-amber); color: var(--pb-navy); }
.btn--amber:hover { opacity: 0.9; }
.btn--ghost { background: transparent; color: var(--fg-strong); border-color: var(--border); }
.btn--ghost:hover { background: rgba(11,27,43,0.04); }
.btn--on-navy { background: transparent; color: var(--pb-bone); border-color: rgba(244,241,234,0.22); }
.btn--on-navy:hover { background: rgba(244,241,234,0.08); }
.btn--lg { padding: 16px 28px; font-size: 17px; }

/* ---- status pills (from tokens) ---- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-weight: 600; font-size: 11px;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  padding: 3px 9px; border-radius: var(--radius-full); white-space: nowrap;
}
.pill--live     { background: var(--pb-status-live-bg);     color: var(--pb-status-live-fg); }
.pill--done     { background: var(--pb-status-done-bg);     color: var(--pb-status-done-fg); }
.pill--blocked  { background: var(--pb-status-blocked-bg);  color: var(--pb-status-blocked-fg); }
.pill--snagging { background: var(--pb-status-snagging-bg); color: var(--pb-status-snagging-fg); }
.pill--pending  { background: var(--pb-status-pending-bg);  color: var(--pb-status-pending-fg); }

/* =============================================================================
   WORDMARK
   ========================================================================== */
.wordmark { display: inline-flex; align-items: center; gap: 10px; }
.wordmark img { width: 30px; height: 30px; border-radius: 7px; }
.wordmark .wm-text {
  font-weight: 800; font-size: 21px; letter-spacing: -0.03em; color: var(--fg-strong);
}
.wordmark .wm-dot { color: var(--pb-amber); }
.wordmark--bone .wm-text { color: var(--pb-bone); }

/* =============================================================================
   HEADER / NAV
   ========================================================================== */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,243,0.82); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--muted);
  transition: color var(--duration-base) var(--ease-out);
}
.nav-links a:hover { color: var(--fg-strong); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .sign-in { font-size: 15px; font-weight: 500; color: var(--fg-strong); }
.nav-cta .sign-in:hover { color: var(--muted); }

/* hamburger — hidden on desktop, shown when the inline nav collapses */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; margin-left: 4px; padding: 0;
  background: transparent; border: 1px solid var(--border); border-radius: var(--radius-md);
  flex-direction: column; gap: 4px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--fg-strong); border-radius: 2px; transition: transform var(--duration-base) var(--ease-out), opacity var(--duration-base) var(--ease-out); }
.site-head.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-head.open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-head.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-sticky); padding: 8px 0;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity var(--duration-base) var(--ease-out), transform var(--duration-base) var(--ease-out), visibility var(--duration-base);
  }
  .nav-links a { padding: 13px 24px; font-size: 16px; }
  .nav-links a:hover { background: rgba(11,27,43,0.04); }
  .site-head.open .nav-links { opacity: 1; visibility: visible; transform: none; }
}

/* visible keyboard focus, brand amber */
:focus-visible { outline: 2px solid var(--pb-amber); outline-offset: 2px; border-radius: 2px; }
a:focus-visible, button:focus-visible, .btn:focus-visible, summary:focus-visible, .nav-toggle:focus-visible { outline: 2px solid var(--pb-amber); outline-offset: 3px; }

/* illustrative / sample-data note */
.sample-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--muted); display: inline-flex; align-items: center; gap: 7px; }
.sample-note::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pb-amber); flex: none; }
.band--navy .sample-note { color: rgba(244,241,234,0.55); }
.trust-note { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: var(--muted-2); opacity: 0.8; flex-basis: 100%; text-align: center; margin-top: 4px; }

/* =============================================================================
   HERO — three switchable directions via [data-hero]
   ========================================================================== */
.hero { padding-top: 72px; padding-bottom: 84px; overflow: hidden; }
.hero-variant { display: none; }
[data-hero="product"]  #hero-product  { display: block; }
[data-hero="statement"] #hero-statement { display: block; }
[data-hero="split"]    #hero-split    { display: block; }

.tag-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.tag-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  letter-spacing: 0.04em; color: var(--muted);
  border: 1px solid var(--border); border-radius: var(--radius-full);
  padding: 5px 13px 5px 11px; background: var(--surface);
}
.tag-chip .ad { width: 7px; height: 7px; border-radius: 50%; background: var(--pb-amber); }

.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero-note {
  margin-top: 18px; font-size: 14px; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.hero-note .mono { color: var(--fg-strong); }

/* --- Direction A: product-forward (split text + browser) --- */
#hero-product .grid {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.05fr);
  gap: 64px; align-items: center;
}
#hero-product .display { margin-bottom: 22px; }
#hero-product .lede { max-width: 30ch; }
@media (max-width: 980px) {
  #hero-product .grid { grid-template-columns: 1fr; gap: 44px; }
  #hero-product .lede { max-width: 52ch; }
}

/* --- Direction B: statement (centered) --- */
#hero-statement { text-align: center; }
#hero-statement .tag-row { justify-content: center; }
#hero-statement .display { max-width: 16ch; margin: 0 auto 24px; }
#hero-statement .lede { max-width: 56ch; margin: 0 auto; }
#hero-statement .hero-cta { justify-content: center; }
#hero-statement .hero-note { justify-content: center; }
#hero-statement .stage { margin-top: 56px; }

/* --- Direction C: split navy panel --- */
#hero-split .grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 0;
  border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-raised);
}
#hero-split .left {
  background: var(--pb-navy); color: var(--pb-bone);
  padding: clamp(34px, 4vw, 60px); display: flex; flex-direction: column; justify-content: center;
}
#hero-split .left .display { color: var(--pb-bone); font-size: clamp(36px,4vw,56px); }
#hero-split .left .lede { color: rgba(244,241,234,0.72); }
#hero-split .right {
  background:
    linear-gradient(0deg, transparent 23px, transparent 0),
    var(--pb-bone);
  background-image:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: clamp(28px, 3vw, 48px); display: flex; align-items: center; justify-content: center;
}
@media (max-width: 980px) {
  #hero-split .grid { grid-template-columns: 1fr; }
}

/* =============================================================================
   BROWSER / DEVICE FRAMES
   ========================================================================== */
.browser {
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  background: var(--surface); overflow: hidden; box-shadow: var(--shadow-popover);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 14px; background: var(--pb-bone); border-bottom: 1px solid var(--border-soft);
}
.browser-bar .dots { display: flex; gap: 6px; }
.browser-bar .dots i { width: 11px; height: 11px; border-radius: 50%; background: var(--border); }
.browser-bar .url {
  flex: 1; margin-left: 8px; max-width: 320px;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--muted);
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-full); padding: 4px 12px; text-align: center;
}

/* =============================================================================
   SECTION SCAFFOLD
   ========================================================================== */
.band { padding: clamp(64px, 9vw, 120px) 0; }
.band--navy { background: var(--pb-navy); color: var(--pb-bone); }
.band--navy h1, .band--navy h2, .band--navy h3 { color: var(--pb-bone); }
.band--bone { background: var(--pb-bone); }
.band--paper { background: var(--bg); }

.sec-head { max-width: 60ch; }
.sec-head .h-sec { margin: 14px 0 0; }
.sec-head .lede { margin-top: 18px; }
.band--navy .sec-head .lede { color: rgba(244,241,234,0.66); }
.center { text-align: center; margin-inline: auto; }

/* =============================================================================
   LOGO / TRUST STRIP
   ========================================================================== */
.trust {
  border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
  padding: 26px 0;
}
.trust .wrap { display: flex; align-items: center; gap: 38px; flex-wrap: wrap; justify-content: center; }
.trust .lab { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.trust .name { font-weight: 600; font-size: 17px; color: var(--muted-2); letter-spacing: -0.01em; }

/* =============================================================================
   PROBLEM — chaos vs plot
   ========================================================================== */
.split2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; }
@media (max-width: 860px) { .split2 { grid-template-columns: 1fr; } }
.contrast {
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 30px; background: var(--surface);
}
.contrast.bad { background: var(--pb-bone); }
.contrast .tophd {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.contrast ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0; }
.contrast li {
  display: flex; gap: 12px; align-items: flex-start; padding: 13px 0;
  border-bottom: 1px solid var(--border-soft); font-size: 15.5px; color: var(--fg);
}
.contrast li:last-child { border-bottom: 0; }
.contrast li .mk { flex: none; margin-top: 1px; width: 18px; height: 18px; }
.contrast.bad li .mk { color: var(--pb-rust); }
.contrast.good li .mk { color: var(--pb-status-done-bg); }

/* =============================================================================
   THE PLOT MODEL — hierarchy diagram
   ========================================================================== */
.model {
  margin-top: 56px; border: 1px solid rgba(244,241,234,0.16); border-radius: var(--radius-xl);
  background: rgba(244,241,234,0.03); padding: clamp(26px, 4vw, 52px);
}
.chain { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; }
.chain .node {
  flex: 1; min-width: 150px; padding: 20px 18px; position: relative;
}
.chain .node + .node { border-left: 1px solid rgba(244,241,234,0.14); }
.chain .node .lab { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,241,234,0.5); }
.chain .node .ttl { font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin: 9px 0 6px; color: var(--pb-bone); }
.chain .node.unit .ttl { color: var(--pb-amber); }
.chain .node .dsc { font-size: 14px; color: rgba(244,241,234,0.6); line-height: 1.45; }
.chain .node .arr { position: absolute; right: -8px; top: 50%; transform: translateY(-50%); color: rgba(244,241,234,0.4); z-index: 2; background: var(--pb-navy); }
@media (max-width: 760px) {
  .chain { flex-direction: column; }
  .chain .node + .node { border-left: 0; border-top: 1px solid rgba(244,241,234,0.14); }
  .chain .node .arr { display: none; }
}

/* =============================================================================
   TWO SURFACES — Office + Painter
   ========================================================================== */
.surfaces { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
@media (max-width: 980px) { .surfaces { grid-template-columns: 1fr; } }
.surface-card {
  border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden;
  background: var(--surface); display: flex; flex-direction: column;
}
.surface-card .meta { padding: 28px 30px 22px; border-bottom: 1px solid var(--border-soft); }
.surface-card .meta .badge {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border); border-radius: var(--radius-full); padding: 4px 11px;
}
.surface-card .meta .badge .gd { width: 13px; height: 13px; border-radius: 3px; }
.surface-card .meta h3 { font-size: 25px; letter-spacing: -0.03em; }
.surface-card .meta p { margin: 8px 0 0; font-size: 15px; color: var(--muted); }
.surface-card .viewport { flex: 1; background: var(--pb-bone); padding: 26px; display: flex; align-items: flex-start; justify-content: center; }

/* =============================================================================
   OFFICE MOCK (compact, faithful to ui_kits/office)
   ========================================================================== */
.office {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-raised);
  display: grid; grid-template-columns: 168px 1fr; font-size: 13px; color: var(--fg);
}
.office .o-side { background: var(--pb-navy); color: var(--pb-bone); padding: 16px 12px; display: flex; flex-direction: column; gap: 3px; }
.office .o-side .brand { display: flex; align-items: center; gap: 8px; margin: 2px 4px 16px; }
.office .o-side .brand img { width: 22px; height: 22px; border-radius: 5px; }
.office .o-side .brand b { font-weight: 800; font-size: 15px; letter-spacing: -0.02em; }
.office .o-side .brand .wm-dot { color: var(--pb-amber); }
.office .o-nav { display: flex; align-items: center; gap: 9px; padding: 7px 9px; border-radius: var(--radius-md); color: rgba(244,241,234,0.66); font-size: 12.5px; font-weight: 500; position: relative; }
.office .o-nav svg { width: 15px; height: 15px; }
.office .o-nav.active { background: rgba(244,241,234,0.07); color: var(--pb-bone); }
.office .o-nav.active::before { content: ""; position: absolute; left: -12px; top: 6px; bottom: 6px; width: 3px; background: var(--pb-amber); border-radius: 0 2px 2px 0; }
.office .o-main { padding: 18px; background: var(--bg); }
.office .o-h { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.office .o-h .eb { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.office .o-h h4 { font-size: 19px; font-weight: 700; letter-spacing: -0.03em; margin: 4px 0 2px; color: var(--fg-strong); }
.office .o-h .s { font-size: 12px; color: var(--muted); }
.office .o-h .mini-btn { background: var(--pb-amber); color: var(--pb-navy); font-weight: 600; font-size: 12px; padding: 7px 12px; border-radius: var(--radius-md); border: none; }
.office .kpis { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-bottom: 16px; }
.office .kpi { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px; background: var(--surface); }
.office .kpi.vio { border-top: 3px solid var(--pb-status-snagging-bg); }
.office .kpi.grn { border-top: 3px solid var(--pb-status-done-bg); }
.office .kpi.rst { border-top: 3px solid var(--pb-rust); }
.office .kpi .n { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--fg-strong); line-height: 1; }
.office .kpi .l { font-size: 11px; font-weight: 600; color: var(--fg); margin-top: 6px; }
.office .kpi .ss { font-size: 10px; color: var(--muted); margin-top: 1px; }
.office .o-cols { display: grid; grid-template-columns: 1.3fr 1fr; gap: 12px; }
.office .panel { border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); overflow: hidden; }
.office .panel .ph { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-bottom: 1px solid var(--border-soft); }
.office .panel .ph h5 { font-size: 13px; font-weight: 600; letter-spacing: -0.01em; color: var(--fg-strong); }
.office .panel .ph .lk { font-size: 11px; color: var(--muted); }
.office .row { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-bottom: 1px solid var(--border-soft); }
.office .row:last-child { border-bottom: 0; }
.office .row .code { font-family: var(--font-mono); font-size: 11px; font-weight: 500; color: var(--fg-strong); }
.office .row .tdot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.office .row .bd { flex: 1; min-width: 0; }
.office .row .bd .t { font-size: 12px; font-weight: 500; color: var(--fg); }
.office .row .bd .d { font-size: 10.5px; color: var(--muted); }
.office .row .snagdot { width: 7px; height: 7px; border-radius: 50%; background: var(--pb-status-snagging-bg); flex: none; margin-top: 4px; }
.office .row .when { font-family: var(--font-mono); font-size: 10px; color: var(--muted); }
.office .clashbox { border: 1px solid var(--pb-notice-blocked-border); background: var(--pb-notice-blocked-bg); border-radius: var(--radius-md); padding: 11px 12px; margin-bottom: 12px; }
.office .clashbox .hd { display: flex; align-items: center; gap: 7px; font-weight: 600; font-size: 12px; color: var(--pb-notice-blocked-fg); }
.office .clashbox .hd svg { width: 14px; height: 14px; }
.office .clashbox .it { display: flex; align-items: center; gap: 8px; margin-top: 9px; padding-top: 9px; border-top: 1px solid rgba(194,65,12,0.2); }
.office .clashbox .it .code { font-family: var(--font-mono); font-size: 11px; color: var(--pb-notice-blocked-fg); }
.office .clashbox .it .s { flex: 1; font-size: 11px; color: var(--pb-notice-blocked-fg); }
.office .clashbox .it .r { font-size: 11px; font-weight: 600; color: var(--pb-rust); }
@media (max-width: 520px) {
  .office { grid-template-columns: 1fr; }
  .office .o-side { display: none; }
  .office .kpis { grid-template-columns: repeat(3, 1fr); }
  .office .o-cols { grid-template-columns: 1fr; }
}

/* =============================================================================
   PAINTER PHONE MOCK
   ========================================================================== */
.phone {
  width: 290px; max-width: 100%; background: var(--pb-navy); border-radius: 38px;
  padding: 11px; box-shadow: var(--shadow-modal);
}
.phone .screen {
  background: var(--pb-paper); border-radius: 28px; overflow: hidden; position: relative;
  aspect-ratio: 9 / 18.5; display: flex; flex-direction: column;
}
.phone .notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 96px; height: 22px; background: var(--pb-navy); border-radius: var(--radius-full); z-index: 5; }
.phone .p-head { padding: 30px 16px 12px; background: var(--surface); border-bottom: 1px solid var(--border-soft); }
.phone .p-head .top { display: flex; align-items: center; justify-content: space-between; }
.phone .p-head .top .l { display: flex; align-items: center; gap: 8px; }
.phone .p-head .top .l img { width: 24px; height: 24px; border-radius: 6px; }
.phone .p-head .top .l h4 { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--pb-navy); }
.phone .p-head .top .rf { font-size: 12px; color: var(--fg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 6px 9px; }
.phone .p-head .online { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--pb-status-done-bg); margin-top: 9px; display: inline-flex; align-items: center; gap: 5px; }
.phone .p-body { flex: 1; overflow: hidden; padding: 4px 0 0; }
.phone .p-sec-lab { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 16px 2px; }
.phone .p-sec-lab.active { color: var(--pb-brand-700); }
.phone .p-sec-lab.muted { color: var(--muted); }
.phone .p-site { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding: 6px 16px 2px; font-family: var(--font-mono); }
.phone .p-card { background: var(--surface); border: 1px solid var(--border-soft); border-radius: 16px; margin: 10px 13px; overflow: hidden; box-shadow: var(--shadow-raised); }
.phone .p-card .pc-top { padding: 14px 15px 10px; display: flex; align-items: flex-start; justify-content: space-between; }
.phone .p-card .pc-top h5 { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--pb-navy); }
.phone .p-card .pc-top h5 .mono { font-family: var(--font-mono); }
.phone .p-card .pc-top .sub { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.phone .checkpill { font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 9px; border-radius: var(--radius-full); display: inline-flex; align-items: center; gap: 5px; }
.phone .checkpill.in { background: var(--pb-status-live-bg); color: var(--pb-navy); }
.phone .checkpill.out { background: var(--pb-bone-2); color: var(--fg); }
.phone .p-prog { padding: 0 15px 8px; }
.phone .p-prog .lab { font-family: var(--font-mono); font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.phone .p-task { display: flex; align-items: center; justify-content: space-between; padding: 11px 12px; background: var(--pb-paper); border: 1px solid var(--border-soft); border-radius: 11px; margin-bottom: 7px; }
.phone .p-task .t { font-size: 13.5px; font-weight: 600; color: var(--fg); }
.phone .p-task .a { font-size: 11px; color: var(--muted); margin-top: 1px; }
.phone .p-task .ar { color: var(--muted); font-size: 16px; }
.phone .p-foot { display: flex; gap: 8px; padding: 10px 15px 15px; }
.phone .p-foot button { flex: 1; padding: 11px 6px; border-radius: 11px; font-weight: 600; font-size: 12.5px; border: 1px solid var(--border); background: transparent; color: var(--fg); }
.phone .p-foot button.amber { background: var(--pb-amber); color: var(--pb-navy); border-color: transparent; font-weight: 700; }

/* =============================================================================
   FEATURE GRID
   ========================================================================== */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: var(--radius-xl); overflow: hidden; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }
.feature { background: var(--surface); padding: 30px 28px; }
.feature .ic { width: 40px; height: 40px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; background: var(--pb-bone); color: var(--pb-navy); margin-bottom: 18px; }
.feature .ic svg { width: 21px; height: 21px; }
.feature h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.feature p { margin: 9px 0 0; font-size: 14.5px; color: var(--muted); line-height: 1.5; }

/* =============================================================================
   QUOTE
   ========================================================================== */
.quote { max-width: 24ch; }
.quote blockquote { font-weight: 600; font-size: clamp(26px, 3.4vw, 40px); line-height: 1.16; letter-spacing: -0.03em; color: var(--pb-bone); margin: 0; }
.quote-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .quote-grid { grid-template-columns: 1fr; gap: 36px; } .quote { max-width: none; } }
.quote .who { margin-top: 30px; display: flex; align-items: center; gap: 13px; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--pb-amber); color: var(--pb-navy); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; }
.quote .who .nm { font-weight: 600; font-size: 16px; color: var(--pb-bone); }
.quote .who .rl { font-size: 13.5px; color: rgba(244,241,234,0.6); }
.statbox { border: 1px solid rgba(244,241,234,0.16); border-radius: var(--radius-xl); overflow: hidden; }
.statbox .st { padding: 22px 24px; border-bottom: 1px solid rgba(244,241,234,0.14); }
.statbox .st:last-child { border-bottom: 0; }
.statbox .st .n { font-weight: 700; font-size: 34px; letter-spacing: -0.03em; color: var(--pb-amber); line-height: 1; }
.statbox .st .l { font-size: 14px; color: rgba(244,241,234,0.68); margin-top: 7px; }

/* =============================================================================
   FAQ
   ========================================================================== */
.faq { margin-top: 48px; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-weight: 600; font-size: 18px; letter-spacing: -0.02em; color: var(--fg-strong);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 22px; height: 22px; position: relative; transition: transform var(--duration-base) var(--ease-out); }
.faq summary .pm::before, .faq summary .pm::after { content: ""; position: absolute; background: var(--muted); border-radius: 2px; }
.faq summary .pm::before { left: 0; right: 0; top: 10px; height: 2px; }
.faq summary .pm::after { top: 0; bottom: 0; left: 10px; width: 2px; }
.faq details[open] summary .pm::after { opacity: 0; }
.faq details[open] summary .pm { transform: rotate(90deg); }
.faq .ans { padding: 0 4px 24px; font-size: 16px; color: var(--muted); max-width: 70ch; line-height: 1.55; }

/* =============================================================================
   FINAL CTA
   ========================================================================== */
.cta-final { text-align: center; }
.cta-final .display { max-width: 18ch; margin: 14px auto 0; color: var(--pb-bone); }
.cta-final .lede { max-width: 50ch; margin: 20px auto 0; color: rgba(244,241,234,0.7); }
.cta-final .hero-cta { justify-content: center; margin-top: 34px; }

/* =============================================================================
   FOOTER
   ========================================================================== */
.site-foot { background: var(--pb-navy); color: rgba(244,241,234,0.6); padding: 64px 0 40px; border-top: 1px solid rgba(244,241,234,0.1); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.foot-grid .about { max-width: 30ch; }
.foot-grid .about p { font-size: 14px; margin: 16px 0 0; line-height: 1.5; }
.foot-col h6 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,241,234,0.45); margin: 0 0 16px; font-weight: 500; }
.foot-col a { display: block; font-size: 14.5px; color: rgba(244,241,234,0.72); padding: 6px 0; }
.foot-col a:hover { color: var(--pb-bone); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 52px; padding-top: 26px; border-top: 1px solid rgba(244,241,234,0.1); }
.foot-bottom .mono { font-size: 12px; color: rgba(244,241,234,0.5); }
.foot-bottom .lt { display: flex; gap: 22px; }
.foot-bottom .lt a { font-size: 13px; color: rgba(244,241,234,0.6); }

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

#tweaks-root { position: fixed; z-index: 2147483000; }

/* =============================================================================
   SUBPAGE SCAFFOLD — About / Careers / Contact / Legal / Security / Status
   Blueprint grid hero on navy, then content bands. Shared across inner pages.
   ========================================================================== */
.page-hero {
  background: var(--pb-navy); color: var(--pb-bone);
  padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px);
  position: relative; overflow: hidden;
  border-bottom: 1px solid rgba(244,241,234,0.1);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5; pointer-events: none;
  background-image:
    linear-gradient(rgba(244,241,234,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,234,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
          mask-image: radial-gradient(120% 90% at 50% 0%, #000 30%, transparent 78%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: var(--pb-bone); margin-top: 16px; }
.page-hero .lede { color: rgba(244,241,234,0.72); margin-top: 18px; max-width: 62ch; }
.page-hero .eyebrow--amber { color: var(--pb-amber); }

.crumbs { display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(244,241,234,0.5); margin-bottom: 26px; }
.crumbs a { color: rgba(244,241,234,0.66); }
.crumbs a:hover { color: var(--pb-bone); }
.crumbs .sep { color: rgba(244,241,234,0.3); }

.page-hero .pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.page-hero .meta-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  color: rgba(244,241,234,0.72); border: 1px solid rgba(244,241,234,0.18);
  border-radius: var(--radius-full); padding: 5px 13px;
}
.page-hero .meta-chip .ad { width: 7px; height: 7px; border-radius: 50%; background: var(--pb-amber); }
.page-hero .meta-chip .ad.grn { background: var(--pb-status-done-bg); box-shadow: 0 0 0 4px rgba(31,138,91,0.18); }

/* ---- prose (legal + long-form) ---- */
.prose-layout { display: grid; grid-template-columns: 240px minmax(0,1fr); gap: clamp(28px,5vw,72px); align-items: start; }
@media (max-width: 880px) { .prose-layout { grid-template-columns: 1fr; gap: 36px; } }
.toc { position: sticky; top: 96px; }
@media (max-width: 880px) { .toc { position: static; top: auto; padding-bottom: 8px; border-bottom: 1px solid var(--border); } }
.toc .toc-lab { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
.toc a { display: block; font-size: 14px; color: var(--muted); padding: 7px 0; border-left: 2px solid var(--border-soft); padding-left: 14px; transition: color var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out); }
.toc a:hover { color: var(--fg-strong); border-color: var(--pb-amber); }

.prose { max-width: 72ch; }
.prose .updated { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); padding: 10px 14px; background: var(--pb-bone); border: 1px solid var(--border-soft); border-radius: var(--radius-md); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 36px; }
.prose h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.03em; margin: 48px 0 16px; scroll-margin-top: 96px; }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; margin: 30px 0 10px; }
.prose p { font-size: 16.5px; line-height: 1.62; color: var(--fg); margin: 0 0 18px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { font-size: 16.5px; line-height: 1.6; color: var(--fg); margin-bottom: 9px; }
.prose a:not(.btn) { color: var(--pb-brand-700); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:not(.btn):hover { color: var(--pb-navy); }
.prose strong { font-weight: 600; color: var(--fg-strong); }
.prose .callout { border: 1px solid var(--border); border-left: 3px solid var(--pb-amber); background: var(--surface); border-radius: var(--radius-md); padding: 18px 20px; margin: 0 0 24px; }
.prose .callout p:last-child { margin-bottom: 0; }
.prose hr { border: 0; border-top: 1px solid var(--border-soft); margin: 40px 0; }

/* ---- generic feature/value cards reused on inner pages ---- */
.card-grid { display: grid; gap: 20px; margin-top: 48px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .card-grid.cols-2, .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr; } }
.s-card { border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--surface); padding: 28px 26px; }
.band--navy .s-card { background: rgba(244,241,234,0.04); border-color: rgba(244,241,234,0.14); }
.s-card .ic { width: 42px; height: 42px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; background: var(--pb-bone); color: var(--pb-navy); margin-bottom: 18px; }
.band--navy .s-card .ic { background: rgba(255,179,0,0.14); color: var(--pb-amber); }
.s-card .ic svg { width: 22px; height: 22px; }
.s-card h3 { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; }
.band--navy .s-card h3 { color: var(--pb-bone); }
.s-card p { margin: 9px 0 0; font-size: 15px; color: var(--muted); line-height: 1.55; }
.band--navy .s-card p { color: rgba(244,241,234,0.66); }
.s-card .num { font-family: var(--font-mono); font-size: 12px; color: var(--pb-brand-700); margin-bottom: 14px; letter-spacing: 0.04em; }

/* ---- big numbered values / story ---- */
.value-row { border-top: 1px solid var(--border); }
.value-item { display: grid; grid-template-columns: 120px minmax(0,1fr); gap: 32px; padding: 34px 0; border-bottom: 1px solid var(--border); align-items: start; }
@media (max-width: 680px) { .value-item { grid-template-columns: 1fr; gap: 12px; } }
.value-item .vn { font-family: var(--font-mono); font-size: 14px; color: var(--pb-brand-700); letter-spacing: 0.04em; }
.value-item h3 { font-size: 23px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 10px; }
.value-item p { font-size: 16px; color: var(--muted); line-height: 1.6; max-width: 64ch; margin: 0; }

/* ---- stat strip ---- */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: var(--radius-xl); overflow: hidden; margin-top: 48px; }
@media (max-width: 760px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat-strip .st { background: var(--surface); padding: 30px 26px; }
.band--navy .stat-strip { background: rgba(244,241,234,0.14); border-color: rgba(244,241,234,0.14); }
.band--navy .stat-strip .st { background: var(--pb-navy); }
.stat-strip .st .n { font-weight: 700; font-size: 42px; letter-spacing: -0.04em; color: var(--fg-strong); line-height: 1; }
.band--navy .stat-strip .st .n { color: var(--pb-amber); }
.stat-strip .st .l { font-size: 14px; color: var(--muted); margin-top: 10px; line-height: 1.45; }
.band--navy .stat-strip .st .l { color: rgba(244,241,234,0.66); }

/* ---- team ---- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card { border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--surface); padding: 24px; }
.team-card .av { width: 56px; height: 56px; border-radius: 50%; background: var(--pb-navy); color: var(--pb-bone); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 19px; letter-spacing: -0.02em; margin-bottom: 16px; }
.team-card .av.amber { background: var(--pb-amber); color: var(--pb-navy); }
.team-card h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.02em; }
.team-card .tm-role { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; color: var(--muted); margin-top: 4px; }
.team-card p { font-size: 14px; color: var(--muted); margin: 12px 0 0; line-height: 1.5; }

/* =============================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 44px; } }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.cm {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px;
  border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--surface);
  transition: border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.cm:hover { border-color: var(--pb-steel); box-shadow: var(--shadow-raised); }
.cm .ic { flex: none; width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--pb-bone); color: var(--pb-navy); display: flex; align-items: center; justify-content: center; }
.cm .ic svg { width: 22px; height: 22px; }
.cm h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.cm p { font-size: 14px; color: var(--muted); margin: 4px 0 8px; line-height: 1.5; }
.cm .lnk { font-weight: 600; font-size: 14.5px; color: var(--pb-brand-700); display: inline-flex; align-items: center; gap: 6px; }
.cm .lnk:hover { color: var(--pb-navy); }

.form-card { border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--surface); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-raised); }
.form-card h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; margin-bottom: 6px; }
.form-card .sub { font-size: 14.5px; color: var(--muted); margin: 0 0 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 13.5px; color: var(--fg-strong); margin-bottom: 7px; }
.field label .req { color: var(--pb-rust); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 15px; color: var(--fg);
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 12px 13px; transition: border-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pb-amber); box-shadow: 0 0 0 3px rgba(255,179,0,0.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-card .btn[disabled] { opacity: 0.6; cursor: default; }
.form-note { font-size: 12.5px; color: var(--muted); margin: 16px 0 0; text-align: center; line-height: 1.5; }

.form-success {
  border: 1px solid var(--pb-notice-success-border); background: var(--pb-notice-success-bg);
  border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 44px); text-align: center;
}
.form-success .ic { width: 52px; height: 52px; border-radius: var(--radius-full); background: var(--pb-status-done-bg); color: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form-success .ic svg { width: 28px; height: 28px; }
.form-success h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.03em; color: var(--pb-notice-success-fg); }
.form-success p { font-size: 15px; color: var(--pb-notice-success-fg); opacity: 0.9; margin: 10px auto 22px; max-width: 42ch; line-height: 1.55; }

/* =============================================================================
   CAREERS
   ========================================================================== */
.role-list { margin-top: 48px; border-top: 1px solid var(--border); }
.role {
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 20px; align-items: center;
  padding: 26px 4px; border-bottom: 1px solid var(--border);
  transition: padding-left var(--duration-base) var(--ease-out);
}
.role:hover { padding-left: 12px; }
.role .rl-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 8px; }
.role .rl-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.role .rl-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); }
.role h3 { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; }
.role p { font-size: 14.5px; color: var(--muted); margin: 6px 0 0; max-width: 60ch; line-height: 1.5; }
.role .rl-cta { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14.5px; color: var(--pb-brand-700); white-space: nowrap; }
.role:hover .rl-cta { color: var(--pb-navy); }
@media (max-width: 620px) { .role { grid-template-columns: 1fr; gap: 12px; } }

.empty-roles { margin-top: 40px; border: 1px dashed var(--border); border-radius: var(--radius-xl); padding: 40px; text-align: center; background: var(--surface); }
.empty-roles h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.02em; }
.empty-roles p { font-size: 15px; color: var(--muted); margin: 10px auto 22px; max-width: 48ch; }

/* perks */
.perk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border-soft); border: 1px solid var(--border-soft); border-radius: var(--radius-xl); overflow: hidden; margin-top: 48px; }
@media (max-width: 760px) { .perk-grid { grid-template-columns: 1fr; } }
.perk { background: var(--surface); padding: 26px 24px; }
.perk .ic { color: var(--pb-brand-700); margin-bottom: 14px; }
.perk .ic svg { width: 22px; height: 22px; }
.perk h3 { font-size: 16px; font-weight: 600; letter-spacing: -0.02em; }
.perk p { font-size: 14px; color: var(--muted); margin: 7px 0 0; line-height: 1.5; }

/* =============================================================================
   STATUS PAGE
   ========================================================================== */
.status-banner {
  display: flex; align-items: center; gap: 16px; padding: 22px 26px;
  border: 1px solid var(--pb-notice-success-border); background: var(--pb-notice-success-bg);
  border-radius: var(--radius-xl); margin-top: 8px;
}
.status-banner .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--pb-status-done-bg); box-shadow: 0 0 0 5px rgba(31,138,91,0.18); flex: none; }
.status-banner h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; color: var(--pb-notice-success-fg); }
.status-banner p { font-size: 14px; color: var(--pb-notice-success-fg); opacity: 0.85; margin: 2px 0 0; font-family: var(--font-mono); }

.status-list { margin-top: 36px; border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; background: var(--surface); }
.status-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; border-bottom: 1px solid var(--border-soft); }
.status-row:last-child { border-bottom: 0; }
.status-row .svc { display: flex; align-items: center; gap: 12px; }
.status-row .svc .nm { font-weight: 600; font-size: 15.5px; color: var(--fg-strong); }
.status-row .svc .ds { font-size: 13px; color: var(--muted); }
.status-row .bars { display: flex; gap: 3px; }
.status-row .bars i { width: 5px; height: 26px; border-radius: 2px; background: var(--pb-status-done-bg); opacity: 0.85; }
.status-row .bars i.warn { background: var(--pb-amber); }
.status-row .bars i.down { background: var(--pb-rust); }
.status-row .state { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--pb-status-done-bg); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.status-row .state .d { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
@media (max-width: 620px) { .status-row .bars { display: none; } }

.status-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; font-family: var(--font-mono); font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 8px; }

.incident-list { margin-top: 40px; }
.incident { display: grid; grid-template-columns: 160px minmax(0,1fr); gap: 24px; padding: 24px 0; border-top: 1px solid var(--border); }
@media (max-width: 620px) { .incident { grid-template-columns: 1fr; gap: 8px; } }
.incident .when { font-family: var(--font-mono); font-size: 13px; color: var(--muted); }
.incident h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 6px; }
.incident p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.55; }
.incident .ok { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--pb-status-done-bg); margin-bottom: 10px; }
.incident .ok .d { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

/* ---- inner-page CTA (light) ---- */
.cta-strip { border: 1px solid var(--border); border-radius: var(--radius-xl); background: var(--pb-navy); color: var(--pb-bone); padding: clamp(32px,5vw,56px); text-align: center; }
.cta-strip h2 { color: var(--pb-bone); font-size: clamp(26px,3.4vw,38px); font-weight: 700; letter-spacing: -0.03em; }
.cta-strip p { color: rgba(244,241,234,0.7); font-size: 17px; margin: 14px auto 0; max-width: 50ch; }
.cta-strip .hero-cta { justify-content: center; margin-top: 30px; }
