/* ============================================================
   AARUSH ECO TECH — PAGE-INDEX CSS
   ✅ PRIMARY CSS BLOCK — Homepage (index.html) only.

   Sources:
     - index-home.css  (PRIMARY selectors — used by index.html)
     - technology-section.css (non-duplicate rules only)
     - live-operations.css (complete — map section)

   Omitted (moved to SECONDARY):
     - .comparison-grid / .comparison-col / .comparison-header
     - .comparison-feature / .check-green / .check-yellow / .cross-red
     - .pilot-strip / .pilot-label-row / .pilot-location
     - .kpi-group-icon / .kpi-group-num / .kpi-group-title
     - .kpi-group-desc / .kpi-cta-box / .kpi-cta-copy / .kpi-cta-highlight
     - :root duplicate tokens (consolidated into global.css)
     - body / .container / .section duplicate rules (in global.css)
   ============================================================ */

/* ===================== LOGO IMG ===================== */
.logo-img {
    width: 40px;
    height: 40px;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: clamp(680px, 92vh, 1080px);
    padding: clamp(4rem, 7vh, 7rem) 0 clamp(4rem, 6vh, 8rem);
    color: #ffffff;
    background-image: url('assets/images/hero-smart-bins.webp');
    background-size: cover;
    background-position: center top;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg,
            rgba(10, 15, 25, 0.82) 0%,
            rgba(10, 15, 25, 0.65) 42%,
            rgba(10, 15, 25, 0.30) 62%,
            rgba(10, 15, 25, 0.08) 82%,
            rgba(10, 15, 25, 0.00) 100%);
    z-index: 1;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    /* column-gap separates the two content columns; row-gap governs the
       space between the content row and the pedigree strip row below */
    column-gap: 4rem;
    row-gap: 2.75rem;
}

/* ---- PRE-BADGE ---- */
.hero-pre-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    align-self: flex-start;
    background: var(--badge-gold-bg);
    border: 1px solid var(--badge-gold-border);
    border-radius: var(--badge-radius);
    padding: var(--badge-pad);
    font-size: var(--badge-size);
    font-weight: var(--badge-weight);
    letter-spacing: var(--badge-tracking);
    text-transform: uppercase;
    color: var(--badge-gold-text);
    margin-bottom: 1.5rem;
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.06),
        0 0 18px rgba(212, 175, 55, 0.12),
        inset 0 1px 0 rgba(253, 230, 138, 0.08);
    animation: badge-gold-breath 4.5s ease-in-out infinite;
}

@keyframes badge-gold-breath {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(212, 175, 55, 0.06),
            0 0 18px rgba(212, 175, 55, 0.12),
            inset 0 1px 0 rgba(253, 230, 138, 0.08);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(212, 175, 55, 0.14),
            0 0 28px rgba(212, 175, 55, 0.22),
            inset 0 1px 0 rgba(253, 230, 138, 0.15);
    }
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--color-primary-signal);
    border-radius: 50%;
    animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

/* ---- HEADLINE ---- */
.hero-h1 {
    font-family: var(--ff-head);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-h1-accent {
    color: var(--color-primary-signal);
    background: linear-gradient(92deg, var(--color-primary-signal) 0%, var(--surface-white) 52%, var(--color-primary-signal) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

/* ---- SUBHEADLINE ---- */
.hero-subhead {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    color: rgba(255,255,255,0.92);
    line-height: 1.75;
    /* Tightened — subhead + CTAs are one cohesive value statement */
    margin-bottom: 1.25rem;
    max-width: 520px;
}

.hero-subhead strong {
    color: #ffffff;
}

.hero-subhead-line2 {
    display: block;
    margin-top: 0.6rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.95em;
}

/* ---- CTAs ---- */
.hero-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2.75rem;
}

.hero-cta-primary {
    font-size: 1rem;
    padding: 1.1rem 2.25rem;
    border-radius: 10px;
    letter-spacing: 0.05em;
    background: #ea580c !important;
    box-shadow: 0 4px 20px rgba(234,88,12,0.35);
}
.hero-cta-primary:hover {
    background: #c2410c !important;
    box-shadow: 0 6px 28px rgba(234,88,12,0.5);
}

.hero-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease, gap 0.2s ease;
    padding: 1.1rem 0;
}

.hero-cta-ghost:hover {
    color: var(--color-primary-signal);
    gap: 0.7rem;
}

/* ---- FLOATING LENS STATS ---- */
.hero-proof-strip {
    display: flex;
    /* nowrap keeps all 4 pills in one row on desktop */
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem; /* minimum guard — space-between handles the rest */
    background: transparent;
    padding: 0;
}

.hero-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    /* flex: 1 1 auto — items grow equally, filling the full strip width */
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.7rem 1.25rem 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 3px solid #16a34a;
    border-radius: 8px;
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    will-change: transform;
    animation: lens-float 7s ease-in-out infinite;
}

/* Staggered float — items are at positions 1-4 (no dividers in DOM) */
.hero-proof-item:nth-child(1) { animation-delay: 0s; }
.hero-proof-item:nth-child(2) { animation-delay: -1.8s; }
.hero-proof-item:nth-child(3) { animation-delay: -3.5s; }
.hero-proof-item:nth-child(4) { animation-delay: -5.2s; }


@keyframes lens-float {
    0%,  100% { transform: translateY(0); }
    50%        { transform: translateY(-4px); }
}

.hero-proof-num {
    font-family: var(--ff-head);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-proof-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
}

/* Dividers no longer needed — lens items stand alone */
.hero-proof-divider {
    display: none;
}

/* ===================== HERO DASHBOARD VISUAL ===================== */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.hdash-card {
    width: 100%;
    max-width: 420px;
    background: rgba(30, 41, 59, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 24px 60px rgba(0, 0, 0, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    animation: hdash-float 6s ease-in-out infinite;
}

@keyframes hdash-gold-pulse {

    0%,
    100% {
        box-shadow:
            0 0 0 1px rgba(212, 175, 55, 0.07),
            0 24px 60px rgba(0, 0, 0, 0.45),
            0 0 40px rgba(212, 175, 55, 0.06),
            inset 0 1px 0 rgba(253, 230, 138, 0.10);
    }

    50% {
        box-shadow:
            0 0 0 1px rgba(212, 175, 55, 0.16),
            0 24px 60px rgba(0, 0, 0, 0.45),
            0 0 55px rgba(212, 175, 55, 0.13),
            inset 0 1px 0 rgba(253, 230, 138, 0.18);
    }
}

@keyframes hdash-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hdash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hdash-title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hdash-pulse {
    width: 8px;
    height: 8px;
    background: var(--color-primary-signal);
    border-radius: 50%;
    animation: hero-pulse 1.8s ease-in-out infinite;
}

.hdash-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}

.hdash-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary-signal);
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.30);
    border-radius: 50px;
    padding: 0.2rem 0.6rem;
}

/* Bin rows */
.hdash-bins {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.hdash-bin-row {
    display: grid;
    grid-template-columns: 44px 1fr 30px 44px;
    align-items: center;
    gap: 0.5rem;
}

.hdash-bin-id {
    font-size: 0.68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.80);
    letter-spacing: 0.04em;
}

.hdash-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    overflow: hidden;
    width: 100%;
    min-width: 0;
}

.hdash-bar {
    height: 100%;
    border-radius: 50px;
    min-width: 0;
    display: block;
    transition: width 1.2s ease;
}

.hdash-bar--green {
    background: var(--color-primary-signal);
}

.hdash-bar--amber {
    background: var(--signal-warning);
}

.hdash-bar--red {
    background: var(--signal-error);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
}

.hdash-bin-pct {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    text-align: right;
}

.hdash-bin-status {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    text-align: center;
}

.hdash-status--ok {
    color: var(--color-primary-signal);
    background: rgba(34, 197, 94, 0.12);
}

.hdash-status--warn {
    color: var(--signal-warning);
    background: rgba(245, 158, 11, 0.12);
}

.hdash-status--crit {
    color: var(--signal-error);
    background: rgba(239, 68, 68, 0.15);
    animation: crit-blink 1.2s ease-in-out infinite;
}

@keyframes crit-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.55;
    }
}

/* KPI chips */
.hdash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.hdash-kpi-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.6rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    animation: kpi-chip-pulse 5s ease-in-out infinite;
    animation-fill-mode: both;
}

@keyframes kpi-chip-pulse {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
    }
    15% {
        border-color: rgba(212, 175, 55, 0.70);
        box-shadow: 0 0 14px rgba(212, 175, 55, 0.30), inset 0 0 8px rgba(212, 175, 55, 0.08);
        background: rgba(212, 175, 55, 0.08);
    }
    35% {
        border-color: rgba(255, 255, 255, 0.08);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
    }
}

/* Sequential scan: left → middle → right, repeating */
.hdash-kpi-chip:nth-child(1) { animation-delay: 0s; }
.hdash-kpi-chip:nth-child(2) { animation-delay: 1.2s; }
.hdash-kpi-chip:nth-child(3) { animation-delay: 2.4s; }

@media (prefers-reduced-motion: reduce) {
    .hdash-kpi-chip { animation: none; }
}

.hdash-kpi-val {
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary-dim);
}

.hdash-kpi-lbl {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.3;
}

/* Alert row */
.hdash-alert {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 8px;
    padding: 0.6rem 0.9rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.8);
    animation: hdash-flash 3s ease-in-out infinite;
    will-change: opacity;
}

@keyframes hdash-flash {

    0%,
    80%,
    100% {
        opacity: 1;
    }

    90% {
        opacity: 0.6;
    }
}

.hdash-alert-icon {
    font-size: 0.9rem;
}

/* Floating proof pill */
.hero-float-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(180, 140, 20, 0.92) 0%, rgba(212, 175, 55, 0.90) 100%);
    border: 1px solid rgba(253, 230, 138, 0.3);
    border-radius: 50px;
    padding: 0.55rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #1a1000;
    box-shadow: 0 8px 24px rgba(180, 140, 20, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.2);
    animation: pill-rise 7s ease-in-out infinite;
}

@keyframes pill-rise {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hero-float-icon {
    font-size: 1rem;
}

/* ===================== HERO PEDIGREE ROW ===================== */
/* Updated with RHS Gradient and Increased Logo Size */
.hero-pedigree {
    grid-column: 1 / -1;
    margin-top: 0.5rem; /* Tightened gap between pills and logos */
    padding: 1.5rem 2rem;
    
    /* RHS se subtle background start hota hai aur LHS par transparent ho jata hai */
    background: linear-gradient(90deg, 
                rgba(255, 255, 255, 0) 100%), 
                rgba(255, 255, 255, 0.02) 70%, 
                rgba(255, 255, 255, 0.06) 0%;
    		
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-pedigree-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

.hero-pedigree-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Larger Logos (75px) with Neutral Grey Look for Light/Mixed Backgrounds */
.hero-pedigree-logo {
    height: 75px; 
    width: auto;
    object-fit: contain;
    /* Neutral Grey Filter: 
       grayscale(1) turns off color, 
       brightness(0.5) makes it a solid medium grey 
    */
    filter: grayscale(1) brightness(0.5); 
    opacity: 0.7; /* Slight transparency to blend with pinkish tones */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover: Full Brand Color Restoration */
.hero-pedigree-logo:hover {
    filter: grayscale(0) brightness(1) !important; 
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
}

/* ===================== SCROLL THEATRE (Acts 1–6) ===================== */
/* Pure black — seamlessly continues from cinematic's dark end frame.
   No imagery, no dividers. Typography carries everything. */
.scroll-theatre {
    background: #000;
    padding: 0 1.5rem;
    text-align: center;
}

/* Each act: generous breathing room so each line lands separately. */
.theatre-act {
    padding: min(20vh, 140px) 0;
    max-width: 720px;
    margin: 0 auto;
}

/* Scoped refinement for the newly added problem theatre section */
.problem-theatre {
    padding-block: min(10vh, 80px);
}

.problem-theatre .theatre-act {
    padding-block: min(24vh, 200px);
    max-width: 760px;
}

.problem-theatre .theatre-act p {
    margin: 0;
    max-width: 34ch;
    margin-inline: auto;
    text-align: center;
    font-size: clamp(1.12rem, 1.05rem + 0.45vw, 1.4rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.problem-theatre .theatre-act p + p {
    margin-top: 0.7rem;
}

.problem-theatre .theatre-act strong {
    color: #fff;
    font-weight: 600;
}
/* Hidden only when JS/GSAP is running — prevents black void if GSAP fails */
.gsap-ready .theatre-act {
    opacity: 0;
}

/* Question act gets slightly more top space for dramatic separation */
.theatre-act--question {
    padding-top: min(22vh, 150px);
}

/* Subtle horizontal rule before the question — sets it apart without labelling it */
.ta-rule {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto 2.5rem;
}

/* Base line style */
.ta-line {
    margin: 0;
    line-height: 1.45;
}

/* ACT 1 — gentle opening, slightly muted */
.ta-line--open {
    font-family: var(--ff-head);
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
}

/* ACT 2 — sharpest line; italic for the contrast word */
.ta-line--sharp {
    font-family: var(--ff-head);
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
}

/* ACT 3 — staccato rhythm; body register, word-spaced */
.ta-line--staccato {
    font-size: clamp(0.95rem, 1.6vw, 1.15rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.52);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.6;
}
.ta-cycle {
    display: block;
    margin-top: 0.65rem;
    font-size: 0.9em;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.38);
    text-transform: none;
}

/* ACT 4 — direct address; near-full brightness, serif weight */
.ta-line--question {
    font-family: var(--ff-head);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.5;
}

/* ACT 5 — the thesis; largest type in the section, bold, italic callback */
.ta-line--thesis {
    font-family: var(--ff-head);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}
/* Italic "visibility" echoes the cinematic's italic "the Bin" */
.ta-line--thesis em {
    font-style: italic;
    font-weight: 700;
}

/* ACT 6 — quiet bridge; body font, muted */
.ta-line--bridge {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
    line-height: 1.7;
}

/* ===================== ORBITAL BREAK ===================== */
.orbital-break {
    background: #ffffff;
    padding: 2.75rem 1rem;
    text-align: center;
}

.orbital-break-text {
    font-family: var(--ff-head);
    font-size: clamp(0.86rem, 1.25vw, 1.05rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #334155;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
	
}

/* ===================== HERO RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 3rem; /* single-column stacking gap */
    }

    .hero-visual {
        align-items: center;
    }

    .hdash-card {
        max-width: 480px;
    }

    .hero {
        min-height: 0; /* 'auto' unsupported in Firefox — use 0 to reset */
        padding: 5rem 0 4rem;
    }

    /* Pedigree strip still spans the full single column */
    .hero-pedigree {
        grid-column: 1 / -1;
    }

    /* Logos: allow wrapping at tablet widths */
    .hero-pedigree-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem 2rem;
    }
}

@media (max-width: 640px) {
    /* Stats: switch to 2×2 grid — wrap two pills per row */
    .hero-proof-strip {
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .hero-proof-item {
        /* Exactly two pills per row with a gap of 0.5rem */
        flex: 0 0 calc(50% - 0.25rem);
        min-width: 0;
        padding: 0.55rem 1rem 0.55rem 0.75rem;
    }

    .hero-proof-num {
        font-size: 1.75rem;
    }

    /* Pedigree logos: centered, wrap freely into two rows */
    .hero-pedigree-logos {
        justify-content: space-around;
        flex-wrap: wrap;
        gap: 1.25rem 1rem;
    }

    .hero-pedigree-logo {
        max-height: 22px;
        flex: 0 1 auto;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-cta-primary,
    .hero-cta-ghost {
        text-align: center;
        justify-content: center;
    }

    .hdash-card {
        max-width: 100%;
    }
}

/* ===================== TRUST BAR ===================== */
.trust-bar {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 2rem 0;
}

.trust-bar-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-tertiary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.trust-logo {
    height: 80px;
    width: auto;
    opacity: 0.65;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.trust-logo:hover {
    opacity: 1;
}

/* ===================== CINEMATIC SEQUENCE ===================== */
/* GSAP pin spacer — solid dark prevents white/image flash during pin scroll.
   No background-image here: the pinned cine-frame always covers the viewport,
   so a simple #000 fill is all that's needed to hide the spacer gap. */
.pin-spacer:has(#cine-frame),
[data-gsap-pin-spacer]:has(#cine-frame) {
    background: #0a0f19;
}

.cine-frame {
    position: relative;
    z-index: 100; /* Must be explicit so GSAP's position:fixed stacks above hero (z-index:2) */
    width: 100%;
    height: min(100dvh, 1080px);
    overflow: hidden;
    background-image: url('assets/images/problem-bg.webp');
    background-size: cover;
    background-position: center;
}

/* Hide cine-frame once GSAP unpins it — prevents background-image bleed */
.cine-frame.cine-done {
    visibility: hidden;
}

.cine-bg-overlay {
    position: absolute;
    inset: 0;
    background: #000;
    opacity: 0.78;
    z-index: 0;
}

.cine-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 6vw;
    z-index: 1;
}

.cine-screen .cine-line,
.cine-screen .cine-stat,
.cine-screen .cine-the-bin {
    will-change: transform, opacity;
}

.cine-line {
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
    margin: 0;
}

.cine-line strong {
    font-weight: 600;
    color: #fff;
}

.cine-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.cine-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.cine-stat-unit {
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.cine-the-bin {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Ghosted logo behind "the Bin" */
.cine-bin-ghost {
    position: absolute;
    width: clamp(200px, 40vw, 380px);
    height: auto;
    opacity: 0;
    filter: invert(1) brightness(2);
    pointer-events: none;
    z-index: 0;
    will-change: opacity;
}

/* Progress dots */
.cine-progress {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.cine-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.4s, transform 0.4s;
}

.cine-dot.active {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.4);
}

/* ===================== CHALLENGES SECTION UPGRADES ===================== */
/* B: Dark-to-light transition bridge */
.section--bg-secondary {
    position: relative;
}
.section--bg-secondary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* C: Card visual polish */
.challenge-card {
    border-top: 3px solid #d97706;
}
.challenge-card .card-img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
#challenges-grid {
    gap: 1.5rem;
}

/* Red tension gradient on problem cards */
.challenge-card {
    position: relative;
}
.challenge-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 60%, rgba(239, 68, 68, 0.05));
    pointer-events: none;
    border-radius: inherit;
}

/* Desaturate problem images */
.challenge-card .card-img {
    filter: grayscale(20%);
}

/* Problem divider */
.problem-divider {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-style: italic;
    font-weight: 400;
    color: #b91c1c;
    margin: 3rem 0 0.75rem;
    opacity: 1;
    position: relative;
    padding-top: 1.5rem;
}
.problem-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #ef4444;
}

/* ===================== SECTION MODIFIERS ===================== */
.section--kpi-gradient {
    background: var(--surface-neutral);
    border-top: 3px solid var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
}

.section--bg-secondary {
    background: #ffffff;
}

/* ===================== EVIDENCE STRIP (Acts 7–8) ===================== */
/* Three photographs, each carrying a single indicting sentence.
   No tags, no titles, no institutional scaffolding — just image + verdict. */
.evidence-strip {
    background: #0D0F12;
}

/* Three images side-by-side on desktop, stacked on mobile */
.ev-frame {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.ev-card {
    position: relative;
    flex: 1;
    overflow: hidden;
    height: clamp(380px, 70vh, 700px);
}
.gsap-ready .ev-card { opacity: 0; }

.ev-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(25%) brightness(0.62);
    transition: filter 0.6s ease;
}
.ev-card:hover img {
    filter: grayscale(8%) brightness(0.78);
}

/* Dark gradient — heavier at bottom so sentence is always readable */
.ev-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.18) 40%,
        rgba(0, 0, 0, 0.78) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* The single verdict sentence per image */
.ev-sentence {
    position: absolute;
    bottom: 2.2rem;
    left: 1.5rem;
    right: 1.5rem;
    text-align: center;
    font-family: var(--ff-head);
    font-size: clamp(1rem, 1.8vw, 1.45rem);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.4;
    margin: 0;
    z-index: 2;
}

/* Thin separator between cards on desktop */
.ev-card + .ev-card {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

/* ACT 8 — consequence statement below the three images */
.ev-consequence {
    text-align: center;
    padding: 80px 1.5rem 100px;
    max-width: 640px;
    margin: 0 auto;
}
.gsap-ready .ev-consequence { opacity: 0; }
.ev-con-line1 {
    font-family: var(--ff-head);
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    font-weight: 400;
    color: rgba(234, 230, 223, 0.48);
    margin: 0 0 6px;
    line-height: 1.3;
}
.ev-con-line2 {
    font-family: var(--ff-head);
    font-size: clamp(1.3rem, 2.6vw, 1.9rem);
    font-weight: 400;
    color: rgba(234, 230, 223, 0.72);
    margin: 0;
    line-height: 1.3;
}
/* "normal" — the kill shot */
.ev-con-line2 strong {
    font-weight: 700;
    color: #EAE6DF;
}

/* ===================== VERDICT FRAME (Act 9) ===================== */
/* Two lines. Nothing else. */
.verdict-frame {
    background: #0D0F12;
    padding: 100px 1.5rem 120px;
    text-align: center;
}
.gsap-ready .verdict-frame { opacity: 0; }
.verdict-line1 {
    font-family: var(--ff-head);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: rgba(234, 230, 223, 0.48);
    margin: 0 0 4px;
    line-height: 1.25;
}
.verdict-line2 {
    font-family: var(--ff-head);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #EAE6DF;
    margin: 0;
    line-height: 1.25;
}

/* ===================== BRIDGE LINE (Act 10) ===================== */
/* Visual seam: dark problem world → light solution world.
   Text stays in the dark upper portion for clean readability. */
.bridge-line {
    background: linear-gradient(180deg, #0D0F12 0%, #0D0F12 28%, #f0f5f2 100%);
    padding: 80px 1.5rem 130px;
    text-align: center;
}
.gsap-ready .bridge-line { opacity: 0; }
.bridge-text {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-style: italic;
    color: rgba(234, 230, 223, 0.62);
    letter-spacing: 0.015em;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* ── Responsive: stack evidence images on tablet / mobile ───── */
@media (max-width: 860px) {
    .ev-frame {
        flex-direction: column;
    }
    .ev-card {
        height: 56vw;
        min-height: 260px;
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
    .ev-card + .ev-card { border-left: none; }
    .ev-sentence {
        font-size: clamp(1.05rem, 3.5vw, 1.3rem);
    }
}
@media (max-width: 480px) {
    .theatre-act { padding: min(14vh, 80px) 0; }
    .problem-theatre .theatre-act { padding-block: min(18vh, 120px); }
    .problem-theatre .theatre-act p { font-size: clamp(1.06rem, 1rem + 0.8vw, 1.2rem); }
    .ta-line--thesis { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .verdict-line1, .verdict-line2 { font-size: 1.5rem; }
    .ev-consequence { padding: 60px 1.5rem 80px; }
    .verdict-frame { padding: 80px 1.5rem 90px; }
}

.section--bg-elevated {
    background: #f0f5f2;
}

.section--alt {
    background: #ffffff;
}

.section--bordered {
    border-top: 2px solid rgba(22,163,74,0.1);
}

.section:has(.anatomy-layout) {
    background: #f0f5f2;
}

#kpis {
    background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-1) 100%);
    border-top: 1px solid #e6ecf0;
}

/* ===================== CARD MODIFIERS ===================== */
.card-list li::before {
    content: '• ';
}

/* ===================== RESULT STRIP ===================== */
.result-strip {
    margin-top: 2.5rem;
    padding: 1.5rem 2rem;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.result-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.result-strip:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.result-strip:hover::after {
    transform: scaleX(1);
}

.challenge-result::after {
    background: #b91c1c;
}

.challenge-result:hover {
    border-color: #b91c1c;
}

.result-strip-main {
    margin: 0 0 0.5rem;
    font-weight: 500;
}

/* ===================== TOGGLE CONTROLS ===================== */
.toggle-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-interactive {
    min-width: 220px;
}

.smart-btn-wrap {
    position: relative;
    display: inline-block;
}

.smart-click-pointer {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: var(--surface-eco);
    border: 1px dashed var(--color-primary);
    color: var(--color-primary-hover);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
    animation: smart-pointer-bob 1.9s ease-in-out infinite;
}

.smart-click-pointer span {
    display: inline-block;
    margin-left: 0.2rem;
    font-size: 0.82rem;
}

@keyframes smart-pointer-bob {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-3px);
    }
}

.smart-click-hint--hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.btn-traditional-active {
    background: var(--signal-error);
    border-color: var(--signal-error);
    color: white !important;
}

.btn-traditional-active:hover {
    background: var(--signal-error);
    color: white !important;
}

.btn-smart-active {
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.3);
}

/* Cinematic glow animations for toggle buttons */
/* Note: @keyframes shimmer removed — orphaned in this file.
   page-esg-analytics.css and page-industries.css define their own copies. */

@keyframes edgePulseSmart {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(34, 197, 94, 0.4);
        border-color: rgba(34, 197, 94, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.8);
        border-color: var(--color-primary-signal);
    }
}

@keyframes edgePulseTraditional {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(239, 68, 68, 0.3);
        border-color: rgba(239, 68, 68, 0.4);
    }

    50% {
        box-shadow: 0 0 15px rgba(239, 68, 68, 0.6);
        border-color: var(--signal-error);
    }
}

/* ===================== COMPARE PANELS ===================== */
.compare-panel {
    display: block;
    padding: 2.5rem;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 320px;
}

/* Full-card background SVG — sits behind all text */
.compare-bg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.compare-panel--visible {
    display: block;
}

.compare-panel--hidden {
    display: none;
}

.compare-panel--green-border {
    border: 1px solid rgba(22,163,74,0.15);
}

/* ── Entry animation ── */
.compare-panel--entering {
    animation: compare-panel-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes compare-panel-enter {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.compare-panel-title {
    margin-bottom: 1.5rem;
}

.compare-panel-title--red {
    color: var(--signal-error);
}

.compare-panel-title--green {
    color: var(--color-primary);
}

/* ── Traditional panel — darker on text-left, tones down to right ── */
#traditionalMode {
    background: linear-gradient(to right, #c8bfb5 0%, #d8cfc5 38%, #e4dcd2 100%);
    border: 1px solid #d4ccc2;
    border-left: 3px solid #b5a89a;
}

#traditionalMode .compare-panel-title--red {
    opacity: 0.9;
}

/* ── SmartBin panel — clean, deeper green on text-left, fresh white-green right ── */
#smartMode {
    background: linear-gradient(to right, #d8f0e0 0%, #e8f8ee 38%, #f4fdf6 100%);
    border: 1px solid rgba(22, 163, 74, 0.2);
    border-left: 3px solid #16a34a;
}

/* ── SVG scene element animations ── */
.fly {
    animation: fly-buzz 0.9s ease-in-out infinite alternate;
}
@keyframes fly-buzz {
    from { transform: translate(0, 0); }
    to   { transform: translate(3px, -5px); }
}

.smell-wave {
    animation: smell-drift 2.2s ease-in-out infinite;
    transform-origin: bottom center;
}
@keyframes smell-drift {
    0%, 100% { opacity: 0.25; transform: translateY(0) scaleX(1); }
    50%       { opacity: 0.65; transform: translateY(-8px) scaleX(1.15); }
}

.sparkle {
    animation: sparkle-twinkle 2s ease-in-out infinite;
    transform-box: fill-box;
    transform-origin: center;
}
@keyframes sparkle-twinkle {
    0%, 100% { opacity: 0.15; transform: scale(0.65); }
    50%       { opacity: 1;    transform: scale(1.25); }
}

.smart-bin-glow {
    animation: bin-glow-pulse 3s ease-in-out infinite;
}
@keyframes bin-glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 2px rgba(22,163,74,0.15)); }
    50%       { filter: drop-shadow(0 0 9px rgba(22,163,74,0.5)); }
}

.compare-timeline {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.compare-list {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.compare-list--cross li::before {
    content: '✗  ';
    color: var(--signal-error);
}

.compare-list--check li::before {
    content: '✓  ';
    color: var(--color-primary);
}

.compare-result {
    margin-top: 2rem;
    padding: 1rem;
    border-radius: 10px;
}

.compare-result--red {
    background: rgba(239, 68, 68, 0.08);
}

.compare-result--green {
    background: rgba(22, 163, 74, 0.08);
}

.compare-micro-title {
    margin-bottom: 0.75rem;
}

.compare-micro-title--red {
    color: var(--signal-error);
}

.compare-micro-title--green {
    color: var(--color-primary);
}

.compare-micro-footer {
    margin-top: 1rem;
}

/* Traditional micro box: match red accent of Traditional BINS button */
.compare-micro-grid > .card:first-child {
    border: 1px solid rgba(239, 68, 68, 0.45);
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.18);
    animation: edgePulseTraditional 2.4s ease-in-out infinite;
}

/* Smart micro card — highlighted when Aarush-Operated is active */
.compare-micro--smart-active {
    border: 2px solid rgba(34, 197, 94, 0.85) !important;
    box-shadow: 0 0 24px rgba(34, 197, 94, 0.55) !important;
    animation: edgePulseSmart 2.4s ease-in-out infinite !important;
    transform: scale(1.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    position: relative;
}

/* Traditional micro card — dimmed when smart mode is active */
.compare-micro--dimmed {
    opacity: 0.45;
    filter: grayscale(40%);
    animation-play-state: paused !important;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.compare-insight-line {
    text-align: center;
    max-width: 600px;
    margin: 2.5rem auto 0;
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
}

/* ===================== CTA GREEN STRIP ===================== */
.cta-green-strip {
    margin-top: 4rem;
    padding: 2.5rem 2rem;
    text-align: center;
    background: #f0faf3;
    border-radius: 12px;
    border: 2px solid rgba(22,163,74,0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-green-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.cta-green-strip:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary);
}

.cta-green-strip:hover::after {
    transform: scaleX(1);
}

.cta-green-strip h3 {
    margin-bottom: 1rem;
}

.cta-green-strip-checks {
    margin-top: 1rem;
    font-weight: 500;
}

.cta-green-strip-sub {
    margin-top: 1rem;
    font-weight: 600;
}

/* ===================== MONUMENT — REAL-WORLD IMPACT ===================== */
.monument {
    background: linear-gradient(170deg, #0f172a 0%, #1e293b 55%, #14532d 100%);
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
    color: #e2e8f0;
}
.monument::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.monument::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Header */
.monument-header {
    text-align: center;
    margin-bottom: 4rem;
}
.monument-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 50px;
    padding: 0.4rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4ade80;
    margin-bottom: 1.5rem;
}
.monument-eyebrow .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    display: inline-block;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.monument-title {
    font-family: var(--ff-head);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    color: #f1f5f9;
}
.monument-title span {
    color: #4ade80;
}

/* Stats row */
.monument-stats {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 3.5rem;
}
.monument-stat {
    flex: 1;
    text-align: center;
    padding: 0 2rem;
    max-width: 340px;
}
.monument-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(180deg, transparent 0%, rgba(74,222,128,0.3) 30%, rgba(74,222,128,0.3) 70%, transparent 100%);
    flex-shrink: 0;
}
.monument-num {
    display: block;
    font-family: var(--ff-head);
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1;
    color: #4ade80;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
}
.monument-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(148,163,184,0.9);
    margin-bottom: 1rem;
}
.monument-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(203,213,225,0.75);
    max-width: 280px;
    margin: 0 auto;
}

/* Proof strip */
.monument-proof {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(74,222,128,0.12);
    border-radius: 12px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.monument-proof-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #4ade80;
    margin-bottom: 0.75rem;
}
.monument-proof-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.monument-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #cbd5e1;
    font-weight: 500;
}
.monument-proof-item svg {
    color: #4ade80;
}

/* Outcomes strip */
.monument-outcomes {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.monument-outcome {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(203,213,225,0.8);
}
.monument-outcome svg {
    color: #4ade80;
    flex-shrink: 0;
}

/* CTA */
.monument-cta {
    text-align: center;
}
.monument .btn-primary {
    background: linear-gradient(135deg, #16a34a 0%, #059669 100%);
    color: #fff;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 30px rgba(34,197,94,0.2);
}
.monument .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(34,197,94,0.35);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .monument {
        padding: 4rem 0 3.5rem;
    }
    .monument-header {
        margin-bottom: 2.5rem;
    }
    .monument-stats {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }
    .monument-stat {
        padding: 0;
    }
    .monument-divider {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(74,222,128,0.3), transparent);
    }
    .monument-proof-items {
        flex-direction: column;
        gap: 0.75rem;
    }
    .monument-outcomes {
        gap: 1.2rem;
    }
}

/* ===================== MODEL CARDS ===================== */
.revenue-models-section {
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    background:
        radial-gradient(120% 120% at 100% 0%, rgba(184, 134, 11, 0.08) 0%, transparent 42%),
        linear-gradient(180deg, var(--surface-2) 0%, var(--surface-1) 100%);
}

.model-card {
    position: relative;
}

.model-badge-top {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.model-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.model-for {
    margin-bottom: 1.25rem;
}

.model-desc {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.model-highlight-tag {
    background: var(--color-bg-tertiary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.model-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.model-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.model-list li:last-child {
    border-bottom: none;
}

.model-cta {
    width: 100%;
    display: block;
    text-align: center;
}

/* ===================== PILOT PROOF (CTA SECTION) ===================== */
/* .pilot-item / .pilot-name / .pilot-loc — defined in technology-section.css below */

/* ═══════════════════════════════════════════════════════════════
   FROM technology-section.css — NON-DUPLICATE RULES ONLY
   (tokens, reset, body, .container, .section, .badge, .card,
    .btn, .reveal are already in global.css / components.css)
═══════════════════════════════════════════════════════════════ */

/* ── SECTION HEADER (tech-section variant) ── */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* ── COMPARISON ARENA ── */
.comparison-arena {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 0;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: none;
}

.arena-col {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--color-border);
}

.arena-col:last-child {
    border-right: none;
}

.arena-col--smart {
    background: #f0f5f2;
    border-top: 2px solid rgba(22,163,74,0.35);
    border-bottom: 2px solid rgba(22,163,74,0.35);
    position: relative;
    z-index: 2;
    box-shadow: none;
}

.arena-col--smart::after {
    display: none;
}

.arena-label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.label--trad {
    background: rgba(239, 68, 68, 0.1);
    color: var(--signal-error);
}

.label--smart {
    background: rgba(22, 163, 74, 0.1);
    color: var(--color-primary);
}

.label--other {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent);
}

.arena-title {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--color-text-primary);
}

.arena-col--smart .arena-title {
    color: var(--color-primary-dark);
}

.arena-sub {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.arena-col--smart .arena-sub {
    border-bottom-color: rgba(22, 163, 74, 0.2);
}

.af-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.af-row:last-child {
    border-bottom: none;
}

.arena-col--smart .af-row {
    color: var(--color-text-primary);
}

.af-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.af-icon--x {
    background: rgba(239, 68, 68, 0.1);
    color: var(--signal-error);
}

.af-icon--ok {
    background: rgba(22, 163, 74, 0.1);
    color: var(--color-primary);
}

.af-icon--warn {
    background: rgba(245, 158, 11, 0.1);
    color: var(--color-accent);
}

/* ── SMARTBIN ANATOMY ── */
.anatomy-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.bin-stage {
    background: #ffffff;
    border: 2px solid rgba(22,163,74,0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.bin-stage-lbl {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-top: 1.25rem;
    margin-bottom: 0;
}

#binCanvas {
    border-radius: 12px;
    max-width: 100%;
}

/* ── Bin Effect Overlay ── */
.bin-stage { position: relative; }
.bin-effect-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

/* Ultrasonic waves — now canvas-drawn, overlay only has fill label */
.fx-fill-label {
    position: absolute; left: 50%; bottom: 28%;
    transform: translateX(-50%);
    font-size: 0.7rem; font-weight: 600;
    color: #3b82f6; background: rgba(255,255,255,0.92);
    padding: 2px 8px; border-radius: 4px;
    box-shadow: 0 1px 6px rgba(59,130,246,0.2);
    animation: fxFadeInUp 0.4s ease-out;
}

/* Mini dashboard */
.fx-dashboard {
    position: absolute; right: 6px; top: 18%;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(22,163,74,0.2);
    border-radius: 8px; padding: 8px 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    font-size: 0.6rem; line-height: 1.6;
    color: #334155; min-width: 110px;
    animation: fxFadeInUp 0.4s ease-out;
}
.fx-dashboard strong { color: #16a34a; }
.fx-dash-row { display: flex; justify-content: space-between; gap: 6px; }
.fx-dash-row + .fx-dash-row { border-top: 1px solid #f1f5f9; padding-top: 3px; margin-top: 3px; }

/* Solar — now canvas-drawn */

/* Alert state */
.fx-alert-glow {
    position: absolute; inset: 0;
    border: 2px solid rgba(239,68,68,0.4);
    border-radius: 12px;
    animation: alertPulse 1.2s ease-in-out infinite;
}
@keyframes alertPulse {
    0%,100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
    50%     { box-shadow: 0 0 18px 4px rgba(239,68,68,0.2); }
}
.fx-alert-panel {
    position: absolute; left: 50%; top: 10%;
    transform: translateX(-50%);
    background: rgba(254,242,242,0.96);
    border: 1px solid #fca5a5;
    border-radius: 8px; padding: 8px 12px;
    font-size: 0.65rem; font-weight: 600;
    color: #dc2626; white-space: nowrap;
    box-shadow: 0 4px 12px rgba(239,68,68,0.15);
    animation: fxFadeInUp 0.4s ease-out;
}

@keyframes fxFadeInUp {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.readout-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1.25rem 0 0.75rem;
}

.readout-pct {
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 70px;
}

.readout-bar-track {
    flex: 1;
    height: 10px;
    background: var(--color-bg-tertiary);
    border-radius: 50px;
    overflow: hidden;
}

.readout-bar-fill {
    height: 100%;
    border-radius: 50px;
    background: var(--color-primary);
    transition: width 0.5s ease;
}

.slider-wrap {
    margin: 0.75rem 0;
}

.slider-wrap label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: var(--color-bg-tertiary);
    border-radius: 50px;
    outline: none;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
    cursor: pointer;
    border: none;
}

.bin-status-row {
    margin-top: 1rem;
}

.anat-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 0.5rem;
}

.anat-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--color-primary);
    border-radius: 50px;
    transition: height 0.3s ease;
}

.anat-row:hover::before,
.anat-row.active::before {
    height: 70%;
}

.anat-row:hover,
.anat-row.active {
    background: var(--color-bg-secondary);
    border-color: var(--color-border);
}

.anat-row:last-child {
    margin-bottom: 0;
}

.anat-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.anat-row:hover .anat-icon-box,
.anat-row.active .anat-icon-box {
    background: rgba(22, 163, 74, 0.08);
    border-color: rgba(22, 163, 74, 0.25);
}

.anat-body h4 {
    font-size: 0.975rem;
    margin-bottom: 0.35rem;
}

.anat-body p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
    margin-bottom: 0.5rem;
}

.anat-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    background: rgba(22, 163, 74, 0.1);
    color: var(--color-primary);
}

/* ── MAP SECTION LAYOUT ── */
/* Section layout — align-items: start prevents left column stretching
   when right column height changes due to JS entries */
.map-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Right column: explicit flex column so queue-strip and event-log
   participate in a stable stacking context with flex-shrink: 0 */
.map-right-col {
    display: flex;
    flex-direction: column;
}

/* Stat chips (light-mode version, in mapSection the dark overrides apply from live-operations.css) */
.live-chips {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.live-chip {
    background: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.25rem;
    transition: all 0.2s ease;
}

.live-chip:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.chip-num {
    font-family: var(--ff-head);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a2b3d;
    display: block;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.chip-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: #5a6a78;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── KPI SECTION ── */
.kpi-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.kpi-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-border);
}

.kpi-tab {
    padding: 0.65rem 1.25rem;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--color-text-muted);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.kpi-tab:hover {
    color: var(--color-primary);
}

.kpi-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.kpi-panel {
    display: none;
}

.kpi-panel.active {
    display: block;
}

.kpi-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
    border-radius: 8px;
    transition: background 0.2s;
}

.kpi-row:last-child {
    border-bottom: none;
}

.kpi-row:hover {
    background: var(--color-bg-secondary);
}

.kpi-val {
    font-family: var(--ff-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    min-width: 68px;
}

.kpi-bar-wrap {
    flex: 1;
}

.kpi-bar {
    height: 6px;
    background: var(--color-bg-tertiary);
    border-radius: 50px;
    overflow: hidden;
}

.kpi-fill {
    height: 100%;
    border-radius: 50px;
    background: var(--color-primary);
    width: 0;
    transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.kpi-label {
    font-size: 0.82rem;
    color: var(--color-text-secondary);
    min-width: 165px;
}

.kpi-ring-card {
    background: var(--color-bg-secondary);
    border-radius: 24px;
    border: 1px solid var(--color-border);
    padding: 1.5rem 2rem;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.kpi-ring-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
    pointer-events: none;
}

.kpi-ring-num {
    font-family: var(--ff-head);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    line-height: 1;
}

.kpi-ring-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.kpi-ring-legend {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.kpi-leg {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    font-weight: 500;
}

.kpi-leg::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.kpi-leg.c::before {
    background: var(--color-primary);
}

.kpi-leg.w::before {
    background: var(--signal-warning);
}

.kpi-leg.o::before {
    background: var(--signal-info);
}

/* ── FINAL CTA ── */
.cta-final {
    background: linear-gradient(170deg, #f0faf3 0%, #f5f9ff 40%, #fefefe 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.10) 0%, transparent 70%);
    pointer-events: none;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #16a34a !important;
    margin-bottom: 1.25rem;
}

/* ── Bridge line: "This is what AARUSH was built to deliver." ── */
.cta-lead {
    font-family: var(--ff-head, 'DM Serif Display', Georgia, serif);
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    font-weight: 400;
    font-style: italic;
    color: #3d6b3a;          /* muted forest green — decisive, not harsh */
    letter-spacing: 0.01em;
    line-height: 1.5;
    margin: 0 auto 1.1rem;
    max-width: 460px;
}

.cta-title {
    font-family: var(--ff-head);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.1;
    color: #1a2b3d !important;
    margin-bottom: 1.25rem;
}

.cta-title span {
    color: #16a34a !important;
}

.cta-sub {
    font-size: 1.05rem;
    color: #5a6a78 !important;
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.btn-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cta-p {
    background: var(--color-primary);
    color: #fff !important;
    padding: 1rem 2.25rem;
    font-size: 1rem;
    box-shadow: none;
}

.btn-cta-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.50);
}

.btn-cta-g {
    background: rgba(22,163,74,0.08);
    color: #1a2b3d !important;
    border: 1px solid rgba(22,163,74,0.2);
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-cta-g:hover {
    background: rgba(255, 255, 255, 0.14);
}

.pilot-proof {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.pilot-item {
    text-align: center;
}

.pilot-name {
    font-weight: 700;
    color: #1a2b3d;
    font-size: 0.9rem;
}

.pilot-name--green {
    color: var(--color-primary-signal);
}

.pilot-loc {
    font-size: 0.78rem;
    color: #5a6a78;
    margin-top: 0.15rem;
}

/* ── TOOLTIP (map section, light fallback) ── */
.map-tooltip {
    position: absolute;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 0.875rem 1.1rem;
    font-size: 0.8rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.map-tooltip.show {
    opacity: 1;
}

.tip-title {
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
}

.tip-detail {
    color: var(--color-text-secondary);
    font-size: 0.78rem;
}

/* ═══════════════════════════════════════════════════════════════
   FROM live-operations.css — COMPLETE (map section dark theme)
═══════════════════════════════════════════════════════════════ */

#mapSection {
    background: var(--surface-infra-dark);
    position: relative;
    overflow: hidden;
}

#mapSection::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.16) 0%, transparent 70%);
    pointer-events: none;
}

#mapSection::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

#mapSection .section-title {
    color: var(--text-on-dark);
}

#mapSection .section-title span {
    color: var(--color-primary-signal);
}

#mapSection p {
    color: var(--text-on-dark-body) !important;
}

#mapSection .badge--success {
    background: rgba(34, 197, 94, 0.18);
    color: #dcfce7;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.map-canvas-card {
    position: relative;
    border-radius: 18px;
    overflow: visible;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.10),
        0 12px 40px rgba(0, 0, 0, 0.55),
        0 2px 0 rgba(255, 255, 255, 0.04) inset;
    background: var(--struct-mid);
}

#mapCanvas {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    cursor: crosshair;
}

/* Dark chip overrides (inside #mapSection) */
#mapSection .live-chip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    padding: 1.25rem;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: border-color .25s, background .25s, box-shadow .25s;
}

#mapSection .live-chip:hover {
    border-color: rgba(34, 197, 94, 0.45);
    background: rgba(34, 197, 94, 0.14);
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.2);
}

#mapSection .chip-num {
    color: var(--text-on-dark);
}

#mapSection #stat-alerts {
    color: var(--signal-warning);
}

#mapSection .chip-lbl {
    color: var(--text-on-dark-label);
}

#mapSection .btn-primary {
    background: var(--color-primary);
    box-shadow: none;
}

#mapSection .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.42);
}

.map-override-hint {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--struct-mid);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 0.28rem 1rem 0.28rem 0.65rem;
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(203, 213, 225, 0.90);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45), 0 0 12px rgba(255, 255, 255, 0.04);
    white-space: nowrap;
    z-index: 10;
    pointer-events: none;
    animation: hintFloat 3s ease-in-out infinite;
}

@keyframes hintFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-3px);
    }
}

/* Dark tooltip (inside #mapSection) */
#mapSection .map-tooltip {
    background: var(--struct-mid);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

#mapSection .tip-title {
    color: #f1f5f9;
}

#mapSection .tip-detail {
    color: rgba(148, 163, 184, 0.85);
}

#mapSection .event-text {
    color: var(--text-on-dark-body);
}

/* Event log */
.event-log {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 1.1rem 1.4rem;
    margin-top: 1.25rem;
    /* Fixed height (not max-height) — empty state and full state take identical space */
    height: 182px;
    overflow: hidden;
    flex-shrink: 0;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.event-log-title {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-on-dark);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-log-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary-signal);
    animation: blink 2s infinite;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.78rem;
    color: rgba(203, 213, 225, 0.8);
    line-height: 1.4;
}

.event-item:last-child {
    border-bottom: none;
}

.event-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.event-dot--red {
    background: var(--signal-error);
    box-shadow: 0 0 5px rgba(248, 113, 113, .5);
}

.event-dot--amber {
    background: var(--signal-warning);
}

.event-dot--green {
    background: var(--color-primary-signal);
}

.event-dot--blue {
    background: var(--signal-info);
}

.event-time {
    font-family: var(--ff-head);
    font-size: 0.68rem;
    color: var(--text-on-dark-label);
    min-width: 52px;
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

/* Queue strip — fixed single-row height so JS entries never push content down */
.queue-strip {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.65rem 1.1rem;
    margin-top: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* nowrap + overflow keeps strip locked to one row regardless of entry count */
    flex-wrap: nowrap;
    overflow: hidden;
    flex-shrink: 0;
}

.qs-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-on-dark-label);
    flex-shrink: 0;
}

.qs-items {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex: 1;
}

.qs-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    animation: evSlide 0.25s ease-out;
}

.qs-pill--active {
    background: rgba(52, 211, 153, 0.1);
    color: var(--color-primary-signal);
    border: 1px solid rgba(52, 211, 153, 0.25);
}

.qs-pill--queue {
    background: rgba(251, 191, 36, 0.08);
    color: var(--signal-warning);
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.qs-empty {
    font-size: 0.72rem;
    color: var(--text-on-dark-muted);
    font-style: italic;
}

.qs-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.qs-dot--green {
    background: var(--color-primary-signal);
}

.qs-dot--amber {
    background: var(--signal-warning);
}

@keyframes evSlide {
    from {
        opacity: 0;
        transform: translateX(-4px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ═══════════════════════════════════════════════════════════════
   EXTRACTED INLINE STYLES — Refactored from index.html
═══════════════════════════════════════════════════════════════ */

.section--peace-of-mind {
    border-top: 1px solid var(--color-border);
}

.peace-section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Image: centred, capped width, full opacity, live-status overlay */
.peace-section-image-wrap {
    position: relative;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.peace-section-image {
    width: 100%;
    display: block;
    border-radius: 1rem;
    filter: brightness(0.94) saturate(1.05);
}

.peace-section-image-wrap {
    aspect-ratio: 4 / 5;      /* matches 640×800 native ratio */
    overflow: hidden;
    /* rest stays same */
}

.peace-section-image {
    width: 100%;
    height: 100%;              /* fill the wrapper */
    object-fit: cover;         /* crop cleanly, no stretch */
    object-position: center top; /* keep subject in frame */
}


/* Live status badge overlaid on image */
.peace-img-overlay {
    position: absolute;
    bottom: 0.9rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(15, 23, 42, 0.80);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    white-space: nowrap;
}
.pio-dot {
    width: 7px; height: 7px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(34,197,94,0.3);
    animation: pioBlink 2s ease-in-out infinite;
}
@keyframes pioBlink { 0%,100%{opacity:1} 50%{opacity:.4} }
.pio-label {
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Peace section split layout: image left (sticky) · cards right ── */
.peace-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.peace-img-col {
    position: sticky;
    top: 5rem;
}
/* Reset image wrap centering inside the new sticky col */
.peace-img-col .peace-section-image-wrap {
    max-width: 100%;
    margin: 0;
}
.peace-cards-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Credibility tag — bottom-right corner of image */
.peace-img-tag {
    position: absolute;
    bottom: 0.9rem;
    right: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.93);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(22,163,74,0.20);
    border-radius: 999px;
    padding: 0.28rem 0.75rem;
    font-size: 0.6rem;
    font-weight: 700;
    color: #15803d;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ── Peace-of-mind stat strip (below image) ─────────────────── */
.peace-stat-strip {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 0;
    background: var(--surface-elevated, #1e293b);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 0.75rem;
    padding: 0.85rem 0.5rem;
    margin-top: 0.75rem;
}
.pss-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    text-align: center;
    padding: 0 0.4rem;
}
.pss-num {
    font-size: 1.45rem;
    font-weight: 800;
    color: #4ade80;
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 0.1em;
}
.pss-unit {
    font-size: 0.7rem;
    font-weight: 700;
    color: #86efac;
    letter-spacing: 0.03em;
    text-transform: lowercase;
}
.pss-label {
    font-size: 0.62rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.35;
    max-width: 9ch;
}
.pss-divider {
    width: 1px;
    height: 2rem;
    background: rgba(255,255,255,0.10);
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .peace-layout {
        grid-template-columns: 1fr;
    }
    .peace-img-col {
        position: static;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Two-column pcard grid (legacy fallback, unused in new layout) */
.peace-pcard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 960px;
    margin: 0 auto 2.5rem;
}
@media (max-width: 680px) {
    .peace-pcard-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   PCARD — unified premium card (matches day-one animated system)
   Themes: pcard--amber (worker) · pcard--teal (operations)
   ════════════════════════════════════════════════════════════════ */
.pcard--amber {
    --pcard-accent:     #d97706;
    --pcard-accent-rgb: 217, 119, 6;
    --pcard-bg-from:    #fffbeb;
    --pcard-bg-to:      #ffffff;
}
.pcard--teal {
    --pcard-accent:     #0d9488;
    --pcard-accent-rgb: 13, 148, 136;
    --pcard-bg-from:    #f0fdfa;
    --pcard-bg-to:      #ffffff;
}

.pcard {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(140deg, var(--pcard-bg-from) 0%, var(--pcard-bg-to) 55%);
    border: 1.5px solid rgba(var(--pcard-accent-rgb), 0.20);
    border-radius: 1rem;
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

/* Corner glow */
.pcard::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 55%; height: 55%;
    background: radial-gradient(circle at 80% 20%,
        rgba(var(--pcard-accent-rgb), 0.10) 0%, transparent 65%);
    pointer-events: none;
}

/* Ambient breathe */
.pcard::after {
    content: '';
    position: absolute;
    inset: -30% auto auto -15%;
    width: 50%; height: 50%;
    background: radial-gradient(circle,
        rgba(var(--pcard-accent-rgb), 0.07) 0%, transparent 70%);
    pointer-events: none;
    animation: pcard-breathe 5s ease-in-out infinite;
}
@keyframes pcard-breathe {
    0%,100% { opacity: .5; transform: scale(1);    }
    50%      { opacity: 1;  transform: scale(1.15); }
}

.pcard:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--pcard-accent-rgb), 0.45);
    box-shadow:
        0 14px 36px rgba(var(--pcard-accent-rgb), 0.13),
        0 0 0 1px rgba(var(--pcard-accent-rgb), 0.15) inset;
}

/* Top row: icon + category chip */
.pcard-top {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.pcard-icon-wrap {
    width: 42px; height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--pcard-accent-rgb), 0.08);
    border: 1px solid rgba(var(--pcard-accent-rgb), 0.18);
    border-radius: 10px;
}

.pcard-category {
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(var(--pcard-accent-rgb), 1);
    background: rgba(var(--pcard-accent-rgb), 0.08);
    border: 1px solid rgba(var(--pcard-accent-rgb), 0.20);
    border-radius: 50px;
    padding: 0.25em 0.75em;
}

/* Large stat anchor */
.pcard-stat-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    position: relative;
}

.pcard-num {
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--pcard-accent);
    line-height: 1;
    letter-spacing: -0.03em;
}

.pcard-num-sup {
    font-size: 1rem;
    font-weight: 700;
    vertical-align: middle;
    opacity: 0.85;
}

.pcard-stat-desc {
    font-size: 0.76rem;
    color: #64748b;
    line-height: 1.45;
}

/* Body */
.pcard-body {
    font-size: 0.88rem;
    color: #374151;
    line-height: 1.65;
    margin: 0;
    position: relative;
}

/* Check list */
.pcard-checks {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    position: relative;
}
.pcard-checks li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: #374151;
    line-height: 1.5;
}
.pcard-checks li::before {
    content: '';
    flex-shrink: 0;
    width: 15px; height: 15px;
    margin-top: 2px;
    background: rgba(var(--pcard-accent-rgb), 0.09);
    border: 1px solid rgba(var(--pcard-accent-rgb), 0.28);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.5l2 2L7.5 2' stroke='%230d9488' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.pcard--amber .pcard-checks li::before {
    background-image: url("data:image/svg+xml,%3Csvg width='9' height='9' viewBox='0 0 9 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4.5l2 2L7.5 2' stroke='%23d97706' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Footer: standards tags */
.pcard-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(var(--pcard-accent-rgb), 0.12);
    position: relative;
}
.pcard-std {
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(var(--pcard-accent-rgb), 0.85);
    background: rgba(var(--pcard-accent-rgb), 0.06);
    border: 1px solid rgba(var(--pcard-accent-rgb), 0.20);
    border-radius: 50px;
    padding: 0.2em 0.6em;
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .pcard::after  { animation: none; }
    .pcard:hover   { transform: none; }
}

/* Stats strip */
.peace-stats-strip {
    display: grid;
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    grid-template-rows: auto auto;
    max-width: 960px;
    margin: 0 auto;
    background: rgba(13, 148, 136, 0.04);
    border: 1px solid rgba(13, 148, 136, 0.18);
    border-radius: 0.875rem;
    overflow: hidden;
}
.pss-item {
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.28rem;
    padding: 1.75rem 1rem 1.25rem;
    text-align: center;
}
.pss-icon {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: rgba(13,148,136,0.08);
    border-radius: 9px;
    margin-bottom: 0.4rem;
}
.pss-num {
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #0d9488;
    line-height: 1;
    letter-spacing: -0.03em;
}
.pss-unit-inline {
    font-size: 0.85rem; font-weight: 600;
    vertical-align: super; color: #0d9488; margin-left: 1px;
}
.pss-unit {
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: 0.58rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(13,148,136,0.55);
}
.pss-label {
    font-size: 0.76rem; color: #64748b; line-height: 1.45;
}
.pss-divider {
    grid-row: 1;
    background: rgba(13,148,136,0.18);
    margin: 1.1rem 0;
}
.pss-footnote {
    grid-column: 1 / -1; grid-row: 2;
    text-align: center;
    font-size: 0.7rem; color: #94a3b8;
    padding: 0.6rem 1.5rem 0.75rem;
    border-top: 1px solid rgba(13,148,136,0.12);
    line-height: 1.5; margin: 0;
}
.pss-footnote strong { color: #0f766e; font-weight: 600; }

@media (max-width: 580px) {
    .peace-stats-strip { grid-template-columns: 1fr; }
    .pss-item  { padding: 1.25rem 1rem 0.9rem; }
    .pss-divider { grid-row: auto; height: 1px; width: auto; margin: 0 1.5rem; }
    .pss-footnote { grid-column: 1; }
}

/* Legacy selectors — still referenced in old peace section */
.peace-section-grid { max-width: 960px; margin: 0 auto; }
.peace-card-inner   { padding: 1.75rem; gap: 1.25rem; }

.benefit-icon-box {
    background: rgba(22, 163, 74, 0.1);
    padding: 12px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG icon inline with card titles */
.card-title-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.4rem;
    margin-top: -2px;
    color: var(--color-primary);
}

/* SVG inside model-icon */
.model-icon svg {
    display: block;
}

.benefit-heading {
    margin-bottom: 0.25rem;
}

.benefit-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    border-radius: 12px;
    margin: 0 auto 1.25rem;
}

.benefit-card-icon svg {
    width: 32px;
    height: 32px;
    display: block;
}

/* Day One cards: color-variant animated accents (green / blue / gold) */
.section--day-one .day-one-card {
    position: relative;
    overflow: hidden;
    border-width: 1.5px;
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.section--day-one .day-one-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--day-one-accent) 50%, transparent 100%);
    filter: drop-shadow(0 0 8px rgba(var(--day-one-accent-rgb), 0.45));
    animation: day-one-sheen 3.6s linear infinite;
}

.section--day-one .day-one-card::after {
    content: '';
    position: absolute;
    inset: -35% auto auto -20%;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(var(--day-one-accent-rgb), 0.14) 0%, transparent 70%);
    pointer-events: none;
    animation: day-one-breathe 5.4s ease-in-out infinite;
}

.section--day-one .day-one-card:hover {
    transform: translateY(-6px);
    border-color: rgba(var(--day-one-accent-rgb), 0.55);
    box-shadow:
        0 14px 30px rgba(var(--day-one-accent-rgb), 0.16),
        0 0 0 1px rgba(var(--day-one-accent-rgb), 0.25) inset;
}

.section--day-one .day-one-card--green {
    --day-one-accent: #16a34a;
    --day-one-accent-rgb: 22, 163, 74;
}

.section--day-one .day-one-card--blue {
    --day-one-accent: #2563eb;
    --day-one-accent-rgb: 37, 99, 235;
}

.section--day-one .day-one-card--gold {
    --day-one-accent: #d97706;
    --day-one-accent-rgb: 217, 119, 6;
}

.section--day-one .day-one-card .stat-number,
.section--day-one .day-one-card .benefit-title {
    color: var(--day-one-accent);
}

@keyframes day-one-sheen {
    0% {
        transform: translateX(0);
        opacity: 0.1;
    }
    30% {
        opacity: 0.95;
    }
    100% {
        transform: translateX(300%);
        opacity: 0.1;
    }
}

@keyframes day-one-breathe {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }
    50% {
        transform: translate(16px, -10px) scale(1.1);
        opacity: 0.55;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section--day-one .day-one-card::before,
    .section--day-one .day-one-card::after {
        animation: none;
    }
}

/* ── Day One: Human Impact Cards (bottom row) ────────────────────
   Split-panel: accent stat rail left | content right
   Complements the top 3 metric cards with a human-impact register
   ─────────────────────────────────────────────────────────────── */
.d1-impact-card {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    border-width: 1.5px;
    transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

/* Colour tokens */
.d1-impact-card--teal {
    --d1ic-accent:     #0d9488;
    --d1ic-accent-rgb: 13, 148, 136;
    --d1ic-rail-bg:    #f0fdfa;
    border-color: rgba(13, 148, 136, 0.18);
}
.d1-impact-card--indigo {
    --d1ic-accent:     #4f46e5;
    --d1ic-accent-rgb: 79, 70, 229;
    --d1ic-rail-bg:    #eef2ff;
    border-color: rgba(79, 70, 229, 0.18);
}

/* Animated top-edge sheen — same system as top 3 cards */
.d1-impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--d1ic-accent) 50%, transparent 100%);
    opacity: 0.6;
    animation: day-one-sheen 4s linear infinite;
    pointer-events: none;
}

/* Stat rail (left) */
.d1ic-stat-rail {
    background: var(--d1ic-rail-bg);
    border-right: 1px solid rgba(var(--d1ic-accent-rgb), 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.75rem 0.85rem;
    gap: 0.5rem;
    text-align: center;
}

.d1ic-stat-num {
    font-family: var(--ff-head, 'DM Serif Display', serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--d1ic-accent);
    line-height: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.05em;
}

.d1ic-stat-sup {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 0.3rem;
}

.d1ic-stat-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--d1ic-accent);
    opacity: 0.7;
    line-height: 1.4;
    max-width: 90px;
}

/* Content area (right) */
.d1ic-content {
    padding: 1.35rem 1.4rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.d1ic-icon-wrap {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--d1ic-accent-rgb), 0.08);
    border-radius: 9px;
    color: var(--d1ic-accent);
    flex-shrink: 0;
}

.d1ic-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--d1ic-accent);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.d1ic-body {
    font-size: 0.83rem;
    color: var(--text-body, #475569);
    line-height: 1.68;
    margin: 0;
}

.d1ic-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
    margin-top: auto;
    padding-top: 0.65rem;
    border-top: 1px solid rgba(var(--d1ic-accent-rgb), 0.1);
}

.d1ic-tag {
    font-size: 0.61rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--d1ic-accent);
    opacity: 0.72;
}

.d1ic-tag-sep {
    font-size: 0.6rem;
    color: var(--d1ic-accent);
    opacity: 0.35;
}

/* Hover */
.d1-impact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--d1ic-accent-rgb), 0.4);
    box-shadow:
        0 12px 28px rgba(var(--d1ic-accent-rgb), 0.13),
        0 0 0 1px rgba(var(--d1ic-accent-rgb), 0.2) inset;
}

/* Mobile: stack rail above content */
@media (max-width: 600px) {
    .d1-impact-card {
        grid-template-columns: 1fr;
    }
    .d1ic-stat-rail {
        flex-direction: row;
        justify-content: flex-start;
        border-right: none;
        border-bottom: 1px solid rgba(var(--d1ic-accent-rgb), 0.12);
        padding: 1rem 1.25rem;
        gap: 0.85rem;
    }
    .d1ic-stat-label { max-width: 140px; text-align: left; }
}

.arena-col-cta {
    margin-top: 1.5rem;
}

.button-full-width {
    width: 100%;
    display: block;
}

.arena-label-margin {
    margin-top: 0.75rem;
}

.anatomy-body-text {
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-size: 0.975rem;
}

.anatomy-body-text-alt {
    color: var(--color-text-secondary);
    line-height: 1.75;
    font-size: 0.975rem;
    margin-bottom: 1.5rem;
}

.live-chip-wrapper {
    color: var(--signal-warning);
}

.live-chip-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Bridge section wrapper */
.section--bridge-dark {
    background: #f8faf9;
}

.bridge-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #16a34a;
    margin-bottom: 1rem;
}

/* kept for any residual references on other pages */
.data-layer-bridge { display: none; }
.bridge-heading, .bridge-subtext, .bridge-cta { display: none; }

.kpi-result-strip {
    margin-top: 3rem;
    background: #f0f5f2;
    border: 1px solid rgba(22,163,74,0.15);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.kpi-result-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 0.3rem;
}

.kpi-result-text {
    color: var(--text-body);
    font-size: 0.95rem;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-badge-inline {
    background: var(--color-primary-signal);
}

.cta-svg-inline {
    margin-left: 0.25rem;
    vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — technology-section.css breakpoints
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .comparison-arena {
        grid-template-columns: 1fr;
    }

    .arena-col {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .arena-col--smart {
        border: 1px solid rgba(22,163,74,0.15);
    }

    .anatomy-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .anatomy-layout .bin-stage {
        max-width: 360px;
        margin: 0 auto;
    }

    .map-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .kpi-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .live-chips {
        grid-template-columns: 1fr 1fr;
    }

    .btn-row {
        flex-direction: column;
        align-items: center;
    }

    .trust-logos {
        gap: 2rem;
    }

    .toggle-row {
        flex-direction: column;
        align-items: center;
    }

    .btn-interactive {
        width: 100%;
        max-width: 300px;
    }

    .compare-panel {
        min-height: 280px;
    }

    .cine-screen {
        padding: 1.5rem 1.5rem;
    }

    .cine-progress {
        right: 1rem;
        gap: 10px;
    }

    .cine-dot {
        width: 6px;
        height: 6px;
    }
}

/* ===================== BROWSER COMPATIBILITY ===================== */
@-webkit-keyframes hero-pulse {

    0%,
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
    }
}

@-webkit-keyframes badge-gold-breath {

    0%,
    100% {
        box-shadow: 0 0 0 1px rgba(212, 175, 55, .06), 0 0 18px rgba(212, 175, 55, .12), inset 0 1px 0 rgba(253, 230, 138, .08);
    }

    50% {
        box-shadow: 0 0 0 1px rgba(212, 175, 55, .14), 0 0 28px rgba(212, 175, 55, .22), inset 0 1px 0 rgba(253, 230, 138, .15);
    }
}

@-webkit-keyframes _deprecated_cinematicFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes hintFloat {

    0%,
    100% {
        -webkit-transform: translateX(-50%) translateY(0);
        transform: translateX(-50%) translateY(0);
    }

    50% {
        -webkit-transform: translateX(-50%) translateY(-3px);
        transform: translateX(-50%) translateY(-3px);
    }
}

/* Cross-browser range inputs */
input[type=range]::-ms-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    border: none;
}

input[type=range]::-moz-range-track {
    height: 5px;
    background: var(--color-bg-tertiary);
    border-radius: 50px;
}

input[type=range]::-ms-fill-lower {
    background: var(--color-primary);
    border-radius: 50px;
}

canvas {
    -ms-touch-action: none;
    touch-action: none;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

a,
button {
    -webkit-tap-highlight-color: transparent;
}

* {
    scrollbar-width: thin;
    scrollbar-color: rgba(22, 163, 74, 0.3) transparent;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(22, 163, 74, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(22, 163, 74, 0.5);
}

.trust-logo,
.btn,
.card {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@supports not (display: grid) {

    .hero-layout,
    .hdash-bins,
    .hdash-kpis {
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
    }
}

@supports not (font-size: clamp(1rem, 2vw, 2rem)) {
    .hero-h1 {
        font-size: 2.4rem;
    }

    .hero-subhead {
        font-size: 1rem;
    }

    .cine-the-bin {
        font-size: clamp(4rem, 20vw, 6rem);
    }
}

/* ── hero-copy layout wrapper ── */
.hero-copy {
    display: flex;
    flex-direction: column;
}

/* ================================================================
   RE-SOURCE TEASER STRIP
   ================================================================ */
.rs-teaser-strip {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #14532d 100%);
    padding: 5rem 0;
}

.rs-teaser-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 1.5rem 3rem;
    align-items: center;
    border: 1px solid rgba(74, 222, 128, 0.18);
    border-radius: 16px;
    padding: 2.75rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
}

.rs-teaser-meta {
    grid-column: 1 / -1;
}

.rs-teaser-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    border-radius: 100px;
    padding: 0.35rem 0.85rem;
}

.rs-teaser-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: rs-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes rs-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.75); }
}

.rs-teaser-body {
    grid-column: 1;
}

.rs-teaser-title {
    font-family: var(--ff-head, 'DM Serif Display', serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.2;
    color: #f1f5f9;
    margin: 0 0 1rem;
}

.rs-teaser-text {
    font-size: 0.975rem;
    line-height: 1.75;
    color: rgba(203, 213, 225, 0.82);
    max-width: 58ch;
    margin: 0;
}

.rs-teaser-cta {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    background: rgba(74, 222, 128, 0.12);
    border: 1.5px solid rgba(74, 222, 128, 0.4);
    color: #4ade80;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.rs-teaser-cta:hover {
    background: rgba(74, 222, 128, 0.22);
    border-color: #4ade80;
    color: #fff;
}

@media (max-width: 768px) {
    .rs-teaser-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        padding: 2rem 1.5rem;
    }
    .rs-teaser-cta {
        grid-column: 1;
        grid-row: auto;
        justify-self: start;
    }
}
/* ================================================================
   PROBLEM DIAGNOSIS SECTION
   ================================================================ */

.problem-diagnosis {
    background: #ffffff;
    padding: 0 0 5rem;
    overflow: hidden;
}

.pd-bridge {
    background: #0a0f19;
    padding: 5rem 2rem 4.5rem;
    text-align: center;
}
.pd-bridge-line {
    font-family: var(--ff-head, 'DM Serif Display', serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 0.5rem;
}
.pd-bridge-verdict {
    font-family: var(--ff-head, 'DM Serif Display', serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #ffffff;
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin: 1.25rem 0 0;
}

.pd-statement {
    max-width: 860px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    text-align: center;
}
.pd-opening {
    font-family: var(--ff-head, 'DM Serif Display', serif);
    font-size: clamp(1.35rem, 2.5vw, 1.875rem);
    color: var(--color-text-primary, #111827);
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

.pd-triad {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.pd-failure {
    padding: 2rem 2.5rem 2rem 1.75rem;
    border-top: 2px solid #e5392a;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.pd-failure.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.pd-failure--1 { margin-top: 0;    transition-delay: 0s; }
.pd-failure--2 { margin-top: 2rem; transition-delay: 0.15s; }
.pd-failure--3 { margin-top: 4rem; transition-delay: 0.3s; }
.pd-failure-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e5392a;
    margin-bottom: 0.875rem;
}
.pd-failure-body {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-secondary, #6b7280);
    margin: 0;
}

.pd-reframe {
    max-width: 680px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s;
}
.pd-reframe.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.pd-reframe-not {
    font-size: clamp(1rem, 1.75vw, 1.125rem);
    color: var(--color-text-secondary, #9ca3af);
    margin: 0 0 0.25rem;
    font-weight: 400;
}
.pd-reframe-core {
    font-family: var(--ff-head, 'DM Serif Display', serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--color-text-primary, #111827);
    font-weight: 400;
    line-height: 1.5;
    margin: 1.25rem 0 0;
}

.pd-aarush {
    background: #15803d;
    padding: 5rem 2rem 4rem;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.pd-aarush.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pd-aarush-matrix {
    display: inline-grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0 clamp(0.5rem, 2vw, 1.5rem);
    margin: 0 auto 2.5rem;
    max-width: 960px;
    width: 100%;
}

.pd-aarush-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.pd-aarush-letter {
    font-family: var(--ff-head, 'DM Serif Display', serif);
    font-size: clamp(3rem, 8vw, 6.5rem);
    color: #ffffff;
    font-weight: 400;
    line-height: 1;
    display: block;
}

.pd-aarush-col::after {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.25);
    margin: 0 auto;
}

.pd-aarush-word {
    font-size: clamp(0.7rem, 1.1vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d4a843;
    display: block;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3), 0 -1px 0 rgba(255,220,100,0.2);
}

.pd-aarush-tagline {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .pd-triad { grid-template-columns: 1fr; }
    .pd-failure--1,
    .pd-failure--2,
    .pd-failure--3 { margin-top: 0; }
    .pd-failure {
        padding: 1.75rem 1.5rem;
        border-top: none;
        border-left: 2px solid #e5392a;
    }
    .pd-failure + .pd-failure {
        border-top: 0.5px solid #f3f4f6;
    }
    .pd-aarush-matrix {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem 0.5rem;
    }
    .pd-aarush-col::after { height: 14px; }
}

@media (max-width: 480px) {
    .pd-bridge { padding: 3.5rem 1.5rem 3rem; }
    .pd-aarush  { padding: 3rem 1.5rem; }
    .pd-aarush-matrix { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== AARUSH HEROIC ENTRY ===================== */

.he-section {
  background: #a89878;
  color: #fff;
  min-height: 100vh;
  max-height: 1080px;
  position: relative;
}

/* Body scroll-lock (iOS-safe) */
body.he-body-locked {
  position: fixed;
  width: 100%;
  top: calc(-1 * var(--he-scroll-y, 0px));
  overflow-y: scroll;
}

/* Desktop / Mobile toggle */
.he-desktop { display: block; position: relative; width: 100%; height: min(100vh, 1080px); }
.he-mobile  { display: none; }

@media (max-width: 600px) {
  .he-desktop { display: none; }
  .he-mobile  { display: block; }
}

/* Scene wrapper — fills full viewport height */
.he-scene-wrap {
  position: relative;
  width: 100%;
  height: min(100vh, 1080px);
  overflow: hidden;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .he-scene-wrap {
    height: min(100vh, 1080px);
  }
}

/* Corridor wrapper — translated by scroll */
.he-corridor-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 300%;
  height: 100%;
  will-change: transform;
}

#he-corridor {
  display: block;
  width: 100%;
  height: 100%;
}

/* Hide clean corridor until GSAP reveal — prevents FOUC */
#he-clean {
  visibility: hidden;
}

/* Hide elements that GSAP controls — safe pre-JS state */
#he-light-dot,
#ghost-base, #ghost-body, #ghost-lid,
#ghost-dispatch,
.he-notif-pill {
  opacity: 0;
}

/* Text overlays — main lines */
.he-main-line {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8);
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 8;
  opacity: 0;
  white-space: nowrap;
}

.he-line-2 {
  bottom: 8%;
}

/* Text overlays — micro-labels */
.he-micro-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: absolute;
  bottom: 52%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 8;
  opacity: 0;
  white-space: nowrap;
}

/* Notification pill */
.he-notif-pill {
  position: absolute;
  top: 30%;
  left: 38%;
  background: #dc2626;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  border-radius: 10px;
  padding: 4px 12px;
  pointer-events: none;
  z-index: 8;
  white-space: nowrap;
  opacity: 0;
}

/* Deploy AARUSH button */
#he-deploy-btn {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #16a34a, #15803d);
  border: none;
  border-radius: 6px;
  padding: 12px 32px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(22,163,74,0.35);
}
#he-deploy-btn:hover {
  box-shadow: 0 6px 32px rgba(22,163,74,0.55);
}

/* Scroll hint */
.he-scroll-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  font-family: 'DM Sans', sans-serif;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 10;
}

/* Name reveal */
.he-name-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  z-index: 15;
  pointer-events: none;
}

#he-name {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(4rem, 10vw, 8rem);
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0;
}

#he-secondary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  opacity: 0;
}

#he-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  color: #16a34a;
  opacity: 0;
}

/* Closing + bridge lines */
#he-close {
  position: absolute;
  bottom: 11rem;
  left: 0; right: 0;
  z-index: 8;
  pointer-events: none;
}

#he-bridge {
  position: absolute;
  bottom: 9.5rem;
  left: 0; right: 0;
  z-index: 8;
  pointer-events: none;
}

/* Proof strip */
.he-proof {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  padding: 1.5rem 1rem;
  border-top: 0.5px solid rgba(255,255,255,0.08);
  z-index: 8;
}

.he-proof-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: #16a34a;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.he-char {
  opacity: 0;
}

.he-proof-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.9rem;
  margin: 0.2rem 0;
  opacity: 0;
}

.he-proof-label {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(0.7rem, 1.5vw, 0.9rem);
  color: rgba(255,255,255,0.55);
  opacity: 0;
}

/* ── Mobile ── */
.he-mobile-panel {
  height: 85vh;
  overflow: hidden;
  position: relative;
  background: #0d1117;
  display: flex;
  flex-direction: column;
}

.he-mobile-svg {
  flex: 1;
  width: 100%;
}

.he-mobile-text {
  padding: 1.25rem 1.5rem 2rem;
  background: #a89878;
}

.he-mobile-micro {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.5rem;
}

.he-mobile-line {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 4vw, 1.3rem);
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.he-mobile-reveal {
  background: #a89878;
  min-height: 100vh;
  max-height: 1080px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.he-name-wrap--mobile {
  position: relative;
  inset: auto;
}

.he-mobile-name {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(3rem, 12vw, 5rem);
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1;
  text-align: center;
  opacity: 0;
}

.he-mobile-secondary {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.01em;
  text-align: center;
  opacity: 0;
}

.he-mobile-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.9rem, 2vw, 1.3rem);
  color: #16a34a;
  text-align: center;
  opacity: 0;
}

.he-proof--mobile {
  position: relative;
  opacity: 1;
  transform: none;
  margin-top: 2rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.he-proof--mobile .he-proof-sep,
.he-proof--mobile .he-proof-label {
  opacity: 1;
}

.he-char-m {
  opacity: 0;
}
/* ===== WHAT THE DATA BECOMES — Platform Trajectory ===== */
.platform-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 900px) {
  .platform-data-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .platform-data-grid { grid-template-columns: 1fr; }
}
.platform-data-panel {
  background: var(--surface-0, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.platform-data-panel:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.pdp-icon { font-size: 2rem; line-height: 1; margin-bottom: 0.25rem; }
.pdp-brand {
  font-family: var(--ff-mono, 'JetBrains Mono', monospace);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-600, #16a34a);
}
.pdp-title { font-size: 1.1rem; font-weight: 600; color: var(--text-primary, #111); margin: 0; line-height: 1.3; }
.pdp-body { font-size: 0.9rem; color: var(--text-secondary, #6b7280); line-height: 1.6; flex: 1; margin: 0; }
.pdp-link { font-size: 0.85rem; font-weight: 600; color: var(--green-600, #16a34a); text-decoration: none; margin-top: 0.5rem; transition: color 0.2s; }
.pdp-link:hover { color: var(--green-700, #15803d); }
.platform-data-cta { text-align: center; margin-top: 2.5rem; }
/* ================================================================
   PIPELINE FLOW — "From Infrastructure to Intelligence"
   Dark landmark section with animated data stream
   ================================================================ */

.pipeline-section {
  background: linear-gradient(160deg, #0d1526 0%, #111e35 60%, #0f172a 100%);
  color: #e8f5e9;
  padding: 4rem 0;
  overflow: hidden;
}

.pipeline-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.badge--pipeline {
  display: inline-block;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.25);
  font-family: var(--ff-mono, 'JetBrains Mono', monospace);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35em 0.9em;
  border-radius: 2em;
  margin-bottom: 1.25rem;
}

.pipeline-title {
  font-family: var(--ff-head, 'DM Serif Display', Georgia, serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  margin: 0 0 1rem;
}

.pipeline-sub {
  font-size: 1rem;
  color: rgba(232, 245, 233, 0.6);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Flow layout ── */
.pipeline-flow {
  display: flex;
  align-items: stretch;  /* all columns fill the row height; badge is centred within its stage */
  gap: 2.5rem;           /* breathing room between columns so lines are visible */
  overflow-x: auto;
  padding-bottom: 1rem;
  position: relative;    /* anchor for the absolute SVG overlay */
}

/* ── Stages ── */
.pipe-stage {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.pipe-stage--infra  { width: 160px; }
.pipe-stage--platform { width: 140px; }
.pipe-stage--outcomes {
  flex: 1;
  min-width: 260px;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  align-items: stretch;
}

/* Two infra stages stacked vertically */
.pipe-infra-column {
  display: flex;
  flex-direction: column;
  justify-content: center; /* bins centred in the full row height */
  gap: 2rem;               /* vertical gap between the two bin cards */
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* Lift AARUSH and outcomes above the SVG overlay */
.pipe-stage--platform,
.pipe-stage--outcomes {
  position: relative;
  z-index: 1;
}

/* Centre the badge vertically within the stretched stage height */
.pipe-stage--platform {
  justify-content: center;
}

/* ── JS-driven SVG overlay (draws all Bézier connection lines) ── */
.pipe-flow-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  z-index: 0;           /* behind content, above section background */
}

/* ── Node grid (Stage 1) ── */
.pipe-node-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 1rem;
  background: rgba(74,222,128,0.05);
  border: 1px solid rgba(74,222,128,0.15);
  border-radius: 0.75rem;
}

.pipe-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
  animation: pipePulse 2s ease-in-out infinite;
}
.pipe-dot:nth-child(2) { animation-delay: 0.2s; }
.pipe-dot:nth-child(3) { animation-delay: 0.4s; }
.pipe-dot:nth-child(4) { animation-delay: 0.6s; }
.pipe-dot:nth-child(5) { animation-delay: 0.8s; }
.pipe-dot:nth-child(6) { animation-delay: 1.0s; }
.pipe-dot:nth-child(7) { animation-delay: 1.2s; }
.pipe-dot:nth-child(8) { animation-delay: 1.4s; }
.pipe-dot:nth-child(9) { animation-delay: 1.6s; }

@keyframes pipePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50%       { opacity: 1;   transform: scale(1.1); }
}

/* ── AARUSH badge (Stage 2) ── */
.pipe-platform-badge {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pipe-platform-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(74,222,128,0.4);
  animation: pipeRing 3s linear infinite;
}
.pipe-platform-ring::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 1px solid rgba(74,222,128,0.2);
}

@keyframes pipeRing {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.3); }
  70%  { box-shadow: 0 0 0 12px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

.pipe-platform-label {
  font-family: var(--ff-mono, 'JetBrains Mono', monospace);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #4ade80;
  position: relative;
  z-index: 1;
}

/* ── Stage labels ── */
.pipe-stage-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
}

.pipe-num {
  font-family: var(--ff-mono, 'JetBrains Mono', monospace);
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(74,222,128,0.5);
  letter-spacing: 0.1em;
}

.pipe-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pipe-desc {
  font-size: 0.72rem;
  color: rgba(232,245,233,0.45);
  line-height: 1.4;
  max-width: 130px;
}

/* ── Connectors removed — replaced by .pipe-flow-svg JS overlay ── */
.pipe-svg {
  width: 80px;
  height: 40px;
  overflow: visible;
}

/* .pipe-svg--fan static sizing removed — connector SVGs replaced by .pipe-flow-svg */

/* .pipe-connector--fanout removed — replaced by JS-driven .pipe-flow-svg overlay */

.pipe-line {
  fill: none;
  stroke: rgba(74,222,128,0.35);
  stroke-width: 1.5;
  stroke-dasharray: 6 4;
  animation: pipeDash 1.8s linear infinite;
}

/* Ghost streams — off-canvas bins feeding AARUSH (more ethereal, distant) */
.pipe-line--ghost {
  stroke: rgba(74, 222, 128, 0.18);
  stroke-dasharray: 4 7;
}

@keyframes pipeDash {
  to { stroke-dashoffset: -20; }
}

.pipe-particle--1, .pipe-particle--2 {
  fill: #4ade80;
  filter: drop-shadow(0 0 3px #4ade80);
  offset-path: path('M0,20 L120,20');
  animation: pipeMove 2s linear infinite;
}
.pipe-particle--2 { animation-delay: -1s; }

@keyframes pipeMove {
  from { offset-distance: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  to   { offset-distance: 100%; opacity: 0; }
}

/* ── Outcome blocks ── */
.pipe-outcome {
  display: grid;
  grid-template-columns: 2rem 1fr 7rem;
  grid-template-rows: auto auto;
  align-items: start;
  align-content: center;
  gap: 0 0.75rem;
  padding: 0.75rem 0 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(74,222,128,0.1);
  transition: background 0.2s;
  border-radius: 0.25rem;
  text-align: left;
}
.pipe-outcome:first-child { border-top: 1px solid rgba(74,222,128,0.1); }
.pipe-outcome:hover { background: rgba(74,222,128,0.04); }

.pipe-outcome-num {
  font-family: var(--ff-mono, 'JetBrains Mono', monospace);
  font-size: 0.65rem;
  color: rgba(74,222,128,0.5);
  grid-row: 1;
  grid-column: 1;
  line-height: 1.6;
}

.pipe-outcome-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  grid-row: 1;
  grid-column: 2;
  line-height: 1.6;
}

.pipe-outcome-link {
  font-family: var(--ff-mono, 'JetBrains Mono', monospace);
  font-size: 0.68rem;
  color: rgba(74,222,128,0.6);
  text-decoration: none;
  grid-row: 1;
  grid-column: 3;
  white-space: nowrap;
  transition: color 0.2s;
  line-height: 1.6;
}
.pipe-outcome-link:hover { color: #4ade80; }

.pipe-outcome-desc {
  font-size: 0.78rem;
  color: rgba(232,245,233,0.45);
  line-height: 1.5;
  grid-row: 2;
  grid-column: 2 / 4;
  padding-bottom: 0.25rem;
}

/* ── Section CTA ── */
.pipeline-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.btn-pipeline {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: #4ade80;
  border: 1px solid rgba(74,222,128,0.4);
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-pipeline:hover {
  background: rgba(74,222,128,0.08);
  border-color: rgba(74,222,128,0.7);
  color: #86efac;
}

/* ── Mobile: vertical stack ── */
@media (max-width: 768px) {
  .pipeline-flow {
    flex-direction: column;
    align-items: stretch;
    overflow-x: visible;
    gap: 0.5rem;
  }
  .pipe-stage--infra,
  .pipe-stage--platform { width: 100%; flex-direction: row; gap: 1rem; justify-content: flex-start; }
  .pipe-node-grid { width: 60px; flex-shrink: 0; }
  .pipe-platform-badge { width: 60px; height: 60px; flex-shrink: 0; }
  .pipe-stage-label { align-items: flex-start; text-align: left; }
  .pipe-connector { display: none; }
  .pipe-stage--outcomes { min-width: unset; }
  /* Hide SVG connector lines — vertical stack has no meaningful left→right flow */
  .pipe-flow-svg { display: none; }
}
/* ═══════════════════════════════════════════════════════════════
   DATA LAYER CASCADE  —  Apple-style split feature card
   Light canvas · Dark trigger panel · Clean outcomes panel
   Green = semantic only (✓ check marks). Never decoration.
   ═══════════════════════════════════════════════════════════════ */

.dlc-section {
    background: #fbfbfd;
    padding: 7rem 0 7.5rem;
    position: relative;
}

.dlc-section::before,
.dlc-section::after { display: none; }

/* ── Header ─────────────────────────────────────────────────── */
.dlc-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4.5rem;
}

.dlc-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #6e6e73;
    margin-bottom: 1.1rem;
}

.dlc-h2 {
    font-family: var(--ff-head, 'DM Serif Display', serif);
    font-size: clamp(2.4rem, 5vw, 3.75rem);
    font-weight: 400;
    font-style: italic;
    color: #1d1d1f;
    line-height: 1.15;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.dlc-subhead {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: #6e6e73;
    line-height: 1.75;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Apple split feature card ────────────────────────────────── */
.dlc-feature-card {
    display: grid;
    grid-template-columns: 5fr 7fr;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 2px 1px rgba(0,0,0,0.03),
        0 4px 6px rgba(0,0,0,0.04),
        0 20px 48px rgba(0,0,0,0.11);
    border: 1px solid rgba(0,0,0,0.07);
}

/* ── Left panel: dark — the trigger moment ───────────────────── */
.dlc-event-panel {
    background: #1d1d1f;
    display: flex;
    flex-direction: column;
}

.dlc-terminal-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.7rem 1.25rem;
    background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.dlc-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}
.dlc-dot--r { background: #ff5f57; }
.dlc-dot--y { background: #febc2e; }
.dlc-dot--g { background: #28c840; }

.dlc-terminal-label {
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.25);
    margin-left: 0.4rem;
    letter-spacing: 0.07em;
}

.dlc-event-body {
    padding: 2rem 1.75rem 1.5rem;
    flex: 1;
}

.dlc-ts {
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.14em;
    display: block;
    margin-bottom: 1.1rem;
}

.dlc-eline {
    font-family: var(--ff-head, 'DM Serif Display', serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.88);
    font-weight: 400;
    font-style: italic;
    margin: 0 0 0.35rem;
    line-height: 1.45;
}

.dlc-eline strong {
    color: #ffffff;
    font-style: normal;
    font-weight: 700;
}

.dlc-ok {
    color: #34d058;
    font-style: normal;
}

.dlc-edivider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 1.25rem 0 1rem;
}

.dlc-sys {
    font-family: var(--ff-mono, 'JetBrains Mono', monospace);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.07em;
}

.dlc-panel-foot {
    padding: 1.25rem 1.75rem 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: auto;
}

.dlc-panel-note {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.32);
    line-height: 1.55;
    font-style: italic;
}

/* ── Right panel: light — outcomes ──────────────────────────── */
.dlc-outcomes-panel {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(0,0,0,0.06);
}

.dlc-outcomes-head {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #86868b;
    padding: 1.5rem 1.75rem 1rem;
    border-bottom: 1px solid #f5f5f7;
    margin: 0;
}

.dlc-output {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.75rem;
    border-bottom: 1px solid #f5f5f7;
    transition: background 0.15s ease;
}

.dlc-output:last-child { border-bottom: none; }

.dlc-output:hover { background: #fbfbfd; }

.dlc-check {
    flex-shrink: 0;
    margin-top: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dlc-out-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.dlc-out-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.dlc-out-desc {
    font-size: 0.78rem;
    color: #6e6e73;
    line-height: 1.5;
}

/* ── Footer ──────────────────────────────────────────────────── */
.dlc-footer {
    text-align: center;
    margin-top: 3.5rem;
}

.dlc-close {
    font-family: var(--ff-head, 'DM Serif Display', serif);
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: #86868b;
    font-style: italic;
    font-weight: 400;
    margin: 0 0 1.75rem;
    letter-spacing: 0.005em;
}

.dlc-cta {
    display: inline-flex;
    padding: 0.95rem 2.5rem;
    font-size: 0.95rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 820px) {
    .dlc-feature-card {
        grid-template-columns: 1fr;
        border-radius: 20px;
        max-width: 520px;
    }

    .dlc-outcomes-panel {
        border-left: none;
        border-top: 1px solid rgba(0,0,0,0.06);
    }

    .dlc-h2 { font-size: 2.25rem; }
    .dlc-section { padding: 5rem 0 5.5rem; }
}

@media (max-width: 480px) {
    .dlc-h2 { font-size: 1.9rem; }
    .dlc-output { padding: 1rem 1.25rem; }
    .dlc-event-body { padding: 1.5rem 1.25rem 1.25rem; }
    .dlc-panel-foot { padding: 1rem 1.25rem 1.5rem; }
    .dlc-outcomes-head { padding: 1.1rem 1.25rem 0.85rem; }
}