/**
 * 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 {
    background-color: var(--bre-bg-color);
    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.35);
    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.45);
    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.4);
    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.5);
    padding: 8px 26px;
    border-radius: 4px;
    margin-top: 10px;
    font-family: 'Courier New', monospace;
    font-size: 9px;
    color: rgba(0, 180, 255, 0.5);
    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.4);
    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 */
}