:root {
  --primary: #122644;
  --accent: #29B9A8;
  --bg: #fff;
  --bg-alt: rgba(41, 185, 168, 0.08);
  --border: rgba(18, 38, 68, 0.14);
  --text: #1e293b;
  --text-muted: #64748b;
  --warn: #b45309;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.6; background: var(--bg); }
.container { max-width: 52rem; margin: 0 auto; padding: 0 1.5rem; }
.container--wide { max-width: 62rem; }
.section { padding: 2.5rem 0; }
.section--alt { background: var(--bg-alt); }
h1 { font-size: clamp(1.4rem, 4vw, 1.75rem); font-weight: 700; color: var(--primary); }
h2 { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 1rem; }
h3 { font-size: 1.05rem; font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; font-size: 0.95rem; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-size: 0.88em; background: var(--bg-alt); padding: 0.1rem 0.35rem; border-radius: 4px; }
.top-bar {
  position: sticky; top: 0; z-index: 100;
  background: var(--primary);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.35rem 0.75rem; padding: 0.6rem 1rem;
}
.top-bar a { font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.95); padding: 0.4rem 0.6rem; border-radius: 4px; }
.top-bar a:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.hero {
  background: linear-gradient(145deg, #122644 0%, #1e3d5c 50%, #29B9A8 100%);
  color: #fff; padding: 2.5rem 1.5rem 3rem; text-align: center;
}
.hero__logo { height: 40px; margin-bottom: 1rem; background: #fff; border-radius: 8px; padding: 6px 12px; }
.hero__badge { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.9; }
.hero__meta { font-size: 0.9rem; opacity: 0.92; max-width: 36rem; margin: 0.5rem auto 0; }
.meta-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.75rem; margin-top: 1rem; }
.meta-grid dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.meta-grid dd { font-size: 0.9rem; font-weight: 600; color: var(--primary); }
.task-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; margin: 1rem 0; }
.task-table th, .task-table td { border: 1px solid var(--border); padding: 0.55rem 0.65rem; text-align: left; vertical-align: top; }
.task-table th { background: var(--bg-alt); font-weight: 600; color: var(--primary); }
.task-table tr:nth-child(even) td { background: rgba(41, 185, 168, 0.04); }
.badge { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; padding: 0.15rem 0.4rem; border-radius: 4px; white-space: nowrap; }
.badge--critical { background: #fef3c7; color: var(--warn); }
.badge--high { background: rgba(41, 185, 168, 0.2); color: var(--primary); }
.badge--medium { background: var(--bg-alt); color: var(--text-muted); }
.badge--quick { background: #e0f2fe; color: #0369a1; }
.badge--low { background: #f1f5f9; color: var(--text-muted); }
ul.checklist { list-style: none; padding: 0; }
ul.checklist li { padding: 0.35rem 0 0.35rem 1.5rem; position: relative; font-size: 0.92rem; }
ul.checklist li::before { content: ''; position: absolute; left: 0; top: 0.55rem; width: 0.55rem; height: 0.55rem; border: 2px solid var(--accent); border-radius: 2px; }
ol.funnel { padding-left: 1.25rem; font-size: 0.92rem; }
ol.funnel li { margin-bottom: 0.35rem; }
.copy-option { border: 1px solid var(--border); border-radius: 8px; padding: 1rem; margin-bottom: 0.75rem; background: var(--bg); }
.copy-option__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: var(--accent); margin-bottom: 0.35rem; }
.copy-option__rationale { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; margin-bottom: 0; font-style: italic; }
.pie-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.pie-table th, .pie-table td { border: 1px solid var(--border); padding: 0.5rem 0.65rem; text-align: left; }
.pie-table th { background: var(--bg-alt); }
.ci-flag { background: #fff7ed; border-left: 4px solid var(--warn); padding: 0.75rem 1rem; margin-bottom: 0.75rem; font-size: 0.88rem; border-radius: 0 6px 6px 0; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.hub-card {
  display: block; border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem;
  text-decoration: none; color: inherit; transition: box-shadow 0.2s, border-color 0.2s;
}
.hub-card:hover { border-color: var(--accent); box-shadow: 0 4px 16px rgba(18, 38, 68, 0.08); text-decoration: none; }
.hub-card__badge { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; color: var(--accent); }
.hub-card h3 { margin: 0.5rem 0; color: var(--primary); font-size: 1.05rem; }
.hub-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.footer { padding: 2rem 1rem; text-align: center; font-size: 0.85rem; color: var(--text-muted); border-top: 1px solid var(--border); }
