:root {
  --brand: #0E2384;
  --brand-dark: #07124d;
  --brand-deep: #050815;
  --brand-soft: #6fa9ea;
  --brand-pale: #edf4ff;
  --ink: #111827;
  --heading: #0b1438;
  --muted: #5d6575;
  --line: rgba(14, 35, 132, 0.14);
  --bg: #f6f8fc;
  --card: #ffffff;
  --danger: #8b1e2d;
  --success: #116149;
  --shadow: 0 24px 70px rgba(14, 35, 132, 0.14);
  --radius: 24px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { max-width: 850px; }
.skip-link { position: absolute; left: -999px; top: 14px; padding: 10px 14px; background: white; color: var(--brand); z-index: 999; }
.skip-link:focus { left: 14px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: 14px 0;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(14, 35, 132, .08);
  transition: box-shadow .2s ease, padding .2s ease;
}
.site-header.is-scrolled {
  background: #ffffff;
  backdrop-filter: none;
  box-shadow: 0 10px 30px rgba(14, 35, 132, .10);
  padding: 9px 0;
}
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; padding: 3px 0; border-radius: 0; background: transparent; }
.brand img { width: clamp(190px, 18vw, 300px); height: auto; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  color: #25304a; font-weight: 750; font-size: .94rem;
  padding: 10px 13px; border-radius: 999px;
  transition: background .2s ease, color .2s ease;
}
.site-nav a:hover, .site-nav a.active { background: rgba(14,35,132,.08); color: var(--brand); }
.site-nav .nav-cta { color: white; background: var(--brand); padding-inline: 17px; }
.site-nav .nav-cta:hover, .site-nav .nav-cta.active { background: var(--brand-dark); color: white; }
.menu-toggle {
  display: none; width: 44px; height: 44px;
  border: 0; background: white; border-radius: 14px;
  box-shadow: 0 10px 30px rgba(14,35,132,.1);
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--brand); }
.section { padding: 94px 0; }
.eyebrow {
  margin: 0 0 14px; color: var(--brand-soft);
  font-weight: 900; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
}
h1, h2, h3 { color: var(--heading); }
.hero h1, .page-hero h1, .section h2 { margin: 0; letter-spacing: -.055em; line-height: .98; }
.hero {
  position: relative; min-height: 820px; display: grid; place-items: center;
  margin-top: -80px; padding-top: 145px; overflow: hidden; color: white;
  background:
    radial-gradient(circle at 80% 20%, rgba(111,169,234,.28), transparent 34%),
    radial-gradient(circle at 12% 72%, rgba(111,169,234,.18), transparent 34%),
    linear-gradient(135deg, #050814 0%, #0E2384 58%, #071149 100%);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black 35%, transparent 95%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); gap: 56px; align-items: center; }
.hero h1 { max-width: 850px; color: white; font-size: clamp(3rem, 7vw, 6.7rem); }
.hero-intro { max-width: 720px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1.08rem, 2vw, 1.32rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 13px 20px; border: 0;
  border-radius: 999px; font-weight: 900; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--brand); color: white; box-shadow: 0 16px 35px rgba(14,35,132,.28); }
.button.primary.light { background: white; color: var(--brand); box-shadow: 0 20px 45px rgba(0,0,0,.18); }
.button.secondary { color: white; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); }
.text-link { display: inline-flex; margin-top: 18px; color: var(--brand); font-weight: 900; }
.text-link::after { content: "→"; margin-left: 8px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; max-width: 850px; }
.trust-strip span {
  padding: 10px 12px; border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84); font-weight: 700; font-size: .92rem;
}
.hero-card {
  padding: 30px; border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius); background: rgba(255,255,255,.10);
  backdrop-filter: blur(20px); box-shadow: 0 34px 80px rgba(0,0,0,.24);
}
.status-pill { display: inline-flex; padding: 8px 11px; border-radius: 999px; background: rgba(111,169,234,.18); color: #dbeafe; font-size: .84rem; font-weight: 900; }
.hero-card h2 { margin: 22px 0 12px; color: white; font-size: 2.1rem; letter-spacing: -.04em; line-height: 1; }
.hero-card p { color: rgba(255,255,255,.78); }
.mini-dashboard { display: grid; gap: 12px; margin-top: 26px; }
.mini-dashboard div { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.10); }
.mini-dashboard strong { color: var(--brand-soft); font-size: 1.35rem; }
.mini-dashboard span { font-weight: 800; }
.page-hero {
  margin-top: -80px; padding: 170px 0 88px;
  color: white;
  background:
    radial-gradient(circle at 80% 10%, rgba(111,169,234,.24), transparent 30%),
    linear-gradient(135deg, #050814, var(--brand) 65%, #071149);
}
.page-hero h1 { color: white; font-size: clamp(3rem, 7vw, 6.2rem); }
.page-hero p:not(.eyebrow) { max-width: 780px; color: rgba(255,255,255,.78); font-size: 1.2rem; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1fr; }
.section-copy h2, .section-heading h2 { font-size: clamp(2.2rem, 4vw, 4.2rem); }
.section-copy p, .section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-heading { max-width: 800px; margin-bottom: 38px; }
.question-list { display: grid; gap: 13px; }
.question-list div {
  padding: 20px 22px; border: 1px solid var(--line);
  border-radius: 20px; background: white;
  box-shadow: 0 14px 35px rgba(14,35,132,.07);
  font-weight: 800;
}
.services-preview, .assessments-list, .values, .final-cta { background: white; }
.preview-grid, .value-grid, .deliverable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.preview-card, .value-card, .deliverable-grid div {
  min-height: 230px; padding: 26px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14,35,132,.04), transparent 55%), white;
  box-shadow: 0 18px 45px rgba(14,35,132,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.preview-card:hover, .value-card:hover { transform: translateY(-7px); border-color: rgba(14,35,132,.35); box-shadow: var(--shadow); }
.preview-card span, .card-index {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 34px; border-radius: 999px;
  background: rgba(14,35,132,.08); color: var(--brand); font-weight: 950;
}
.preview-card h3, .value-card h3, .deliverable-grid h3 { margin: 22px 0 10px; font-size: 1.25rem; line-height: 1.14; }
.preview-card p, .value-card p, .deliverable-grid p { margin: 0; color: var(--muted); }
.service-list { display: grid; gap: 20px; }
.service-row {
  display: grid; grid-template-columns: 74px 1fr; gap: 24px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line); border-radius: 30px;
  background: white; box-shadow: 0 18px 45px rgba(14,35,132,.07);
}
.service-row h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
.service-row p { color: var(--muted); font-size: 1.05rem; }
.service-row ul { margin: 20px 0 0; padding-left: 18px; color: #26314d; font-weight: 700; }
.service-row li + li { margin-top: 7px; }
.quickscan { background: #071149; color: white; }
.quickscan h2 { color: white; }
.quickscan .section-copy p { color: rgba(255,255,255,.72); }
.scan-box { padding: 24px; border-radius: var(--radius); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.scan-options { display: grid; gap: 10px; }
.scan-options button {
  width: 100%; text-align: left; padding: 16px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px; background: rgba(255,255,255,.08); color: white; cursor: pointer; font-weight: 760;
  transition: background .2s ease, transform .2s ease;
}
.scan-options button:hover, .scan-options button.is-active { background: rgba(111,169,234,.22); transform: translateX(4px); }
.scan-result { margin-top: 18px; padding: 20px; border-radius: 18px; background: white; color: var(--heading); }
.scan-result p { margin-bottom: 0; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps.large { grid-template-columns: repeat(2, 1fr); }
.step { position: relative; padding: 28px; border-radius: var(--radius); background: #0b1438; color: white; overflow: hidden; }
.step::after { content: ""; position: absolute; width: 130px; height: 130px; right: -50px; top: -50px; border-radius: 50%; background: rgba(111,169,234,.18); }
.step span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 999px; background: white; color: var(--brand); font-weight: 950; }
.step h2, .step h3 { margin: 24px 0 8px; color: white; letter-spacing: -.03em; }
.step p { margin: 0; color: rgba(255,255,255,.72); }
.about, .experience, .deliverables { background: var(--bg); }
.about-logo { padding: 34px; border-radius: 34px; background: var(--brand); box-shadow: var(--shadow); }
.about-logo img { border-radius: 22px; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: #26314d; font-weight: 760; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .45em; width: 18px; height: 18px; border-radius: 6px; background: var(--brand); box-shadow: inset 0 0 0 5px white, 0 0 0 1px var(--brand); }
.cta-panel {
  padding: clamp(34px, 6vw, 68px); border-radius: 34px; color: white;
  background: radial-gradient(circle at 90% 20%, rgba(111,169,234,.32), transparent 26%), linear-gradient(135deg, var(--brand), #061044);
  box-shadow: var(--shadow);
}
.cta-panel h2 { color: white; font-size: clamp(2.2rem, 4vw, 4.8rem); }
.cta-panel p:not(.eyebrow) { max-width: 670px; color: rgba(255,255,255,.76); font-size: 1.1rem; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 46px; }
.contact-details { margin-top: 26px; padding: 22px; border-radius: var(--radius); background: white; border: 1px solid var(--line); }
.contact-details p { margin: 0 0 18px; }
.contact-details p:last-child { margin-bottom: 0; }
.contact-details a { color: var(--brand); font-weight: 850; }
.contact-form {
  display: grid; gap: 16px; padding: 26px;
  border-radius: 30px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.contact-form label { display: grid; gap: 7px; color: #26314d; font-weight: 850; }
.contact-form label span, .privacy-note { color: var(--muted); font-weight: 500; font-size: .92rem; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; border: 1px solid rgba(14,35,132,.18); border-radius: 16px;
  padding: 14px 15px; outline: none; color: var(--heading); background: #f9fbff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--brand); box-shadow: 0 0 0 4px rgba(14,35,132,.10); }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.alert { padding: 14px 16px; border-radius: 16px; font-weight: 750; }
.alert.success { color: var(--success); background: rgba(17,97,73,.08); border: 1px solid rgba(17,97,73,.18); }
.alert.error { color: var(--danger); background: rgba(139,30,45,.08); border: 1px solid rgba(139,30,45,.18); }
.site-footer { padding: 54px 0 24px; background: #050815; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr 1fr; gap: 34px; }
.footer-logo { width: 190px; margin-bottom: 18px; }
.site-footer h2 { color: white; font-size: 1rem; margin: 0 0 12px; letter-spacing: 0; }
.site-footer a { display: block; margin: 7px 0; color: rgba(255,255,255,.72); }
.site-footer p { margin: 7px 0; color: rgba(255,255,255,.72); }
.site-footer a:hover { color: white; }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; font-size: .9rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (max-width: 1050px) {
  .hero-grid, .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { max-width: 620px; }
  .steps, .preview-grid, .value-grid, .deliverable-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .container { width: min(100% - 32px, var(--max)); }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed; inset: 76px 16px auto 16px;
    display: grid; gap: 6px; padding: 16px; border-radius: 24px;
    background: white; box-shadow: var(--shadow);
    transform: translateY(-18px); opacity: 0; pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav a { padding: 13px 15px; }
  .brand img { width: 150px; }
  .hero { margin-top: -72px; padding-top: 130px; }
  .page-hero { margin-top: -72px; padding-top: 140px; }
  .footer-bottom { flex-direction: column; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 66px 0; }
  .hero h1, .page-hero h1 { font-size: clamp(2.65rem, 13vw, 4.8rem); }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .steps, .steps.large, .preview-grid, .value-grid, .deliverable-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; }
  .contact-form { padding: 18px; }
  .scan-options button:hover, .scan-options button.is-active { transform: none; }
}


/* V2 dienstenpagina en kennisbank */
.service-picker {
  background:
    radial-gradient(circle at 10% 10%, rgba(14,35,132,.08), transparent 30%),
    var(--bg);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.situation-card {
  position: relative;
  min-height: 285px;
  padding: 26px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(14,35,132,.07);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.situation-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -70px;
  border-radius: 999px;
  background: rgba(14,35,132,.06);
}

.situation-card:hover {
  transform: translateY(-7px);
  border-color: rgba(14,35,132,.35);
  box-shadow: var(--shadow);
}

.situation-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--brand);
  color: white;
  font-size: 1.45rem;
  font-weight: 950;
  margin-bottom: 22px;
}

.situation-card h2 {
  margin: 0 0 12px;
  letter-spacing: -.035em;
  line-height: 1.05;
  font-size: 1.55rem;
}

.situation-card p {
  color: var(--muted);
  margin: 0 0 20px;
}

.situation-card a {
  color: var(--brand);
  font-weight: 900;
}

.situation-card a::after {
  content: " →";
}

.service-explain {
  background: white;
}

.simple-service-list {
  display: grid;
  gap: 18px;
}

.simple-service {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  align-items: start;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(14,35,132,.05), transparent 42%),
    white;
  box-shadow: 0 14px 35px rgba(14,35,132,.06);
}

.simple-number {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 22px;
  color: white;
  background: var(--brand);
  font-weight: 950;
  font-size: 1.15rem;
}

.simple-service h2 {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  letter-spacing: -.04em;
  line-height: 1.05;
}

.simple-service p {
  margin: 8px 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.simple-service strong {
  color: var(--heading);
}

.outcome-strip {
  background: var(--bg);
}

.outcome-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: clamp(30px, 5vw, 54px);
  border-radius: 34px;
  background: #071149;
  color: white;
  box-shadow: var(--shadow);
}

.outcome-panel h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.outcome-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.outcome-points span {
  padding: 17px;
  border-radius: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
}

.knowledge-intro {
  background: var(--bg);
}

.knowledge-note {
  padding: 28px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.knowledge-note strong {
  display: block;
  color: var(--brand);
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.knowledge-note p {
  margin: 0;
  color: var(--muted);
}

.knowledge {
  background: white;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.knowledge-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(14,35,132,.05), transparent 55%),
    white;
  box-shadow: 0 18px 45px rgba(14,35,132,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.knowledge-card:hover {
  transform: translateY(-7px);
  border-color: rgba(14,35,132,.35);
  box-shadow: var(--shadow);
}

.knowledge-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  border-radius: 999px;
  background: rgba(14,35,132,.08);
  color: var(--brand);
  font-weight: 950;
  margin-bottom: 22px;
}

.knowledge-card h2 {
  margin: 0 0 12px;
  font-size: 1.22rem;
  line-height: 1.12;
  letter-spacing: -.03em;
}

.knowledge-card p {
  color: var(--muted);
  margin: 0;
}

.knowledge-cta {
  background: white;
}

@media (max-width: 1050px) {
  .situation-grid,
  .knowledge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .outcome-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .situation-grid,
  .knowledge-grid,
  .outcome-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .simple-service {
    grid-template-columns: 1fr;
  }
}


/* Navbar logo en kennisbank artikelen */
.knowledge-card {
  display: block;
  color: inherit;
}

.knowledge-card::after {
  content: "Lees artikel";
  display: inline-block;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 900;
}

.article-page {
  background: white;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 28px;
  align-items: start;
}

.article-content {
  padding: clamp(24px, 4vw, 38px);
  border-radius: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(14,35,132,.07);
}

.article-section + .article-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
  line-height: 1.05;
}

.article-section p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 14px;
}

.article-section ul {
  margin: 18px 0 0;
  padding-left: 22px;
  color: #25304a;
}

.article-section li + li {
  margin-top: 8px;
}

.article-sidebar {
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14,35,132,.04), transparent 60%), white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 35px rgba(14,35,132,.06);
}

.sidebar-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 1.02rem;
}

.sidebar-card p {
  margin: 0;
  color: var(--muted);
}

.sidebar-card ul {
  margin: 0;
  padding-left: 18px;
  color: #25304a;
}

.sidebar-card li + li {
  margin-top: 8px;
}

@media (max-width: 1050px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .brand img {
    width: min(260px, 58vw);
  }
}


/* V5 visual upgrade: relevant dynamic animations per page */
.read-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-soft), var(--brand));
  z-index: 9999;
  box-shadow: 0 0 18px rgba(111,169,234,.75);
}

.signal-strip {
  padding: 34px 0;
  margin-top: -1px;
  background: #071149;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.signal-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
}

.signal-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

.signal-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.signal-line {
  position: absolute;
  left: -40%;
  top: 0;
  width: 38%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(111,169,234,.28), transparent);
  transform: skewX(-18deg);
  animation: signalMove 3.4s ease-in-out infinite;
}

.signal-line.delay-1 { animation-delay: .6s; }
.signal-line.delay-2 { animation-delay: 1.2s; }

@keyframes signalMove {
  0% { left: -45%; }
  55%, 100% { left: 120%; }
}

.risk-radar {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
}

.radar-circle {
  position: relative;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(111,169,234,.18) 0 18%, transparent 19%),
    repeating-radial-gradient(circle, rgba(255,255,255,.24) 0 1px, transparent 1px 24px),
    rgba(255,255,255,.07);
  overflow: hidden;
}

.radar-circle::before,
.radar-circle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.18);
}
.radar-circle::after {
  transform: rotate(90deg);
}

.radar-sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, rgba(111,169,234,.75), transparent 82deg);
  animation: radarSweep 3.2s linear infinite;
  mix-blend-mode: screen;
}

.radar-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #9fd0ff;
  box-shadow: 0 0 18px #9fd0ff;
  animation: dotPulse 1.8s ease-in-out infinite;
}
.dot-one { left: 64%; top: 28%; }
.dot-two { left: 31%; top: 62%; animation-delay: .4s; }
.dot-three { left: 72%; top: 70%; animation-delay: .8s; }

.radar-copy strong,
.radar-copy span {
  display: block;
}
.radar-copy strong { color: white; }
.radar-copy span { color: rgba(255,255,255,.68); }

@keyframes radarSweep {
  to { transform: rotate(360deg); }
}
@keyframes dotPulse {
  0%, 100% { transform: scale(.8); opacity: .45; }
  50% { transform: scale(1.3); opacity: 1; }
}

.service-visual-route {
  background: white;
  padding: 58px 0;
}

.route-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 20%, rgba(111,169,234,.22), transparent 30%),
    linear-gradient(135deg, #071149, var(--brand));
  color: white;
  box-shadow: var(--shadow);
}

.route-copy h2 {
  margin: 0;
  color: white;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.route-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.74);
}

.route-animation {
  display: grid;
  grid-template-columns: 1fr .7fr 1fr .7fr 1fr;
  align-items: center;
  gap: 8px;
}

.route-node {
  display: grid;
  place-items: center;
  min-height: 96px;
  border-radius: 28px;
  color: white;
  font-weight: 950;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.16);
  animation: nodeGlow 3s ease-in-out infinite;
}

.node-risk { animation-delay: .7s; }
.node-action { animation-delay: 1.4s; }

.route-beam {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.17);
  overflow: hidden;
}

.route-beam::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(90deg, transparent, #9fd0ff, transparent);
  animation: beamMove 2.2s ease-in-out infinite;
}
.route-beam.delay::after { animation-delay: 1s; }

@keyframes beamMove {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(230%); }
}

@keyframes nodeGlow {
  0%, 100% { box-shadow: inset 0 0 0 rgba(111,169,234,0), 0 0 0 rgba(111,169,234,0); }
  50% { box-shadow: inset 0 0 28px rgba(111,169,234,.18), 0 0 28px rgba(111,169,234,.20); }
}

.situation-card {
  cursor: pointer;
}

.situation-card.is-highlighted {
  border-color: rgba(14,35,132,.55);
  box-shadow: 0 28px 80px rgba(14,35,132,.18);
}

.process-pulse-panel {
  margin-bottom: 28px;
  padding: 28px;
  border-radius: 30px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(14,35,132,.07);
}

.pulse-track {
  position: relative;
  height: 84px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(14,35,132,.08), rgba(111,169,234,.12));
  overflow: hidden;
}

.pulse-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: rgba(14,35,132,.18);
}

.pulse-runner {
  position: absolute;
  left: 8%;
  top: calc(50% - 10px);
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 9px rgba(14,35,132,.10), 0 0 30px rgba(14,35,132,.35);
  animation: processRun 5.2s ease-in-out infinite;
  z-index: 2;
}

.pulse-stop {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 10px;
  border-radius: 999px;
  background: white;
  color: var(--brand);
  font-weight: 900;
  font-size: .82rem;
  box-shadow: 0 10px 22px rgba(14,35,132,.12);
  z-index: 3;
}
.stop-1 { left: 10%; }
.stop-2 { left: 37%; }
.stop-3 { left: 64%; }
.stop-4 { left: 90%; }

.process-pulse-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 750;
}

@keyframes processRun {
  0%, 100% { left: 8%; }
  25% { left: 36%; }
  50% { left: 63%; }
  75% { left: 89%; }
}

.translation-section {
  background: #071149;
  color: white;
}

.translation-section h2 {
  color: white;
}

.translation-section .section-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}

.translation-loop {
  display: grid;
  grid-template-columns: 1fr .35fr 1fr .35fr 1fr;
  align-items: center;
  gap: 12px;
}

.translate-card {
  min-height: 140px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 30px;
  color: white;
  font-weight: 950;
  font-size: 1.25rem;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.10);
  animation: translateLift 3.8s ease-in-out infinite;
}

.translate-card span {
  display: block;
  margin-top: 5px;
  font-size: .9rem;
  color: rgba(255,255,255,.68);
}

.risk-card { animation-delay: .6s; }
.board-card { animation-delay: 1.2s; }

.translate-arrow {
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  position: relative;
  overflow: hidden;
}

.translate-arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 55%;
  background: linear-gradient(90deg, transparent, #9fd0ff, transparent);
  animation: beamMove 2.2s ease-in-out infinite;
}

.translate-arrow.delay::after {
  animation-delay: 1s;
}

@keyframes translateLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.knowledge-search-panel {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 26px;
  background: var(--brand-pale);
  border: 1px solid rgba(14,35,132,.12);
}

.knowledge-search-panel label {
  display: grid;
  gap: 8px;
  color: var(--heading);
  font-weight: 900;
}

.knowledge-search-panel input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(14,35,132,.18);
  background: white;
  outline: none;
}

.knowledge-search-panel input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(14,35,132,.10);
}

.knowledge-pulse {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
}

.knowledge-pulse span {
  width: 18px;
  height: 58px;
  border-radius: 999px;
  background: var(--brand);
  animation: knowledgeBars 1.4s ease-in-out infinite;
}

.knowledge-pulse span:nth-child(2) { animation-delay: .18s; background: var(--brand-soft); }
.knowledge-pulse span:nth-child(3) { animation-delay: .36s; }

@keyframes knowledgeBars {
  0%, 100% { transform: scaleY(.45); opacity: .45; }
  50% { transform: scaleY(1); opacity: 1; }
}

.knowledge-card.is-hidden {
  display: none;
}

.mail-route-visual {
  margin-top: 18px;
  padding: 18px;
  border-radius: 26px;
  background: #071149;
  color: white;
  display: grid;
  grid-template-columns: 1fr .6fr 1fr .6fr 1fr;
  gap: 8px;
  align-items: center;
}

.mail-node {
  min-height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 900;
}

.mail-lane {
  position: relative;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}

.mail-lane span {
  position: absolute;
  inset: 0;
  width: 42%;
  background: linear-gradient(90deg, transparent, #9fd0ff, transparent);
  animation: beamMove 2s ease-in-out infinite;
}

.mail-lane.delay span {
  animation-delay: .9s;
}

.article-orbit {
  position: relative;
  width: min(340px, 100%);
  height: 118px;
  margin-top: 26px;
}

.orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  background: white;
  color: var(--brand);
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
}

.orbit-item {
  position: absolute;
  display: inline-grid;
  place-items: center;
  min-width: 90px;
  padding: 10px 12px;
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 850;
  animation: orbitFloat 3.6s ease-in-out infinite;
}

.orbit-a { left: 0; top: 8px; }
.orbit-b { right: 0; top: 10px; animation-delay: .6s; }
.orbit-c { left: 50%; bottom: 0; transform: translateX(-50%); animation-delay: 1.2s; }

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.orbit-c {
  animation-name: orbitFloatCenter;
}
@keyframes orbitFloatCenter {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -8px); }
}

.notfound-scan {
  position: relative;
  max-width: 420px;
  height: 76px;
  margin-top: 26px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  overflow: hidden;
}

.notfound-scan span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 26%;
  background: linear-gradient(90deg, transparent, rgba(111,169,234,.4), transparent);
  animation: signalMove 2.6s ease-in-out infinite;
}

@media (max-width: 1050px) {
  .route-panel,
  .outcome-panel {
    grid-template-columns: 1fr;
  }

  .translation-loop,
  .route-animation,
  .mail-route-visual {
    grid-template-columns: 1fr;
  }

  .route-beam,
  .translate-arrow,
  .mail-lane {
    height: 46px;
    width: 4px;
    justify-self: center;
  }

  .route-beam::after,
  .translate-arrow::after,
  .mail-lane span {
    width: 100%;
    height: 42%;
    animation-name: beamMoveVertical;
  }

  @keyframes beamMoveVertical {
    0% { transform: translateY(-100%); }
    60%, 100% { transform: translateY(230%); }
  }
}

@media (max-width: 820px) {
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-search-panel {
    grid-template-columns: 1fr;
  }

  .knowledge-pulse {
    justify-content: flex-start;
  }

  .brand img {
    width: min(248px, 62vw);
  }
}

@media (max-width: 620px) {
  .risk-radar {
    grid-template-columns: 1fr;
  }

  .radar-circle {
    width: 132px;
    height: 132px;
  }

  .pulse-stop {
    font-size: .72rem;
    padding: 7px 8px;
  }

  .article-orbit {
    height: 180px;
  }

  .orbit-a,
  .orbit-b,
  .orbit-c {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .orbit-a { top: 0; }
  .orbit-b { top: 70px; }
  .orbit-c { bottom: 0; }
}


/* V7 advanced dynamic animations - explicitly non-3D */
.security-mesh-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  pointer-events: none;
  mix-blend-mode: screen;
}

.risk-flow-section {
  background: white;
  padding: 76px 0;
}

.risk-flow-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 36px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 18%, rgba(111,169,234,.20), transparent 30%),
    linear-gradient(135deg, #071149, var(--brand));
  color: white;
  box-shadow: var(--shadow);
}

.risk-flow-copy h2 {
  color: white;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
}

.risk-flow-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.74);
}

.risk-flow-map {
  position: relative;
  min-height: 290px;
  border-radius: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}

.risk-flow-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.flow-path {
  fill: none;
  stroke: rgba(159,208,255,.85);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 12 14;
  animation: flowDash 5s linear infinite;
  filter: drop-shadow(0 0 8px rgba(159,208,255,.35));
}

.path-two { animation-duration: 6.5s; opacity: .62; }
.path-three { animation-duration: 4.7s; opacity: .78; }

@keyframes flowDash {
  to { stroke-dashoffset: -210; }
}

.flow-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 118px;
  height: 48px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 0 28px rgba(111,169,234,.14);
  animation: flowNodePulse 3.4s ease-in-out infinite;
}

.flow-a { left: 8%; top: 20%; }
.flow-b { left: 36%; top: 56%; animation-delay: .5s; }
.flow-c { right: 9%; top: 26%; animation-delay: 1s; }
.flow-d { right: 16%; bottom: 14%; animation-delay: 1.5s; }

@keyframes flowNodePulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 18px rgba(111,169,234,.10); }
  50% { transform: translateY(-7px); box-shadow: 0 0 32px rgba(111,169,234,.35); }
}

.decision-matrix-section {
  background: white;
  padding-bottom: 30px;
}

.decision-matrix {
  display: grid;
  grid-template-columns: .9fr 1fr .9fr;
  gap: 22px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 34px;
  background: var(--brand-pale);
  border: 1px solid rgba(14,35,132,.12);
}

.matrix-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  letter-spacing: -.05em;
  line-height: 1;
}

.matrix-header p:not(.eyebrow) {
  color: var(--muted);
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.matrix-grid button {
  border: 0;
  border-radius: 22px;
  background: white;
  color: var(--heading);
  padding: 18px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(14,35,132,.08);
  position: relative;
  overflow: hidden;
}

.matrix-grid button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(111,169,234,.18), transparent);
  transform: translateX(-120%);
  transition: transform .6s ease;
}

.matrix-grid button:hover::after,
.matrix-grid button.is-active::after {
  transform: translateX(120%);
}

.matrix-grid button.is-active {
  background: var(--brand);
  color: white;
}

.matrix-result {
  padding: 24px;
  border-radius: 26px;
  background: #071149;
  color: white;
  min-height: 170px;
  position: relative;
  overflow: hidden;
}

.matrix-result::before {
  content: "";
  position: absolute;
  inset: auto -10% -45% -10%;
  height: 120px;
  background: radial-gradient(ellipse, rgba(111,169,234,.28), transparent 62%);
  animation: matrixGlow 3s ease-in-out infinite;
}

.matrix-result strong,
.matrix-result p {
  position: relative;
  z-index: 1;
}

.matrix-result strong {
  display: block;
  margin-bottom: 10px;
  color: #9fd0ff;
}

.matrix-result p {
  margin: 0;
  color: rgba(255,255,255,.78);
}

@keyframes matrixGlow {
  0%, 100% { transform: translateY(12px); opacity: .55; }
  50% { transform: translateY(-5px); opacity: 1; }
}

.evidence-section {
  background: white;
}

.evidence-stream {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background: #071149;
  color: white;
  box-shadow: var(--shadow);
}

.evidence-copy h2 {
  color: white;
  font-size: clamp(2rem, 4vw, 3.8rem);
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0;
}

.evidence-copy p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}

.evidence-lanes {
  display: grid;
  gap: 14px;
}

.lane {
  position: relative;
  min-height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 18px;
}

.lane span {
  position: absolute;
  inset: 0;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(159,208,255,.35), transparent);
  animation: laneFlow 2.8s ease-in-out infinite;
}

.lane:nth-child(2) span { animation-delay: .4s; }
.lane:nth-child(3) span { animation-delay: .8s; }
.lane:nth-child(4) span { animation-delay: 1.2s; }

.lane b {
  position: relative;
  z-index: 1;
  color: white;
}

@keyframes laneFlow {
  0% { transform: translateX(-110%); }
  65%, 100% { transform: translateX(360%); }
}

.principle-orbit-section {
  background: white;
}

.principle-orbit {
  position: relative;
  min-height: 430px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 50%, rgba(14,35,132,.14), transparent 30%),
    var(--brand-pale);
  border: 1px solid rgba(14,35,132,.12);
  overflow: hidden;
}

.principle-orbit::before {
  content: "";
  position: absolute;
  inset: 56px;
  border: 1px dashed rgba(14,35,132,.25);
  border-radius: 999px;
  animation: orbitRotate 22s linear infinite;
}

.principle-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  color: white;
  background: var(--brand);
  font-weight: 950;
  font-size: 1.2rem;
  box-shadow: 0 24px 70px rgba(14,35,132,.22);
}

.principle-dot {
  position: absolute;
  border: 0;
  min-width: 96px;
  min-height: 48px;
  border-radius: 999px;
  color: var(--brand);
  background: white;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(14,35,132,.12);
  animation: principleFloat 4s ease-in-out infinite;
}

.dot-risk { left: 11%; top: 18%; }
.dot-proof { right: 12%; top: 20%; animation-delay: .7s; }
.dot-action { right: 14%; bottom: 18%; animation-delay: 1.4s; }
.dot-plain { left: 13%; bottom: 18%; animation-delay: 2.1s; }

.principle-dot.is-active {
  color: white;
  background: var(--brand);
}

@keyframes orbitRotate {
  to { transform: rotate(360deg); }
}

@keyframes principleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.topic-wave-section {
  background: white;
  padding: 54px 0;
}

.topic-wave {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background: #071149;
  color: white;
  box-shadow: var(--shadow);
}

.wave-copy h2 {
  color: white;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.wave-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 170px;
}

.wave-bars span {
  flex: 1;
  min-width: 16px;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #9fd0ff, rgba(255,255,255,.10));
  height: calc(42px + (var(--i) * 11px));
  animation: waveBars 1.9s ease-in-out infinite;
  animation-delay: calc(var(--i) * .08s);
}

@keyframes waveBars {
  0%, 100% { transform: scaleY(.58); opacity: .55; }
  50% { transform: scaleY(1); opacity: 1; }
}

.article-pulse-summary {
  position: relative;
  padding: 22px 22px 22px 70px;
  margin-bottom: 28px;
  border-radius: 24px;
  background: var(--brand-pale);
  border: 1px solid rgba(14,35,132,.12);
}

.article-pulse-summary span {
  position: absolute;
  left: 22px;
  top: 28px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(14,35,132,.28);
  animation: articlePulse 1.8s ease-out infinite;
}

.article-pulse-summary strong {
  display: block;
  color: var(--heading);
  margin-bottom: 5px;
}

.article-pulse-summary p {
  margin: 0;
  color: var(--muted);
}

@keyframes articlePulse {
  0% { box-shadow: 0 0 0 0 rgba(14,35,132,.30); }
  100% { box-shadow: 0 0 0 22px rgba(14,35,132,0); }
}

.contact-meter {
  height: 7px;
  border-radius: 999px;
  background: rgba(14,35,132,.10);
  overflow: hidden;
}

.contact-meter span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-soft), var(--brand));
  transition: width .25s ease;
}

@media (max-width: 1050px) {
  .risk-flow-panel,
  .decision-matrix,
  .evidence-stream,
  .topic-wave {
    grid-template-columns: 1fr;
  }

  .principle-orbit {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .matrix-grid,
  .signal-grid,
  .outcome-points {
    grid-template-columns: 1fr;
  }

  .risk-flow-map {
    min-height: 360px;
  }

  .flow-a { left: 8%; top: 12%; }
  .flow-b { left: 12%; top: 48%; }
  .flow-c { right: 9%; top: 27%; }
  .flow-d { right: 10%; bottom: 10%; }

  .principle-core {
    width: 124px;
    height: 124px;
  }

  .principle-dot {
    min-width: 82px;
  }

  .wave-bars {
    min-height: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .security-mesh-canvas,
  .flow-path,
  .flow-node,
  .matrix-result::before,
  .lane span,
  .principle-orbit::before,
  .principle-dot,
  .wave-bars span,
  .article-pulse-summary span {
    animation: none !important;
  }
}
