  :root {
    --jeito-orange: #EF7D00;
    --jeito-gold: #EFAB00;
    --jeito-ink: #2D2F31;
    --jeito-ink-soft: #50545a;
    --jeito-muted: #757b83;
    --jeito-paper: #ffffff;
    --jeito-cream: #fff7ea;
    --jeito-sand: #fff1d5;
    --jeito-line: rgba(45,47,49,.12);
    --jeito-line-strong: rgba(45,47,49,.18);
    --jeito-danger: #EF7D00;
    --jeito-danger-soft: #FFF4E6;
    --jeito-success: #4f8f35;
    --jeito-success-soft: #edf7e8;
    --jeito-shadow-sm: 0 8px 24px rgba(45,47,49,.07);
    --jeito-shadow-md: 0 18px 55px rgba(45,47,49,.12);
    --jeito-shadow-lg: 0 32px 90px rgba(45,47,49,.18);
    --jeito-radius: 22px;
    --jeito-radius-lg: 34px;
    --tx: cubic-bezier(.22,1,.36,1);
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--jeito-ink);
    background: #ffffff;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  button { font: inherit; border: 0; cursor: pointer; }
  h1, h2, h3, h4, h5, h6,
  .jeito-heading,
  .brand-mark,
  .eyebrow,
  .pill,
  .metric-value,
  .result-headline {
    font-family: 'Funnel Display', 'IBM Plex Sans', sans-serif;
  }

  body, p, span, div, li, a, button, input, textarea, select,
  .jeito-body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  }


  .jeito-ketenkrasher {
    width: 100%;
    min-height: 100vh;
    background: #ffffff;
    position: relative;
    isolation: isolate;
    overflow: hidden;
  }

  .view { display: none; width: 100%; min-height: 100vh; animation: fadeIn .45s var(--tx) both; }
  .view.active { display: block; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
  .container { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }

  .module-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 30px 0 10px;
  }
  .brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Funnel Display', 'IBM Plex Sans', sans-serif;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: -.04em;
    color: var(--jeito-ink);
  }
  .brand-mark::before {
    content: '';
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--jeito-orange), var(--jeito-gold));
    box-shadow: 0 14px 28px rgba(239,125,0,.24);
  }
  .module-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid rgba(45,47,49,.10);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(14px);
    color: var(--jeito-ink);
    font-size: 13px;
    font-weight: 800;
  }
  .module-tag::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--jeito-orange); box-shadow: 0 0 0 5px rgba(239,125,0,.12); }

  .intro {
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, .97fr);
    gap: 58px;
    align-items: center;
    padding: 56px 0 86px;
  }
  .intro-text { max-width: 650px; }
  .intro-eyebrow, .pill, .result-head .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(239,125,0,.10);
    color: #a64a00;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
  }
  .intro-eyebrow::before, .pill::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--jeito-orange); animation: pulse 2s infinite; }
  @keyframes pulse { 50% { opacity: .35; transform: scale(.72); } }
  .intro h1, .result-head h1 {
    font-family: 'Funnel Display', 'IBM Plex Sans', sans-serif;
    font-size: clamp(42px, 6vw, 84px);
    line-height: .94;
    letter-spacing: -.055em;
    margin: 22px 0 22px;
    color: var(--jeito-ink);
  }
  .intro h1 .accent {
    color: var(--jeito-orange);
    text-shadow: 0 16px 45px rgba(239,125,0,.22);
  }
  .lead {
    font-size: clamp(18px, 1.5vw, 22px);
    color: var(--jeito-ink-soft);
    max-width: 610px;
    margin: 0 0 30px;
  }
  .intro-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 36px; }
  .intro-meta div {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid var(--jeito-line);
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    font-size: 14px;
    font-weight: 700;
    color: var(--jeito-ink-soft);
  }
  .intro-meta svg { width: 17px; height: 17px; stroke: var(--jeito-orange); }

  .btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 5px;
    font-weight: 800;
    transition: transform .25s var(--tx), box-shadow .25s var(--tx), background .25s var(--tx), border-color .25s var(--tx);
  }
  .btn-primary {
    border-radius: 5px !important;
    padding: 17px 30px;
    color: #fff;
    background: linear-gradient(135deg, var(--jeito-ink), #161719);
    box-shadow: var(--jeito-shadow-md);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: var(--jeito-shadow-lg); background: linear-gradient(135deg, var(--jeito-orange), var(--jeito-gold)); }
  .btn-primary svg { width: 18px; height: 18px; }
  .btn-secondary {
    border-radius: 5px !important;
    padding: 13px 22px;
    background: #fff;
    color: var(--jeito-ink);
    border: 1px solid var(--jeito-line-strong);
  }
  .btn-secondary:hover { transform: translateY(-2px); border-color: var(--jeito-orange); box-shadow: var(--jeito-shadow-sm); }

  .intro-chain, .scan-chain {
    background: #ffffff;
    border: 1px solid var(--jeito-line);
    border-radius: var(--jeito-radius-lg);
    padding: 28px;
    box-shadow: 0 16px 48px rgba(45,47,49,.07);
    position: relative;
  }
  .intro-chain::before, .scan-chain::before {
    content: 'Ketenimpact';
    position: absolute;
    left: 26px;
    top: 22px;
    font-size: 12px;
    font-weight: 900;
    color: var(--jeito-muted);
    text-transform: uppercase;
    letter-spacing: .09em;
  }
  .chain-stage { width: 100%; max-width: 760px; margin: 34px auto 0; }
  .chain-stage svg { width: 100%; height: auto; display: block; overflow: visible; }

  .scan {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
    gap: 44px;
    align-items: center;
    padding: 46px 0 74px;
    min-height: 100vh;
  }
  .scan-chain { position: sticky; top: 34px; }
  .scan-question {
    background: #ffffff;
    border: 1px solid var(--jeito-line);
    border-radius: var(--jeito-radius-lg);
    padding: 34px;
    box-shadow: 0 20px 60px rgba(45,47,49,.08);
    min-height: 520px;
  }
  .scan-progress { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 24px; }
  .scan-dots { display: flex; gap: 8px; }
  .scan-dots .dot { width: 10px; height: 10px; border-radius: 999px; background: rgba(45,47,49,.16); transition: all .25s var(--tx); }
  .scan-dots .dot.done { width: 22px; background: var(--jeito-gold); }
  .scan-dots .dot.active { width: 34px; background: var(--jeito-orange); box-shadow: 0 0 0 6px rgba(239,125,0,.12); }
  .scan-count { font-size: 13px; color: var(--jeito-muted); font-weight: 800; }
  .scan-question h2 {
    font-family: 'Funnel Display','Inter',sans-serif;
    font-size: clamp(27px, 2.4vw, 38px);
    line-height: 1.03;
    letter-spacing: -.035em;
    margin: 16px 0 12px;
  }
  .statement { color: var(--jeito-ink-soft); font-size: 16px; margin: 0 0 24px; }
  .choice-grid { display: grid; gap: 12px; margin-bottom: 24px; }
  .choice-card {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 17px 18px;
    border-radius: 18px;
    border: 1px solid var(--jeito-line);
    background: #fff;
    color: var(--jeito-ink);
    transition: all .22s var(--tx);
  }
  .choice-card:hover { transform: translateY(-2px); border-color: rgba(239,125,0,.44); box-shadow: 0 12px 26px rgba(45,47,49,.08); }
  .choice-card.selected { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--jeito-orange), var(--jeito-gold)); box-shadow: 0 18px 42px rgba(239,125,0,.23); }
  .choice-card .marker { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; border: 2px solid rgba(45,47,49,.18); margin-top: 1px; position: relative; }
  .choice-card.selected .marker { border-color: #fff; background: #fff; }
  .choice-card.selected .marker::after { content: ''; position: absolute; inset: 5px; border-radius: 50%; background: var(--jeito-orange); }

  .choice-card:disabled {
    cursor: default;
    pointer-events: none;
  }
  .choice-grid.is-resolving .choice-card:not(.selected) {
    opacity: .48;
    transform: none;
  }

  .choice-card .body { display: grid; gap: 3px; }
  .choice-card .label { font-weight: 900; font-size: 16px; line-height: 1.25; }
  .choice-card .sub { color: var(--jeito-muted); font-size: 13px; line-height: 1.35; }
  .choice-card.selected .sub { color: rgba(255,255,255,.86); }
  .scan-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--jeito-line); }
  .scan-skip { padding: 10px 12px; color: var(--jeito-muted); background: transparent; font-size: 13px; font-weight: 800; }

  .result { padding: 48px 0 92px; }
  .result-head { text-align: center; max-width: 850px; margin: 0 auto 32px; }
  .result-head h1 { font-size: clamp(38px, 5vw, 68px); margin-bottom: 14px; }
  .result-head p { color: var(--jeito-ink-soft); font-size: 19px; margin: 0 auto; max-width: 700px; }
  .result-chain-card, .verdict-card, .improvements-card, .timeline-card, .cta-section {
    background: #ffffff;
    border: 1px solid var(--jeito-line);
    box-shadow: 0 16px 48px rgba(45,47,49,.07);
  }
  .result-chain-card { border-radius: var(--jeito-radius-lg); padding: 32px; margin-bottom: 22px; }
  .verdict-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
  .verdict-card { border-radius: var(--jeito-radius); padding: 24px; }
  .verdict-card .label { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--jeito-muted); }
  .verdict-card .value { font-family: 'Funnel Display','Inter',sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -.03em; margin: 8px 0 4px; }
  .verdict-card .sub { color: var(--jeito-ink-soft); font-size: 14px; }
  .verdict-card.exposure .value, .verdict-card.score .value { color: var(--jeito-orange); }
  .verdict-card.strength.zwak .value { color: var(--jeito-danger); }
  .verdict-card.strength.kwetsbaar .value { color: var(--jeito-orange); }
  .verdict-card.strength.sterk .value { color: var(--jeito-success); }

  .next-section { display: grid; grid-template-columns: 1.28fr .92fr; gap: 24px; margin-bottom: 24px; }
  .improvements-card, .timeline-card { border-radius: var(--jeito-radius-lg); padding: 30px; }
  .improvements-card h2, .timeline-card h2, .cta-section h2 { font-family: 'Funnel Display','Inter',sans-serif; font-size: 28px; letter-spacing: -.035em; margin: 0 0 18px; }
  .improvements-list { display: grid; gap: 14px; }
  .improvement { display: flex; gap: 14px; padding: 16px; border-radius: 18px; background: rgba(255,247,234,.76); border: 1px solid rgba(239,125,0,.11); }
  .improvement .num { flex: 0 0 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; background: var(--jeito-ink); color: #fff; font-weight: 900; }
  .improvement.high .num { background: var(--jeito-danger); }
  .improvement.mid .num { background: var(--jeito-orange); }
  .improvement h3 { font-size: 16px; margin: 3px 0 4px; }
  .improvement p { margin: 0; color: var(--jeito-ink-soft); font-size: 14px; }
  .timeline-list { display: grid; gap: 16px; }
  .timeline-item { display: grid; grid-template-columns: 82px 14px 1fr; gap: 12px; align-items: start; }
  .timeline-item .stamp { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--jeito-muted); font-weight: 900; padding-top: 4px; }
  .timeline-item .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--jeito-line-strong); margin-top: 7px; position: relative; }
  .timeline-item .dot::after { content: ''; position: absolute; top: 17px; left: 50%; width: 2px; height: 42px; transform: translateX(-50%); background: var(--jeito-line-strong); }
  .timeline-item:last-child .dot::after { display:none; }
  .timeline-item .desc { font-size: 14px; color: var(--jeito-ink-soft); }
  .timeline-item .desc strong { display:block; color: var(--jeito-ink); margin-bottom: 2px; }
  .timeline-item.urgent .stamp, .timeline-item.critical .stamp { color: var(--jeito-danger); }
  .timeline-item.warn .stamp { color: var(--jeito-orange); }
  .timeline-item.urgent .dot, .timeline-item.critical .dot { background: var(--jeito-danger); }
  .timeline-item.warn .dot { background: var(--jeito-orange); }
  .timeline-item.critical .desc { background: var(--jeito-danger-soft); border-left: 3px solid var(--jeito-danger); border-radius: 12px; padding: 10px 12px; }

  .cta-section { border-radius: var(--jeito-radius-lg); padding: 42px; text-align: center; }
  .cta-section p { color: var(--jeito-ink-soft); margin: 0 auto 24px; max-width: 620px; }
  .cta-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 850px; margin: 0 auto; }
  .cta-tile { display: grid; justify-items: center; gap: 8px; padding: 24px 16px; border-radius: 20px; background: #fff; border: 1px solid var(--jeito-line); color: var(--jeito-ink); transition: all .25s var(--tx); }
  .cta-tile:hover { transform: translateY(-4px); border-color: rgba(239,125,0,.38); box-shadow: var(--jeito-shadow-md); }
  .cta-tile .icon { width: 46px; height: 46px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, var(--jeito-orange), var(--jeito-gold)); }
  .cta-tile svg { width: 21px; height: 21px; stroke: #fff; }
  .cta-tile .label { font-weight: 900; }
  .cta-tile .sub { color: var(--jeito-muted); font-size: 13px; }
  .restart-row { margin-top: 28px; }

  .chain-svg {
    overflow: visible;
  }
  .network-base,
  .network-flow,
  .network-return,
  .network-axis {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .network-axis {
    stroke: rgba(45,47,49,.08);
    stroke-width: 1;
  }
  .network-base {
    stroke: rgba(45,47,49,.13);
    stroke-width: 2.25;
  }
  .network-flow {
    stroke: url(#jeitoLinearFlowGradient);
    stroke-width: 2.75;
    stroke-dasharray: 92 420;
    stroke-dashoffset: 0;
    animation: jeitoLinearFlow 4.8s cubic-bezier(.65,0,.35,1) infinite;
  }
  .network-flow.soft {
    stroke: rgba(239,125,0,.18);
    stroke-width: 7;
    stroke-dasharray: 70 450;
    animation-duration: 6.2s;
    opacity: .65;
  }
  .network-return {
    stroke: var(--jeito-danger);
    stroke-width: 2.25;
    stroke-dasharray: 54 360;
    animation: jeitoReturnFlow 4.2s cubic-bezier(.65,0,.35,1) infinite;
    opacity: .82;
  }
  .node-group {
    animation: nodeReveal .55s var(--tx) both;
    transform-origin: center;
  }
  .node-outer {
    fill: #fff;
    stroke: rgba(45,47,49,.12);
    stroke-width: 1.25;
  }
  .node-inner {
    fill: rgba(45,47,49,.04);
    stroke: rgba(45,47,49,.08);
    stroke-width: 1;
  }
  .node-status {
    fill: var(--jeito-ink);
    opacity: .22;
  }
  .node-group.state-strong .node-status { fill: #4f8f35; opacity: .92; }
  .node-group.state-vuln .node-status { fill: var(--jeito-gold); opacity: 1; }
  .node-group.state-weak .node-status { fill: var(--jeito-danger); opacity: 1; }
  .node-group.has-pressure .node-outer { stroke: rgba(239,125,0,.58); }
  .node-label {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    fill: var(--jeito-ink);
    text-anchor: middle;
    dominant-baseline: middle;
  }
  .node-role {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 10px;
    fill: var(--jeito-muted);
    text-anchor: middle;
    dominant-baseline: middle;
  }
  .hero-node .hero-shell {
    fill: #fff;
    stroke: rgba(45,47,49,.14);
    stroke-width: 1.4;
  }
  .hero-node .hero-core {
    fill: rgba(239,125,0,.07);
    stroke: rgba(239,125,0,.26);
    stroke-width: 1.2;
  }
  .hero-node .hero-ring {
    fill: rgba(255,255,255,.34);
    stroke: rgba(255,255,255,.62);
    stroke-width: 8;
    filter: drop-shadow(0 0 18px rgba(239,125,0,.18));
    opacity: .94;
  }
  .hero-node .hero-ring-glow {
    fill: none;
    stroke: url(#jeitoRingGlowGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 58 390;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 10px rgba(239,125,0,.32));
    animation: ringGlowSweep 3.2s linear infinite;
    opacity: .95;
    transform-origin: center;
  }
  .hero-node.state-strong .hero-ring-glow { stroke: #4f8f35; filter: drop-shadow(0 0 10px rgba(79,143,53,.24)); }
  .hero-node.state-vuln .hero-ring-glow { stroke: var(--jeito-gold); filter: drop-shadow(0 0 12px rgba(239,171,0,.30)); }
  .hero-node.state-weak .hero-ring-glow { stroke: var(--jeito-danger); filter: drop-shadow(0 0 13px rgba(239,125,0,.34)); animation-duration: 2.6s; }
  .hero-icon-line { stroke: var(--jeito-orange); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
  .hero-label {
    font-family: 'Funnel Display', 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.02em;
    fill: var(--jeito-ink);
    text-anchor: middle;
    dominant-baseline: middle;
  }
  .hero-sub {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    fill: var(--jeito-muted);
    text-anchor: middle;
    dominant-baseline: middle;
  }
  .badge-modern { animation: badgeIn .45s var(--tx) both; }
  .badge-modern rect { fill: #fff; stroke: rgba(239,125,0,.26); stroke-width: 1; }
  .badge-modern text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 9px;
    fill: var(--jeito-orange);
    text-anchor: middle;
    dominant-baseline: middle;
  }
  .signal-pulse {
    fill: var(--jeito-orange);
    opacity: .75;
  }
  .signal-pulse.p1 { animation: movePulse 4.8s cubic-bezier(.65,0,.35,1) infinite; }
  .signal-pulse.p2 { animation: movePulse 4.8s cubic-bezier(.65,0,.35,1) infinite 1.55s; opacity: .42; }
  .flow-label rect { fill: #fff; stroke: rgba(45,47,49,.09); }
  .flow-label text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 10.5px;
    fill: var(--jeito-muted);
    text-anchor: middle;
    dominant-baseline: middle;
  }
  .damage-chip rect { fill: #fff; stroke: rgba(239,125,0,.22); stroke-width: 1; }
  .damage-chip text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 10.5px;
    fill: var(--jeito-danger);
    text-anchor: middle;
    dominant-baseline: middle;
  }

  .impact-link {
    fill: none;
    stroke: var(--jeito-orange);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 16 16;
    animation: impactTravel 2.15s cubic-bezier(.22,1,.36,1) both;
    opacity: .9;
  }
  .impact-link.danger { stroke: var(--jeito-danger); }
  .impact-link.supplier { stroke: var(--jeito-gold); }
  .impact-ring {
    fill: none;
    stroke: var(--jeito-orange);
    stroke-width: 2;
    opacity: 0;
    animation: impactRing 2.05s cubic-bezier(.22,1,.36,1) both;
  }
  .impact-ring.danger { stroke: var(--jeito-danger); }
  .impact-ring.supplier { stroke: var(--jeito-gold); }
  .impact-callout { animation: calloutIn 1.65s cubic-bezier(.22,1,.36,1) both; }
  .impact-callout rect {
    fill: #fff;
    stroke: rgba(45,47,49,.10);
    stroke-width: 1;
    filter: drop-shadow(0 10px 24px rgba(45,47,49,.08));
  }
  .impact-callout .kicker {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 800;
    font-size: 9px;
    letter-spacing: .07em;
    text-transform: uppercase;
    fill: var(--jeito-orange);
    text-anchor: middle;
    dominant-baseline: middle;
  }
  .impact-callout .main {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
    fill: var(--jeito-ink);
    text-anchor: middle;
    dominant-baseline: middle;
  }
  .impact-callout.danger .kicker { fill: var(--jeito-danger); }
  .impact-callout.supplier .kicker { fill: var(--jeito-gold); }
  .impact-meter-bg { fill: rgba(45,47,49,.07); }
  .impact-meter-fill { fill: var(--jeito-orange); transform-origin: left center; animation: meterGrow 1.05s cubic-bezier(.22,1,.36,1) both; }
  .impact-callout.danger .impact-meter-fill { fill: var(--jeito-danger); }
  .impact-callout.supplier .impact-meter-fill { fill: var(--jeito-gold); }
  @keyframes jeitoLinearFlow {
    0% { stroke-dashoffset: 470; opacity: 0; }
    12% { opacity: 1; }
    78% { opacity: 1; }
    100% { stroke-dashoffset: -120; opacity: 0; }
  }
  @keyframes jeitoReturnFlow {
    0% { stroke-dashoffset: -310; opacity: 0; }
    12% { opacity: .82; }
    80% { opacity: .82; }
    100% { stroke-dashoffset: 110; opacity: 0; }
  }
  @keyframes nodeReveal { from { opacity: 0; transform: scale(.96) translateY(6px); } to { opacity: 1; transform: scale(1) translateY(0); } }
  @keyframes orbitDash { to { stroke-dashoffset: -120; } }
  @keyframes alertRing { 0%,100% { opacity: .7; } 50% { opacity: 1; } }
  @keyframes badgeIn { from { opacity: 0; transform: translateY(-4px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
  @keyframes movePulse {
    0% { transform: translate(76px, 140px) scale(.75); opacity: 0; }
    12% { opacity: .72; }
    50% { transform: translate(360px, 140px) scale(1); opacity: .72; }
    86% { opacity: .42; }
    100% { transform: translate(644px, 140px) scale(.75); opacity: 0; }
  }
  @keyframes impactTravel {
    0% { stroke-dashoffset: 128; opacity: 0; }
    12% { opacity: .95; }
    72% { opacity: .95; }
    100% { stroke-dashoffset: 0; opacity: 0; }
  }
  @keyframes impactRing {
    0% { opacity: 0; transform: scale(.82); }
    18% { opacity: .72; }
    62% { opacity: .72; }
    100% { opacity: 0; transform: scale(1.2); }
  }
  @keyframes calloutIn {
    0% { opacity: 0; transform: translateY(8px) scale(.98); }
    28% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes meterGrow {
    from { transform: scaleX(.18); opacity: .45; }
    to { transform: scaleX(1); opacity: 1; }
  }


  /* ===== Webflow / Linear polish layer ===== */
  :root {
    --linear-card: rgba(255,255,255,.78);
    --linear-card-strong: rgba(255,255,255,.92);
    --linear-hairline: rgba(45,47,49,.085);
    --linear-hairline-strong: rgba(45,47,49,.14);
    --linear-glow: rgba(239,125,0,.11);
    --linear-shadow: 0 1px 2px rgba(45,47,49,.035), 0 18px 50px rgba(45,47,49,.06);
    --linear-shadow-hover: 0 1px 2px rgba(45,47,49,.05), 0 26px 70px rgba(45,47,49,.09);
  }

  .jeito-ketenkrasher {
    background: #fff;
  }
  .jeito-ketenkrasher::before,
  .jeito-ketenkrasher::after {
    display: none;
  }

  .module-header {
    border-bottom: 1px solid rgba(45,47,49,.055);
  }
  .brand-mark::before {
    border-radius: 10px;
    box-shadow: 0 1px 0 rgba(255,255,255,.55) inset, 0 16px 32px rgba(239,125,0,.18);
  }
  .module-tag,
  .intro-meta div,
  .intro-eyebrow,
  .pill,
  .result-head .eyebrow {
    background: rgba(255,255,255,.72);
    border: 1px solid var(--linear-hairline);
    box-shadow: 0 1px 0 rgba(255,255,255,.75) inset, 0 8px 24px rgba(45,47,49,.035);
  }
  .intro-eyebrow,
  .pill,
  .result-head .eyebrow {
    color: #9d4c02;
  }

  .intro h1,
  .result-head h1 {
    letter-spacing: -.065em;
    text-wrap: balance;
  }
  .lead,
  .statement,
  .result-head p {
    text-wrap: pretty;
  }

  .intro-chain,
  .scan-chain,
  .scan-question,
  .result-chain-card,
  .verdict-card,
  .improvements-card,
  .timeline-card,
  .cta-section {
    background: var(--linear-card);
    border: 1px solid var(--linear-hairline);
    box-shadow: var(--linear-shadow);
    backdrop-filter: blur(18px) saturate(140%);
  }
  .intro-chain,
  .scan-chain,
  .scan-question,
  .result-chain-card {
    position: relative;
  }
  .intro-chain::after,
  .scan-chain::after,
  .scan-question::after,
  .result-chain-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
      linear-gradient(135deg, rgba(255,255,255,.72), transparent 34%),
      radial-gradient(circle at 26% 0%, rgba(239,171,0,.08), transparent 32%);
    opacity: .85;
  }
  .intro-chain > *,
  .scan-chain > *,
  .scan-question > *,
  .result-chain-card > * {
    position: relative;
    z-index: 1;
  }
  .intro-chain:hover,
  .scan-chain:hover,
  .scan-question:hover,
  .result-chain-card:hover,
  .verdict-card:hover,
  .improvements-card:hover,
  .timeline-card:hover,
  .cta-section:hover {
    box-shadow: var(--linear-shadow-hover);
    border-color: var(--linear-hairline-strong);
  }

  .btn-primary {
    background: #2D2F31;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 1px 0 rgba(255,255,255,.12) inset, 0 16px 42px rgba(45,47,49,.16);
  }
  .btn-primary:hover {
    background: #111214;
    box-shadow: 0 0 0 5px rgba(239,125,0,.10), 0 22px 55px rgba(45,47,49,.20);
  }
  .btn-secondary,
  .cta-tile,
  .choice-card {
    box-shadow: 0 1px 0 rgba(255,255,255,.70) inset;
  }

  .choice-card {
    border-radius: 14px;
    background: rgba(255,255,255,.74);
  }
  .choice-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 1px 0 rgba(255,255,255,.85) inset, 0 16px 42px rgba(45,47,49,.065);
  }
  .choice-card.selected {
    background:
      linear-gradient(135deg, rgba(239,125,0,1), rgba(239,171,0,1));
    box-shadow: 0 0 0 5px rgba(239,125,0,.10), 0 18px 46px rgba(239,125,0,.18);
  }
  .choice-card.selected::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.24), transparent);
    animation: linearSweep 1.9s var(--tx) both;
    pointer-events: none;
  }

  .network-base { stroke: rgba(45,47,49,.10); stroke-width: 1.8; }
  .network-axis { stroke: rgba(45,47,49,.045); }
  .network-flow { stroke-width: 2.15; filter: drop-shadow(0 0 6px rgba(239,125,0,.13)); }
  .network-flow.soft { stroke-width: 5.5; opacity: .42; filter: none; }
  .node-outer,
  .hero-node .hero-shell {
    fill: rgba(255,255,255,.86);
    stroke: rgba(45,47,49,.10);
  }
  .node-inner,
  .hero-node .hero-core {
    fill: rgba(239,125,0,.045);
    stroke: rgba(239,125,0,.16);
  }
  .hero-node .hero-ring {
    stroke-width: 8;
    opacity: .94;
  }
  .impact-callout rect,
  .flow-label rect,
  .damage-chip rect {
    fill: rgba(255,255,255,.86);
    stroke: rgba(45,47,49,.085);
    filter: drop-shadow(0 12px 34px rgba(45,47,49,.07));
  }
  .impact-link { animation-duration: 1.55s; }
  .impact-ring { animation-duration: 1.5s; }
  .impact-callout { animation-duration: .55s; }
  .impact-meter-fill { animation-duration: .8s; }

  .verdict-card,
  .improvement,
  .cta-tile {
    transition: transform .28s var(--tx), box-shadow .28s var(--tx), border-color .28s var(--tx), background .28s var(--tx);
  }
  .verdict-card:hover,
  .cta-tile:hover {
    transform: translateY(-3px);
  }
  .improvement {
    background: rgba(255,255,255,.62);
    border-color: rgba(45,47,49,.075);
  }
  .improvement:hover {
    transform: translateX(3px);
    border-color: rgba(239,125,0,.22);
    background: rgba(255,247,234,.78);
  }

  @keyframes linearSweep {
    from { transform: translateX(-110%); opacity: 0; }
    18% { opacity: 1; }
    to { transform: translateX(110%); opacity: 0; }
  }
  @keyframes ringGlowSweep {
    from { stroke-dashoffset: 448; }
    to { stroke-dashoffset: 0; }
  }


  /* ===== 2026 VisionFlow refinements ===== */
  .intro-chain,
  .scan-chain,
  .result-chain-card {
    background: #fff !important;
    box-shadow: 0 1px 2px rgba(45,47,49,.04), 0 18px 55px rgba(45,47,49,.055) !important;
    border-color: rgba(45,47,49,.09) !important;
  }
  .network-base {
    stroke: rgba(45,47,49,.105);
    stroke-width: 2;
  }
  .network-flow {
    stroke-width: 3.25;
    stroke-dasharray: 118 390;
    animation-duration: 3.55s;
    filter: drop-shadow(0 0 7px rgba(239,125,0,.22));
  }
  .network-flow.soft {
    stroke-width: 10;
    stroke-dasharray: 92 430;
    animation-duration: 4.15s;
    opacity: .42;
    filter: blur(.5px) drop-shadow(0 0 10px rgba(239,125,0,.15));
  }
  .signal-pulse {
    filter: drop-shadow(0 0 10px rgba(239,125,0,.55));
  }
  .hero-node .hero-shell {
    fill: rgba(255,255,255,.82);
    stroke: rgba(45,47,49,.11);
    stroke-width: 1.2;
    filter: drop-shadow(0 18px 36px rgba(45,47,49,.08));
  }
  .hero-node .hero-core {
    fill: rgba(255,255,255,.75);
    stroke: rgba(239,125,0,.24);
    filter: drop-shadow(0 0 16px rgba(239,125,0,.18));
  }
  .hero-node .hero-ring {
    fill: rgba(255,255,255,.45);
    stroke: rgba(255,255,255,.72);
    stroke-width: 10;
    filter: drop-shadow(0 0 24px rgba(239,125,0,.16));
  }
  .hero-node .hero-ring-glow {
    stroke-width: 10;
    stroke-dasharray: 82 470;
    animation-duration: 2.9s;
    filter: drop-shadow(0 0 14px rgba(239,125,0,.36));
  }
  .hero-label {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.025em;
  }
  .hero-sub { font-size: 11.5px; }
  .node-label,
  .node-role,
  .badge-modern text,
  .flow-label text,
  .impact-callout .kicker,
  .impact-callout .main,
  .damage-chip text {
    text-anchor: middle;
    dominant-baseline: middle;
    alignment-baseline: middle;
  }
  .node-outer {
    fill: rgba(255,255,255,.88);
    stroke: rgba(45,47,49,.11);
    filter: drop-shadow(0 8px 20px rgba(45,47,49,.045));
  }
  .node-group.has-pressure .node-outer {
    stroke: rgba(239,125,0,.78);
    filter: drop-shadow(0 0 12px rgba(239,125,0,.12));
  }
  .badge-modern rect {
    fill: rgba(255,255,255,.82);
    stroke: rgba(239,125,0,.35);
    filter: drop-shadow(0 6px 14px rgba(239,125,0,.10));
  }
  .badge-modern text {
    font-size: 8.5px;
    font-weight: 800;
  }
  .flow-label rect,
  .impact-callout rect {
    fill: rgba(255,255,255,.84);
    stroke: rgba(45,47,49,.09);
    filter: drop-shadow(0 12px 30px rgba(45,47,49,.07));
  }
  .impact-link {
    stroke-width: 3.5;
    stroke-dasharray: 22 18;
    animation-duration: 1.45s;
    filter: drop-shadow(0 0 9px rgba(239,125,0,.28));
  }
  .impact-ring {
    stroke-width: 3;
    animation-duration: 1.35s;
    filter: drop-shadow(0 0 11px rgba(239,125,0,.22));
  }
  .impact-callout { animation-duration: 1.25s; }
  .impact-callout .kicker { font-size: 9.5px; }
  .impact-callout .main { font-size: 11.5px; }
  .impact-meter-fill { animation-duration: .78s; }
  @keyframes movePulse {
    0% { transform: translate(72px, 134px) scale(.72); opacity: 0; }
    10% { opacity: .88; }
    28% { transform: translate(214px, 148px) scale(1); opacity: .9; }
    50% { transform: translate(360px, 140px) scale(1.12); opacity: .95; }
    73% { transform: translate(506px, 148px) scale(1); opacity: .75; }
    100% { transform: translate(648px, 134px) scale(.72); opacity: 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    .chain-svg * { animation: none !important; }
  }

  @media (max-width: 980px) {
    .container { width: min(100% - 32px, 1240px); }
    .module-header { padding-top: 22px; }
    .intro, .scan, .next-section { grid-template-columns: 1fr; }
    .intro { gap: 28px; padding-top: 34px; }
    .intro-chain { order: -1; }
    .scan { gap: 24px; padding-top: 28px; }
    .scan-chain { position: relative; top: 0; }
    .verdict-row, .cta-grid { grid-template-columns: 1fr; }
    .scan-question, .cta-section, .improvements-card, .timeline-card { padding: 24px; }
  }
  @media (max-width: 620px) {
    .module-header { align-items: flex-start; flex-direction: column; }
    .intro h1 { font-size: clamp(38px, 13vw, 58px); }
    .intro-chain, .scan-chain, .result-chain-card { padding: 18px; }
    .chain-stage { margin-top: 32px; }
    .timeline-item { grid-template-columns: 74px 12px 1fr; gap: 10px; }
  }

  .btn-primary,
  button.btn-primary,
  [data-action="start"] {
    border-radius: 5px !important;
  }


  /* ===== CalmFlow refinement: rustiger, premium en beter leesbaar ===== */
  .jeito-ketenkrasher,
  body {
    background: #fff !important;
  }

  .intro-chain,
  .scan-chain,
  .result-chain-card {
    background: #fff !important;
    border-color: rgba(45,47,49,.085) !important;
    box-shadow: 0 1px 2px rgba(45,47,49,.035), 0 18px 48px rgba(45,47,49,.045) !important;
  }

  .intro-chain::after,
  .scan-chain::after,
  .result-chain-card::after,
  .scan-question::after {
    opacity: 0 !important;
    background: none !important;
  }

  .chain-svg {
    overflow: visible;
  }

  .network-axis,
  .network-flow.soft,
  .signal-pulse.p2 {
    display: none !important;
  }

  .network-base {
    stroke: rgba(45,47,49,.105) !important;
    stroke-width: 1.45 !important;
  }

  .network-flow {
    stroke-width: 2.25 !important;
    stroke-dasharray: 78 500 !important;
    animation-duration: 3.15s !important;
    filter: drop-shadow(0 0 5px rgba(239,125,0,.14)) !important;
    opacity: .82 !important;
  }

  .signal-pulse {
    r: 3.6px;
    opacity: .54 !important;
    filter: drop-shadow(0 0 7px rgba(239,125,0,.30)) !important;
  }

  .node-group {
    animation-duration: .42s !important;
  }

  .node-outer {
    fill: rgba(255,255,255,.94) !important;
    stroke: rgba(45,47,49,.105) !important;
    stroke-width: 1.05 !important;
    filter: drop-shadow(0 6px 14px rgba(45,47,49,.035)) !important;
  }

  .node-group.has-pressure .node-outer {
    stroke: rgba(239,125,0,.48) !important;
    filter: drop-shadow(0 7px 16px rgba(239,125,0,.055)) !important;
  }

  .node-inner {
    fill: rgba(239,125,0,.035) !important;
    stroke: rgba(239,125,0,.14) !important;
  }

  .node-status {
    opacity: .30 !important;
  }

  .node-group.state-strong .node-status,
  .node-group.state-vuln .node-status,
  .node-group.state-weak .node-status {
    opacity: .70 !important;
  }

  .badge-modern rect {
    fill: rgba(255,255,255,.92) !important;
    stroke: rgba(239,125,0,.28) !important;
    filter: none !important;
  }

  .badge-modern text {
    font-size: 8px !important;
    font-weight: 800 !important;
  }

  .hero-node .hero-shell {
    fill: rgba(255,255,255,.90) !important;
    stroke: rgba(45,47,49,.105) !important;
    stroke-width: 1.1 !important;
    filter: drop-shadow(0 14px 30px rgba(45,47,49,.065)) !important;
  }

  .hero-node .hero-ring {
    fill: none !important;
    stroke: rgba(255,255,255,.88) !important;
    stroke-width: 11 !important;
    filter: drop-shadow(0 0 14px rgba(239,125,0,.09)) !important;
    opacity: .92 !important;
  }

  .hero-node .hero-ring-glow {
    stroke: var(--jeito-orange) !important;
    stroke-width: 5.5 !important;
    stroke-dasharray: 50 575 !important;
    animation-duration: 4.4s !important;
    opacity: .72 !important;
    filter: drop-shadow(0 0 8px rgba(239,125,0,.22)) !important;
  }

  .hero-node.state-strong .hero-ring-glow,
  .hero-node.state-vuln .hero-ring-glow,
  .hero-node.state-weak .hero-ring-glow {
    stroke: var(--jeito-orange) !important;
    filter: drop-shadow(0 0 8px rgba(239,125,0,.22)) !important;
    animation-duration: 4.4s !important;
  }

  .hero-node .hero-core {
    fill: rgba(255,255,255,.78) !important;
    stroke: rgba(239,125,0,.22) !important;
    filter: drop-shadow(0 0 10px rgba(239,125,0,.10)) !important;
  }

  .hero-icon-line {
    stroke: var(--jeito-orange) !important;
    stroke-width: 2 !important;
  }

  .hero-label {
    font-size: 19px !important;
    font-weight: 800 !important;
  }

  .hero-sub,
  .node-role {
    fill: rgba(80,84,90,.86) !important;
  }

  .flow-label rect {
    fill: rgba(255,255,255,.94) !important;
    stroke: rgba(45,47,49,.08) !important;
    filter: 0 0 0 transparent !important;
  }

  .flow-label text {
    font-size: 10px !important;
    fill: rgba(80,84,90,.88) !important;
  }

  .impact-link {
    stroke-width: 2.4 !important;
    stroke-dasharray: 70 360 !important;
    animation-duration: 1.15s !important;
    filter: drop-shadow(0 0 6px rgba(239,125,0,.18)) !important;
    opacity: .78 !important;
  }

  .impact-ring {
    stroke-width: 2 !important;
    animation-duration: 1.1s !important;
    filter: drop-shadow(0 0 7px rgba(239,125,0,.12)) !important;
    opacity: .58 !important;
  }

  .impact-callout {
    animation-duration: .55s !important;
  }

  .impact-callout rect {
    fill: rgba(255,255,255,.95) !important;
    stroke: rgba(45,47,49,.085) !important;
    filter: drop-shadow(0 10px 22px rgba(45,47,49,.055)) !important;
  }

  .impact-callout .kicker {
    font-size: 8.8px !important;
    letter-spacing: .075em !important;
  }

  .impact-callout .main {
    font-size: 10.8px !important;
    font-weight: 700 !important;
  }

  .impact-meter-bg {
    fill: rgba(45,47,49,.055) !important;
  }

  .impact-meter-fill {
    animation-duration: .62s !important;
    opacity: .78 !important;
  }

  .network-return {
    stroke-width: 1.8 !important;
    opacity: .42 !important;
    animation-duration: 3.2s !important;
    filter: none !important;
  }

  .damage-chip rect {
    fill: rgba(255,255,255,.95) !important;
    stroke: rgba(239,125,0,.14) !important;
    filter: none !important;
  }

  .node-label,
  .node-role,
  .hero-label,
  .hero-sub,
  .badge-modern text,
  .flow-label text,
  .impact-callout .kicker,
  .impact-callout .main,
  .damage-chip text {
    text-anchor: middle !important;
    dominant-baseline: middle !important;
    alignment-baseline: middle !important;
  }

  @keyframes movePulse {
    0% { transform: translate(72px, 134px) scale(.66); opacity: 0; }
    14% { opacity: .46; }
    31% { transform: translate(214px, 148px) scale(.86); opacity: .55; }
    52% { transform: translate(360px, 140px) scale(1); opacity: .65; }
    75% { transform: translate(506px, 148px) scale(.86); opacity: .42; }
    100% { transform: translate(648px, 134px) scale(.66); opacity: 0; }
  }



  /* ===== Final calm impact refinement ===== */
  .chain-stage svg {
    overflow: visible;
  }

  .hero-node .hero-ring {
    stroke: rgba(255,255,255,.72) !important;
    stroke-width: 9 !important;
    filter: drop-shadow(0 0 18px rgba(239,125,0,.12));
  }

  .hero-node .hero-ring-glow {
    stroke: url(#jeitoRingGlowGradient);
    stroke-width: 9 !important;
    stroke-linecap: round;
    stroke-dasharray: 112 428;
    stroke-dashoffset: 0 !important;
    animation: ringContinuous 5.2s linear infinite !important;
    transform-box: fill-box;
    transform-origin: center;
    opacity: .82;
    filter: drop-shadow(0 0 10px rgba(239,125,0,.24));
  }

  .hero-node.state-strong .hero-ring-glow,
  .hero-node.state-vuln .hero-ring-glow,
  .hero-node.state-weak .hero-ring-glow {
    animation: ringContinuous 5.2s linear infinite !important;
  }

  .impact-link,
  .impact-ring {
    display: none !important;
  }

  .impact-drop {
    transform-box: fill-box;
    transform-origin: center;
    animation: impactDrop 1.18s cubic-bezier(.22,1,.36,1) both;
  }

  .impact-drop-circle {
    fill: rgba(255,255,255,.30);
    stroke-width: 4.5;
    stroke-linecap: round;
    filter: drop-shadow(0 18px 36px rgba(45,47,49,.10));
  }

  .impact-drop.good .impact-drop-circle {
    stroke: #4f8f35;
    filter: drop-shadow(0 0 22px rgba(79,143,53,.28));
  }

  .impact-drop.medium .impact-drop-circle {
    stroke: var(--jeito-orange);
    filter: drop-shadow(0 0 22px rgba(239,125,0,.30));
  }

  .impact-drop.bad .impact-drop-circle {
    stroke: var(--jeito-danger);
    filter: drop-shadow(0 0 24px rgba(239,125,0,.30));
  }

  .impact-drop-core {
    opacity: .16;
  }

  .impact-drop.good .impact-drop-core { fill: #4f8f35; }
  .impact-drop.medium .impact-drop-core { fill: var(--jeito-orange); }
  .impact-drop.bad .impact-drop-core { fill: var(--jeito-danger); }

  .impact-drop-sheen {
    fill: none;
    stroke: rgba(255,255,255,.72);
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: .82;
  }

  .impact-callout {
    animation: calloutIn .42s cubic-bezier(.22,1,.36,1) both;
  }

  .impact-callout rect {
    rx: 7;
  }

  @keyframes ringContinuous {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @keyframes impactDrop {
    0% {
      transform: translateY(-54px) scale(.72);
      opacity: 0;
    }
    18% {
      opacity: .96;
    }
    62% {
      transform: translateY(0) scale(1);
      opacity: .98;
    }
    82% {
      transform: translateY(0) scale(1.04);
      opacity: .72;
    }
    100% {
      transform: translateY(0) scale(1.08);
      opacity: 0;
    }
  }



  /* ===== Result page 2.0: clear glass dashboard ===== */
  .result-v2 {
    padding: 42px 0 92px;
  }
  .result-dashboard {
    display: grid;
    gap: 20px;
  }
  .glass-panel {
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,.76) !important;
    border: 1px solid rgba(45,47,49,.095) !important;
    box-shadow: 0 1px 2px rgba(45,47,49,.035), 0 20px 70px rgba(45,47,49,.065) !important;
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
  }
  .glass-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background:
      linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,0) 42%),
      radial-gradient(circle at 15% 0%, rgba(239,171,0,.075), transparent 36%);
    opacity: .9;
  }
  .glass-panel > * {
    position: relative;
    z-index: 1;
  }
  .result-hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: stretch;
    gap: 20px;
    border-radius: 30px;
    padding: 28px;
  }
  .result-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 190px;
  }
  .result-hero-copy .eyebrow {
    width: fit-content;
    margin-bottom: 18px;
  }
  .result-hero-copy h1 {
    font-family: 'Funnel Display','IBM Plex Sans',sans-serif;
    font-size: clamp(38px, 4.9vw, 66px);
    line-height: .96;
    letter-spacing: -.06em;
    margin: 0 0 14px;
    max-width: 780px;
  }
  .result-hero-copy p {
    color: var(--jeito-ink-soft);
    font-size: 18px;
    line-height: 1.55;
    max-width: 760px;
    margin: 0;
  }
  .result-score-card {
    min-height: 190px;
    border-radius: 22px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 28px !important;
    background:
      linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,247,234,.68)) !important;
  }
  .result-score-card .value {
    font-size: clamp(56px, 6vw, 82px) !important;
    line-height: .88;
    margin: 12px 0 12px !important;
    color: var(--jeito-orange) !important;
  }
  .result-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 20px;
    align-items: stretch;
  }
  .result-main-grid .result-chain-card {
    margin: 0;
    min-height: 370px;
    border-radius: 30px;
    padding: 26px 30px 20px;
    display: flex;
    flex-direction: column;
  }
  .result-main-grid .chain-stage {
    max-width: 820px;
    margin: auto;
  }
  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--jeito-muted);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
  }
  .section-kicker::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--jeito-orange);
    box-shadow: 0 0 0 5px rgba(239,125,0,.10);
  }
  .result-insight-stack {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 14px;
  }
  .result-insight-stack .verdict-card {
    min-height: 114px;
    border-radius: 22px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .verdict-card .label {
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .verdict-card .value {
    line-height: 1;
  }
  .advice-card .value {
    color: var(--jeito-ink) !important;
    font-size: 28px !important;
  }
  .result-actions-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
    gap: 20px;
    margin: 0;
  }
  .result-actions-grid .improvements-card,
  .result-actions-grid .timeline-card {
    border-radius: 30px;
    padding: 28px;
    margin: 0;
  }
  .card-headline-row {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
  }
  .card-headline-row h2 {
    margin: 0 !important;
    font-size: clamp(24px, 2.2vw, 32px) !important;
    line-height: 1.05;
  }
  .improvements-list {
    gap: 12px;
  }
  .improvement {
    align-items: flex-start;
    border-radius: 18px;
    padding: 16px 18px;
    background: rgba(255,255,255,.62) !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.68) inset;
  }
  .improvement .num {
    border-radius: 12px;
  }
  .improvement .body h3 {
    margin: 1px 0 5px;
    line-height: 1.2;
  }
  .improvement .body p {
    line-height: 1.48;
  }
  .timeline-list {
    gap: 0;
  }
  .timeline-item {
    grid-template-columns: 86px 18px 1fr;
    gap: 13px;
    padding: 0 0 18px;
  }
  .timeline-item:last-child {
    padding-bottom: 0;
  }
  .timeline-item .stamp {
    text-align: right;
    padding-top: 1px;
    line-height: 1.25;
  }
  .timeline-item .dot {
    margin: 2px auto 0;
  }
  .timeline-item .desc {
    line-height: 1.45;
    margin-top: -2px;
  }
  .timeline-item .desc strong {
    margin-bottom: 4px;
  }
  .result-v2 .cta-section {
    border-radius: 30px;
    padding: 34px;
    margin-top: 0;
  }
  .result-v2 .cta-grid {
    align-items: stretch;
  }
  .result-v2 .cta-tile {
    border-radius: 18px;
    min-height: 156px;
    background: rgba(255,255,255,.62);
  }
  @media (max-width: 1080px) {
    .result-hero-card,
    .result-main-grid,
    .result-actions-grid {
      grid-template-columns: 1fr;
    }
    .result-score-card {
      min-height: auto;
    }
    .result-insight-stack {
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: none;
    }
  }
  @media (max-width: 760px) {
    .result-v2 { padding-top: 28px; }
    .result-hero-card,
    .result-main-grid .result-chain-card,
    .result-actions-grid .improvements-card,
    .result-actions-grid .timeline-card,
    .result-v2 .cta-section {
      border-radius: 24px;
      padding: 22px;
    }
    .result-insight-stack,
    .result-v2 .cta-grid {
      grid-template-columns: 1fr;
    }
    .timeline-item {
      grid-template-columns: 72px 16px 1fr;
    }
  }



  /* ===== Timeline V3: cleaner, stricter and calmer ===== */
  .result-v2 .timeline-card.glass-panel {
    padding: 30px;
    overflow: hidden;
  }

  .result-v2 .timeline-card .card-headline-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 22px;
  }

  .result-v2 .timeline-card .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--jeito-muted);
  }

  .result-v2 .timeline-card .section-kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--jeito-orange);
    box-shadow: 0 0 0 6px rgba(239,125,0,.10);
  }

  .result-v2 .timeline-card .card-headline-row h2 {
    max-width: 100%;
    font-size: clamp(24px, 2vw, 30px) !important;
    line-height: 1.05;
    letter-spacing: -.045em;
  }

  .result-v2 .timeline-list {
    position: relative;
    display: grid;
    gap: 10px;
    padding-left: 0;
  }

  .result-v2 .timeline-list::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 104px;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(239,125,0,.44),
      rgba(239,125,0,.18) 48%,
      rgba(45,47,49,.10)
    );
  }

  .result-v2 .timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 80px 32px minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
    padding: 0;
    min-height: 76px;
  }

  .result-v2 .timeline-item .stamp {
    align-self: start;
    justify-self: end;
    min-width: 66px;
    margin-top: 14px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(45,47,49,.08);
    color: var(--jeito-muted);
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: .06em;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
  }

  .result-v2 .timeline-item.urgent .stamp,
  .result-v2 .timeline-item.critical .stamp {
    color: var(--jeito-danger);
    background: rgba(255,240,232,.72);
    border-color: rgba(239,125,0,.16);
  }

  .result-v2 .timeline-item.warn .stamp {
    color: var(--jeito-orange);
    background: rgba(255,247,234,.76);
    border-color: rgba(239,125,0,.16);
  }

  .result-v2 .timeline-item.mid .stamp {
    color: #7a8088;
    background: rgba(255,255,255,.66);
  }

  .result-v2 .timeline-item .dot {
    position: relative;
    z-index: 2;
    align-self: start;
    justify-self: center;
    width: 14px;
    height: 14px;
    margin: 18px 0 0;
    border-radius: 999px;
    background: #d7dade;
    border: 3px solid rgba(255,255,255,.96);
    box-shadow: 0 0 0 1px rgba(45,47,49,.08), 0 8px 20px rgba(45,47,49,.08);
  }

  .result-v2 .timeline-item .dot::after {
    display: none !important;
  }

  .result-v2 .timeline-item.urgent .dot,
  .result-v2 .timeline-item.critical .dot {
    background: var(--jeito-danger);
    box-shadow: 0 0 0 1px rgba(239,125,0,.14), 0 0 0 7px rgba(239,125,0,.08), 0 10px 24px rgba(239,125,0,.15);
  }

  .result-v2 .timeline-item.warn .dot {
    background: var(--jeito-orange);
    box-shadow: 0 0 0 1px rgba(239,125,0,.14), 0 0 0 7px rgba(239,125,0,.08), 0 10px 24px rgba(239,125,0,.15);
  }

  .result-v2 .timeline-item .desc {
    margin: 0;
    padding: 14px 16px 15px;
    border-radius: 18px;
    border: 1px solid rgba(45,47,49,.08);
    background: rgba(255,255,255,.66);
    box-shadow: 0 1px 0 rgba(255,255,255,.75) inset, 0 10px 26px rgba(45,47,49,.045);
    color: var(--jeito-ink-soft);
    font-size: 14px;
    line-height: 1.5;
  }

  .result-v2 .timeline-item .desc strong {
    display: block;
    margin: 0 0 4px;
    color: var(--jeito-ink);
    font-size: 14.5px;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.01em;
  }

  .result-v2 .timeline-item.urgent .desc,
  .result-v2 .timeline-item.critical .desc {
    background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,240,232,.66));
    border-color: rgba(239,125,0,.13);
    border-left: 1px solid rgba(239,125,0,.13);
  }

  .result-v2 .timeline-item.warn .desc {
    background: linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,247,234,.70));
    border-color: rgba(239,125,0,.13);
  }

  .result-v2 .timeline-item.mid .desc {
    background: rgba(255,255,255,.58);
  }

  @media (max-width: 620px) {
    .result-v2 .timeline-list::before { left: 25px; }
    .result-v2 .timeline-item {
      grid-template-columns: 32px minmax(0, 1fr);
      gap: 10px;
    }
    .result-v2 .timeline-item .stamp {
      grid-column: 2;
      grid-row: 1;
      justify-self: start;
      margin: 0 0 -2px;
    }
    .result-v2 .timeline-item .dot {
      grid-column: 1;
      grid-row: 1 / span 2;
      margin-top: 18px;
    }
    .result-v2 .timeline-item .desc {
      grid-column: 2;
      grid-row: 2;
    }
  }



  /* ===== Scan stacked layout: animatie boven, vraagkaart eronder ===== */
  .view[data-view="scan"] {
    min-height: 100vh;
  }

  .scan {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    align-items: stretch !important;
    width: min(1080px, 100%) !important;
    margin: 0 auto !important;
    padding: 34px 0 72px !important;
    min-height: auto !important;
  }

  .scan-chain {
    position: relative !important;
    top: auto !important;
    width: 100% !important;
    max-width: 1080px !important;
    margin: 0 auto !important;
    padding: 30px 30px 28px !important;
    border-radius: 30px !important;
  }

  .scan-chain::before {
    left: 30px !important;
    top: 24px !important;
  }

  .scan-chain .chain-stage {
    max-width: 920px !important;
    margin-top: 30px !important;
  }

  .scan-question {
    width: 100% !important;
    max-width: 860px !important;
    margin: 0 auto !important;
    min-height: auto !important;
    padding: 32px !important;
    border-radius: 28px !important;
  }

  .scan-question h2 {
    max-width: 720px;
  }

  .statement {
    max-width: 720px;
  }

  .choice-grid {
    gap: 10px !important;
  }

  .choice-card {
    border-radius: 16px !important;
  }

  @media (min-width: 900px) {
    .choice-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: stretch;
    }

    .choice-card {
      height: 100%;
    }
  }

  @media (max-width: 620px) {
    .scan {
      padding: 22px 0 52px !important;
      gap: 18px !important;
    }

    .scan-chain {
      padding: 20px 16px 18px !important;
      border-radius: 24px !important;
    }

    .scan-chain::before {
      left: 18px !important;
      top: 16px !important;
    }

    .scan-question {
      padding: 22px !important;
      border-radius: 24px !important;
    }
  }



  /* ===== Final scan refinement: clean viewport, centered SVG text, no logo/progress dots ===== */
  .module-header { display: none !important; }

  .view[data-view="scan"] {
    min-height: 100svh !important;
    display: none;
  }
  .view[data-view="scan"].active {
    display: flex !important;
    align-items: center !important;
  }

  .view[data-view="scan"] .container.scan {
    width: min(1080px, calc(100% - 40px)) !important;
    min-height: auto !important;
    padding: clamp(14px, 2.2vh, 24px) 0 !important;
    gap: clamp(14px, 2vh, 22px) !important;
  }

  .scan-chain {
    padding: clamp(18px, 2.6vw, 28px) clamp(18px, 3vw, 32px) clamp(16px, 2.4vw, 24px) !important;
    border-radius: clamp(22px, 3vw, 30px) !important;
  }

  .scan-chain::before {
    top: clamp(14px, 2vw, 22px) !important;
    left: clamp(18px, 3vw, 30px) !important;
    font-size: 11px !important;
    letter-spacing: .095em !important;
  }

  .scan-chain .chain-stage {
    max-width: min(920px, 100%) !important;
    margin-top: clamp(18px, 3vh, 30px) !important;
  }

  .scan-chain .chain-stage svg {
    height: clamp(214px, 31vh, 292px) !important;
    max-height: 292px !important;
    overflow: visible !important;
  }

  .scan-question {
    max-width: 1080px !important;
    padding: clamp(20px, 2.5vw, 28px) !important;
    border-radius: clamp(20px, 2.6vw, 28px) !important;
  }

  .scan-progress {
    justify-content: flex-end !important;
    margin-bottom: 14px !important;
  }
  .scan-dots { display: none !important; }
  .scan-count {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(45,47,49,.045);
    border: 1px solid rgba(45,47,49,.07);
    color: var(--jeito-ink-soft) !important;
  }

  .scan-question h2 {
    max-width: 980px !important;
    margin: 12px 0 8px !important;
    font-size: clamp(25px, 3.2vw, 36px) !important;
  }
  .statement {
    max-width: 980px !important;
    margin-bottom: 16px !important;
    font-size: clamp(14.5px, 1.4vw, 16px) !important;
  }

  .choice-grid {
    gap: 10px !important;
  }
  .choice-card {
    padding: 14px 16px !important;
    min-height: 86px;
  }
  .choice-card .label { font-size: 15px !important; }
  .choice-card .sub { font-size: 12.5px !important; }
  .scan-nav { padding-top: 14px !important; }

  .chain-svg,
  .chain-svg text,
  .chain-svg tspan {
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
  }

  .node-label,
  .node-role,
  .hero-label,
  .hero-sub,
  .badge-modern text,
  .flow-label text,
  .damage-chip text,
  .impact-callout text {
    text-anchor: middle !important;
    dominant-baseline: middle !important;
  }

  .node-label {
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: -.015em !important;
  }
  .node-role {
    font-size: 9.5px !important;
    font-weight: 500 !important;
  }
  .hero-label {
    font-size: 18px !important;
    font-weight: 800 !important;
    letter-spacing: -.03em !important;
  }
  .hero-sub {
    font-size: 10.5px !important;
  }

  .hero-ring,
  .hero-ring-glow {
    transform-box: fill-box;
    transform-origin: center;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
  }

  @media (min-width: 900px) {
    .choice-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
  }

  @media (max-height: 760px) and (min-width: 760px) {
    .view[data-view="scan"] .container.scan {
      gap: 12px !important;
      padding: 10px 0 !important;
    }
    .scan-chain .chain-stage svg {
      height: 218px !important;
      max-height: 218px !important;
    }
    .scan-chain {
      padding-top: 18px !important;
      padding-bottom: 14px !important;
    }
    .scan-question {
      padding: 20px 24px !important;
    }
    .choice-card {
      min-height: 74px;
      padding: 12px 14px !important;
    }
    .scan-question h2 { font-size: 28px !important; }
    .statement { margin-bottom: 12px !important; }
    .scan-nav { padding-top: 10px !important; }
  }

  @media (max-width: 620px) {
    .view[data-view="scan"] {
      align-items: flex-start !important;
    }
    .view[data-view="scan"] .container.scan {
      width: min(100% - 24px, 1080px) !important;
      padding: 12px 0 24px !important;
    }
    .scan-chain .chain-stage svg {
      height: 220px !important;
    }
    .choice-grid {
      grid-template-columns: 1fr !important;
    }
  }



  /* v1.1.0: keep hover subtle and readable. Only selected cards get the Jeito gradient. */
  .jeito-ketenkrasher .choice-card {
    position: relative;
    background: rgba(255,255,255,.86) !important;
    color: var(--jeito-ink) !important;
    border-color: rgba(45,47,49,.12) !important;
  }
  .jeito-ketenkrasher .choice-card:hover:not(.selected) {
    background: rgba(239,125,0,.035) !important;
    color: var(--jeito-ink) !important;
    border-color: rgba(239,125,0,.38) !important;
    box-shadow: 0 1px 0 rgba(255,255,255,.90) inset, 0 14px 34px rgba(45,47,49,.055) !important;
    transform: translateY(-1px) !important;
  }
  .jeito-ketenkrasher .choice-card:hover:not(.selected) .label {
    color: var(--jeito-ink) !important;
  }
  .jeito-ketenkrasher .choice-card:hover:not(.selected) .sub {
    color: var(--jeito-ink-soft) !important;
  }
  .jeito-ketenkrasher .choice-card:hover:not(.selected) .marker {
    border-color: var(--jeito-orange) !important;
    background: rgba(239,125,0,.08) !important;
  }
  .jeito-ketenkrasher .choice-card.selected {
    color: #fff !important;
    border-color: transparent !important;
    background: linear-gradient(135deg, var(--jeito-orange), var(--jeito-gold)) !important;
    box-shadow: 0 0 0 5px rgba(239,125,0,.10), 0 18px 46px rgba(239,125,0,.18) !important;
  }
  .jeito-ketenkrasher .choice-card.selected .label {
    color: #fff !important;
  }
  .jeito-ketenkrasher .choice-card.selected .sub {
    color: rgba(255,255,255,.86) !important;
  }
  .jeito-ketenkrasher .choice-card.selected .marker {
    border-color: #fff !important;
    background: #fff !important;
  }
  .jeito-ketenkrasher .choice-card.selected:hover {
    transform: translateY(-1px) !important;
  }


  /* v1.2.0: all alert/hover accents are Jeito orange, never red. */
  .jeito-ketenkrasher {
    --jeito-danger: #EF7D00 !important;
    --jeito-danger-soft: #FFF4E6 !important;
  }
  .jeito-ketenkrasher .btn-primary:hover,
  .jeito-ketenkrasher button.btn-primary:hover,
  .jeito-ketenkrasher [data-action="start"]:hover {
    background: linear-gradient(135deg, var(--jeito-orange), var(--jeito-gold)) !important;
    color: #fff !important;
    border-color: transparent !important;
  }
  .jeito-ketenkrasher .btn-secondary:hover,
  .jeito-ketenkrasher .cta-tile:hover {
    border-color: rgba(239,125,0,.38) !important;
    color: var(--jeito-ink) !important;
  }
  .jeito-ketenkrasher .choice-card:hover:not(.selected) {
    background: rgba(239,125,0,.035) !important;
    border-color: rgba(239,125,0,.38) !important;
    color: var(--jeito-ink) !important;
  }
  .jeito-ketenkrasher .choice-card:hover:not(.selected) .label { color: var(--jeito-ink) !important; }
  .jeito-ketenkrasher .choice-card:hover:not(.selected) .sub { color: var(--jeito-ink-soft) !important; }
  .jeito-ketenkrasher .impact-drop.bad .impact-drop-core,
  .jeito-ketenkrasher .timeline-item.urgent .dot,
  .jeito-ketenkrasher .timeline-item.critical .dot,
  .jeito-ketenkrasher .improvement.high .num {
    background: var(--jeito-orange) !important;
    fill: var(--jeito-orange) !important;
  }

