/* ==========================================================
   HOMEPAGE CUSTOM ARCHITECTURE
   ========================================================== */

/* -----------------------------------
   PROJECT SHOWCASE SECTION
----------------------------------- */
.showcase-section {
    padding: 8rem 0 6rem;
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

/* Ambient glow effects */
.showcase-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 255, 0, 0.06) 0%, transparent 70%);
    top: 20%;
    left: -10%;
    pointer-events: none;
    animation: showcaseGlowPulse 8s ease-in-out infinite;
}

.showcase-bg-glow--2 {
    left: auto;
    right: -15%;
    top: 40%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(198, 255, 0, 0.04) 0%, transparent 70%);
    animation-delay: -4s;
}

@keyframes showcaseGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.showcase-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.showcase-header .section-lead {
    margin: 1.5rem auto 0;
    max-width: 600px;
}

/* Device display container */
.showcase-devices {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

/* ==================================
   LAPTOP DEVICE GROUP
   ================================== */
.device-group--laptop {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 900px;
    perspective: 1500px;
}

.device-laptop {
    width: 100%;
    max-width: 780px;
    position: relative;
    z-index: 2;
    animation: laptopFloat 6s ease-in-out infinite;
}

@keyframes laptopFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Laptop Screen */
.laptop-screen {
    background: #1a1a1a;
    border-radius: 12px 12px 0 0;
    border: 2px solid #333;
    border-bottom: none;
    overflow: hidden;
    box-shadow:
        0 -6px 35px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.laptop-topbar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}

.topbar-dot:first-child { background: #ff5f56; }
.topbar-dot:nth-child(2) { background: #ffbd2e; }
.topbar-dot:nth-child(3) { background: #27c93f; }

.topbar-url {
    margin-left: 12px;
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.02em;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 12px;
    border-radius: 4px;
}

.laptop-content {
    aspect-ratio: 16 / 9.5;
    overflow: hidden;
    position: relative;
    background: #111;
}

.device-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Laptop Base */
.laptop-base {
    height: 14px;
    background: linear-gradient(to bottom, #2a2a2a, #1a1a1a);
    border-radius: 0 0 4px 4px;
    border: 2px solid #333;
    border-top: 1px solid #444;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-base::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15%;
    right: 15%;
    height: 8px;
    background: linear-gradient(to bottom, #222, #181818);
    border-radius: 0 0 10px 10px;
    border: 1px solid #333;
    border-top: none;
}

.laptop-notch {
    width: 60px;
    height: 4px;
    background: #444;
    border-radius: 0 0 3px 3px;
}

/* ==================================
   FLOATING SCREEN PANELS
   ================================== */
.floating-screen {
    position: absolute;
    z-index: 3;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1a1a1a;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-screen:hover {
    transform: scale(1.03);
}

.floating-screen--1 {
    width: 260px;
    top: -20px;
    right: -30px;
    animation: floatScreen1 7s ease-in-out infinite;
}

.floating-screen--2 {
    width: 240px;
    top: 50px;
    left: -40px;
    animation: floatScreen2 8s ease-in-out infinite;
}

@keyframes floatScreen1 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-18px) rotate(2deg); }
}

@keyframes floatScreen2 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-14px) rotate(-3deg); }
}

.floating-screen-inner {
    overflow: hidden;
}

.floating-screen-inner .device-screenshot {
    aspect-ratio: 4 / 3;
}

/* ==================================
   FLOATING UI COMPLIANCE CARD
   ================================== */
.floating-ui-card {
    padding: 18px;
    background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
}

.fui-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fui-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.fui-dot--green {
    background: #27c93f;
    box-shadow: 0 0 8px rgba(39, 201, 63, 0.4);
}

.fui-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.fui-metrics {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fui-metric {
    display: grid;
    grid-template-columns: 70px 1fr 32px;
    align-items: center;
    gap: 8px;
}

.fui-metric-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.02em;
}

.fui-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.fui-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent, #c6ff00), #a8e600);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.fui-metric-value {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent, #c6ff00);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* ==================================
   TABLET + PHONE GROUP
   ================================== */
.device-group--mobile {
    display: flex;
    align-items: flex-end;
    gap: 2.5rem;
    perspective: 1200px;
}

/* CSS Tablet */
.device-tablet {
    width: 380px;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 12px;
    border: 2px solid #333;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    animation: tabletFloat 7s ease-in-out infinite;
    position: relative;
}

@keyframes tabletFloat {
    0%, 100% { transform: translateY(0) rotateY(-3deg); }
    50% { transform: translateY(-10px) rotateY(-1deg); }
}

.tablet-screen {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #111;
}

/* CSS Phone */
.device-phone {
    width: 160px;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 8px;
    border: 2px solid #333;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotateY(3deg); }
    50% { transform: translateY(-14px) rotateY(1deg); }
}

.phone-notch {
    width: 50%;
    height: 16px;
    background: #1a1a1a;
    border-radius: 0 0 12px 12px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.phone-screen {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9 / 19.5;
    background: #111;
    margin-top: -8px;
}

/* ==================================
   SHOWCASE FEATURES BAR
   ================================== */
.showcase-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    transition: all 0.3s ease;
}

.showcase-feature:hover {
    border-color: rgba(198, 255, 0, 0.25);
    background: rgba(198, 255, 0, 0.04);
    color: var(--text-1);
    transform: translateY(-2px);
}

.showcase-feature svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Light mode adjustments */
.light-mode .showcase-feature {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.06);
}

.light-mode .showcase-feature:hover {
    background: rgba(146, 185, 0, 0.06);
    border-color: rgba(146, 185, 0, 0.25);
}

.light-mode .laptop-screen {
    background: #f0f0f0;
    border-color: #d0d0d0;
}

.light-mode .laptop-topbar {
    background: #e5e5e5;
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.light-mode .topbar-url {
    color: rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.05);
}

.light-mode .laptop-base {
    background: linear-gradient(to bottom, #d8d8d8, #c8c8c8);
    border-color: #bbb;
}

.light-mode .laptop-base::before {
    background: linear-gradient(to bottom, #c0c0c0, #b0b0b0);
    border-color: #bbb;
}

.light-mode .laptop-content {
    background: #fff;
}

.light-mode .device-tablet,
.light-mode .device-phone {
    background: #e8e8e8;
    border-color: #ccc;
}

.light-mode .floating-screen {
    background: #f5f5f5;
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.light-mode .floating-ui-card {
    background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
}

.light-mode .fui-title {
    color: rgba(0, 0, 0, 0.7);
}

.light-mode .fui-metric-label {
    color: rgba(0, 0, 0, 0.5);
}

.light-mode .fui-progress {
    background: rgba(0, 0, 0, 0.06);
}

.light-mode .fui-header {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.light-mode .laptop-notch {
    background: #bbb;
}

.light-mode .phone-notch {
    background: #e8e8e8;
}

/* Responsive */
@media (max-width: 1024px) {
    .floating-screen--1 {
        width: 200px;
        right: -10px;
    }

    .floating-screen--2 {
        width: 190px;
        left: -15px;
    }

    .device-tablet {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .showcase-section {
        padding: 5rem 0 4rem;
    }

    .floating-screen {
        display: none;
    }

    .device-group--mobile {
        flex-direction: row;
        justify-content: center;
    }

    .device-tablet {
        width: 240px;
    }

    .device-phone {
        width: 120px;
    }

    .showcase-features {
        gap: 0.8rem;
    }

    .showcase-feature {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .device-laptop {
        max-width: 100%;
    }

    .device-tablet {
        width: 180px;
    }

    .device-phone {
        width: 100px;
    }
}


/* -----------------------------------
   CINEMATIC SCROLL-BASED SECTION
----------------------------------- */
.cinematic-motion-section {
    position: relative;
    /* Height creates the scrollable distance for the sticky effect */
    height: 300vh;
    background: #000;
}

.c-sticky-container {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-image-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    will-change: transform;
}

.c-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* initial scale before scrolling into effect */
    transform: scale(1.3);
    will-change: transform;
}

.c-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.5s ease;
}

.c-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    transform: translateY(60px);
    opacity: 0;
    will-change: transform, opacity;
}

.c-eyebrow {
    color: var(--accent, #c6ff00);
    margin-bottom: 1rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
}

.c-headline {
    font-size: clamp(3rem, 6vw, 5rem);
    color: #fff;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.c-body {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

/* Light mode adjustments */
.light-mode .c-headline { color: #fff; } /* Keep white in light mode for cinematic feel over image */
.light-mode .c-body { color: rgba(255,255,255,0.9); }
.light-mode .c-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.6) 100%); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .cinematic-motion-section {
        height: 200vh;
    }
}


/* -----------------------------------
   ADVANCED MACHINERY SECTION (3D CAROUSEL)
----------------------------------- */
.machinery-section {
    padding: 8rem 0;
    background: var(--bg);
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}

.machinery-header {
    margin-bottom: 5rem;
}

.machinery-header .section-lead {
    margin: 1.5rem auto 0;
    max-width: 700px;
}

.carousel-3d-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.carousel-3d-scene {
    position: relative;
    width: 300px;
    height: 200px;
    transform-style: preserve-3d;
    animation: rotateCarousel 25s infinite linear;
}

/* Hover pauses the rotation */
.carousel-3d-wrapper:hover .carousel-3d-scene {
    animation-play-state: paused;
}

.carousel-3d-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.carousel-3d-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 200px;
    /* 6 items = 360/6 = 60deg. translateZ = 280px to give gaps between items */
    transform: rotateY(calc(var(--i) * 60deg)) translateZ(280px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--surface-1);
    /* subtle reflection */
    -webkit-box-reflect: below 10px linear-gradient(transparent, transparent, rgba(0,0,0,0.2));
}

.carousel-3d-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes rotateCarousel {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

@media (max-width: 768px) {
    .carousel-3d-scene {
        width: 200px;
        height: 133px;
    }
    .carousel-3d-item {
        width: 200px;
        height: 133px;
        transform: rotateY(calc(var(--i) * 60deg)) translateZ(180px);
    }
}

/* Light mode support */
.light-mode .machinery-section {
    background: #f5f5f7;
}

.light-mode .carousel-3d-item {
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: rgba(0,0,0,0.05);
}

/* -----------------------------------
   PRECISION MOLDS SECTION (3D STACK)
----------------------------------- */
.molds-section {
    padding: 8rem 0;
    background: #0b0b0b;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.molds-header {
    margin-bottom: 5rem;
}

.molds-header .section-lead {
    margin: 1.5rem auto 0;
    max-width: 650px;
}

.molds-stack-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 600px;
    margin: 0 auto;
    perspective: 1500px;
}

.mold-card {
    position: absolute;
    width: 60%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    border: 1px solid rgba(255,255,255,0.1);
    /* Initial invisible/slanted state */
    opacity: 0;
    transform: translateY(150px) translateZ(-200px) rotateX(20deg);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
    background: #1a1a1a;
}

.mold-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Positions before JS interacts */
.mold-card-1 { top: 0%; left: 0%; z-index: 1; }
.mold-card-2 { top: 15%; right: 0%; z-index: 2; width: 55%; height: 350px; }
.mold-card-3 { top: 30%; left: 10%; z-index: 3; width: 50%; height: 320px; }
.mold-card-4 { top: 40%; right: 5%; z-index: 4; width: 65%; height: 400px; }

/* When class .stacked is added by JS intersection */
.mold-card.stacked {
    opacity: 1;
    transform: translateY(0) translateZ(0) rotateX(0deg);
}

.mold-card.stacked:hover {
    transform: translateY(-10px) scale(1.02) rotateX(0deg) !important;
    z-index: 10 !important;
}

@media (max-width: 768px) {
    .molds-stack-container {
        height: 800px;
    }
    .mold-card-1 { top: 0%; width: 85%; left: 5%; height: 250px; }
    .mold-card-2 { top: 20%; width: 85%; right: 5%; height: 250px; }
    .mold-card-3 { top: 40%; width: 85%; left: 5%; height: 250px; }
    .mold-card-4 { top: 60%; width: 85%; right: 5%; height: 250px; }
}

/* Light mode for molds */
.light-mode .molds-section {
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
}
.light-mode .mold-card {
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: rgba(0,0,0,0.05);
}

/* -----------------------------------
   HERO BADGES
----------------------------------- */
.hero-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUpElevate 0.8s 0.6s ease forwards;
}

.hero-badges .badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
    background: rgba(255, 255, 255, 0.03);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.light-mode .hero-badges .badge {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.05);
    color: var(--text-1);
}

/* -----------------------------------
   METRICS STRIP
----------------------------------- */
.metrics-strip {
    background: var(--surface-1);
    padding: 4rem 0 3rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 10;
}

.metrics-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.metric-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-1);
    line-height: 1;
    letter-spacing: -0.05em;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-2);
    font-weight: 500;
    line-height: 1.4;
}

.metric-divider {
    width: 1px;
    height: 80px;
    background: var(--border);
    align-self: center;
}

.metrics-trust-line {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@media (max-width: 900px) {
    .metrics-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .metric-divider {
        width: 100px;
        height: 1px;
        margin: 1rem 0;
    }
}

/* -----------------------------------
   CORE CAPABILITIES (SECTION 2)
----------------------------------- */
.capabilities-section {
    padding: 8rem 0;
    background: var(--bg);
}

.capabilities-header {
    text-align: center;
    margin-bottom: 5rem;
}

.capabilities-header .section-lead {
    margin: 1.5rem auto 0;
    max-width: 700px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.capability-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(198, 255, 0, 0.3);
    /* Accent glow */
}

.light-mode .capability-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cap-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(198, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 2rem;
    transition: transform 0.4s ease;
}

.capability-card:hover .cap-icon-wrapper {
    transform: scale(1.1);
    background: var(--accent);
    color: #0b0b0b;
}

.capability-card h3 {
    font-size: 1.5rem;
    color: var(--text-1);
    margin-bottom: 1rem;
}

.cap-desc {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cap-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-1);
    font-size: 0.95rem;
}

.cap-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.cap-footer {
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: 3rem;
}

.cap-footer p {
    color: var(--text-2);
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------
   PROCESS TIMELINE (SECTION 3)
----------------------------------- */
.process-timeline-section {
    padding: 8rem 0;
    background: var(--surface-1);
    position: relative;
    border-bottom: 1px solid var(--border);
}

.timeline-header {
    text-align: center;
    margin-bottom: 5rem;
}

.timeline-header .section-lead {
    margin: 1.5rem auto 0;
    max-width: 800px;
}

.impl-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 2rem;
    padding-top: 3rem;
    margin-bottom: 4rem;
}

/* Desktop Connecting Line */
.impl-timeline-track {
    position: absolute;
    top: 54px;
    /* Align with center of step markers */
    left: 40px;
    right: 40px;
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.impl-step {
    flex: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-marker {
    width: 48px;
    height: 48px;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-2);
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.impl-step:hover .step-marker {
    border-color: var(--accent);
    color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(198, 255, 0, 0.2);
}

.step-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    width: 100%;
    transition: transform 0.3s;
}

.impl-step:hover .step-card {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.5rem;
    color: var(--text-1);
    opacity: 0.8;
}

.impl-step:hover .step-icon {
    color: var(--accent);
    opacity: 1;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-1);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.5;
}

.timeline-footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.timeline-footer p {
    color: var(--text-2);
    margin-bottom: 1rem;
}

/* Tablet / Mobile Timeline (Vertical progressive) */
@media (max-width: 1024px) {
    .impl-timeline {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: 0;
    }

    .impl-timeline-track {
        top: 0;
        bottom: 0;
        left: 24px;
        /* Move track to the left edge */
        width: 2px;
        height: auto;
        right: auto;
    }

    .impl-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 2rem;
    }

    .step-marker {
        margin-bottom: 0;
        margin-right: 2rem;
        flex-shrink: 0;
    }

    .step-card {
        padding: 1.5rem;
    }

    .step-icon {
        margin: 0 0 1rem 0;
        /* Align left */
    }
}

/* -----------------------------------
   WHY CHOOSE US (SECTION 4)
----------------------------------- */
.why-choose-section {
    padding: 8rem 0;
    background: var(--bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--surface-1);
}

.why-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.why-image-wrapper:hover .why-img {
    transform: scale(1.05);
}

.why-overlay-badge {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    /* Pull out slightly */
    background: var(--surface-1);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.light-mode .why-overlay-badge {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.badge-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.why-content {
    display: flex;
    flex-direction: column;
}

.why-content .section-title {
    margin-bottom: 1.5rem;
}

.why-content .section-lead {
    margin-bottom: 4rem;
}

.credibility-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.credibility-block {
    display: flex;
    gap: 1.5rem;
}

.cred-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    color: var(--accent);
    margin-top: 0.25rem;
}

.cred-text h3 {
    font-size: 1.25rem;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.cred-text p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-overlay-badge {
        right: 2rem;
    }
}

/* -----------------------------------
   INDUSTRY EXPERTISE (SECTION 5)
----------------------------------- */
.expertise-section {
    padding: 8rem 0;
    background: var(--surface-1);
    border-top: 1px solid var(--border);
}

.expertise-header {
    text-align: center;
    margin-bottom: 4rem;
}

.expertise-header .section-lead {
    margin: 1.5rem auto 0;
    max-width: 600px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.expert-card {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 8px;
    transition: transform 0.3s, border-color 0.3s;
}

.expert-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.expert-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.expert-card h3 {
    font-size: 1.25rem;
    color: var(--text-1);
    margin-bottom: 1rem;
}

.expert-card p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.5;
}

.expert-trust-strip {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-3);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------
   INDUSTRY PRESENCE (SECTION 6)
----------------------------------- */
.presence-section {
    padding: 8rem 0;
    background: var(--bg);
}

.presence-header {
    text-align: center;
    margin-bottom: 5rem;
}

.presence-header .section-lead {
    margin: 1.5rem auto 0;
    max-width: 700px;
}

.presence-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.pillar-col {
    text-align: center;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    color: var(--accent);
}

.pillar-col h3 {
    font-size: 1.25rem;
    color: var(--text-1);
    margin-bottom: 1rem;
}

.pillar-col p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.6;
}

.presence-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-img-wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    overflow: hidden;
    background: var(--surface-1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.5s ease;
}

.gallery-img-wrapper:hover .gallery-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.presence-vision {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-1);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .presence-pillars {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .presence-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* -----------------------------------
   CASE STUDY (SECTION 7)
----------------------------------- */
.case-study-section {
    padding: 6rem 0 8rem;
    background: var(--bg);
}

.case-study-card {
    background: var(--surface-1);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 3rem;
}

.cs-header {
    background: rgba(198, 255, 0, 0.05);
    padding: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.light-mode .cs-header {
    background: rgba(0, 0, 0, 0.03);
}

.cs-header h3 {
    font-size: 1.5rem;
    color: var(--text-1);
    margin-bottom: 0.5rem;
}

.cs-duration {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.light-mode .cs-duration {
    color: var(--text-2);
}

.cs-body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem 2.5rem;
}

.cs-stat {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.css-check {
    color: var(--accent);
    font-size: 1.25rem;
    line-height: 1;
}

.cs-stat p {
    font-size: 1.05rem;
    color: var(--text-1);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .cs-body {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------------
   HIGH-IMPACT CTA (SECTION 8)
----------------------------------- */
.action-section {
    position: relative;
    padding: 8rem 0;
    background: #000;
    text-align: center;
    overflow: hidden;
}

.action-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(198, 255, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.action-inner {
    position: relative;
    z-index: 2;
}

.action-headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.action-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.action-ghost {
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

.action-ghost:hover {
    border-color: var(--accent) !important;
    background: rgba(198, 255, 0, 0.05) !important;
}

.action-trust {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   INTRO OVERLAY — Cinematic Entrance v2
   ============================================================ */

/* ── Keyframes ── */
@keyframes ibFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes ibTagSlide {
    from { opacity: 0; transform: translateX(-16px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes checkIn {
    from { opacity: 0; transform: translateX(-10px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Lock body scroll during intro */
body.intro-active {
    overflow: hidden;
}

/* Hide the standard navbar during intro */
body.intro-active .navbar {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(-100%) !important;
}

/* Navbar reveal animation */
.navbar {
    transition: opacity 0.8s ease 0.4s, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s !important;
}

/* ── Full-screen overlay wrapper ── */
.intro-overlay {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    overflow: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.intro-overlay.intro-done {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* Ensure that all intro beats are disabled for interaction when the overlay is done */
.intro-overlay.intro-done .intro-beat {
    pointer-events: none !important;
    visibility: hidden !important;
}

/* =====================================
   DARK LEFT SIDEBAR
   ===================================== */
.intro-sidebar {
    position: relative;
    z-index: 401;
    width: 240px;
    min-width: 200px;
    flex-shrink: 0;
    background: #070707;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    flex-direction: column;
    padding: 2.5rem 2rem 2rem;
    gap: 0;

    transform: translateX(0);
    transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.intro-overlay.intro-done .intro-sidebar {
    transform: translateX(-100%);
}

.intro-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    flex-shrink: 0;
}

.intro-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.intro-nav-link {
    font-size: 0.92rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    letter-spacing: 0.03em;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.25s, padding-left 0.25s;
}

.intro-nav-link:last-child { border-bottom: none; }

.intro-nav-link:hover {
    color: #ffffff;
    padding-left: 0.4rem;
}

/* Progress bar inside sidebar */
.intro-progress-wrap {
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.intro-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--accent, #c6ff00);
    border-radius: 2px;
    transition: width 0.1s linear;
}

.intro-frame-counter {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
    font-family: 'Courier New', monospace;
    flex-shrink: 0;
}

/* =====================================
   BEATS AREA — right of sidebar
   ===================================== */
.intro-beats-area {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Each beat panel */
.intro-beat {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem 4rem 10%;

    /* Hidden by default */
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.intro-beat.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.intro-beat.exiting {
    opacity: 0;
    transition: opacity 0.4s ease;
    visibility: hidden;
}

/* Tag (eyebrow) */
.ib-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent, #c6ff00);
    margin-bottom: 1rem;

    /* Animate in */
    animation: ibTagSlide 0.55s ease forwards;
}

/* Big Headline */
.ib-headline {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.0;
    letter-spacing: -0.04em;
    margin-bottom: 1.4rem;

    /* Animate in */
    animation: ibFadeUp 0.65s 0.1s ease both;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.7);
}

/* Body text */
.ib-body {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    margin-bottom: 2rem;

    animation: ibFadeUp 0.65s 0.2s ease both;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

/* CTA row (beat 0) */
.ib-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: ibFadeUp 0.65s 0.3s ease both;
}

.ib-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    background: var(--accent, #c6ff00);
    color: #0b0b0b;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.25s, transform 0.2s;
}

.ib-btn-primary:hover {
    background: #d4ff1a;
    transform: translateY(-2px);
}

.ib-btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 4px;
    transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.ib-btn-ghost:hover {
    border-color: var(--accent, #c6ff00);
    background: rgba(198, 255, 0, 0.06);
    transform: translateY(-2px);
}

/* Checklist (beats 1 & 2) */
.ib-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    animation: ibFadeUp 0.65s 0.3s ease both;
}

.ib-checklist span {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
    animation: checkIn 0.4s ease both;
}

.ib-checklist span:nth-child(1) { animation-delay: 0.30s; }
.ib-checklist span:nth-child(2) { animation-delay: 0.44s; }
.ib-checklist span:nth-child(3) { animation-delay: 0.58s; }

/* =====================================
   BOTTOM PROGRESS TRACK
   ===================================== */
.intro-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 240px; /* after sidebar */
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.07);
    z-index: 402;
    transition: left 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

.intro-overlay.intro-done .intro-bottom-bar {
    left: 0;
}

.intro-bottom-fill {
    height: 100%;
    width: 0%;
    background: var(--accent, #c6ff00);
    transition: width 0.1s linear;
}

/* ── Controls (bottom right) ── */
.intro-controls {
    position: absolute;
    bottom: 1.4rem;
    right: 2rem;
    z-index: 402;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.8rem;
    animation: ibFadeUp 0.6s 0.8s ease both;
}

.skip-intro-btn {
    appearance: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.skip-intro-btn:hover {
    background: rgba(198, 255, 0, 0.15);
    border-color: var(--accent, #c6ff00);
    color: var(--accent, #c6ff00);
}

.skip-intro-btn span {
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.skip-intro-btn:hover span {
    transform: translateX(3px);
}

.intro-scroll-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
}

/* =====================================
   STATIC HERO — Post-intro
   ===================================== */
.static-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.static-hero .hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
}

/* Side gradient overlay so text card stays legible */
.static-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(6,6,6,0.82) 0%, rgba(6,6,6,0.3) 45%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero card */
.hero-card {
    position: absolute;
    left: 3vw;
    top: 50%;
    transform: translateY(calc(-50% + 30px));
    z-index: 10;
    max-width: 420px;
    padding: 0;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease 0.5s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

body:not(.intro-active) .hero-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
}

/* Hero card's eyebrow / headline / sub inherit from global styles */
.hero-card .hero-eyebrow {
    color: var(--accent, #c6ff00);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.hero-card .hero-headline {
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-card .hero-sub {
    color: rgba(255,255,255,0.72);
}

/* Scroll cue */
body.intro-active .scroll-cue {
    opacity: 0;
    pointer-events: none;
}

body:not(.intro-active) .scroll-cue {
    opacity: 1;
}

.static-hero .scroll-cue {
    position: absolute;
    bottom: 2rem;
    right: 3rem;
    z-index: 10;
    transition: opacity 0.6s ease 0.8s;
}

/* =====================================
   RESPONSIVE – MOBILE
   ===================================== */
@media (max-width: 768px) {
    .intro-sidebar {
        width: 0;
        padding: 0;
        overflow: hidden;
        border-right: none;
    }

    .intro-beat {
        padding: 2rem 1.5rem 5rem;
    }

    .ib-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .intro-bottom-bar {
        left: 0;
    }

    .hero-card {
        left: 1.5rem;
        right: 1.5rem;
        max-width: none;
    }
}
