/* 2x Futures Section */
.below-fold {
    background: white;
    padding: 2rem;
    min-height: 100vh;
}

.futures-section {
    max-width: 1400px;
    margin: 0 auto;
}


/* Futures Diagram */
.futures-diagram {
    position: relative;
    width: 100%;
    height: 600px;
    margin-bottom: 3rem;
    z-index: 1;
}

.futures-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Center horizontal path */
.center-path {
    stroke-linecap: round;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
}

/* Hand-drawn curved path styles */
.decision-path {
    stroke-dasharray: 8, 4;
    stroke-linecap: round;
    animation: drawPath 2s ease-in-out 0.5s backwards;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
}

.delay-path {
    stroke-dasharray: 8, 4;
    stroke-linecap: round;
    animation: drawPath 2s ease-in-out 0.5s backwards;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.1));
}

@keyframes drawPath {
    from {
        stroke-dashoffset: 1000;
    }
    to {
        stroke-dashoffset: 0;
    }
}

/* Path labels */
.path-label {
    font-family: 'Caveat', cursive;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.decision-label {
    fill: #059669;
}

.delay-label {
    fill: #dc2626;
}

/* Future boxes - hand-drawn style */
.future-box {
    position: absolute;
    background: white;
    border: 3px solid var(--dark);
    border-radius: 8px;
    padding: 1.5rem;
    min-width: 250px;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.15);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
    z-index: 2;
}

.future-box:hover {
    transform: rotate(0deg) scale(1.02);
}

.current-box {
    border-color: var(--orange);
    background: #fff7ed;
}

.success-box {
    border-color: #10b981;
    background: #d1fae5;
    transform: rotate(1deg);
}

.failure-box {
    border-color: #dc2626;
    background: #fee2e2;
    transform: rotate(-2deg);
}

.box-title {
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    border-bottom: 2px dashed var(--dark);
    padding-bottom: 0.5rem;
}

.box-values {
    font-family: 'Source Sans Pro', sans-serif;
}

.box-value {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.box-value span {
    font-weight: 800;
    color: var(--primary);
}

.success-box .box-value span {
    color: #059669;
}

.failure-box .box-value span {
    color: #dc2626;
}

.box-value.stress span {
    color: #dc2626;
    font-size: 1.3rem;
}

/* Cost of Delay Counter */
.delay-counter {
    background: linear-gradient(135deg, #fee2e2 0%, #fef3c7 100%);
    border: 4px solid var(--orange);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.counter-header {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.counter-amount {
    font-size: 5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.counter-subtitle {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 2rem;
    font-weight: 600;
}

.counter-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.breakdown-item {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.breakdown-item span {
    display: block;
    font-size: 1.8rem;
    color: #dc2626;
    margin-top: 0.5rem;
}

/* Futures Message */
.futures-message {
    background: linear-gradient(135deg, var(--success-light) 0%, #dbeafe 100%);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
    border-left: 6px solid var(--primary);
}

.futures-tagline {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: 'Caveat', cursive;
}

.futures-message p:not(.futures-tagline):not(.futures-question) {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--dark);
}

.futures-question {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .futures-diagram {
        height: 800px;
    }

    .future-box {
        position: static !important;
        margin-bottom: 2rem;
        transform: rotate(0deg) !important;
    }

    .futures-svg {
        display: none;
    }

    .counter-breakdown {
        grid-template-columns: 1fr;
    }
}
