:root {
  --ink: #1a1a1a;
  --ink-soft: #555;
  --line: #e2e2e2;
  --bg: #fafafa;
  --card: #ffffff;
  --accent: #1a1a1a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
header {
  border-bottom: 1px solid var(--line); background: var(--card);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1400px; margin: 0 auto; padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.brand { font-size: 20px; letter-spacing: 2px; font-weight: 700; text-decoration: none; color: #941100; }
.tagline { font-size: 10px; letter-spacing: 3px; color: var(--ink-soft); text-transform: uppercase; }
nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
nav a {
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; color: var(--ink-soft); padding-bottom: 2px;
}
nav a:hover, nav a.active { color: var(--ink); border-bottom: 1px solid var(--ink); }

main { max-width: 1400px; margin: 0 auto; padding: 48px 24px 96px; }
h1.page-title { font-size: 34px; font-weight: 300; letter-spacing: 1px; margin-bottom: 6px; }
.subtitle { color: var(--ink-soft); font-size: 15px; margin-bottom: 40px; }

/* Home */
.hero {
  position: relative; color: #fff;
  background: #222 center/cover no-repeat;
  margin: -48px calc(50% - 50vw) 0; padding: 140px 24px;
}
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(10,10,10,.55); }
.hero > div { position: relative; max-width: 1352px; margin: 0 auto; }
.hero .kicker { font-size: 12px; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 18px; }
.hero h1 { font-size: 52px; font-weight: 300; line-height: 1.2; letter-spacing: 1px; }
.hero h1 strong { font-weight: 700; }
.hero p { max-width: 860px; margin-top: 22px; font-size: 17px; color: rgba(255,255,255,.85); }

section.block { border-top: 1px solid var(--line); padding: 56px 0; }
section.block h2 { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
section.block p { max-width: 640px; margin-bottom: 16px; font-size: 16px; }
section.block h3 { font-size: 22px; font-weight: 600; margin-bottom: 10px; }
section.block ul { max-width: 640px; margin: 12px 0 0 18px; }
section.block li { font-size: 15px; margin-bottom: 8px; color: var(--ink-soft); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { width: 100%; height: 320px; object-fit: cover; display: block; }
.split.reverse .img { order: 2; }
@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; gap: 24px; }
  .split.reverse .img { order: 0; }
  .hero { padding: 80px 24px; }
  .hero h1 { font-size: 32px; }
}
.pillars { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.pillar {
  border: 1px solid var(--line); background: var(--card);
  padding: 10px 18px; font-size: 13px; letter-spacing: 1px;
}
.cta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 8px; }
.cta-card {
  display: block; text-decoration: none; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); padding: 32px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.cta-card .cat { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 10px; }
.cta-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.cta-card p { font-size: 14px; color: var(--ink-soft); }

/* List pages (LIBRE / News) */
.controls { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; align-items: center; }
.search-input {
  flex: 1; min-width: 220px; padding: 12px 16px; font-size: 15px;
  border: 1px solid var(--line); background: var(--card); outline: none;
}
.search-input:focus { border-color: var(--ink); }
.cats { display: flex; gap: 8px; flex-wrap: wrap; }
.cat-btn {
  padding: 8px 16px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid var(--line); background: var(--card); cursor: pointer; color: var(--ink-soft);
}
.cat-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--card); border: 1px solid var(--line); padding: 28px;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.07); }
.card .cat { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 12px; }
.card h2 { font-size: 19px; font-weight: 600; margin-bottom: 10px; line-height: 1.35; }
.card p { font-size: 14px; color: var(--ink-soft); flex: 1; }
.card .date { font-size: 12px; color: #999; margin-top: 16px; }
.empty { color: var(--ink-soft); padding: 40px 0; text-align: center; }

/* Article / news detail view */
.detail-view { display: none; }
.detail-view .cat { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--ink-soft); }
.detail-view h1 { font-size: 32px; font-weight: 600; margin: 12px 0 8px; line-height: 1.25; }
.detail-view .date { font-size: 13px; color: #999; margin-bottom: 32px; }
.detail-view .body p { margin-bottom: 20px; font-size: 16.5px; }
.back-btn {
  display: inline-block; margin-bottom: 32px; padding: 8px 0; background: none; border: none;
  font-size: 13px; letter-spacing: 1px; cursor: pointer; color: var(--ink-soft); font-family: inherit;
}
.back-btn:hover { color: var(--ink); }

footer { border-top: 1px solid var(--line); padding: 32px 24px; text-align: center; font-size: 12px; color: #999; }

@media (max-width: 600px) {
  .hero h1 { font-size: 30px; }
}

/* language flags */
.langflags { display:inline-flex; gap:8px; margin-left:18px; vertical-align:middle; }
.lf { width:22px; height:22px; border-radius:50%; overflow:hidden; cursor:pointer; opacity:.3; display:inline-block; transition:opacity .15s; }
.lf.active { opacity:1; }
.lf svg { width:100%; height:100%; display:block; }

/* ---- la (line-art / blueprint) system ---- */
.bp { background-image: linear-gradient(rgba(26,26,26,.033) 1px, transparent 1px), linear-gradient(90deg, rgba(26,26,26,.033) 1px, transparent 1px); background-size: 28px 28px; }
.ann { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase; color: #8a8a8a; }
.tblock { display: inline-flex; border: 1.2px solid #1a1a1a; background: #fff; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 9.5px; letter-spacing: 1.2px; text-transform: uppercase; color: #1a1a1a; }
.tblock span { padding: 6px 14px; border-right: 1.2px solid #1a1a1a; }
.tblock span:last-child { border-right: none; }
.tblock b { color: #9a2b17; font-weight: 700; }
.dimrule { display: flex; align-items: center; gap: 12px; margin: 8px 0 40px; }
.dimrule::before, .dimrule::after { content: ""; flex: 1; height: 1px; background: #d9d4cf; }
.la svg { width: 100%; height: auto; display: block; }
.hero-la { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; padding: 56px 0 28px; }
.hero-la h1 { font-size: 42px; font-weight: 300; line-height: 1.16; margin: 16px 0 18px; }
.hero-la h1 strong { font-weight: 600; }
.hero-la p { color: #555; font-size: 15.5px; line-height: 1.8; max-width: 52ch; }
.notes { margin-top: 18px; }
.notes .n { display: flex; gap: 12px; align-items: baseline; margin-bottom: 8px; font-size: 14px; color: #555; }
.notes .n i { font-style: normal; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 10px; color: #9a2b17; letter-spacing: 1px; flex: none; }
.colnotes { columns: 1; margin-top: 16px; }
@media (max-width: 900px) { .hero-la { grid-template-columns: 1fr; gap: 28px; } .hero-la h1 { font-size: 32px; } }

/* ---- 2026-07 redesign additions: home trio, thin rules, pillar list, service sheets, ddd chapters, portal ---- */
.thinrule { border:none; height:1px; background:#d9d4cf; margin:12px 0 44px; }
.trio { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin:16px 0 52px; }
.trio .t3 { background:#fff; border:1px solid #d9d4cf; padding:26px 26px 24px; }
.trio .t3 svg { width:36px; height:36px; display:block; margin-bottom:14px; }
.trio .t3 b { display:block; font-size:16.5px; font-weight:600; margin-bottom:6px; color:#2a2a2a; }
.trio .t3 p { font-size:14px; color:#555; line-height:1.7; }
.pillar-list { margin-top:22px; border-left:2px solid #9a2b17; padding:6px 0 6px 26px; max-width:520px; }
.pillar-list .pl { font-size:17.5px; letter-spacing:.3px; color:#2a2a2a; padding:11px 0; }
.pillar-list .pl + .pl { border-top:1px solid #eeeae6; }
@media (max-width:900px){ .trio{grid-template-columns:1fr;} }

/* services — drawing-sheet cards */
.sheetgrid { display:grid; grid-template-columns:1fr 1fr; gap:26px; margin-top:8px; }
.sheet { background:#fff; border:1px solid #2a2a2a; padding:30px 30px 26px; position:relative; }
.sheet .ref { position:absolute; top:10px; right:14px; }
.sheet .shead { display:flex; align-items:center; gap:16px; margin-bottom:12px; }
.sheet .shead svg { width:40px; height:40px; flex:none; }
.sheet h3 { font-size:20px; font-weight:600; line-height:1.3; }
.sheet .lead { font-size:15px; color:#555; line-height:1.75; margin-bottom:14px; }
.sheet ul { margin:0 0 0 18px; }
.sheet li { font-size:14px; color:#666; margin-bottom:7px; line-height:1.6; }
@media (max-width:860px){ .sheetgrid{grid-template-columns:1fr;} }

/* do-did-done — chapters */
.chap { margin:56px 0 0; }
.chap .chead { display:flex; align-items:baseline; gap:16px; flex-wrap:wrap; margin-bottom:6px; }
.chap .chead h2 { font-size:44px; font-weight:300; letter-spacing:2px; color:#2a2a2a; }
.chap .chead h2 b { color:#9a2b17; font-weight:600; }
.chap .chead .sub { font-size:15px; color:#8a8a8a; }
.chap .crule { height:1px; background:#d9d4cf; margin:14px 0 28px; }
.mandates { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.mandate { background:#fff; border:1px solid #d9d4cf; border-left:3px solid #9a2b17; padding:18px 20px; }
.mandate b { display:block; font-size:15px; font-weight:600; margin-bottom:5px; }
.mandate p { font-size:13.5px; color:#666; line-height:1.65; }
.didrow { margin-bottom:26px; }
.didrow .dhead { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.didrow .dhead svg { width:18px; height:18px; stroke:#9a2b17; flex:none; }
.didrow .dhead .t { font-size:11.5px; letter-spacing:2.5px; text-transform:uppercase; color:#4a4a4a; font-weight:600; }
.didrow .dhead .rule { flex:1; height:1px; background:#e2e2e2; }
.didrow ul { list-style:none; margin:0; display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px 22px; }
.didrow li { font-size:13.5px; color:#555; line-height:1.6; background:#fff; border:1px solid #eeeae6; padding:12px 16px; }
.didrow li b { color:#2a2a2a; font-weight:600; }
.proofs { display:grid; grid-template-columns:1fr 1fr; gap:18px; max-width:900px; }
.proof { background:#fff; border:1px solid #2a2a2a; padding:22px 24px; font-size:16px; line-height:1.65; color:#2a2a2a; }
.proof b { color:#9a2b17; }
@media (max-width:900px){ .mandates{grid-template-columns:1fr;} .didrow ul{grid-template-columns:1fr;} .proofs{grid-template-columns:1fr;} .chap .chead h2{font-size:32px;} }

/* client portal */
.portal-wrap { max-width:560px; margin:48px auto 0; }
.portal-card { background:#fff; border:1px solid #2a2a2a; padding:40px; }
.portal-card h1 { font-size:30px; font-weight:300; margin:10px 0 8px; }
.portal-card .lead { color:#555; font-size:15px; line-height:1.75; margin-bottom:26px; }
.portal-card label { display:block; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:#8a8a8a; margin-bottom:8px; }
.portal-card input[type=email], .portal-card input[type=password] { width:100%; padding:13px 16px; font-size:16px; border:1px solid #c9c2bc; background:#fafafa; outline:none; font-family:inherit; box-sizing:border-box; }
.portal-card input[type=email]:focus, .portal-card input[type=password]:focus { border-color:#2a2a2a; }
.portal-card input + label { margin-top:18px; }
.portal-card button { margin-top:14px; width:100%; padding:13px 16px; font-size:13px; letter-spacing:2.5px; text-transform:uppercase; background:#2a2a2a; color:#fff; border:none; cursor:pointer; font-family:inherit; }
.portal-card button:hover { background:#9a2b17; }
.portal-msg { display:none; margin-top:16px; font-size:14px; line-height:1.7; color:#9a2b17; border:1px solid #e8c9c2; background:#fdf6f4; padding:12px 16px; }
.portal-choice { display:none; grid-template-columns:1fr 1fr; gap:22px; max-width:760px; margin:40px auto 0; }
.pchoice { display:block; text-decoration:none; background:#fff; border:1px solid #2a2a2a; padding:34px 30px; color:#2a2a2a; transition:transform .15s ease, box-shadow .15s ease; }
.pchoice:hover { transform:translateY(-3px); box-shadow:0 8px 24px rgba(0,0,0,.08); }
.pchoice b { display:block; font-size:21px; font-weight:600; margin:10px 0 6px; }
.pchoice p { font-size:13.5px; color:#555; line-height:1.65; }
.acc-table { display:none; max-width:760px; margin:48px auto 0; }
.acc-table table { width:100%; border-collapse:collapse; background:#fff; border:1px solid #2a2a2a; }
.acc-table th, .acc-table td { border:1px solid #d9d4cf; padding:10px 14px; font-size:13px; text-align:left; }
.acc-table th { font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size:10px; letter-spacing:1.6px; text-transform:uppercase; color:#8a8a8a; background:#fafafa; }
.acc-table td.on { color:#9a2b17; font-weight:600; }
.fineprint { max-width:560px; margin:26px auto 0; font-size:12px; color:#999; line-height:1.7; text-align:center; }
@media (max-width:720px){ .portal-choice{grid-template-columns:1fr;} }

/* homepage skyline background */
.bp-sky { background-image: linear-gradient(rgba(26,26,26,.033) 1px, transparent 1px), linear-gradient(90deg, rgba(26,26,26,.033) 1px, transparent 1px); background-size: 28px 28px; }

/* high-profile hero */
.hero-hp { position: relative; min-height: 78vh; display: flex; flex-direction: column; justify-content: center; text-align: center; overflow: hidden; }

.hero-hp h1 { font-size: 46px; font-weight: 250; letter-spacing: -.4px; line-height: 1.12; margin: 20px 0 12px; white-space: nowrap; }
.hero-hp h1 strong { font-weight: 600; }
.hero-hp .sub { font-size: 21px; font-weight: 300; color: #3a3a3a; margin-bottom: 16px; }
.hero-hp p.lead { color: #6a6a6a; font-size: 15px; line-height: 1.85; max-width: 56ch; margin: 0 auto; }
.hero-hp .cta { margin-top: 34px; }
.hero-hp .cta a { display: inline-block; border: 1.2px solid #1a1a1a; width: 250px; padding: 13px 0; text-align: center; box-sizing: border-box; margin: 0 8px; text-decoration: none; color: #1a1a1a; font-size: 11.5px; letter-spacing: 2.5px; text-transform: uppercase; background: rgba(255,255,255,.75); }
.hero-hp .cta a.fill { background: #d6e2f5; color: #23406e; border: 1px solid #b3c8ea; }
.hero-hp .cta a:hover { background: #9a2b17; border-color: #9a2b17; color: #fff; }
.hero-hp .cta a.fill:hover { background: #9a2b17; color: #fff; }
.pull { text-align: left; max-width: none; margin: 0; font-size: 27px; font-weight: 300; line-height: 1.6; color: #2a2a2a; }
.pillars-hp { max-width: none; margin: 30px 0 0; text-align: left; }
.pillars-hp div { border-left: 2px solid #9a2b17; padding: 7px 0 7px 20px; margin-bottom: 10px; font-size: 15.5px; color: #3a3a3a; }
@media (max-width: 900px) { .hero-hp h1 { font-size: 30px; white-space: normal; } .hero-hp { min-height: 64vh; } }

/* ---- services 2026-07: explainer, engagement flow, grouped catalogue ---- */
.fae { margin:8px 0 60px; }
.fae h2 { font-size:30px; font-weight:300; letter-spacing:.4px; margin:8px 0 14px; }
.fae-intro { max-width:62ch; color:#555; font-size:15.5px; line-height:1.85; margin-bottom:30px; }
.fae-grid { display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.fae-half { background:#fff; border:1px solid #2a2a2a; padding:30px 30px 26px; position:relative; }
.fae-half .ref { position:absolute; top:10px; right:14px; }
.fae-half svg { width:100%; max-width:250px; height:auto; display:block; margin:4px 0 16px; }
.fae-half h3 { font-size:22px; font-weight:600; margin-bottom:4px; }
.fae-half p { font-size:14px; color:#666; line-height:1.75; }
.fae-half .fh-lead { font-size:15.5px; color:#2a2a2a; margin-bottom:8px; }
.fae-bridge { display:flex; align-items:center; gap:20px; margin-top:28px; }
.fae-bridge::before, .fae-bridge::after { content:""; flex:1 1 40px; height:1px; background:#c9c2bc; }
.fae-bridge span { flex:0 1 auto; max-width:56ch; text-align:center; font-size:16.5px; font-weight:300; line-height:1.75; color:#2a2a2a; }
.flow { display:flex; align-items:stretch; margin-top:22px; }
.fstep { flex:1; background:#fff; border:1px solid #2a2a2a; padding:20px 18px 16px; }
.fnum { display:inline-flex; width:26px; height:26px; background:#9a2b17; border-radius:50%; align-items:center; justify-content:center; font-size:11.5px; font-weight:700; color:#fff; margin-bottom:10px; }
.fstep b { display:block; font-size:15.5px; font-weight:600; margin-bottom:5px; color:#2a2a2a; }
.fstep p { font-size:13px; color:#666; line-height:1.65; }
.farrow { flex:none; display:flex; align-items:center; justify-content:center; padding:0 5px; color:#9a2b17; }
.farrow svg { width:18px; height:18px; }
.flow-note { margin-top:14px; font-size:13.5px; color:#8a8a8a; }
.svc-group { display:flex; align-items:baseline; gap:16px; flex-wrap:wrap; margin:56px 0 0; }
.svc-group .gnum { font-size:46px; font-weight:200; color:#ddd3ca; line-height:1; }
.svc-group h2 { font-size:26px; font-weight:300; letter-spacing:.4px; }
.svc-group .gsub { font-size:14px; color:#8a8a8a; }
.sheetgrid.g3 { grid-template-columns:repeat(3,1fr); }
.invite { margin-top:72px; background:#fff; border:1px solid #2a2a2a; padding:46px 32px 42px; text-align:center; }
.invite-line { max-width:36em; margin:14px auto 26px; font-size:21px; font-weight:300; line-height:1.65; color:#2a2a2a; }
.invite .tblock { flex-wrap:wrap; justify-content:center; }
.invite .tblock a { color:inherit; text-decoration:none; }
.invite .tblock a:hover { color:#9a2b17; }
@media (max-width:1100px){ .sheetgrid.g3{grid-template-columns:1fr 1fr;} }
@media (max-width:980px){ .flow{flex-direction:column;} .farrow{padding:6px 0;} .farrow svg{transform:rotate(90deg);} }
@media (max-width:860px){ .sheetgrid.g3{grid-template-columns:1fr;} .fae-grid{grid-template-columns:1fr;} .fae h2{font-size:24px;} .invite-line{font-size:18px;} .svc-group .gnum{font-size:36px;} }


/* ---- cognitio reader & cheat notes 2026-07 ---- */
.sico { width:46px; height:46px; margin-bottom:16px; }
.sico svg { width:100%; height:100%; display:block; }
.subject-card.soon .sico { opacity:.55; }
.card .meta { font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size:10px; letter-spacing:1.6px; text-transform:uppercase; color:#8a8a8a; margin-top:18px; }
.card .meta b { color:#9a2b17; font-weight:700; }
.draft-ann { display:inline-block; margin-top:18px; font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size:9.5px; letter-spacing:1.6px; text-transform:uppercase; color:#9a2b17; border:1px dashed #c9c2bc; padding:5px 12px; background:#fff; }

/* cognitio article reader */
.a-head { display:flex; align-items:center; gap:16px; flex-wrap:wrap; }
.chip { display:inline-block; border:1.2px solid #1a1a1a; background:#fff; padding:4px 12px; font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size:9.5px; letter-spacing:2px; text-transform:uppercase; color:#1a1a1a; }
.a-title { font-size:34px; font-weight:600; line-height:1.22; margin:14px 0 26px; max-width:24em; }
.idea-box { background:#fff; border:1px solid #e6e0da; border-left:3px solid #9a2b17; padding:20px 26px 22px; margin:0 0 24px; }
.idea-box .ib-label { color:#9a2b17; margin-bottom:8px; }
.idea-box p { font-size:21px; font-weight:300; line-height:1.6; color:#2a2a2a; max-width:36em; }
.cheat-card { border:1.2px solid #1a1a1a; background:#fff; padding:20px 26px 14px; margin:0 0 30px; }
.cheat-card .ch-head { display:flex; align-items:center; gap:12px; margin-bottom:8px; }
.cheat-card .ch-label { color:#1a1a1a; }
.cheat-card .ch-label b { color:#9a2b17; font-weight:700; }
.cheat-card .ch-rule { flex:1; height:1px; background:#e2e2e2; }
.cheat-card .ch-pin { width:15px; height:15px; flex:none; }
.cheat-card ol { list-style:none; margin:0; counter-reset:cheat; }
.cheat-card ol li { counter-increment:cheat; position:relative; padding:9px 0 9px 36px; font-size:15px; line-height:1.55; color:#2a2a2a; border-top:1px dashed #e6e0da; }
.cheat-card ol li:first-child { border-top:none; }
.cheat-card ol li::before { content:counter(cheat,decimal-leading-zero); position:absolute; left:2px; top:11px; font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size:10px; color:#9a2b17; letter-spacing:1px; }
.viz { margin:0 0 30px; border:none; background:transparent; padding:16px 18px 12px; }
.viz svg { width:100%; height:auto; display:block; }
.a-body p { max-width:66ch; margin-bottom:20px; font-size:16.5px; line-height:1.75; color:#333; }
.a-body h3.sub { font-size:12.5px; letter-spacing:2.5px; text-transform:uppercase; color:#4a4a4a; font-weight:700; margin:34px 0 12px; max-width:66ch; }
.a-body h3.sub::before { content:"— "; color:#9a2b17; }
.a-body ul { max-width:66ch; list-style:none; margin:0 0 20px; }
.a-body ul li { position:relative; padding:6px 0 6px 24px; font-size:15.5px; line-height:1.7; color:#3a3a3a; }
.a-body ul li::before { content:""; position:absolute; left:2px; top:17px; width:12px; height:1.6px; background:#9a2b17; }
.a-body b { font-weight:600; color:#1a1a1a; }
.num { color:#9a2b17; font-weight:600; }
.remember-strip { display:flex; align-items:stretch; border:1.2px solid #1a1a1a; background:#fff; margin-top:44px; }
.remember-strip .r-label { display:flex; align-items:center; padding:14px 18px; border-right:1.2px solid #1a1a1a; font-family:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace; font-size:9.5px; letter-spacing:1.6px; text-transform:uppercase; color:#9a2b17; white-space:nowrap; }
.remember-strip p { padding:13px 20px; font-size:16px; line-height:1.6; color:#2a2a2a; align-self:center; }
@media (max-width:600px) {
  .a-title { font-size:26px; }
  .idea-box p { font-size:18px; }
  .remember-strip { flex-direction:column; }
  .remember-strip .r-label { border-right:none; border-bottom:1.2px solid #1a1a1a; }
}

.pillars-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; margin-top: 42px; }
.pillars-grid div { border-top: 1.4px solid #2a2a2a; padding-top: 14px; }
.pillars-grid b { display: block; font-size: 21px; font-weight: 300; letter-spacing: .2px; color: #9a2b17; }
.pillars-grid span { display: block; margin-top: 4px; font-size: 10.5px; font-weight: 600; letter-spacing: 2.2px; text-transform: uppercase; color: #8a8a8a; }
@media (max-width: 900px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
