/* ============================================================
   Sentinel Assurance design tokens
   ============================================================ */
:root {
  --navy-950: #060e1c;
  --navy-900: #0a1830;
  --navy-850: #0d1e39;
  --navy-800: #122544;
  --navy-700: #1a3358;
  --navy-600: #2a4779;
  --navy-500: #3d5c96;

  --orange-600: #d9760f;
  --orange-500: #f7941d;
  --orange-400: #ffab3d;
  --orange-300: #ffc266;
  --orange-100: #fff1dc;

  --cyan-400: #35d0c4;
  --cyan-300: #7ee4db;

  --ink-900: #0b1220;
  --ink-700: #2b3648;
  --ink-600: #4a5568;
  --ink-400: #8a94a6;
  --ink-200: #cbd2df;

  --paper: #ffffff;
  --paper-alt: #f5f7fb;
  --paper-alt-2: #eef1f8;
  --border: #e3e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 1px 2px rgba(10, 24, 48, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 24, 48, 0.10);
  --shadow-lg: 0 24px 64px rgba(6, 14, 28, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --font-sans: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  --header-h: 72px;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.5em; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 1em; color: var(--ink-600); }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; }

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange-500);
  color: var(--navy-950);
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--navy-950);
  box-shadow: 0 6px 18px rgba(247, 148, 29, 0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(247, 148, 29, 0.45); }
.btn-secondary {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.35);
}
.btn-secondary:hover { border-color: var(--paper); background: rgba(255,255,255,0.06); }
.btn-outline {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--navy-700); }
.btn-sm { padding: 9px 18px; font-size: 0.88rem; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 24, 48, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-mark { display: flex; }
.brand-mark img { height: 34px; width: auto; display: block; }
.brand-name {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--paper);
}
.brand-name-accent { color: var(--orange-400); }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.main-nav a:hover { color: var(--paper); }
.main-nav a[aria-current="page"] { color: var(--paper); border-color: var(--orange-500); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lang-switch:hover { border-color: var(--paper); color: var(--paper); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 0 auto; background: var(--paper); border-radius: 2px; }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-900);
  border-top: 1px solid var(--border-dark);
  padding: 8px 24px 20px;
}
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-dark);
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.mobile-nav .mobile-lang { color: var(--orange-400); font-weight: 700; }
.mobile-nav.is-open { display: flex; }

@media (max-width: 1020px) {
  .main-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 15% -10%, rgba(247,148,29,0.16), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(53,208,196,0.10), transparent 55%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 60%, var(--navy-850) 100%);
  color: var(--paper);
  padding: 96px 0 100px;
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-300);
  background: rgba(247, 148, 29, 0.12);
  border: 1px solid rgba(247, 148, 29, 0.3);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  color: var(--paper);
  margin-bottom: 18px;
}
.hero .accent { color: var(--orange-400); }
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-line {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--paper);
  border-left: 3px solid var(--orange-500);
  padding-left: 14px;
  margin-top: 34px;
}
.hero-line small { display: block; font-weight: 400; color: rgba(255,255,255,0.55); margin-top: 2px; font-size: 0.86rem; }

.hero-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(6px);
}
.hero-visual .flow-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 4px;
}
.hero-visual .flow-step + .flow-step { border-top: 1px dashed var(--border-dark); }
.flow-badge {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--navy-950);
}
.flow-step h4 { color: var(--paper); font-size: 0.98rem; margin-bottom: 4px; }
.flow-step p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 60px; text-align: left; }
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--paper-alt); }
.section-dark {
  background: linear-gradient(180deg, var(--navy-900), var(--navy-950));
  color: var(--paper);
}
.section-dark p { color: rgba(255,255,255,0.68); }
.section-dark h2, .section-dark h3 { color: var(--paper); }

.section-header { max-width: 720px; margin: 0 0 48px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 12px;
}
.section-dark .eyebrow { color: var(--orange-300); }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); color: var(--navy-900); }
.section-dark .section-header h2 { color: var(--paper); }
.section-header .lead { font-size: 1.06rem; color: var(--ink-600); }

/* ============================================================
   Cards / grids
   ============================================================ */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card h3 { font-size: 1.12rem; color: var(--navy-900); }
.card p { margin-bottom: 0; font-size: 0.96rem; }
.card .card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange-100);
  color: var(--orange-600);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

/* Stage / loop cards (Verify -> Guard -> Live) */
.stage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
@media (max-width: 900px) { .stage-grid { grid-template-columns: 1fr; } }
.stage-card {
  position: relative;
  background: var(--navy-850);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  color: var(--paper);
}
.stage-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(247,148,29,0.15);
  border: 1px solid var(--orange-500);
  color: var(--orange-300);
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 18px;
}
.stage-card h3 { color: var(--paper); font-size: 1.2rem; }
.stage-card .stage-question {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan-300);
  background: rgba(53,208,196,0.10);
  border: 1px solid rgba(53,208,196,0.3);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.stage-card p { color: rgba(255,255,255,0.68); font-size: 0.95rem; }
.stage-card ul { margin-top: 14px; }
.stage-card li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding-left: 18px;
  position: relative;
  margin-bottom: 8px;
}
.stage-card li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-500);
}
.stage-arrow {
  display: none;
  position: absolute;
  top: 40px;
  right: -18px;
  color: var(--orange-400);
  font-size: 1.4rem;
  z-index: 2;
}
@media (min-width: 901px) {
  .stage-grid > .stage-card:not(:last-child) .stage-arrow { display: block; }
}

/* Callout / quote block (mirrors whitepaper's orange-bar highlight box) */
.callout {
  border-left: 4px solid var(--orange-500);
  background: var(--orange-100);
  padding: 22px 26px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 1.02rem;
}
.callout.on-dark {
  background: rgba(247,148,29,0.10);
  color: var(--paper);
  border-left-color: var(--orange-400);
}

/* Flywheel strip */
.flywheel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--navy-900);
}
.section-dark .flywheel { color: var(--paper); }
.flywheel .fw-step {
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: 999px;
}
.section-dark .flywheel .fw-step {
  background: rgba(255,255,255,0.06);
  border-color: var(--border-dark);
}
.flywheel .fw-arrow { color: var(--orange-500); font-weight: 800; }

/* ============================================================
   Tables
   ============================================================ */
.table-shell {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}
table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--paper); }

/* Fade lives on the non-scrolling shell, not the scroll container itself,
   so it stays pinned to the viewport edge instead of scrolling with the
   table content. */
.table-shell::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 28px;
  background: linear-gradient(to right, transparent, rgba(10, 24, 48, 0.10));
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
}
@media (max-width: 640px) {
  .table-shell.has-more-right::after { opacity: 1; }
}
thead th {
  text-align: left;
  background: var(--navy-900);
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 14px 20px;
}
tbody td {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.94rem;
  color: var(--ink-700);
  vertical-align: top;
}
tbody tr:nth-child(even) { background: var(--paper-alt); }
tbody td:first-child { font-weight: 700; color: var(--navy-800); white-space: nowrap; }

/* AAL level badges */
.aal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--navy-950);
}
.aal-1 { background: #cdeede; }
.aal-2 { background: #a9dfc4; }
.aal-3 { background: #ffd08a; }
.aal-4 { background: #ffab6b; }
.aal-5 { background: #ff8b6b; }

/* ============================================================
   Team
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.team-avatar {
  width: 128px; height: 128px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin-bottom: 18px;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--border), var(--shadow-sm);
}
.team-card h3 { font-size: 1.12rem; margin-bottom: 2px; color: var(--navy-900); }
.team-role {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--orange-600);
  margin-bottom: 4px;
}
.team-affiliation { font-size: 0.86rem; color: var(--ink-400); margin-bottom: 16px; }
.team-card p { font-size: 0.92rem; }
.team-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.team-badges span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy-700);
  background: var(--paper-alt-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================================
   Timeline (milestones)
   ============================================================ */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.timeline-item:first-child { border-top: none; }
.timeline-when { font-weight: 800; color: var(--orange-600); font-size: 0.95rem; }
.timeline-item h4 { font-size: 1.02rem; margin-bottom: 4px; color: var(--navy-900); }
.timeline-item p { margin: 0; font-size: 0.92rem; }
@media (max-width: 640px) { .timeline-item { grid-template-columns: 1fr; gap: 6px; } }

/* ============================================================
   Stats
   ============================================================ */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 900px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: left; }
.stat .stat-num { font-size: 2rem; font-weight: 800; color: var(--orange-400); }
.stat .stat-label { font-size: 0.86rem; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950), var(--navy-800) 60%, var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border: 1px solid var(--border-dark);
}
.cta-banner h2 { color: var(--paper); margin-bottom: 8px; font-size: 1.6rem; }
.cta-banner p { color: rgba(255,255,255,0.68); margin: 0; max-width: 46ch; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   Forms (contact page)
   ============================================================ */
.form-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 8px; color: var(--navy-900); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--paper-alt);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 2px solid var(--orange-400);
  outline-offset: 1px;
  background: var(--paper);
}

.form-status {
  font-size: 0.86rem;
  margin-top: 14px;
  min-height: 1.2em;
}
.form-status-success { color: #1a7f4e; font-weight: 600; }
.form-status-error { color: #c53030; font-weight: 600; }

.contact-channels { display: grid; gap: 18px; }
.contact-channel {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--paper-alt);
}
.contact-channel .card-icon { margin-bottom: 0; flex: none; }
.contact-channel h4 { margin-bottom: 4px; color: var(--navy-900); font-size: 1rem; }
.contact-channel p { margin: 0; font-size: 0.9rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding: 56px 0 32px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 24px;
}
.footer-brand .brand-name { display: block; margin-bottom: 8px; }
.footer-tagline { color: rgba(255,255,255,0.55); font-size: 0.92rem; margin: 0; max-width: 32ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { font-size: 0.9rem; color: rgba(255,255,255,0.62); }
.footer-nav a:hover { color: var(--paper); }
.footer-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); max-width: 88ch; margin-bottom: 18px; }
.footer-rights { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin: 0; }

/* ============================================================
   Research
   ============================================================ */
.research-grid { display: grid; gap: 22px; }
.research-card {
  display: block;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.research-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.research-card-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: var(--orange-100);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.research-card h3 { font-size: 1.22rem; color: var(--navy-900); margin-bottom: 10px; }
.research-card p { font-size: 0.96rem; margin-bottom: 16px; }

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 10px;
}
.post-meta a { color: var(--orange-300); font-weight: 600; }
.post-meta a:hover { color: var(--orange-200, var(--orange-300)); }

.post-body { max-width: 720px; margin: 0 auto; }
.post-body p { font-size: 1.03rem; line-height: 1.75; color: var(--ink-700); }
.post-body h2 {
  font-size: 1.4rem;
  color: var(--navy-900);
  margin-top: 44px;
  margin-bottom: 16px;
}
.post-body ul { margin: 0 0 24px; padding-left: 22px; list-style: disc; }
.post-body li { margin-bottom: 10px; color: var(--ink-600); font-size: 1.02rem; line-height: 1.6; }
.post-body strong { color: var(--navy-900); }
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange-600);
  margin-bottom: 28px;
}
.post-back:hover { color: var(--orange-500); }

/* ============================================================
   Misc utility
   ============================================================ */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.badge-list { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-list span {
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--paper-alt-2);
  border: 1px solid var(--border);
  color: var(--navy-800);
}
.divider { height: 1px; background: var(--border); border: none; margin: 48px 0; }

/* ============================================================
   Cookie consent banner
   ============================================================ */
.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
  padding: 18px 22px;
  background: var(--navy-950);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent p {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
  flex: 1 1 320px;
}
.cookie-consent-actions {
  display: flex;
  gap: 10px;
  flex: none;
}
.cookie-consent .btn-outline {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}
.cookie-consent .btn-outline:hover { border-color: var(--paper); color: var(--paper); }
