/**
 * Blueprint 8 - Hero Animation Styles
 */

.blu8print-hero {
    --bre-accent-green: #67ffaa;
    --bre-bg-color: #353f6d;
    --bre-panel-color: rgba(255, 255, 255, 0.05);
    --bre-text-main: #ffffff;
    --bre-text-dim: rgba(255, 255, 255, 0.6);
}

.blu8print-hero *,
.blu8print-hero *::before,
.blu8print-hero *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.blu8print-hero {
    color: var(--bre-text-main);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 20px;
}

/* Container */
.blu8print-hero .bre-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
}

/* Power Button */
.blu8print-hero .bre-power-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.blu8print-hero .bre-power-btn {
    width: 80px;
    height: 80px;
    background: var(--bre-panel-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    outline: none;
}

.blu8print-hero .bre-power-btn:hover {
    border-color: var(--bre-accent-green);
}

.blu8print-hero .bre-power-btn.active {
    border-color: var(--bre-accent-green);
    box-shadow: 0 0 20px rgba(103, 255, 170, 0.3);
}

.blu8print-hero .bre-power-icon {
    width: 30px;
    stroke: rgba(255, 255, 255, 0.2);
    transition: stroke 0.3s;
}

.blu8print-hero .bre-power-btn.active .bre-power-icon {
    stroke: var(--bre-accent-green);
}

.blu8print-hero .bre-start-label {
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--bre-text-dim);
}

/* Connection SVG */
.blu8print-hero .bre-connection-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Node Content Labels */
.blu8print-hero .bre-node-content {
    position: absolute;
    width: 240px;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
}

.blu8print-hero .bre-node-content h4 {
    color: var(--bre-accent-green);
    font-size: 16px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blu8print-hero .bre-node-content p {
    color: var(--bre-text-dim);
    font-size: 13px;
    line-height: 1.5;
}

/* Label Positions */
.blu8print-hero .bre-content-1 { left: 240px; top: 320px; }
.blu8print-hero .bre-content-2 { left: 450px; top: 80px; }
.blu8print-hero .bre-content-3 { left: 660px; top: 320px; }

/* Output Section */
.blu8print-hero .bre-output-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.blu8print-hero .bre-lamp-glow {
    opacity: 0;
    filter: blur(15px);
}

.blu8print-hero .bre-lamp-bulb {
    transition: fill 0.3s;
}

.blu8print-hero .bre-status-tag {
    margin-top: 20px;
    font-family: monospace;
    font-size: 12px;
    color: var(--bre-accent-green);
    opacity: 0;
    letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 900px) {
    .blu8print-hero .bre-container {
        padding: 0 20px;
        flex-direction: column;
        height: auto;
        gap: 40px;
    }

    .blu8print-hero .bre-connection-svg {
        position: relative;
        height: 400px;
    }

    .blu8print-hero .bre-node-content {
        position: relative;
        left: auto !important;
        top: auto !important;
        text-align: center;
        margin: 10px 0;
    }

    .blu8print-hero .bre-content-1,
    .blu8print-hero .bre-content-2,
    .blu8print-hero .bre-content-3 {
        left: auto;
        top: auto;
    }
}


/* ============================================
   Blueprint 8 - Wireframe to Live Hero Animation
   ============================================ */

.blu8print-wireframe-hero *,
.blu8print-wireframe-hero *::before,
.blu8print-wireframe-hero *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.blu8print-wireframe-hero {
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #fff;
    padding: 0 20px;
}

/* Stage Label */
.blu8print-wireframe-hero .bwh-stage-label {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #353f6d;
    margin-bottom: 18px;
    opacity: 0;
}

/* Browser Frame */
.blu8print-wireframe-hero .bwh-browser {
    width: 100%;
    max-width: 740px;
    background: #0b1422;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 180, 255, 0.12);
    box-shadow: 0 0 50px rgba(0, 150, 255, 0.07);
}

.blu8print-wireframe-hero .bwh-browser-bar {
    background: #091020;
    padding: 10px 14px;
    display: flex;
    gap: 7px;
    align-items: center;
}

.blu8print-wireframe-hero .bwh-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.blu8print-wireframe-hero .bwh-dot-r { background: #ff5f57; }
.blu8print-wireframe-hero .bwh-dot-y { background: #febc2e; }
.blu8print-wireframe-hero .bwh-dot-g { background: #28c840; }

.blu8print-wireframe-hero .bwh-url-bar {
    flex: 1;
    margin-left: 12px;
    background: #0e1c33;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Courier New', monospace;
}

/* Content Area */
.blu8print-wireframe-hero .bwh-content {
    position: relative;
    padding: 20px;
}

/* Blueprint Grid Overlay */
.blu8print-wireframe-hero .bwh-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 180, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 255, 0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
    z-index: 10;
}

/* Wireframe Borders */
.blu8print-wireframe-hero .bwh-wire {
    border: 1.5px dashed rgba(0, 180, 255, 0.5);
    border-radius: 6px;
    position: relative;
}

/* Labels */
.blu8print-wireframe-hero .bwh-lbl {
    position: absolute;
    top: -15px;
    left: 10px;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(0, 180, 255, 0.55);
    white-space: nowrap;
    z-index: 2;
}

/* Placeholder Blocks */
.blu8print-wireframe-hero .bwh-ph {
    height: 10px;
    background: rgba(0, 180, 255, 0.18);
    border-radius: 3px;
    margin: 5px auto;
}

/* Measurement Annotations */
.blu8print-wireframe-hero .bwh-meas {
    position: absolute;
    font-family: 'Courier New', monospace;
    font-size: 8px;
    color: rgba(0, 0, 0, 0.3);
}

.blu8print-wireframe-hero .bwh-meas-h {
    bottom: 7px;
    right: 10px;
}

/* NAV */
.blu8print-wireframe-hero .bwh-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    margin-bottom: 14px;
    background: transparent;
}

.blu8print-wireframe-hero .bwh-nav-w-logo {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

.blu8print-wireframe-hero .bwh-nav-w-links {
    display: flex;
    gap: 18px;
}

.blu8print-wireframe-hero .bwh-nav-w-link {
    font-size: 10px;
    color: rgba(0, 180, 255, 0.4);
    font-family: 'Courier New', monospace;
}

.blu8print-wireframe-hero .bwh-nav-l-logo {
    opacity: 0;
    position: absolute;
    left: 18px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.5px;
}

.blu8print-wireframe-hero .bwh-nav-l-links {
    opacity: 0;
    position: absolute;
    right: 18px;
    display: flex;
    gap: 24px;
}

.blu8print-wireframe-hero .bwh-nav-l-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

/* HERO */
.blu8print-wireframe-hero .bwh-hero {
    padding: 52px 24px 48px;
    text-align: center;
    margin-bottom: 14px;
    background: transparent;
}

.blu8print-wireframe-hero .bwh-hero-live {
    opacity: 0;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.blu8print-wireframe-hero .bwh-hero-live h2 {
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.blu8print-wireframe-hero .bwh-hero-live p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.blu8print-wireframe-hero .bwh-btn-live {
    display: inline-block;
    border: 1px solid rgba(0, 180, 255, 0.5);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 22px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

/* FEATURES */
.blu8print-wireframe-hero .bwh-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
    position: relative;
}

.blu8print-wireframe-hero .bwh-feat {
    padding: 24px 14px 22px;
    text-align: center;
    background: transparent;
}

.blu8print-wireframe-hero .bwh-feat-icon-w {
    width: 28px;
    height: 28px;
    border: 1.5px dashed rgba(0, 180, 255, 0.5);
    border-radius: 50%;
    margin: 0 auto 8px;
}

.blu8print-wireframe-hero .bwh-feat-live {
    opacity: 0;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.blu8print-wireframe-hero .bwh-feat-live h3 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.blu8print-wireframe-hero .bwh-feat-live p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    padding: 0 4px;
}

/* CTA */
.blu8print-wireframe-hero .bwh-cta-block {
    padding: 36px 20px 32px;
    text-align: center;
    background: transparent;
}

.blu8print-wireframe-hero .bwh-cta-btn-w {
    display: inline-block;
    border: 1.5px dashed rgba(0, 180, 255, 0.8);
    padding: 8px 26px;
    border-radius: 4px;
    margin-top: 10px;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    color: rgba(0, 180, 255, 0.8);
    letter-spacing: 1px;
}

.blu8print-wireframe-hero .bwh-cta-live {
    opacity: 0;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.blu8print-wireframe-hero .bwh-cta-live h2 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
}

.blu8print-wireframe-hero .bwh-cta-live p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.blu8print-wireframe-hero .bwh-btn-cta {
    display: inline-block;
    background: rgba(0, 180, 255, 0.13);
    border: 1px solid #353f6d;
    color: rgba(0, 180, 255, 1);
    padding: 9px 28px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

/* Progress & Replay */
.blu8print-wireframe-hero .bwh-progress-track {
    width: 100%;
    max-width: 740px;
    height: 2px;
    background: rgba(0, 180, 255, 0.1);
    border-radius: 1px;
    margin-top: 22px;
}

.blu8print-wireframe-hero .bwh-progress-fill {
    width: 0%;
    height: 100%;
    background: #353f6d;
    border-radius: 1px;
}

.blu8print-wireframe-hero .bwh-replay-btn {
    margin-top: 22px;
    background: transparent;
    border: 1px solid #353f6d;
    color: #353f6d;
    padding: 7px 22px;
    border-radius: 4px;
    font-size: 11px;
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
    cursor: pointer;
    opacity: 0;
    transition: background 0.2s;
}

.blu8print-wireframe-hero .bwh-replay-btn:hover {
    background: rgba(0, 180, 255, 0.08);
}

/* Responsive */
@media (max-width: 600px) {
    .blu8print-wireframe-hero .bwh-features {
        grid-template-columns: 1fr;
    }

    .blu8print-wireframe-hero .bwh-hero-live h1 {
        font-size: 18px;
    }

    .blu8print-wireframe-hero .bwh-nav-w-links,
    .blu8print-wireframe-hero .bwh-nav-l-links {
        display: none;
    }
}


/* ============================================
   Blueprint 8 - Process Animation (4 Steps)
   ============================================ */

.blu8print-process {
    --bpa-dark: #0a0a0a;
    --bpa-text-muted: #64748b;
    --bpa-line-gray: #f1f5f9;
    --bpa-accent: #353f6d;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.blu8print-process *,
.blu8print-process *::before,
.blu8print-process *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.blu8print-process {
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.blu8print-process .bpa-container {
    max-width: 1200px;
    width: 100%;
}

.blu8print-process .bpa-visual {
    position: relative;
}

/* Progress line SVG */
.blu8print-process .bpa-svg {
    position: absolute;
    top: 105px;
    left: 12.5%;
    width: 75%;
    height: 2px;
    z-index: 1;
}

/* Steps grid - 4 columns */
.blu8print-process .bpa-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Step card */
.blu8print-process .bpa-step {
    padding: 40px 20px;
    border-radius: 24px;
    background: #fff;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.blu8print-process .bpa-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(53, 63, 109, 0.1);
    z-index: 10;
}

/* Step icon */
.blu8print-process .bpa-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: var(--bpa-line-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transform: scale(0.5);
    opacity: 0;
    transition: background 0.4s ease;
}

.blu8print-process .bpa-step.active .bpa-step-icon {
    background: var(--bpa-accent);
    opacity: 1;
    transform: scale(1);
}

.blu8print-process .bpa-step-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--bpa-accent);
    transition: all 0.4s ease;
}

.blu8print-process .bpa-step-icon svg.bpa-stroke-icon {
    fill: none;
    stroke: var(--bpa-accent);
    stroke-width: 2;
}

.blu8print-process .bpa-step.active .bpa-step-icon svg {
    fill: #ffffff;
}

.blu8print-process .bpa-step.active .bpa-step-icon svg.bpa-stroke-icon {
    stroke: #ffffff;
    fill: none;
}

/* Confetti container */
.blu8print-process .bpa-confetti-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.blu8print-process .bpa-confetti-piece {
    position: absolute;
    width: 6px;
    height: 6px;
    opacity: 0;
}

/* Step content */
.blu8print-process .bpa-step h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(15px);
}

.blu8print-process .bpa-step p {
    font-size: 14px;
    color: var(--bpa-text-muted);
    line-height: 1.5;
    opacity: 0;
    transform: translateY(15px);
}

/* Responsive */
@media (max-width: 992px) {
    .blu8print-process .bpa-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blu8print-process .bpa-svg {
        display: none;
    }
}

@media (max-width: 600px) {
    .blu8print-process .bpa-steps-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   Blueprint 8 - Gear Animation
   ============================================ */

/* Update the container */
.gear-canvas {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  overflow: hidden;
}

.gear {
  /* This ensures the SVG uses the 'color' property for its fill */
  fill: currentColor;
  color: #ffffff;
}

/* Update the gears to be flexible */
.gear {
  flex-shrink: 1;
  max-width: 100%;
  height: auto !important; /* Keep aspect ratio while shrinking */
}

/* Change fixed widths to max-widths */
.gear.size-lg { width: 180px; }
.gear.size-md { width: 130px; }
.gear.size-sm { width: 90px; }

/* ============================================
   Blueprint 8 - Stardust button
   ============================================ */


#stardust-btn {
    cursor: pointer;
    overflow: visible; /* Allows dust to fly outside the borders */
  }

  .star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
  }

  /* ============================================
   Blueprint 8 - Laten we kennismaken CTA
   ============================================ */

  .blueprint-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    color: #0ea5e9; /* brand-blue uit jouw ontwerp */
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-decoration: none;
    gap: 12px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.cta-text {
    z-index: 2;
}

.cta-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: transparent;
    stroke: #0ea5e9;
    stroke-width: 2px;
    /* De dash-array moet groot genoeg zijn om de hele omtrek te dekken */
    stroke-dasharray: 800; 
    stroke-dashoffset: 800; /* Startpunt: volledig onzichtbaar */
    pointer-events: none;
}

.cta-arrow {
    width: 20px;
    height: 20px;
    z-index: 2;
}

.blueprint-cta:hover {
    background-color: rgba(14, 165, 233, 0.05); /* Zeer subtiele blauwe gloed */
}

/* ============================================
   Agile loop animatie
   ============================================ */

  .stage {
    position: relative;
    width: 320px;
    height: 320px;
  }

  /* Rings */
  .ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(52, 63, 109, 0.35);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .ring-1 { width: 280px; height: 280px; animation: spin 24s linear infinite; }
  .ring-2 { width: 210px; height: 210px; border-style: dashed; animation: spin 16s linear infinite reverse; }
  .ring-3 { width: 140px; height: 140px; animation: spin 10s linear infinite; }

  /* Dot on each ring */
  .ring-1::after,
  .ring-2::after,
  .ring-3::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: #343f6d;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
  }

  .ring-1::after { width: 8px; height: 8px; top: -4px; box-shadow: 0 0 10px rgba(52, 63, 109, 0.7); }
  .ring-2::after { width: 6px; height: 6px; top: -3px; opacity: 0.7; }
  .ring-3::after { width: 5px; height: 5px; top: -2.5px; opacity: 0.5; }

  @keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
  }

  /* Center */
  .center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: #fff;
    border: 1px solid rgba(52, 63, 109, 0.45);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }

  .center-infinity {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #343f6d;
    line-height: 1;
  }

  .center-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(52, 63, 109, 0.85);
  }

  /* Labels at cardinal points */
  .label {
    position: absolute;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(52, 63, 109, 0.9);
    transform: translate(-50%, -50%);
  }

  @media (prefers-reduced-motion: reduce) {
    .ring-1, .ring-2, .ring-3 { animation: none; }
  }

  .label-top    { top: 8px;   left: 50%; }
  .label-right  { top: 50%;   left: calc(100% - 8px); }
  .label-bottom { top: calc(100% - 8px); left: 50%; }
  .label-left   { top: 50%;   left: 8px; }


/* ============================================
   Post its animatie
   ============================================ */

   .board {
      position: relative;
      width: 480px;
      height: 700px;
      flex-shrink: 0;
    }

    /* ── Post-it base ─────────────────────────────── */
    .postit {
      position: absolute;
      width: 162px;
      padding: 16px 13px 20px;
      border-radius: 1px;
      /* Lined paper texture */
      background-image: repeating-linear-gradient(
        to bottom,
        transparent 0px,
        transparent 26px,
        rgba(0,0,0,0.06) 26px,
        rgba(0,0,0,0.06) 27px
      );
      background-size: 100% 27px;
      background-position: 0 32px;
      box-shadow:
        2px 3px 6px rgba(0,0,0,0.22),
        4px 8px 18px rgba(0,0,0,0.18),
        0 1px 2px rgba(0,0,0,0.12);
      cursor: default;
      user-select: none;
      opacity: 0;
    }

    /* Folded corner */
    .postit::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 16px; height: 16px;
      background: linear-gradient(225deg, rgba(0,0,0,0.14) 45%, transparent 45%);
    }

    /* Scotch tape strip */
    .postit::before {
      content: '';
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 40px; height: 11px;
      background: rgba(255,255,255,0.38);
      border-left:  1px solid rgba(255,255,255,0.55);
      border-right: 1px solid rgba(255,255,255,0.55);
      border-bottom: 1px solid rgba(255,255,255,0.3);
    }

    .postit p  { font-size: 15px; line-height: 1.55; color: rgba(0,0,0,0.72); }
    .postit ul { list-style: none; padding: 0; }
    .postit li { font-size: 14.5px; line-height: 1.7; color: rgba(0,0,0,0.72); padding-left: 11px; position: relative; }
    .postit li::before { content: '–'; position: absolute; left: 0; color: rgba(0,0,0,0.35); }

    .urgent { font-size: 20px !important; font-weight: 700; color: rgba(0,0,0,0.8) !important; line-height: 1.25 !important; }
    .warn   { font-weight: 700; font-size: 15.5px !important; color: rgba(100,20,20,0.78) !important; }
    .muted  { font-size: 13px !important; color: rgba(0,0,0,0.42) !important; }

    /* ── Muted corporate palette ──────────────────── */
    .cream   { background-color: #f2ede2; }
    .sage    { background-color: #c8d6c8; }
    .slate   { background-color: #bfcdd8; }
    .sand    { background-color: #ddd4b8; }
    .stone   { background-color: #d2cec6; }
    .blush   { background-color: #d8c4c0; }
    .lavender{ background-color: #c8c2d4; }
    .dusk    { background-color: #c4d0cc; }

    /* ── Absolute positions + z-index per wave ─────── */
    /* Wave 1 — base layer */
    #note1  { top: 25px;  left: 10px;  z-index: 1;  }
    #note2  { top: 14px;  left: 308px; z-index: 2;  }
    #note3  { top: 188px; left: 14px;  z-index: 3;  }
    #note4  { top: 175px; left: 306px; z-index: 4;  }

    /* Wave 2 — pile on top of wave 1 */
    #note5  { top: 46px;  left: 155px; z-index: 5;  }  /* centre, overlaps 1+2 */
    #note6  { top: 208px; left: 148px; z-index: 6;  }  /* centre, overlaps 3+4 */
    #note7  { top: 348px; left: 10px;  z-index: 7;  }
    #note8  { top: 335px; left: 306px; z-index: 8;  }

    /* Wave 3 — pile higher */
    #note9  { top: 368px; left: 155px; z-index: 9;  }  /* overlaps 7+8 */
    #note10 { top: 500px; left: 14px;  z-index: 10; }
    #note11 { top: 488px; left: 306px; z-index: 11; }
    #note12 { top: 522px; left: 148px; z-index: 12; }  /* overlaps 10+11 */

    /* ── Responsive visibility ─────────────────────── */
    @media (max-width: 799px) {
      #note9, #note10, #note11, #note12 { display: none; }
      .board { height: 540px; }
    }
    @media (max-width: 479px) {
      #note5, #note6, #note7, #note8,
      #note9, #note10, #note11, #note12 { display: none; }

      /* Tighter layout: smaller board, notes closer together */
      .board { width: 340px; height: 300px; }

      #note1 { top: 16px;  left: 8px;   }
      #note2 { top: 10px;  left: 178px; }
      #note3 { top: 158px; left: 8px;   }
      #note4 { top: 150px; left: 178px; }

      .postit { width: 155px; }
    }

    @media (max-width: 360px) {
      .board { zoom: 0.85; }
    }

