/* Bruce Chou personal site — "制度架構師" (information-architecture / Pentagram school)
   Two colors + one accent. Type does the visual work. No radius, no shadow, 1px rules. */
:root {
  --bg: #f4f1e7;
  --surface: #fbfaf5;
  --ink: #0e0e0e;
  --muted: #55524b;
  --line: #0e0e0e;
  --hair: #cfcabd;
  --accent: #1e3fff;
  --accent-ink: #ffffff;
  --accent-soft: #e4e7fb;
  --field: #8f887d;
  --sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  --serif: var(--sans);
  --max: 1200px;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0e0e10;
    --surface: #17171a;
    --ink: #f4f1e7;
    --muted: #a9a59b;
    --line: #f4f1e7;
    --hair: #34343a;
    --accent: #6e86ff;
    --accent-ink: #0e0e10;
    --accent-soft: #1c2140;
    --field: #6b7178;
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 64px; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.7;
  -webkit-font-smoothing: antialiased; font-feature-settings: "tnum";
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration-color: var(--accent); text-decoration-thickness: 2px; text-underline-offset: 4px; }
a:hover { color: var(--accent); }
h1, h2, h3 { font-family: var(--sans); margin: 0; line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
@media (max-width: 560px) { .wrap { padding: 0 20px; } }
.nb { display: inline-block; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 10; background: var(--bg); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 56px; gap: 16px; }
.brand { font-weight: 900; font-size: 16px; letter-spacing: .06em; color: var(--ink); text-decoration: none; white-space: nowrap; text-transform: uppercase; }
.nav ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; font-size: 14px; font-weight: 500; }
.nav ul a { color: var(--ink); text-decoration: none; white-space: nowrap; }
.nav ul a:hover { color: var(--accent); }
.nav .lang { border: 1px solid var(--line); padding: 2px 10px; }
@media (max-width: 860px) { .nav ul li.hide-sm { display: none; } }
@media (max-width: 520px) { .nav ul { gap: 14px; } .nav ul li.hide-xs { display: none; } .brand { font-size: 14px; } }

/* ---------- section scaffolding ---------- */
section { padding: 96px 0; border-top: 1px solid var(--line); }
.eyebrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-bottom: 14px; }
.section-title { font-size: clamp(34px, 5vw, 60px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 48px; }
.lead { font-size: 19px; color: var(--muted); }
@media (max-width: 560px) { section { padding: 64px 0; } .section-title { margin-bottom: 32px; } }

/* ---------- hero ---------- */
.hero { padding: 56px 0 0; }
.hero-top { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 36px; }
.hero-top .eyebrow { margin: 0; }
.hero-top .meta { font-size: 12px; letter-spacing: .12em; color: var(--muted); text-transform: uppercase; }
.hero h1 { font-size: clamp(40px, 7.4vw, 104px); font-weight: 900; line-height: 1.08; letter-spacing: -.035em; margin: 0 0 40px; }
.hero h1 .accent { color: var(--accent); }
.hero-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: end; }
.hero .tagline { font-size: clamp(19px, 2vw, 24px); font-weight: 700; margin: 0 0 16px; }
.hero .sub { font-size: 17px; color: var(--muted); max-width: 36em; }
.hero .sub strong { color: var(--ink); }
.portrait { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: end; margin: 0; }
.portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 15%; filter: grayscale(1) contrast(1.05); }
.portrait figcaption { font-size: 12px; line-height: 1.6; color: var(--muted); border-top: 1px solid var(--line); padding-top: 8px; }
.portrait figcaption b { display: block; color: var(--ink); font-size: 14px; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .portrait { max-width: 360px; }
}
@media (max-width: 560px) { .hero { padding-top: 32px; } .hero h1 { margin-bottom: 28px; } .hero-top .meta { display: none; } }

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 24px;
  font-weight: 700; font-size: 16px; text-decoration: none; border: 1.5px solid var(--ink); border-radius: 0;
  transition: background .15s, color .15s;
}
.btn.primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.btn.primary:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.btn.ghost { color: var(--ink); background: transparent; }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }

/* stats: a ruled strip of huge numerals */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-top: 64px; }
.stat { padding: 24px 24px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat b { display: block; font-size: clamp(30px, 3.6vw, 48px); font-weight: 900; line-height: 1.1; letter-spacing: -.02em; white-space: nowrap; }
.stat span { display: block; font-size: 14px; color: var(--muted); margin-top: 8px; line-height: 1.5; }
@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; padding-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ---------- expertise: spreads, not cards ---------- */
.xp-list { border-top: 1px solid var(--line); }
.xp {
  display: grid; grid-template-columns: 120px 1fr 1fr; gap: 40px;
  padding: 40px 0; border-bottom: 1px solid var(--line);
}
.xp .num { font-size: 72px; font-weight: 900; color: var(--accent); line-height: .9; letter-spacing: -.04em; }
.xp h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 900; margin-bottom: 12px; }
.xp p { color: var(--muted); margin: 0; }
.xp ul { margin: 16px 0 0; padding: 0; list-style: none; font-size: 15px; color: var(--muted); }
.xp ul li { padding: 8px 0; border-top: 1px solid var(--hair); }
.xp ul b { color: var(--ink); }
.xp .more { display: inline-block; margin-top: 16px; font-size: 15px; font-weight: 700; }
@media (max-width: 960px) { .xp { grid-template-columns: 1fr; gap: 20px; } .xp .num { font-size: 56px; } }

/* diagrams */
.diagram { align-self: start; }
.diagram .cap { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; }
.flow .box { border: 1.5px solid var(--ink); padding: 14px 12px; min-height: 104px; }
.flow .box b { display: block; font-size: 28px; font-weight: 900; line-height: 1; color: var(--accent); }
.flow .box span { display: block; font-size: 13px; margin-top: 8px; line-height: 1.45; }
.flow .arrow { align-self: center; padding: 0 6px; font-weight: 900; }
.path { display: flex; flex-wrap: wrap; margin-top: 18px; }
.path span { font-size: 13px; font-weight: 700; padding: 6px 10px; border: 1px solid var(--ink); margin: 0 -1px -1px 0; }
.path span:last-child { background: var(--ink); color: var(--bg); }
.cake { display: grid; grid-template-columns: 1fr 1fr; }
.cake div { aspect-ratio: 1 / .62; padding: 12px 14px; border: 1.5px solid var(--ink); margin: 0 -1.5px -1.5px 0; display: flex; flex-direction: column; justify-content: space-between; }
.cake b { font-size: 44px; font-weight: 900; line-height: 1; }
.cake span { font-size: 13px; line-height: 1.4; }
.cake .c { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.floors { display: grid; grid-template-columns: repeat(5, 1fr); align-items: end; gap: 4px; height: 170px; border-bottom: 1.5px solid var(--ink); }
.floors div { background: var(--ink); color: var(--bg); font-size: 11px; font-weight: 700; padding: 6px; }
.floors div:nth-child(1) { height: 22%; } .floors div:nth-child(2) { height: 40%; } .floors div:nth-child(3) { height: 58%; }
.floors div:nth-child(4) { height: 78%; } .floors div:nth-child(5) { height: 100%; background: var(--accent); color: var(--accent-ink); }
.floors-axis { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 8px; }
.sys-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.sys-table th { text-align: left; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 0 0 8px; border-bottom: 1.5px solid var(--ink); }
.sys-table td { padding: 12px 0; border-bottom: 1px solid var(--hair); vertical-align: top; }
.sys-table td:first-child { font-weight: 900; width: 38%; }
.sys-table small { color: var(--muted); }

/* ---------- about ---------- */
.about { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; }
.about blockquote { margin: 0; font-size: clamp(28px, 3.4vw, 44px); font-weight: 900; line-height: 1.25; letter-spacing: -.02em; }
.about blockquote small { display: block; font-size: 16px; font-weight: 500; color: var(--accent); margin-top: 16px; letter-spacing: 0; }
@media (max-width: 860px) { .about { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- topics: numbered index rows ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; }
@media (max-width: 760px) { .grid-2 { grid-template-columns: 1fr; } }
.card { border-top: 1.5px solid var(--ink); padding: 20px 0 32px; }
.card h3 { font-size: 22px; font-weight: 900; margin-bottom: 10px; }
.card .num { display: block; font-size: 14px; font-weight: 900; color: var(--accent); margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 16px; margin: 0; }
.card .fit { margin-top: 12px; font-size: 13px; color: var(--ink); font-weight: 500; }
.formats { margin-top: 16px; color: var(--muted); font-size: 15px; border-top: 1px solid var(--line); padding-top: 16px; }

/* ---------- works ---------- */
.work { display: flex; flex-direction: column; }
.work .shot { aspect-ratio: 14 / 5; overflow: hidden; border: 1px solid var(--line); margin-bottom: 18px; }
.work .shot img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: grayscale(1); transition: filter .3s; }
.work:hover .shot img { filter: none; }
.work .shot.type { display: flex; flex-direction: column; justify-content: center; padding: 20px 24px; background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.work .shot.type b { font-size: clamp(34px, 5vw, 56px); font-weight: 900; line-height: 1; letter-spacing: -.03em; }
.work .shot.type span { font-size: 14px; margin-top: 8px; }
.work .body { display: flex; flex-direction: column; flex: 1; }
.work .one { color: var(--ink); font-size: 16px; font-weight: 500; margin-bottom: 10px; }
.work ul { margin: 0 0 14px; padding-left: 1.1em; color: var(--muted); font-size: 15px; }
.work ul li { margin-bottom: 4px; }
.work .link { margin-top: auto; font-size: 15px; font-weight: 700; }
.work .link.muted { color: var(--muted); font-weight: 400; }
.work .note { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ---------- career: ruled table ---------- */
.timeline { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--ink); }
.timeline li { display: grid; grid-template-columns: 150px 1.1fr 1.6fr; gap: 8px 24px; padding: 20px 0; border-bottom: 1px solid var(--hair); }
.timeline .when { font-weight: 900; font-size: 15px; color: var(--accent); grid-row: span 2; }
.timeline .who { font-weight: 900; font-size: 19px; line-height: 1.35; }
.timeline .role { color: var(--muted); font-size: 14px; grid-column: 2; }
.timeline p { color: var(--muted); font-size: 15px; margin: 0; grid-column: 3; grid-row: 1 / span 2; }
@media (max-width: 760px) {
  .timeline li { grid-template-columns: 1fr; gap: 4px; }
  .timeline .when, .timeline .role, .timeline p { grid-column: auto; grid-row: auto; }
}

/* ---------- lists / talks ---------- */
.plain { list-style: none; margin: 0; padding: 0; border-top: 1.5px solid var(--ink); }
.plain li { padding: 14px 0; border-bottom: 1px solid var(--hair); }
.plain .y { color: var(--accent); font-weight: 900; font-size: 14px; margin-right: 10px; }
.plain small { display: block; color: var(--muted); font-size: 14px; }
.talks { width: 100%; border-collapse: collapse; font-size: 16px; border-top: 1.5px solid var(--ink); }
.talks td { padding: 16px 16px 16px 0; border-bottom: 1px solid var(--hair); vertical-align: top; }
.talks td:first-child { color: var(--accent); font-weight: 900; white-space: nowrap; font-size: 15px; width: 130px; }
.talks td:nth-child(2) { font-weight: 700; }
.talks td:last-child { color: var(--muted); }
.talks .soon { font-size: 11px; background: var(--accent); color: var(--accent-ink); padding: 1px 8px; margin-left: 8px; font-weight: 700; }
@media (max-width: 620px) {
  .talks tr { display: block; padding: 14px 0; border-bottom: 1px solid var(--hair); }
  .talks td { display: block; border: 0; padding: 0; width: auto; }
}

/* ---------- contact: accent color field ---------- */
#contact { background: var(--accent); color: var(--accent-ink); border-top: 0; }
#contact .eyebrow, #contact .lead, #contact label, #contact legend { color: var(--accent-ink); }
#contact .section-title { font-size: clamp(40px, 6vw, 80px); }
#contact .btn.ghost { color: var(--accent-ink); border-color: var(--accent-ink); }
#contact .btn.ghost:hover { background: var(--accent-ink); color: var(--accent); }
#contact .btn.primary { background: var(--ink); border-color: var(--ink); color: var(--bg); }
#contact .btn.primary:hover { background: var(--accent-ink); color: var(--accent); border-color: var(--accent-ink); }
#contact a { color: var(--accent-ink); }
.contact { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; }
@media (max-width: 860px) { .contact { grid-template-columns: 1fr; gap: 32px; } }
form { display: grid; gap: 16px; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .row2 { grid-template-columns: 1fr; } }
label { font-size: 13px; font-weight: 700; display: block; margin-bottom: 6px; letter-spacing: .04em; }
label .req { opacity: .8; }
input, textarea, select {
  width: 100%; font: inherit; font-size: 16px; color: #0e0e0e; background: #fbfaf5;
  border: 1.5px solid #0e0e0e; border-radius: 0; padding: 10px 12px; min-height: 46px;
}
input:focus, textarea:focus { outline: 3px solid #0e0e0e; outline-offset: 1px; }
fieldset { border: 0; margin: 0; padding: 0; }
legend { font-size: 13px; font-weight: 700; margin-bottom: 8px; padding: 0; letter-spacing: .04em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips label { font-weight: 400; margin: 0; letter-spacing: 0; }
.chips input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chips span {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 16px;
  border: 1.5px solid var(--accent-ink); color: var(--accent-ink); cursor: pointer; font-size: 15px;
}
.chips input:checked + span { background: var(--accent-ink); color: var(--accent); font-weight: 700; }
.chips input:focus-visible + span { outline: 3px solid var(--accent-ink); outline-offset: 2px; }
.hp { display: none; }
.form-status { font-size: 15px; min-height: 1.6em; margin: 0; font-weight: 700; }
.form-status.err { color: #ffe08a; }
.side-links { display: grid; justify-items: start; gap: 10px; margin-top: 24px; }

/* ---------- footer ---------- */
footer { padding: 28px 0 40px; color: var(--muted); font-size: 13px; border-top: 1px solid var(--line); }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---------- detail pages ---------- */
.doc-head { padding: 56px 0 8px; }
.doc-head h1 { font-size: clamp(36px, 6vw, 80px); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; margin: 6px 0 20px; }
.doc-head .lead { max-width: 38em; }
.back { display: inline-block; font-size: 14px; margin-bottom: 24px; font-weight: 700; }
.doc section { padding-top: 48px; }
.doc-body h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; margin: 64px 0 20px; }
.doc-body h2:first-child { margin-top: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 32px; }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }
.grid-3 .card h3 { font-size: 19px; }
.steps { list-style: none; counter-reset: step; margin: 0; padding: 0; max-width: 52em; border-top: 1.5px solid var(--ink); }
.steps li { counter-increment: step; display: grid; grid-template-columns: 64px 1fr; padding: 20px 0; border-bottom: 1px solid var(--hair); }
.steps li::before { content: counter(step, decimal-leading-zero); font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; grid-row: span 2; }
.steps b { font-size: 18px; font-weight: 900; }
.steps p { color: var(--muted); font-size: 16px; margin: 6px 0 0; }
.refs-note { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: .16em; text-transform: uppercase; margin: 28px 0 8px; }
.refs { list-style: none; margin: 0; padding: 0; max-width: 56em; border-top: 1px solid var(--hair); }
.refs li { font-size: 14px; color: var(--muted); padding: 8px 0 8px 2em; text-indent: -2em; border-bottom: 1px solid var(--hair); line-height: 1.65; }

/* ---------- mobile overflow guards ---------- */
.xp > *, .hero-grid > *, .contact > *, .about > * { min-width: 0; }
@media (max-width: 560px) {
  .stat { padding: 18px 12px 20px; }
  .stat:nth-child(odd) { padding-left: 0; }
  .stat b { font-size: 26px; white-space: normal; }
  .flow { grid-template-columns: 1fr; }
  .flow .arrow { transform: rotate(90deg); justify-self: center; padding: 2px 0; }
  .flow .box { min-height: 0; }
  .cake b { font-size: 34px; }
  .floors { height: 130px; }
}
@media (max-width: 420px) { .hero h1 { font-size: 34px; } }

/* ---------- hero cutout (magazine cover: subject in front of headline) ---------- */
.hero-stage { position: relative; }
.hero-stage h1 { position: relative; z-index: 1; }
.hero-cutout {
  position: absolute; right: -32px; bottom: 0; z-index: 2;
  height: calc(100% + 24px); width: auto; max-width: none; pointer-events: none;
  filter: grayscale(1) contrast(1.05);
}
.hero-text { position: relative; z-index: 3; max-width: 54%; padding-bottom: 48px; }
.hero-stage + * { margin-top: 0; }
.hero .stats { margin-top: 0; }
@media (max-width: 860px) {
  .hero-stage { display: flex; flex-direction: column; }
  .hero-cutout { position: static; order: 3; height: auto; width: 62%; max-width: 300px; align-self: flex-end; margin-top: 8px; }
  .hero-text { max-width: none; padding-bottom: 0; }
}
.hero-stage h1 { font-size: clamp(40px, 5.8vw, 84px); }
.hero-stage h1 .nb { display: block; }
.hero-cutout { height: clamp(520px, 46vw, 660px); }
@media (max-width: 860px) { .hero-cutout { height: auto; } }
@media (max-width: 420px) { .hero-stage h1 { font-size: 36px; } }
.hero-cutout { right: 40px; }
@media (max-width: 860px) { .hero-cutout { right: auto; } }
.hero-cutout { right: 20px; }
@media (max-width: 860px) { .hero-cutout { right: auto; } }

/* ---------- culture page ---------- */
.phase-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 40px; border-top: 1.5px solid var(--ink); padding-top: 28px; }
@media (max-width: 760px) { .phase-list { grid-template-columns: 1fr; } }
.phase img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border: 1px solid var(--line); margin: 12px 0 16px; }
.phase-head { display: flex; align-items: baseline; gap: 12px; }
.phase-year { font-size: 40px; font-weight: 900; color: var(--accent); line-height: 1; letter-spacing: -.02em; }
.phase-tag { font-size: 14px; font-weight: 700; }
.phase h3 { font-size: 20px; font-weight: 900; margin-bottom: 8px; }
.phase p { color: var(--muted); font-size: 16px; margin: 0; }
.phase p b { color: var(--ink); }
.phase-next { background: var(--accent); color: var(--accent-ink); padding: 24px; align-self: start; }
.phase-next .phase-year, .phase-next p, .phase-next p b { color: var(--accent-ink); }
.culture-stats { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
@media (max-width: 860px) { .culture-stats { grid-template-columns: 1fr; } .culture-stats .stat { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); } .culture-stats .stat:first-child { border-top: 0; } }
.phases-mini { display: grid; grid-template-columns: repeat(4, 1fr); height: 100%; }
.phases-mini div { display: flex; flex-direction: column; justify-content: flex-end; padding: 14px 12px; border-left: 1px solid rgba(255,255,255,.35); }
.phases-mini div:first-child { border-left: 0; }
.phases-mini b { font-size: clamp(22px, 2.6vw, 32px); font-weight: 900; line-height: 1; }
.phases-mini span { font-size: 12px; margin-top: 6px; opacity: .85; }
.work .shot.type.phases { padding: 0; }

/* ---------- promotion report page ---------- */
.pipeline { display: grid; grid-template-columns: 1.1fr auto 1fr auto 1.2fr; gap: 16px; align-items: stretch; border-top: 1.5px solid var(--ink); padding-top: 24px; }
.pipe-col .cap { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 12px; }
.pipe-inputs { list-style: none; margin: 0; padding: 0; }
.pipe-inputs li { border: 1.5px solid var(--ink); padding: 8px 12px; margin-bottom: -1.5px; font-weight: 700; font-size: 15px; }
.pipe-inputs small { display: block; font-weight: 400; color: var(--muted); font-size: 12px; }
.pipe-arrow { align-self: center; font-size: 28px; font-weight: 900; color: var(--accent); }
.pipe-agent { background: var(--accent); color: var(--accent-ink); padding: 18px; }
.pipe-agent .cap { color: var(--accent-ink); opacity: .85; }
.pipe-agent p { margin: 0 0 10px; font-size: 15px; }
.pipe-agent b { font-size: 20px; font-weight: 900; margin-right: 6px; }
.mock-report { border: 1.5px solid var(--ink); background: var(--surface); padding: 16px 18px; }
.mr-head { display: grid; gap: 6px; margin-bottom: 14px; }
.mr-head span { height: 10px; background: var(--ink); width: 70%; }
.mr-head span + span { width: 45%; background: var(--hair); }
.mock-report ol { margin: 0; padding-left: 1.4em; font-size: 14px; }
.mock-report li { padding: 5px 0; border-bottom: 1px solid var(--hair); }
.mock-report li::marker { color: var(--accent); font-weight: 900; }
.mr-note { font-size: 11px; color: var(--muted); margin-top: 10px; letter-spacing: .06em; }
@media (max-width: 900px) { .pipeline { grid-template-columns: 1fr; } .pipe-arrow { transform: rotate(90deg); justify-self: center; } }
.report-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; padding: 18px 22px; height: 100%; align-content: center; }
.report-mini b { grid-column: 1 / -1; font-size: clamp(24px, 3vw, 34px); font-weight: 900; line-height: 1.1; margin-bottom: 8px; }
.report-mini span { font-size: 12px; border-top: 1px solid rgba(255,255,255,.4); padding: 4px 0; }
