/* Gedeelde huisstijl voor de Amigero website (Brand System 3.1 toepassing, REQ 133). */

@font-face { font-family:'Fraunces'; src:url('/assets/fonts/fraunces-var-latin.woff2') format('woff2'); font-weight:100 900; font-style:normal; font-display:swap; }
@font-face { font-family:'Inter'; src:url('/assets/fonts/inter-var-latin.woff2') format('woff2'); font-weight:100 900; font-style:normal; font-display:swap; }

:root {
  --bg-base: #0c0a08;
  --bg-surface: #15100b;
  --bg-elevated: #1d1710;
  --bg-base-rgb: 12, 10, 8;
  --bg-elevated-rgb: 29, 23, 16;
  --border: #332619;
  --border-subtle: #241c13;
  --text-primary: #f4efe8;
  --text-secondary: #e6dbca;
  --text-muted: #b3a596;
  --text-muted-rgb: 179, 165, 150;
  --accent: #e8a04a;
  --accent-rgb: 232, 160, 74;
  --accent-hover: #f0b264;
  --glow: rgba(232, 160, 74, .35);
  --success: #7fb069;
  --error: #e2624f;
  --info: #6fa8c9;
  --on-accent: #0c0a08;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --focus-ring: 0 0 0 3px rgba(232, 160, 74, .35);
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --page-max: 1200px;
  --page-gutter: clamp(20px, 4vw, 64px);
}

/* Rustige nabijheid: het lichte, redactionele thema. Zetbaar op body (hele pagina) of op een sectie
   (bijv. de homepage-hero), zodat licht en donker binnen dezelfde pagina kunnen afwisselen. */
[data-theme="light"] {
  --bg-base: #faf6f0;
  --bg-surface: #f1eae0;
  --bg-elevated: #ffffff;
  --bg-base-rgb: 250, 246, 240;
  --bg-elevated-rgb: 255, 255, 255;
  --border: #e2d5c4;
  --border-subtle: #ece3d5;
  --text-primary: #231a10;
  --text-secondary: #4a3b2a;
  /* color.light.text.muted: #6a5b49. Bevestigd als officiële brandtoken-correctie
     in amigero-ai/amigero-brand PR #7 (was #7a6b58, faalde WCAG AA tegen
     --bg-surface). Deze waarde volgt die bron, geen losstaande lokale keuze. */
  --text-muted: #6a5b49;
  --text-muted-rgb: 106, 91, 73;
  --accent-text: #9c5f18;
  --accent-text-hover: #7a4a12;
  --success: #3f7a2e;
  --error: #b83a2a;
  --info: #2f6f92;
  --on-accent: #231a10;
  --focus-ring: 0 0 0 3px rgba(156, 95, 24, .3);
}
/* Zichtbaar resultaat: expliciet donker thema, herbruikbaar om een sectie terug te zetten
   naar donker binnen een verder lichte pagina (bijv. een proof-sectie op de homepage). */
[data-theme="dark"] {
  --bg-base: #0c0a08;
  --bg-surface: #15100b;
  --bg-elevated: #1d1710;
  --bg-base-rgb: 12, 10, 8;
  --bg-elevated-rgb: 29, 23, 16;
  --border: #332619;
  --border-subtle: #241c13;
  --text-primary: #f4efe8;
  --text-secondary: #e6dbca;
  --text-muted: #b3a596;
  --text-muted-rgb: 179, 165, 150;
  --accent-text: initial;
  --accent-text-hover: initial;
  --success: #7fb069;
  --error: #e2624f;
  --info: #6fa8c9;
  --on-accent: #0c0a08;
  --focus-ring: 0 0 0 3px rgba(232, 160, 74, .35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Een sectie met een eigen data-theme (licht of donker) binnen een verder anders getinte pagina
   krijgt een eigen ondergrond, zodat licht en donker binnen één pagina kunnen afwisselen
   (Brand System 3.1: lichte redactionele basis, donkere bewijssecties). */
section[data-theme], header[data-theme], div[data-theme] {
  background: var(--bg-base);
  color: var(--text-primary);
}

body.page {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

::selection { background: var(--glow); }
:focus-visible { outline: none; box-shadow: var(--focus-ring); }

a { color: var(--accent-text, var(--accent)); text-decoration-color: rgba(var(--accent-rgb), .45); }
a:hover { color: var(--accent-text-hover, var(--accent-hover)); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--bg-elevated); color: var(--text-primary);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 16px; font-size: 14px; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* Navigatie */
.amg-nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(var(--bg-base-rgb), .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}
.amg-nav-inner {
  max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-gutter);
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px;
}
.amg-nav-brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-secondary);
  font-family: var(--font-heading); font-weight: 600; font-size: 18px; letter-spacing: -.3px;
  flex: none;
}
.amg-nav-brand img { display: block; }
.amg-nav-brand:hover { color: var(--accent-text-hover, var(--accent-hover)); }

.amg-nav-toggle {
  display: none;
  align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-left: auto;
  background: transparent; border: 1px solid var(--border); border-radius: var(--radius-md);
  color: var(--text-primary); cursor: pointer;
}
.amg-nav-toggle svg { width: 20px; height: 20px; }

.amg-nav-menu {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto;
}
.amg-nav-menu a {
  color: var(--text-secondary); text-decoration: none;
  font-size: 14.5px; font-weight: 500;
  padding: 10px 14px; border-radius: 999px;
  white-space: nowrap;
}
.amg-nav-menu a:hover { color: var(--text-primary); background: rgba(var(--accent-rgb), .1); }
.amg-nav-menu a[aria-current="page"] { color: var(--accent-text, var(--accent)); font-weight: 600; }
.amg-nav-menu a.amg-nav-cta {
  margin-left: 8px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--on-accent);
  font-weight: 600;
}
.amg-nav-menu a.amg-nav-cta:hover { background: var(--accent-hover); border-color: var(--accent-hover); }

@media (max-width: 900px) {
  .amg-nav-toggle { display: flex; }
  .amg-nav-menu {
    position: fixed; top: 68px; left: 0; right: 0; height: calc(100vh - 68px); height: calc(100dvh - 68px);
    margin: 0; z-index: 35;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--bg-base); padding: 18px var(--page-gutter) 32px;
    overflow-y: auto;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }
  .amg-nav-menu[data-open="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .amg-nav-menu a { padding: 15px 14px; font-size: 16.5px; border-radius: var(--radius-md); min-height: 48px; display: flex; align-items: center; }
  .amg-nav-menu a.amg-nav-cta { margin-left: 0; margin-top: 10px; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .amg-nav-menu { transition: none; }
}

/* Legacy koptekst (interne/utility pagina's) */
.page-header {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.page-header .brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-secondary);
  font-family: var(--font-heading); font-weight: 600; font-size: 18px; letter-spacing: -.3px;
}
.page-header .brand img { display: block; }
.page-header .brand:hover { color: var(--accent-text-hover, var(--accent-hover)); }

.page-main { padding: 60px 24px 100px; }
.page-main > article { max-width: 700px; margin: 0 auto; }

h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 600; letter-spacing: -1px; line-height: 1.15;
  color: var(--text-primary); margin-bottom: 22px;
}
h2 {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3.4vw, 28px);
  font-weight: 600; letter-spacing: -.4px; line-height: 1.25;
  color: var(--text-primary); margin: 46px 0 14px;
}
h2 em { font-style: normal; font-weight: 900; color: var(--accent-text, var(--accent)); }
h3 {
  font-family: var(--font-body);
  font-size: 16.5px; font-weight: 700;
  color: var(--text-secondary); margin: 26px 0 8px;
}
p { font-size: 16px; color: var(--text-muted); margin: 14px 0; max-width: 62ch; }
p.lead { font-size: clamp(17px, 2.2vw, 20px); color: var(--text-muted); max-width: 56ch; }
ul, ol { margin: 14px 0 14px 22px; color: var(--text-muted); max-width: 62ch; }
li { margin: 6px 0; }
li + li { margin-top: 8px; }
strong { color: var(--text-secondary); }
em { color: var(--text-muted); }

.card {
  margin-top: 20px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(var(--bg-elevated-rgb), .5), rgba(var(--bg-base-rgb), .3));
  border-radius: var(--radius-lg);
  padding: 22px 26px;
}
.card p:first-child { margin-top: 0; }
.card p:last-child { margin-bottom: 0; }

.links-follow { margin: 18px 0; }
.links-follow p { margin: 8px 0; }

.cta {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}
.cta-label { display: block; font-size: 15px; color: var(--text-muted); margin-bottom: 16px; max-width: 56ch; }
/* Solide knop (i.p.v. amber tint + amber tekst): op elk thema voldoende contrast (WCAG AA),
   donkere tekst op de volle merkkleur amber. */
.btn, .btn.btn-solid {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--on-accent);
  font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 999px;
  text-decoration: none; min-height: 48px;
}
.btn:hover, .btn.btn-solid:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--on-accent); }
.btn + .btn { margin-left: 12px; }
@media (max-width: 480px) {
  .btn { display: flex; justify-content: center; }
  .btn + .btn { margin-left: 0; margin-top: 12px; }
}

/* Claimladder-status (Brand System 3.1, Brand Horizon 7): beschikbaar, beperkt, gepland, visie */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; line-height: 1.4;
}
.badge-available { background: rgba(127, 176, 105, .14); color: var(--success); border: 1px solid rgba(127, 176, 105, .4); }
.badge-limited { background: var(--accent); color: var(--on-accent); border: 1px solid var(--accent); }
.badge-planned { background: rgba(111, 168, 201, .14); color: var(--info); border: 1px solid rgba(111, 168, 201, .4); }
.badge-vision { background: transparent; color: var(--text-muted); border: 1px solid var(--border); }

/* Bewijslaag (Zichtbaar resultaat): compacte tijdlijn van uitgevoerde en geverifieerde stappen */
.proof-ledger {
  margin-top: 22px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(var(--bg-elevated-rgb), .55), rgba(var(--bg-base-rgb), .35));
  border-radius: var(--radius-lg);
  padding: 8px 26px;
}
.proof-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid var(--border-subtle);
}
.proof-row:last-child { border-bottom: none; }
.proof-row .proof-time {
  flex: none; width: 64px; font-size: 12.5px; color: var(--text-muted);
  font-variant-numeric: tabular-nums; padding-top: 2px;
}
.proof-row .proof-check {
  flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 1px;
  background: rgba(127, 176, 105, .14); border: 1px solid rgba(127, 176, 105, .5);
  display: flex; align-items: center; justify-content: center;
}
.proof-row .proof-check svg { width: 11px; height: 11px; stroke: var(--success); stroke-width: 3; fill: none; }
.proof-row .proof-text { font-size: 15px; color: var(--text-secondary); }
.proof-row .proof-text b { color: var(--text-primary); font-weight: 600; }

.page-footer {
  padding: 34px 24px 42px; text-align: center;
  color: var(--text-muted); font-size: 12.5px; letter-spacing: .4px;
  border-top: 1px solid var(--border-subtle);
}

/* Volledige footer */
.amg-footer { border-top: 1px solid var(--border-subtle); padding: 56px var(--page-gutter) 0; }
.amg-footer-inner {
  max-width: var(--page-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px;
  padding-bottom: 40px;
}
@media (max-width: 780px) {
  .amg-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .amg-footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
.amg-footer-brand p { margin-top: 14px; font-size: 14px; color: var(--text-muted); max-width: 32ch; }
.amg-footer-col { display: flex; flex-direction: column; gap: 10px; }
.amg-footer-col h2 {
  margin: 0 0 4px; font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--text-muted);
}
.amg-footer-col a { color: var(--text-secondary); text-decoration: none; font-size: 14.5px; }
.amg-footer-col a:hover { color: var(--accent-text-hover, var(--accent-hover)); }
.amg-footer-bottom {
  max-width: var(--page-max); margin: 0 auto;
  border-top: 1px solid var(--border-subtle);
  padding: 22px 0 32px;
  display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between;
  color: var(--text-muted); font-size: 12.5px; letter-spacing: .3px;
}

/* Interne hub (/start-k7x92m4/), nooit gelinkt en nooit live */
.notice {
  max-width: 700px; margin: 0 auto 34px;
  background: rgba(var(--accent-rgb), .08);
  border: 1px solid rgba(var(--accent-rgb), .3);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 13.5px; color: var(--text-muted);
}
.hub-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px; margin-top: 28px;
}
.hub-link {
  display: block; border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 18px; text-decoration: none;
  background: linear-gradient(180deg, rgba(var(--bg-elevated-rgb), .5), rgba(var(--bg-base-rgb), .3));
}
.hub-link:hover { border-color: rgba(var(--accent-rgb), .5); }
.hub-link .hub-title {
  display: block; font-family: var(--font-heading); font-weight: 600;
  color: var(--text-primary); font-size: 17px; margin-bottom: 6px;
}
.hub-link:hover .hub-title { color: var(--accent-text-hover, var(--accent-hover)); }
.hub-link .hub-desc { display: block; color: var(--text-muted); font-size: 13.5px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

@media (max-width: 480px) {
  .page-main { padding: 40px 18px 70px; }
  .page-header { padding: 18px; }
}

/* Paginaritme (REQ 112): secties met afwisseling van tekst, beeld en diagram */
.page-main--rhythm { padding: 0; }

.section { padding: 64px 24px; }
.section.alt { background: linear-gradient(180deg, rgba(var(--bg-elevated-rgb), .35), transparent 85%); }
.section .inner { max-width: 700px; margin: 0 auto; }
.section .inner.wide { max-width: 940px; }
.section h2:first-child { margin-top: 0; }

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-muted);
  margin: 0 0 18px;
}
.kicker .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: none;
  box-shadow: 0 0 10px 1px rgba(var(--accent-rgb), .5);
}

.hero-section { padding: 76px 24px 20px; text-align: center; }
.hero-section .inner { max-width: 780px; margin: 0 auto; }
.hero-section h1 { margin-bottom: 18px; }
.hero-section .lead { margin: 0 auto; }

.diagram-frame {
  margin: 40px auto 0; max-width: 420px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(var(--bg-elevated-rgb), .5), rgba(var(--bg-base-rgb), .3));
  border-radius: var(--radius-lg);
  padding: 26px;
}
.diagram-frame.wide { max-width: 620px; }
.diagram-frame img, .diagram-frame svg { width: 100%; height: auto; display: block; }
.diagram-frame figcaption {
  margin-top: 16px; font-size: 13px; color: var(--text-muted); text-align: center;
}

.visual { margin: 34px auto 0; max-width: 420px; }
.visual img, .visual svg { width: 100%; height: auto; display: block; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; text-align: left; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }
.step {
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 24px;
  background: linear-gradient(180deg, rgba(var(--bg-elevated-rgb), .5), rgba(var(--bg-base-rgb), .3));
}
.step .step-num {
  font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--accent-text, var(--accent)); line-height: 1;
}
.step h3 { margin: 12px 0 8px; }
.step p { font-size: 14.5px; margin: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 8px; text-align: left; align-items: start; }
@media (max-width: 720px) { .two-col { grid-template-columns: 1fr; } }
.two-col .card { margin-top: 0; }
.card > .visual:first-child { margin-top: 0; }

/* Toekomstige mogelijkheden: begrensde visieruimte, geen productclaim */
.horizon-band {
  margin-top: 40px; text-align: center;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
}
.horizon-band .badge { margin-bottom: 14px; }
.horizon-band p { margin: 0 auto; max-width: 52ch; }

/* ==========================================================================
   Richting C (gecombineerde premiumrichting, website-herontwerprapport):
   asymmetrische hero, echt bewijspaneel, ongelijk-gewicht architectuurkaarten,
   ritme-tegels. Uitsluitend bestaande tokens hierboven, geen nieuwe kleuren
   (AGENTS.md regel 7). Fotografie: gelabelde placeholders, wacht op
   referentiebibliotheek (Brand System 3.1, ADR-0006 §2.6).
   ========================================================================== */

.hero-split {
  padding: clamp(56px, 9vw, 96px) 0 clamp(40px, 6vw, 64px);
}
.hero-split .inner {
  max-width: var(--page-max); margin: 0 auto; padding: 0 var(--page-gutter);
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(28px, 4vw, 56px);
  align-items: center; text-align: left;
}
.hero-split h1 { font-size: clamp(34px, 5.4vw, 56px); margin-bottom: 18px; }
.hero-split .lead { max-width: 46ch; margin: 0 0 28px; }
.hero-split .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 860px) {
  .hero-split .inner { grid-template-columns: 1fr; text-align: left; }
}

.photo-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 220px;
  width: 100%; max-width: 100%;
  background: linear-gradient(155deg, #d9c3a3, #c9a26e 55%, #8a6339);
  display: flex; align-items: flex-start; padding: 16px;
}
[data-theme="dark"] .photo-frame, .band-dark .photo-frame {
  background: radial-gradient(circle at 30% 20%, #b98a55, #4a3520 60%, #1c140c);
}
.photo-frame .cap {
  background: rgba(255,255,255,.85); backdrop-filter: blur(6px); border-radius: var(--radius-sm);
  padding: 10px 13px; font-size: 12.5px; line-height: 1.4; color: #4a3b2a; max-width: 230px;
}
[data-theme="dark"] .photo-frame .cap, .band-dark .photo-frame .cap {
  background: rgba(12,10,8,.78); color: #cdbfae;
}
.hero-visual { position: relative; }
.hero-visual .photo-frame { aspect-ratio: 4 / 5; }
.hero-visual .mini-proof {
  position: absolute; right: -14px; bottom: -18px; width: 230px; max-width: calc(100% - 12px);
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 16px 18px; box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.hero-visual .mini-proof strong { font-family: var(--font-heading); font-size: 17px; display: block; color: var(--text-primary); }
.hero-visual .mini-proof .row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--text-muted); margin-top: 8px; }
.hero-visual .mini-proof .row .ok { color: var(--success); font-weight: 700; }
@media (max-width: 860px) {
  .hero-visual .mini-proof { position: static; margin-top: -32px; margin-right: 14px; margin-left: auto; width: auto; max-width: 230px; }
}

.band-dark { background: var(--bg-base, #0c0a08); position: relative; overflow: hidden; }
.band-dark, .band-dark [data-theme] { --bg-base: #0c0a08; --bg-surface: #15100b; --bg-elevated: #1d1710; --border: #332619; --text-primary: #f4efe8; --text-secondary: #e6dbca; --text-muted: #b3a596; }
.band-dark { background: #0c0a08; color: #f4efe8; }
.band-dark::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(232,160,74,.045) 1px, transparent 1px) 0 0/42px 42px,
    linear-gradient(90deg, rgba(232,160,74,.045) 1px, transparent 1px) 0 0/42px 42px;
}
.band-dark .section { position: relative; }

.proof-console {
  background: #15100b; border: 1px solid #332619; border-radius: var(--radius-lg); overflow: hidden;
}
.proof-console .pc-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; border-bottom: 1px solid #332619; font-size: 13px; color: #b3a596;
}
.proof-console .pc-head .dot { width: 8px; height: 8px; border-radius: 50%; background: #7fb069; display: inline-block; margin-right: 7px; }
.proof-console .pc-body { padding: 18px; }
.proof-console .pc-task { font-weight: 600; color: #f4efe8; margin-bottom: 14px; font-size: 15px; }
.proof-console .pc-step { display: flex; gap: 11px; align-items: baseline; padding: 9px 0; border-bottom: 1px solid #241c13; font-size: 14px; color: #e6dbca; }
.proof-console .pc-step:last-of-type { border-bottom: none; }
.proof-console .pc-step .n { font-family: var(--font-heading); color: #e8a04a; flex: none; }
.proof-console .pc-step .t { margin-left: auto; color: #7a6b58; font-size: 12px; }
.proof-console .pc-result {
  margin-top: 14px; background: rgba(127,176,105,.14); border-radius: var(--radius-md);
  padding: 12px 16px; display: flex; justify-content: space-between; align-items: center;
}
.proof-console .pc-result strong { color: #7fb069; font-size: 14.5px; }
.proof-console .pc-result .score { font-family: var(--font-heading); font-size: 26px; color: #7fb069; }

.arch-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; text-align: left;
}
.arch-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 780px) { .arch-grid, .arch-grid.cols-2 { grid-template-columns: 1fr; } }
.arch-card { border-radius: var(--radius-lg); padding: 26px; }
.arch-card.tone-1 { background: var(--bg-elevated); border: 1px solid var(--border); }
.arch-card.tone-2 { background: rgba(var(--accent-rgb), .12); border: 1px solid rgba(var(--accent-rgb), .25); }
.arch-card.tone-3 { background: #1c140c; border: 1px solid #332619; color: #f4efe8; }
.arch-card h2, .arch-card h3 { font-family: var(--font-heading); font-size: 20px; margin: 12px 0 8px; color: inherit; }
.arch-card p { margin: 0; font-size: 14.5px; color: var(--text-muted); }
.arch-card.tone-3 p { color: #b3a596; }

.rhythm-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 18px; margin-top: 8px; }
@media (max-width: 780px) { .rhythm-grid { grid-template-columns: 1fr; } }
.rhythm-tile { border-radius: var(--radius-lg); min-height: 180px; position: relative; overflow: hidden; }
.rhythm-tile.t-photo { background: linear-gradient(155deg, #d9c3a3, #c9a26e); }
.rhythm-tile.t-stat { background: #17110a; color: #f4efe8; padding: 18px; display: flex; flex-direction: column; justify-content: flex-end; }
.rhythm-tile.t-stat .n { font-family: var(--font-heading); font-size: 30px; color: var(--accent); }
.rhythm-tile.t-stat .l { font-size: 13px; color: #b3a596; }
.rhythm-tile.t-diagonal { background: linear-gradient(135deg, var(--bg-surface) 45%, var(--accent) 45% 55%, #4a3520 55%); }

.outcome-card {
  background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px 22px; margin-top: 24px; max-width: 30rem;
}
.outcome-card .tag2 { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
.outcome-card strong { font-family: var(--font-heading); font-size: 18px; display: block; margin: 6px 0; color: var(--text-primary); }
.outcome-card p { margin: 0; font-size: 14px; color: var(--text-muted); }

.checklist { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 14px; max-width: none; }
.checklist li { display: flex; gap: 11px; font-size: 15px; color: var(--text-secondary); margin: 0; }
.checklist li::before { content: '✓'; color: var(--success); font-weight: 700; flex: none; }

.split-media {
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; text-align: left;
}
@media (max-width: 780px) { .split-media { grid-template-columns: 1fr; } }
.split-media.reverse .photo-frame { order: 2; }
@media (max-width: 780px) { .split-media.reverse .photo-frame { order: 0; } }
