/* Reset and Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: white;
    background-color: #000;
    overflow-x: hidden;
    /* Global fluid text sizing */
    line-height: 1.5;
}

section {
    padding: clamp(60px, 10vw, 120px) 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Base structural layout */
.background-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #000;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

/* Dark gradient overlay to ensure text legibility */
.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(0,0,0,0.5) 0%, 
        rgba(0,0,0,0.15) 30%, 
        rgba(0,0,0,0.05) 60%, 
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Ensure foreground content stays above overlay */
.navbar, .hero-container, .floating-widget {
    position: relative;
    z-index: 10;
}

/* --- NAVIGATION BAR --- */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(20px, 4vw, 32px) clamp(20px, 5vw, 60px);
    font-size: 14px;
    font-weight: 500;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.nav-link:hover {
    opacity: 1;
}

.nav-center .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.nav-right .start-demo-nav {
    padding: 10px 20px;
}


/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: white;
    color: black;
}

.btn-primary:hover {
    background-color: #f1f1f1;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}


/* --- HERO SECTION --- */
.hero-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    margin-top: -60px; /* pull up slightly to account for navbar */
}

/* Small Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.badge .dot {
    width: 6px;
    height: 6px;
    background-color: #0ea5e9;
    border-radius: 50%;
    box-shadow: 0 0 8px #0ea5e9;
}

/* Typography Headings */
.hero-title {
    font-size: clamp(36px, 8vw, 72px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(16px, 4vw, 19px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Hero Actions */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 15px;
}


/* --- BOTTOM INTEGRATIONS --- */
.hero-bottom-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    padding-bottom: 40px;
}

.bottom-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    font-weight: 500;
}

.integrations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.integration-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.integration-pill:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


/* --- FLOATING VIDEO WIDGET --- */
.floating-widget {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 320px;
    background-color: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.widget-header {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.widget-video-container {
    padding: 0 12px 12px 12px;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 160px;
    background: #111;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Adding a subtle linear gradient to mimic an interface background */
    background: linear-gradient(135deg, #1c1c20 0%, #111 100%);
    border: 1px solid rgba(255,255,255,0.05);
}

/* Mocking video UI elements */
.video-ui-bars {
    position: absolute;
    top: 10px; left: 10px;
    width: 40px; height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.video-ui-chat {
    position: absolute;
    bottom: 10px; left: 10px; right: 10px;
    height: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.play-button {
    width: 44px;
    height: 44px;
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.play-button:hover {
    background-color: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .floating-widget {
        display: none; /* Hide on smaller screens */
    }
    
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    
    .nav-left {
        display: none; /* Hide standard nav on mobile */
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
}

/* --- PARTNER LOGOS --- */
.partner-logos-section {
    background-color: #080808;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-disclaimer {
    max-width: 800px;
    text-align: center;
}

.logo-disclaimer span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.logos-track {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0.4;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.logos-track span {
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.logos-track span:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* --- SCROLL REVEAL SECTION --- */
.scroll-reveal-section {
    background-color: #0a0a0a;
}

.scroll-track {
    height: 300vh; /* Creates scrollable space */
    position: relative;
}

.sticky-text-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reveal-text-block {
    max-width: 800px;
    padding: 20px;
}

.reveal-text-block p {
    font-size: 42px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: -1px;
    margin: 0;
}

.reveal-word {
    display: inline-block;
    opacity: 0.2; /* Default state before scroll reveal */
    transition: opacity 0.1s linear;
}

@media (max-width: 768px) {
    .reveal-text-block p {
        font-size: 28px;
    }
}

/* --- FEATURES TABS SECTION --- */
.features-tabs-section {
    background-color: #080808; /* Very dark slightly off-black */
    padding: 100px 40px;
    color: white;
}

.features-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    gap: 40px;
}

@media (max-width: 900px) {
    .features-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 20px;
    }
}

.features-section-title {
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-top: 20px;
}

.features-header-right p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    max-width: 450px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left side tabs */
.features-tabs {
    display: flex;
    flex-direction: column;
}

.feature-tab {
    padding: 24px 0;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.tab-title {
    font-size: 22px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5); /* Dimmed by default */
    margin-bottom: 16px;
    transition: color 0.3s ease;
}

.progress-bar {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.progress-bar .progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: white;
}

.tab-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

/* Active Tab Styles */
.feature-tab.active .tab-title {
    color: white;
}

.feature-tab.active .tab-content {
    max-height: 150px;
    opacity: 1;
    margin-bottom: 8px;
}

/* Right side Bento Box / Mac Window */
.features-mockup-area {
    position: relative;
    width: 100%;
    background-image: url('2.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Panel switching */
.mockup-panel {
    display: none;
    animation: panelFadeIn 0.5s ease-out;
}

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

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Shared Panel Body Styles --- */
.panel-body {
    display: flex;
    min-height: 400px;
    color: white;
}

.panel-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.panel-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
}

/* === PANEL 1: PREDICTION === */
.panel-prediction {
    display: flex;
}

.pred-panel-left {
    flex: 1;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.pred-panel-right {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ml-models {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.ml-model-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.ml-name {
    width: 80px;
    color: rgba(255,255,255,0.6);
    font-size: 11px;
}

.ml-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.ml-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border-radius: 3px;
    transition: width 1.5s ease-out;
}

.mockup-panel.active .ml-bar-fill {
    animation: barGrow 1.5s ease-out;
}

@keyframes barGrow {
    from { width: 0% !important; }
}

.ml-pct {
    width: 32px;
    text-align: right;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.ensemble-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(168, 85, 247, 0.08);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 8px;
}

.ensemble-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.ensemble-val {
    font-size: 22px;
    font-weight: 700;
    color: #a855f7;
}

.pred-chart-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 16px;
}

.pred-chart-box h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
}

.forecast-chart {
    width: 100%;
    height: 120px;
}

.fc-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.mockup-panel.active .fc-line {
    animation: drawWave 2s ease-out forwards;
}

.fc-area { opacity: 0; }
.mockup-panel.active .fc-area { animation: fadeInArea 2s ease-out forwards; }

.fc-danger-dot { opacity: 0; }
.mockup-panel.active .fc-danger-dot {
    animation: predDotAppear 0.3s ease-out 1.8s forwards, pulseDot 1.5s ease-in-out 2.1s infinite;
}

@keyframes pulseDot {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 7; opacity: 0.5; }
}

.pred-alert-cards {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pred-alert-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.pam-icon { font-size: 8px; }

/* === PANEL 2: RESPONSE === */
.panel-response {
    display: flex;
}

.resp-timeline-side {
    flex: 1;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.resp-status-side {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resp-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 20px;
}

.resp-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: rgba(255,255,255,0.08);
}

.tl-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    position: relative;
}

.tl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    position: absolute;
    left: -20px;
    top: 10px;
    z-index: 2;
}

.tl-item.tl-done .tl-dot {
    background: #22c55e;
    border-color: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,0.4);
}

.tl-item.tl-active .tl-dot {
    background: #3b82f6;
    border-color: #3b82f6;
    box-shadow: 0 0 12px rgba(59,130,246,0.5);
    animation: pulseDotBlue 1.5s ease-in-out infinite;
}

@keyframes pulseDotBlue {
    0%, 100% { box-shadow: 0 0 8px rgba(59,130,246,0.4); }
    50% { box-shadow: 0 0 20px rgba(59,130,246,0.7); }
}

.tl-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tl-time {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    font-family: monospace;
}

.tl-text {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.tl-item.tl-active .tl-text {
    color: #60a5fa;
    font-weight: 500;
}

/* Animate timeline items appearing */
.mockup-panel.active .tl-item {
    opacity: 0;
    animation: fadeUp 0.3s ease-out forwards;
}
.mockup-panel.active .tl-item:nth-child(1) { animation-delay: 0.1s; }
.mockup-panel.active .tl-item:nth-child(2) { animation-delay: 0.3s; }
.mockup-panel.active .tl-item:nth-child(3) { animation-delay: 0.5s; }
.mockup-panel.active .tl-item:nth-child(4) { animation-delay: 0.7s; }
.mockup-panel.active .tl-item:nth-child(5) { animation-delay: 0.9s; }

.resp-status-card {
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
}

.rsc-header {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.rsc-val {
    font-size: 20px;
    font-weight: 700;
}

.rsc-val.isolated {
    color: #f87171;
    animation: blinkText 2s ease-in-out infinite;
}

@keyframes blinkText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.rsc-detail {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
}

.resp-playbook {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 16px;
}

.rpb-header {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.rpb-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.rpb-steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rpb-step {
    font-size: 12px;
    padding: 4px 0;
    color: rgba(255,255,255,0.4);
}

.rpb-step.done { color: #4ade80; }
.rpb-step.active { color: #60a5fa; font-weight: 500; }
.rpb-step.pending { color: rgba(255,255,255,0.25); }

/* === PANEL 3: LEARNING === */
.panel-learning {
    display: flex;
}

.learn-left {
    flex: 1;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.learn-right {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.learn-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.learn-metric {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.lm-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 6px;
}

.lm-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.lm-val {
    font-size: 22px;
    font-weight: 700;
}

.lm-val.lm-down { color: #22c55e; }
.lm-val.lm-up { color: #3b82f6; }

.lm-detail {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.learn-chart-box {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 16px;
}

.learn-chart-box h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
}

.learn-chart {
    width: 100%;
    height: 100px;
}

.lc-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.mockup-panel.active .lc-line {
    animation: drawWave 2s ease-out forwards;
}

.lc-area { opacity: 0; }
.mockup-panel.active .lc-area { animation: fadeInArea 2s ease-out forwards; }

.learn-activity {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.la-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

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

.mac-window {
    background-color: #121212;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
}

.mac-header {
    height: 40px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mac-dots {
    display: flex;
    gap: 8px;
}

.mac-dots span {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.red-dot { background-color: #ff5f56; }
.yellow-dot { background-color: #ffbd2e; }
.green-dot { background-color: #27c93f; }

.mac-browser-bar {
    flex: 1;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.05);
    max-width: 300px;
    margin: 0 auto;
    padding: 4px 0;
    border-radius: 4px;
}

.mac-body {
    display: flex;
    min-height: 400px;
}

@media (max-width: 900px) {
    .mac-body {
        flex-direction: column;
    }
}

/* Chat side */
.mac-chat {
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.05);
    padding: clamp(16px, 4vw, 24px);
    display: flex;
    flex-direction: column;
}

@media (max-width: 900px) {
    .mac-chat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}

.chat-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 500;
}

.chat-icons .icon-btn {
    opacity: 0.5;
    margin-left: 12px;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.msg-bot, .msg-user {
    max-width: 80%;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.4;
}

.msg-bot {
    background-color: transparent;
    color: white;
}

.msg-user {
    background-color: #3b82f6;
    color: white;
    border-radius: 12px;
    align-self: flex-end;
}

.chat-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.chat-answer-btn {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: left;
    font-size: 14px;
    cursor: pointer;
}

/* Dashboard Side */
.mac-dashboard {
    flex: 1;
    background-color: #0a0a0a;
    padding: clamp(16px, 4vw, 24px);
}

.dash-top h3 {
    font-size: 18px;
    margin-bottom: 4px;
    font-weight: 500;
}

.dash-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.dash-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 16px;
    border-radius: 8px;
    flex: 1;
}

.stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}

.stat-value {
    font-size: 24px;
    margin: 8px 0;
}

.stat-trend {
    font-size: 11px;
}
.trend-up {
    color: #10b981;
}

.dash-list-wrapper {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 16px;
}

.dash-list-title {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dash-list .list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

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

.tag {
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
}
.tag-blue { background: rgba(59,130,246,0.2); color: #60a5fa; }
.tag-yellow { background: rgba(234,179,8,0.2); color: #fde047; }
.tag-red { background: rgba(239,68,68,0.2); color: #f87171; }
.tag-green { background: rgba(16,185,129,0.2); color: #34d399; }

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .dash-stats {
        flex-direction: column;
    }
}

/* --- OUTCOMES SECTION --- */
.outcomes-section {
    background-color: #050505;
    padding: 100px 40px;
    color: white;
}

.outcomes-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.outcomes-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -1px;
    margin-top: 20px;
}

.outcomes-header-right p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    max-width: 350px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 3vw, 30px);
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
}

.outcome-card {
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), box-shadow 0.4s ease;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(145deg, #151515, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.outcome-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.outcome-card.bento-card.active {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(255,255,255,0.04);
}

/* --- Bento Progress Bar --- */
.bento-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.06);
    z-index: 10;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.bento-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,1));
    border-radius: 0 2px 2px 0;
    transition: none;
}

/* --- Card Graphic Improvements --- */
.bento-anim-graphic {
    background: linear-gradient(145deg, #111, #080808) !important;
    border: none !important;
    border-radius: 0 !important;
    position: relative;
    overflow: hidden;
    height: 240px;
}

/* Background images for each bento card */
.bento-card[data-bento="0"] .bento-anim-graphic { background: url('3.png') center/cover no-repeat !important; }
.bento-card[data-bento="1"] .bento-anim-graphic { background: url('4.png') center/cover no-repeat !important; }
.bento-card[data-bento="2"] .bento-anim-graphic { background: url('5.png') center/cover no-repeat !important; }
.bento-card[data-bento="3"] .bento-anim-graphic { background: url('2.png') center/cover no-repeat !important; }
.bento-card[data-bento="4"] .bento-anim-graphic { background: url('3.png') center 60%/cover no-repeat !important; }
.bento-card[data-bento="5"] .bento-anim-graphic { background: url('5.png') center 30%/cover no-repeat !important; }

.bento-anim-graphic::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    pointer-events: none;
    z-index: 1;
}

/* Make predictive card background more visible */
.bento-card[data-bento="1"] .bento-anim-graphic::before {
    background: rgba(0,0,0,0.42);
}

/* Active card graphic glow */
.bento-card.active .bento-anim-graphic::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
    animation: gentlePulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gentlePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* ============================================================
   CARD 1: COST SAVINGS - Animated Rings
   ============================================================ */
.anim-cost-savings {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cost-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.cost-ring-1 {
    width: 180px; height: 180px;
    animation: costRingSpin 12s linear infinite;
    border-color: rgba(16, 185, 129, 0.2);
    border-top-color: rgba(16, 185, 129, 0.6);
}

.cost-ring-2 {
    width: 140px; height: 140px;
    animation: costRingSpin 8s linear infinite reverse;
    border-color: rgba(52, 211, 153, 0.15);
    border-right-color: rgba(52, 211, 153, 0.5);
}

.cost-ring-3 {
    width: 100px; height: 100px;
    animation: costRingSpin 15s linear infinite;
    border-color: rgba(110, 231, 183, 0.1);
    border-bottom-color: rgba(110, 231, 183, 0.4);
}

@keyframes costRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cost-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cost-dollar {
    font-size: 14px;
    color: #10b981;
    font-weight: 500;
}

.cost-amount {
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: -1px;
    line-height: 1;
}

.cost-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.cost-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: #10b981;
    border-radius: 50%;
    opacity: 0;
}

.bento-card.active .cost-particle {
    animation: costParticle 3s ease-in-out infinite;
}

.cost-particle.p1 { top: 20%; left: 25%; animation-delay: 0s; }
.cost-particle.p2 { top: 60%; right: 20%; animation-delay: 0.8s; }
.cost-particle.p3 { bottom: 25%; left: 30%; animation-delay: 1.6s; }
.cost-particle.p4 { top: 30%; right: 30%; animation-delay: 2.2s; }

@keyframes costParticle {
    0% { opacity: 0; transform: scale(0) translateY(0); }
    30% { opacity: 1; transform: scale(1) translateY(-10px); }
    70% { opacity: 0.6; transform: scale(0.8) translateY(-25px); }
    100% { opacity: 0; transform: scale(0) translateY(-40px); }
}

/* ============================================================
   CARD 2: PREDICTIVE MAINTENANCE - Wave Animation
   ============================================================ */
.anim-predictive {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.pred-wave-svg {
    width: 90%;
    height: 60%;
    opacity: 0.8;
}

.pred-wave-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
}

.bento-card.active .pred-wave-line {
    animation: drawWave 2s ease-out forwards;
}

.bento-card.active .pred-wave-area {
    animation: fadeInArea 2s ease-out forwards;
    opacity: 0;
}

@keyframes drawWave {
    to { stroke-dashoffset: 0; }
}

@keyframes fadeInArea {
    0% { opacity: 0; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

.pred-dot, .pred-dot-glow {
    opacity: 0;
}

.bento-card.active .pred-dot {
    animation: predDotAppear 0.5s ease-out 1.8s forwards;
}

.bento-card.active .pred-dot-glow {
    animation: predDotAppear 0.5s ease-out 1.8s forwards, predDotPulse 2s ease-in-out 2.3s infinite;
}

@keyframes predDotAppear {
    to { opacity: 1; }
}

@keyframes predDotPulse {
    0%, 100% { r: 8; opacity: 0.3; }
    50% { r: 14; opacity: 0.1; }
}

.pred-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    opacity: 0;
}

.bento-card.active .pred-label {
    animation: fadeUp 0.5s ease-out 2s forwards;
}

.pred-badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fbbf24;
    font-weight: 500;
}

.pred-days {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CARD 3: MTTR GAUGE
   ============================================================ */
.anim-mttr {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 2;
    position: relative;
}

.mttr-gauge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gauge-svg { width: 160px; height: 90px; }

.gauge-fill {
    stroke-dashoffset: 157;
    transition: none;
}

.bento-card.active .gauge-fill {
    animation: fillGauge 2s ease-out 0.3s forwards;
}

@keyframes fillGauge {
    to { stroke-dashoffset: 42; }
}

.gauge-value {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-top: -20px;
    opacity: 0;
}

.bento-card.active .gauge-value {
    animation: fadeUp 0.5s ease-out 1s forwards;
}

.gauge-label {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: -4px;
    opacity: 0;
}

.bento-card.active .gauge-label {
    animation: fadeUp 0.5s ease-out 1.2s forwards;
}

.mttr-stats {
    display: flex;
    gap: 24px;
}

.mttr-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    opacity: 0;
}

.bento-card.active .mttr-stat:nth-child(1) { animation: fadeUp 0.4s ease-out 1.4s forwards; }
.bento-card.active .mttr-stat:nth-child(2) { animation: fadeUp 0.4s ease-out 1.6s forwards; }

.mstat-val {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.mstat-lbl {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================================
   CARD 4: CROSS-PLATFORM ORBIT
   ============================================================ */
.anim-crossplatform {
    width: 100%; height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.cp-hub {
    width: 20px; height: 20px;
    background: radial-gradient(circle, #3b82f6, #1d4ed8);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59,130,246,0.4);
    z-index: 5;
    position: relative;
}

.cp-orbit-ring {
    position: absolute;
    width: 160px; height: 160px;
    border: 1px dashed rgba(255,255,255,0.08);
    border-radius: 50%;
}

.bento-card.active .cp-orbit-ring {
    animation: orbitSpin 20s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cp-device {
    position: absolute;
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    padding: 6px;
    z-index: 3;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cp-device:hover {
    transform: scale(1.2);
    box-shadow: 0 0 16px rgba(59,130,246,0.3);
    border-color: rgba(59,130,246,0.5);
    color: #60a5fa;
}

.bento-card.active .cp-device { animation: deviceAppear 0.4s ease-out forwards; }
.bento-card.active .cp-d1 { animation-delay: 0.2s; }
.bento-card.active .cp-d2 { animation-delay: 0.4s; }
.bento-card.active .cp-d3 { animation-delay: 0.6s; }
.bento-card.active .cp-d4 { animation-delay: 0.8s; }
.bento-card.active .cp-d5 { animation-delay: 1.0s; }

.cp-d1 { top: 20%; left: 50%; transform: translateX(-50%); }
.cp-d2 { top: 50%; right: 12%; }
.cp-d3 { bottom: 20%; right: 25%; }
.cp-d4 { bottom: 20%; left: 25%; }
.cp-d5 { top: 50%; left: 12%; }

@keyframes deviceAppear {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/* Connection lines */
.cp-line {
    position: absolute;
    background: linear-gradient(to bottom, rgba(59,130,246,0.3), transparent);
    width: 1px;
    height: 40px;
    z-index: 1;
    opacity: 0;
}

.bento-card.active .cp-line { animation: lineAppear 0.3s ease-out forwards; }
.bento-card.active .cp-line1 { animation-delay: 0.3s; top: calc(20% + 36px); left: 50%; transform: rotate(0deg); }
.bento-card.active .cp-line2 { animation-delay: 0.5s; top: 50%; right: calc(12% + 20px); transform: rotate(-60deg); }
.bento-card.active .cp-line3 { animation-delay: 0.7s; bottom: calc(20% + 20px); right: 35%; transform: rotate(-30deg); }
.bento-card.active .cp-line4 { animation-delay: 0.9s; bottom: calc(20% + 20px); left: 35%; transform: rotate(30deg); }
.bento-card.active .cp-line5 { animation-delay: 1.1s; top: 50%; left: calc(12% + 20px); transform: rotate(60deg); }

@keyframes lineAppear {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ============================================================
   CARD 5: COMPLIANCE SHIELD
   ============================================================ */
.anim-compliance {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 2;
    position: relative;
}

.comp-shield {
    position: relative;
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-svg {
    width: 100%; height: 100%;
    opacity: 0.3;
}

.bento-card.active .shield-svg {
    animation: shieldGlow 2s ease-in-out infinite;
}

@keyframes shieldGlow {
    0%, 100% { opacity: 0.3; filter: drop-shadow(0 0 4px rgba(34,197,94,0)); }
    50% { opacity: 0.6; filter: drop-shadow(0 0 12px rgba(34,197,94,0.4)); }
}

.shield-check {
    position: absolute;
    font-size: 22px;
    color: #22c55e;
    font-weight: 700;
    opacity: 0;
}

.bento-card.active .shield-check {
    animation: checkBounce 0.5s ease-out 0.5s forwards;
}

@keyframes checkBounce {
    0% { opacity: 0; transform: scale(0); }
    60% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}

.comp-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
}

.comp-badge {
    font-size: 10px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
}

.bento-card.active .comp-badge { animation: badgeSlide 0.4s ease-out forwards; }
.bento-card.active .cb-1 { animation-delay: 0.8s; }
.bento-card.active .cb-2 { animation-delay: 1.0s; }
.bento-card.active .cb-3 { animation-delay: 1.2s; }
.bento-card.active .cb-4 { animation-delay: 1.4s; }

@keyframes badgeSlide {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.comp-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 60%;
    opacity: 0;
}

.bento-card.active .comp-score {
    animation: fadeUp 0.4s ease-out 1.6s forwards;
}

.comp-score-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
}

.comp-score-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 2px;
}

.bento-card.active .comp-score-fill {
    animation: fillBar 1.5s ease-out 1.8s forwards;
}

@keyframes fillBar {
    to { width: 92%; }
}

.comp-score-val {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 1px;
}

/* ============================================================
   CARD 6: SUB-100MS RESPONSE PULSE
   ============================================================ */
.anim-response {
    width: 100%; height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.resp-pulse-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59,130,246,0.15);
}

.resp-pulse-ring.r1 { width: 180px; height: 180px; }
.resp-pulse-ring.r2 { width: 130px; height: 130px; }
.resp-pulse-ring.r3 { width: 80px; height: 80px; }

.bento-card.active .resp-pulse-ring {
    animation: pulsate 2.5s ease-out infinite;
}

.bento-card.active .resp-pulse-ring.r2 { animation-delay: 0.4s; }
.bento-card.active .resp-pulse-ring.r3 { animation-delay: 0.8s; }

@keyframes pulsate {
    0% { transform: scale(0.8); opacity: 0.8; border-color: rgba(59,130,246,0.4); }
    50% { transform: scale(1.05); opacity: 0.2; border-color: rgba(59,130,246,0.1); }
    100% { transform: scale(0.8); opacity: 0.8; border-color: rgba(59,130,246,0.4); }
}

.resp-center {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.resp-value {
    font-size: 36px;
    font-weight: 700;
    color: white;
    letter-spacing: -2px;
}

.resp-unit {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

.resp-bolt {
    position: absolute;
    font-size: 16px;
    opacity: 0;
    z-index: 3;
}

.bento-card.active .resp-bolt {
    animation: boltFlash 2s ease-in-out infinite;
}

.resp-bolt.b1 { top: 20%; right: 20%; animation-delay: 0s; }
.resp-bolt.b2 { bottom: 25%; left: 22%; animation-delay: 0.7s; }
.resp-bolt.b3 { top: 35%; left: 18%; animation-delay: 1.4s; }

@keyframes boltFlash {
    0% { opacity: 0; transform: scale(0.5) translateY(0); }
    15% { opacity: 1; transform: scale(1.2) translateY(-5px); }
    30% { opacity: 0; transform: scale(0.8) translateY(-10px); }
    100% { opacity: 0; }
}

/* --- Card Text improvements --- */
.card-graphic {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-text {
    padding: 24px;
}

.card-text h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.card-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}


@media (max-width: 1024px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }
    .outcomes-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* --- BUYER INTELLIGENCE SECTION --- */
.intelligence-section {
    background-color: #080808;
    padding: 100px 40px;
    color: white;
}

.slack-mockup-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    background-image: url('3.png');
    background-size: cover;
    background-position: center 40%;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.slack-window {
    background-color: #1a1d21;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    height: 600px;
}

@media (max-width: 900px) {
    .slack-main {
        flex: 1;
        border-right: none;
    }
    .slack-thread-pane {
        display: none;
    }
}

/* Left / Right Pane Layout */
.slack-main {
    flex: 6;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.slack-thread-pane {
    flex: 4;
    display: flex;
    flex-direction: column;
    background-color: #1a1d21;
}

/* Headers */
.slack-header {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sh-left { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px;}
.hash-icon { color: rgba(255,255,255,0.5); font-weight: 400; font-size: 18px; }
.channel-name { color: #d1d5db; }
.sh-right { display: flex; gap: 12px; color: rgba(255,255,255,0.6); align-items: center; }
.sh-icon { display:flex; align-items:center; gap:4px; padding: 4px; border-radius: 4px;}
.sh-search { background: rgba(255,255,255,0.05); padding: 4px 8px; border-radius: 4px; font-size:12px; }

.thread-header {
    background-color: #1a1d21;
}
.th-title { font-weight: 600; font-size: 15px; color: #d1d5db; }
.th-actions { color: rgba(255,255,255,0.5); letter-spacing: 4px; }

/* Chat Bodies */
.slack-chat-body, .thread-body {
    flex: 1;
    overflow-y: hidden;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
}
.thread-body {
    padding: 16px 0;
}

/* Messages */
.slack-msg {
    display: flex;
    padding: 8px 20px;
    gap: 12px;
}
.slack-msg:hover { background-color: rgba(255,255,255,0.02); }
.active-msg { background-color: rgba(255,255,255,0.03); }

.slack-avatar {
    width: 36px; height: 36px;
    border-radius: 4px;
    flex-shrink: 0;
}
.agent-avatar { background: #222; display:flex; align-items:center; justify-content:center; border: 1px solid rgba(255,255,255,0.1); }
.user-avatar { background: url('HEiGBCEWEAAyAx3.jpg') center/cover; }

.slack-content { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.slack-meta { font-size: 15px; display: flex; align-items: baseline; gap: 8px; color: #d1d5db;}
.slack-meta strong { font-weight: 700; color: white; }
.agent-tag { background: rgba(255,255,255,0.1); font-size: 9px; padding: 2px 4px; border-radius: 2px; font-weight: 600; letter-spacing:0.5px;}
.time { color: rgba(255,255,255,0.4); font-size: 12px; font-weight: 400; }

/* Mock lines for Skeleton */
.mock-text-bar { background: rgba(255,255,255,0.1); height: 12px; border-radius: 6px; margin-bottom: 6px; }
.mock-text-bar.long { width: 80%; }
.mock-text-bar.medium { width: 60%; }
.mock-text-bar.short { width: 40%; }
.delay { animation: slideIn 1.5s ease-out; }

/* Reactions */
.slack-reactions { display: flex; margin-top: 4px; gap: 6px; }
.reaction { background: rgba(255,255,255,0.08); padding: 2px 8px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); font-size: 12px; display: flex; align-items: center; gap: 4px;}

/* Divider */
.slack-divider {
    position: relative;
    text-align: center;
    margin: 20px 0;
}
.slack-divider::before {
    content: ''; position: absolute; top: 50%; left: 0; right: 0;
    height: 1px; background: rgba(255,255,255,0.1);
}
.slack-divider span {
    position: relative;
    background: #1a1d21;
    padding: 0 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* Specific text styles */
.slack-text {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.9);
}
.mention {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    padding: 0 4px;
    border-radius: 2px;
}
.slack-thread-snippet {
    display: flex; align-items: center; gap: 8px;
    margin-top: 8px;
}
.snippet-avatars { display: flex; }
.tiny-avatar { width: 20px; height: 20px; border-radius: 4px; border: 2px solid #1a1d21; background: #222; }
.reply-count { color: #60a5fa; font-size: 13px; font-weight: 500; }

.thread-replies-count {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    padding: 0 20px;
    margin: 16px 0;
}
.thread-replies-count .line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
    .slack-window { flex-direction: column; height: auto; }
    .slack-main, .slack-thread-pane { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .slack-thread-pane { border-bottom: none; }
}

/* --- Intelligence Features Grid --- */
.intelligence-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0 auto;
}

.intel-feature {
    display: flex;
    flex-direction: column;
}

.intel-icon {
    width: 44px; height: 44px;
    background-color: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
}

.intel-feature h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.intel-feature p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .intelligence-features-grid {
        grid-template-columns: 1fr;
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    background-color: #0d0d0d;
    padding: 100px 40px;
    color: white;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.testimonials-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.test-header-left {
    flex: 1;
}

.test-header-right {
    display: flex;
    justify-content: flex-end;
}

.case-study-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #111;
    border-radius: 12px;
    padding: 16px;
    padding-right: 48px;
    border: 1px solid rgba(255,255,255,0.08);
}

.case-study-thumb {
    position: relative;
    width: 120px; height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: #222;
}

.case-study-thumb img {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
}

.play-overlay {
    position: absolute; top:0; left:0; right:0; bottom:0;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
}

.play-overlay svg {
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    padding: 4px;
    backdrop-filter: blur(4px);
}

.case-study-content {
    display: flex; flex-direction: column; gap: 8px;
}

.case-study-tag {
    align-self: flex-start;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
    background: transparent;
}

.case-study-content h4 {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #0d0d0d;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
}

.quote-mark {
    font-size: 24px;
    font-family: Georgia, serif;
    color: rgba(255,255,255,0.4);
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #333;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info strong {
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.author-info span {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

@media (max-width: 1024px) {
    .testimonials-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

/* --- Getting Started Section (Light Theme) --- */
.getting-started-section {
    background-color: #f7f9fa;
    color: #111;
    padding: 100px 40px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.gs-header-wrapper {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.light-badge {
    background-color: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: #444;
    align-self: flex-start;
}

.gs-section-title {
    font-size: 48px;
    font-weight: 500;
    letter-spacing: -1px;
    color: #1c1c1c;
}

/* Steps Grid */
.gs-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 80px auto;
}

.gs-step {
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    opacity: 0.5;
}

.gs-step.active-step {
    opacity: 1;
}

.gs-step h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

.gs-step p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.5;
    min-height: 40px;
}

.step-progress-bar {
    position: relative;
    height: 3px;
    width: 100%;
    background: #e5e7eb;
    margin-top: auto;
    border-radius: 2px;
    overflow: hidden;
}

.gs-progress-fill {
    height: 100%;
    width: 0%;
    background: #111;
    border-radius: 2px;
    transition: none;
}

.active-step .step-progress-bar {
    background: #d1d5db;
}

/* GS Dashboard Panels */
.gs-db-panel {
    display: none;
    animation: panelFadeIn 0.5s ease-out;
}
.gs-db-panel.active {
    display: block;
}

/* Dashboard Mockup Area */
.gs-mockup-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 24px;
    padding: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}

.mockup-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('HEiGBCEWEAAyAx3.jpg'); /* Mountain Background from repo */
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    opacity: 0.85;
}

.dashboard-ui {
    position: relative;
    z-index: 2;
    background-color: #1c1c1c;
    border-radius: 12px;
    display: flex;
    height: 600px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
}

/* Sidebar */
.db-sidebar {
    width: 280px;
    background-color: #262626;
    padding: 24px 12px;
    display: flex;
    flex-direction: column;
}

.db-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 24px;
    padding: 0 12px;
    color: #e5e7eb;
}

.info-icon {
    color: rgba(255,255,255,0.4);
}

.db-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.db-nav li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #a3a3a3;
    cursor: pointer;
    transition: all 0.2s;
}

.db-nav li:hover {
    background: rgba(255,255,255,0.05);
}

.db-nav li.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.db-nav .icon {
    font-size: 18px;
    opacity: 0.8;
}

/* Main Pane */
.db-main-pane {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #1c1c1c;
    padding: 24px 32px;
    border-left: 1px solid rgba(255,255,255,0.05);
}

.db-pane-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.db-pane-header h3 {
    font-size: 20px;
    font-weight: 500;
    color: white;
}

.upload-btn {
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

/* Video Grid inside DB */
.db-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow-y: auto;
}

.db-video-card {
    background-color: #111;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.db-video-img {
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: url('HEiGBCEWEAAyAx3.jpg'); /* placeholder for demo video thumbs */
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-video-img .play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    padding-left: 3px;
    backdrop-filter: blur(2px);
}

/* ============ GS PANEL CONTENT STYLES ============ */

/* Panel 0: Fleet Enrollment */
.fleet-enrollment { padding: 8px 0; }
.fe-stat-row { display: flex; gap: 24px; margin-bottom: 24px; }
.fe-stat { display: flex; flex-direction: column; gap: 4px; }
.fe-num { font-size: 28px; font-weight: 700; color: white; }
.fe-num.fe-green { color: #22c55e; }
.fe-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.fe-devices { display: flex; flex-direction: column; gap: 8px; }
.fe-device-row {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 8px;
    font-size: 13px; color: rgba(255,255,255,0.7);
    opacity: 0;
}
.gs-db-panel.active .fe-device-row { animation: fadeUp 0.3s ease-out forwards; }
.gs-db-panel.active .fe-device-row:nth-child(1) { animation-delay: 0.1s; }
.gs-db-panel.active .fe-device-row:nth-child(2) { animation-delay: 0.25s; }
.gs-db-panel.active .fe-device-row:nth-child(3) { animation-delay: 0.4s; }
.gs-db-panel.active .fe-device-row:nth-child(4) { animation-delay: 0.55s; }
.fe-icon { font-size: 16px; }
.fe-name { font-weight: 600; color: white; min-width: 110px; }
.fe-os { color: rgba(255,255,255,0.35); min-width: 100px; }
.fe-status { margin-left: auto; font-size: 12px; font-weight: 500; }
.fe-status.fe-ok { color: #22c55e; }
.fe-status.fe-pending { color: #fbbf24; }

/* Panel 1: Baseline Scan */
.baseline-scan { padding: 8px 0; }
.bs-progress-wrapper { margin-bottom: 24px; }
.bs-scan-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.bs-scan-bar { width: 100%; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.bs-scan-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #0ea5e9, #3b82f6); border-radius: 3px; }
.gs-db-panel.active .bs-scan-fill { animation: fillBar 2s ease-out 0.3s forwards; }
.bs-findings { display: flex; flex-direction: column; gap: 10px; }
.bs-finding {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 8px;
    font-size: 13px; opacity: 0;
}
.gs-db-panel.active .bs-finding { animation: fadeUp 0.3s ease-out forwards; }
.gs-db-panel.active .bs-finding:nth-child(1) { animation-delay: 0.5s; }
.gs-db-panel.active .bs-finding:nth-child(2) { animation-delay: 0.7s; }
.gs-db-panel.active .bs-finding:nth-child(3) { animation-delay: 0.9s; }
.gs-db-panel.active .bs-finding:nth-child(4) { animation-delay: 1.1s; }
.bsf-icon { font-size: 16px; }
.bsf-text { flex: 1; color: rgba(255,255,255,0.7); }
.bsf-badge { font-size: 10px; padding: 2px 8px; border-radius: 10px; background: rgba(34,197,94,0.15); color: #4ade80; font-weight: 500; }
.bsf-badge.bsf-warn { background: rgba(245,158,11,0.15); color: #fbbf24; }

/* Panel 2: Playbook Config */
.playbook-config { padding: 8px 0; }
.pb-cards { display: flex; flex-direction: column; gap: 12px; }
.pb-card {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 10px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    cursor: pointer; opacity: 0;
}
.gs-db-panel.active .pb-card { animation: fadeUp 0.3s ease-out forwards; }
.gs-db-panel.active .pb-card:nth-child(1) { animation-delay: 0.1s; }
.gs-db-panel.active .pb-card:nth-child(2) { animation-delay: 0.25s; }
.gs-db-panel.active .pb-card:nth-child(3) { animation-delay: 0.4s; }
.gs-db-panel.active .pb-card:nth-child(4) { animation-delay: 0.55s; }
.pb-card:hover { transform: translateX(4px); border-color: rgba(255,255,255,0.15); }
.pb-icon { font-size: 24px; }
.pb-info { display: flex; flex-direction: column; gap: 4px; }
.pb-name { font-size: 15px; font-weight: 600; color: white; }
.pb-mode { font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 10px; display: inline-block; width: fit-content; }
.pb-mode.pb-auto { background: rgba(34,197,94,0.15); color: #4ade80; }
.pb-mode.pb-hitl { background: rgba(245,158,11,0.15); color: #fbbf24; }

/* Panel 3: Model Performance */
.model-perf { padding: 8px 0; }
.mp-metrics { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.mp-metric { display: flex; flex-direction: column; gap: 6px; }
.mp-label { font-size: 12px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.5px; }
.mp-bar-wrap { display: flex; align-items: center; gap: 12px; }
.mp-bar-bg { flex: 1; height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; }
.mp-bar-fill { height: 100%; border-radius: 4px; transition: width 1.5s ease-out; }
.mp-fill-1 { background: linear-gradient(90deg, #3b82f6, #6366f1); }
.mp-fill-2 { background: linear-gradient(90deg, #22c55e, #4ade80); }
.mp-fill-3 { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.gs-db-panel.active .mp-bar-fill { animation: barGrow 1.5s ease-out; }
.mp-val { font-size: 14px; font-weight: 600; color: white; min-width: 50px; }
.mp-updates { display: flex; flex-direction: column; gap: 8px; }
.mp-update {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 12px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 6px;
    font-size: 12px; opacity: 0;
}
.gs-db-panel.active .mp-update { animation: fadeUp 0.3s ease-out forwards; }
.gs-db-panel.active .mp-update:nth-child(1) { animation-delay: 0.8s; }
.gs-db-panel.active .mp-update:nth-child(2) { animation-delay: 1.0s; }
.gs-db-panel.active .mp-update:nth-child(3) { animation-delay: 1.2s; }
.mpu-time { color: rgba(255,255,255,0.3); min-width: 50px; font-family: monospace; }
.mpu-text { color: rgba(255,255,255,0.6); }

/* CTI Feed */
.cti-feed { padding: 8px 0; }
.cti-map-placeholder { background: rgba(255,255,255,0.03); border-radius: 12px; margin-bottom: 20px; overflow: hidden; }
.cti-list { display: flex; flex-direction: column; gap: 8px; }
.cti-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; font-size: 13px; }
.cti-badge { font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; text-transform: uppercase; }
.cti-high { background: rgba(239, 68, 68, 0.2); color: #f87171; }
.cti-med { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }
.cti-low { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.cti-text { flex: 1; color: rgba(255,255,255,0.7); }
.cti-time { color: rgba(255,255,255,0.3); font-size: 11px; }

/* Vulnerability Scan */
.vuln-scan { padding: 8px 0; }
.vuln-stats { display: flex; gap: 16px; margin-bottom: 24px; }
.vs-box { flex: 1; padding: 16px; border-radius: 10px; display: flex; flex-direction: column; align-items: center; gap: 4px; border: 1px solid rgba(255,255,255,0.05); }
.vs-crit { background: rgba(239, 68, 68, 0.1); }
.vs-high { background: rgba(239, 68, 68, 0.05); }
.vs-med { background: rgba(255, 255, 255, 0.03); }
.vs-num { font-size: 24px; font-weight: 700; color: white; }
.vs-lab { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.vuln-list { display: flex; flex-direction: column; gap: 8px; }
.vl-item { display: flex; align-items: center; gap: 16px; padding: 10px 14px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; font-size: 13px; }
.vl-risk { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 10px; min-width: 60px; text-align: center; }
.r-crit { background: #ef4444; color: white; }
.r-high { background: rgba(239,68,68,0.2); color: #f87171; }
.vl-app { color: rgba(255,255,255,0.4); margin-left: auto; }

/* Compliance Panel */
.compliance-panel { padding: 8px 0; }
.comp-progress-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cp-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); padding: 20px; border-radius: 12px; display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.cp-card h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }
.cp-ring { position: relative; width: 60px; height: 60px; }
.cp-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.cp-pct { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 12px; font-weight: 700; color: white; }

/* Identity Panel */
.identity-panel { padding: 8px 0; }
.id-user-list { display: flex; flex-direction: column; gap: 12px; }
.id-user { display: flex; align-items: center; gap: 16px; padding: 14px 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; }
.u-avatar { width: 36px; height: 36px; border-radius: 50%; background: #3b82f6; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: white; }
.u-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.u-info strong { font-size: 14px; color: white; }
.u-info span { font-size: 12px; color: rgba(255,255,255,0.4); }
.u-risk { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 12px; }
.ris-low { background: rgba(34,197,94,0.15); color: #4ade80; }
.ris-high { background: rgba(239,68,68,0.15); color: #f87171; animation: pulseRed 2s infinite; }

@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(239,68,68,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
    100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

/* Response improvements for complex grids */
@media (max-width: 1200px) {
    .comp-progress-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .comp-progress-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .gs-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .gs-mockup-wrapper {
        padding: 20px;
    }
    .dashboard-ui {
        flex-direction: column;
        height: auto;
    }
    .db-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    #db-nav {
        display: flex;
        overflow-x: auto;
        padding: 12px;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
        border-bottom: none;
    }
    
    #db-nav li {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 8px 16px !important;
        border-bottom: none !important;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: 8px;
    }
    
    #db-nav li.active {
        background: rgba(255,255,255,0.1);
        border-color: rgba(255,255,255,0.2);
    }

    .db-video-grid {
        grid-template-columns: 1fr;
    }
}

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

/* --- Use Cases & Deployments --- */
.use-cases-section, .deployments-section {
    background-color: #f7f9fa; /* connecting to the light theme seamlessly */
    padding: 60px 40px 100px 40px;
    color: #111;
}

.uc-header-wrapper {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.uc-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.02);
}

.uc-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f3f4f6;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    align-self: flex-start;
    margin-bottom: 30px;
}

.uc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.uc-card h4 {
    font-size: 20px;
    font-weight: 500;
    color: #1c1c1c;
    margin-bottom: 12px;
}

.uc-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Deployments Cards --- */
.deploy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.deploy-card {
    display: flex;
    flex-direction: column;
}

.deploy-mockup {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    background-color: #1a1a1a;
}

/* Browser Frame Top Bar */
.deploy-browser-frame {
    display: flex;
    align-items: center;
    background-color: #2a2a2a;
    padding: 12px 16px;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.bdot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.bdot.red { background-color: #ff5f57; }
.bdot.yellow { background-color: #ffbd2e; }
.bdot.green { background-color: #28c840; }

.browser-url-bar {
    flex: 1;
    background-color: #3a3a3a;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 6px;
    text-align: center;
}

.browser-actions {
    display: flex;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

/* Screen Area */
.deploy-screen {
    position: relative;
    display: flex;
    height: 380px;
    overflow: hidden;
}

.deploy-screen-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('HEiGBCEWEAAyAx3.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

/* Embedded Chat Widget */
.embed-chat-widget {
    position: relative;
    z-index: 1;
    width: 55%;
    display: flex;
    flex-direction: column;
    background-color: #1e1e1e;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.standalone-chat {
    position: relative;
    z-index: 1;
    width: 55%;
    display: flex;
    flex-direction: column;
    background-color: rgba(30,30,30,0.95);
    border-right: 1px solid rgba(255,255,255,0.05);
}

.ecw-header {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ecw-messages {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
}

.ecw-msg {
    font-size: 12px;
    line-height: 1.5;
    padding: 8px 12px;
    border-radius: 10px;
    max-width: 85%;
}

.ecw-msg.user {
    background-color: #3b82f6;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.ecw-msg.bot {
    background-color: #2a2a2a;
    color: rgba(255,255,255,0.85);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.ecw-msg.bot-cta {
    background-color: #3b82f6;
    color: white;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
}

.ecw-msg.bot-thought {
    background-color: transparent;
    padding: 4px 0;
    align-self: flex-start;
    color: rgba(255,255,255,0.6);
}

.thought-badge {
    font-size: 10px;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: 4px;
}

.ecw-msg.bot-thought p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.ecw-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.ecw-toggle {
    color: #3b82f6;
    font-size: 20px;
}

/* Side Panel */
.embed-side-panel {
    position: relative;
    z-index: 1;
    flex: 1;
    background-color: rgba(26,26,26,0.9);
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.esp-header {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.esp-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.esp-row {
    height: 8px;
    background-color: rgba(255,255,255,0.06);
    border-radius: 4px;
    width: 100%;
}
.esp-row.short {
    width: 60%;
}

/* Deploy Info below the mockup */
.deploy-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0 0 0;
}

.deploy-text h3 {
    font-size: 22px;
    font-weight: 500;
    color: #1c1c1c;
    margin-bottom: 6px;
}

.deploy-text p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

.btn-deploy {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #1c1c1c;
    background-color: #f3f4f6;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-deploy:hover {
    background-color: #e5e7eb;
}

@media (max-width: 1024px) {
    .deploy-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 600px) {
    .deploy-screen {
        flex-direction: column;
        height: auto;
    }
    .embed-chat-widget, .standalone-chat {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .embed-side-panel {
        padding: 16px;
    }
}

/* --- Comparison Section --- */
.comparison-section {
    background-color: #f7f9fa;
    padding: 100px 40px;
    color: #111;
}

.comp-header {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.comp-header-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.comp-header-right {
    max-width: 400px;
    padding-top: 40px;
}

.comp-header-right p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* Table */
.comp-table-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: auto;
    position: relative;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
}

@media (max-width: 768px) {
    .comp-table-wrapper::after {
        content: 'Swipe to see more →';
        position: absolute;
        bottom: 10px;
        right: 10px;
        font-size: 10px;
        color: rgba(255,255,255,0.3);
        pointer-events: none;
    }
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.comp-table thead th {
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.comp-table thead th:first-child {
    text-align: left;
    color: #9ca3af;
    font-weight: 400;
    font-size: 13px;
}

.comp-feature-col {
    width: 25%;
}

/* Hobbes column header with background */
.comp-hobbes-col {
    position: relative;
}

.hobbes-col-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-image: url('HEiGBCEWEAAyAx3.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.comp-table tbody td {
    padding: 18px 20px;
    font-size: 14px;
    color: #374151;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.comp-table tbody td:first-child {
    text-align: left;
    font-weight: 400;
    color: #374151;
}

/* Check icons */
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.check.green {
    color: #22c55e;
}

.check.warn {
    color: #eab308;
    font-size: 16px;
}

.check.dash {
    color: #d1d5db;
    font-size: 16px;
}

/* Hobbes column subtle highlight */
.comp-table tbody td.comp-hobbes-col {
    background-color: rgba(34, 197, 94, 0.03);
}

@media (max-width: 1024px) {
    .comp-header {
        flex-direction: column;
        gap: 20px;
    }
    .comp-header-right {
        max-width: 100%;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .comp-table {
        table-layout: auto;
        min-width: 700px;
    }
}

/* --- Plans Section --- */
.plans-section {
    background-color: #f7f9fa;
    padding: 100px 40px;
    color: #111;
}

.plans-header-wrapper {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

/* Growth Card (Dark) */
.plan-card.plan-dark {
    background-color: #111;
    border-radius: 16px;
    overflow: hidden;
    color: white;
}

.plan-card-top {
    position: relative;
    padding: 32px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-bg-img {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 100px;
    background-image: url('HEiGBCEWEAAyAx3.jpg');
    background-size: cover;
    background-position: center top;
    opacity: 0.35;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.plan-badge-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.plan-icon {
    opacity: 0.6;
}

.plan-popular-badge {
    background-color: #3b82f6;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.plan-name {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.plan-desc {
    position: relative;
    z-index: 1;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.btn-plan {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
}

.btn-plan-light {
    background-color: white;
    color: #111;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-plan-light:hover {
    background-color: #f1f1f1;
}

.btn-plan-dark {
    background-color: #111;
    color: white;
    border: 1px solid #333;
}

.btn-plan-dark:hover {
    background-color: #222;
}

/* Features list */
.plan-features {
    padding: 28px 32px 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.plan-features-label {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}

.plan-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    font-size: 14px;
    font-weight: 500;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pf-check {
    color: #22c55e;
    font-size: 15px;
    font-weight: 700;
}

/* Enterprise Card (Light) */
.plan-card.plan-light-card {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    color: #111;
    border: 1px solid #e5e7eb;
}

.plan-card-top-light {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.plan-icon-light {
    margin-bottom: 16px;
    display: block;
}

.plan-name-light {
    font-size: 24px;
    font-weight: 600;
    color: #1c1c1c;
}

.plan-desc-light {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
}

.plan-features.plan-features-light {
    padding: 28px 32px 32px;
    border-top: 1px solid #f0f0f0;
}

.plan-features-label-light {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.plan-features-light li {
    color: #374151;
}

.plan-features-light .pf-check.green {
    color: #22c55e;
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

/* --- Included in Every Plan Grid --- */
.included-section {
    max-width: 1400px;
    margin: 80px auto 40px auto;
    padding-top: 80px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.included-header {
    margin-bottom: 40px;
}

.included-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-top: 12px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
}

.inc-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.inc-icon {
    font-size: 24px;
    background: white;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.inc-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.inc-text p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}

/* --- Startup Banner --- */
.startup-banner-wrapper {
    max-width: 1400px;
    margin: 60px auto 0 auto;
}

.startup-banner {
    background-color: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.startup-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #166534;
    margin-bottom: 4px;
}

.startup-info p {
    font-size: 16px;
    color: #3f6212;
}

@media (max-width: 1024px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .included-grid {
        grid-template-columns: 1fr;
    }
    .startup-banner {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .startup-banner .btn {
        width: 100%;
    }
}

/* --- Enterprise Ready Section --- */
.enterprise-section {
    background-color: #f7f9fa;
    padding: 0 40px 100px 40px;
}

.enterprise-banner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
}

.enterprise-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('HEiGBCEWEAAyAx3.jpg');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
}

.enterprise-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.6) 0%,
        rgba(0,0,0,0.3) 40%,
        rgba(0,0,0,0.15) 100%
    );
}

.enterprise-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    padding: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .enterprise-content {
        grid-template-columns: 1fr;
        padding: 40px 24px;
    }
    .enterprise-banner {
        min-height: auto;
    }
}

.enterprise-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.enterprise-text h2 {
    font-size: 38px;
    font-weight: 500;
    letter-spacing: -1px;
    color: white;
    line-height: 1.2;
}

/* 2x2 Glass Cards Grid */
.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ent-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ent-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ent-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.ent-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .enterprise-content {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    .enterprise-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .enterprise-grid {
        grid-template-columns: 1fr;
    }
    .enterprise-content {
        padding: 28px;
    }
}

/* --- Integrations Section --- */
.integrations-section {
    background-color: #f7f9fa;
    padding: 100px 40px;
    color: #111;
}

.integ-header-wrapper {
    max-width: 1400px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.integ-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.integ-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.integ-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.integ-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.integ-more {
    background: #f3f4f6 !important;
    color: #6b7280 !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    border: 1px solid #e5e7eb;
}

.integ-card h4 {
    font-size: 18px;
    font-weight: 500;
    color: #1c1c1c;
}

.integ-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .integ-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .integ-grid {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ Section --- */
.faq-section {
    position: relative;
    padding: 120px 40px;
    color: white;
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('HEiGBCEWEAAyAx3.jpg');
    background-size: cover;
    background-position: center 60%;
    z-index: 0;
}

.faq-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.6) 100%
    );
}

.faq-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
    align-items: start;
}

.faq-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-left h2 {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.15;
}

.faq-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: block;
    width: auto;
    text-align: left;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.faq-question:hover {
    background: rgba(255,255,255,0.15);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin-top: -4px;
}

.faq-item.open .faq-question {
    border-radius: 10px 10px 0 0;
    background: rgba(255,255,255,0.15);
}

.faq-answer p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
    background-color: #111;
    padding: 100px 40px;
    color: white;
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.cta-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-left h2 {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 1.15;
}

.cta-right {
    max-width: 400px;
    padding-top: 40px;
}

.cta-right p {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .faq-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cta-content {
        flex-direction: column;
        gap: 20px;
    }
    .cta-right {
        max-width: 100%;
        padding-top: 0;
    }
}

.cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* --- Footer --- */
.site-footer {
    background-color: #080808;
    background-image: url('footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 40px 0 40px;
    color: white;
    overflow: hidden;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    padding-bottom: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
}

.footer-tagline {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}

.footer-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 50px;
    color: rgba(255,255,255,0.7);
    align-self: flex-start;
}

.footer-badges {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer Nav */
.footer-nav {
    display: flex;
    gap: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h5 {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

/* Giant Watermark */
.footer-watermark {
    font-size: clamp(120px, 18vw, 280px);
    font-weight: 700;
    color: rgba(255,255,255,0.03);
    text-align: center;
    line-height: 0.85;
    padding-bottom: 20px;
    margin-top: -20px;
    user-select: none;
    pointer-events: none;
    letter-spacing: -8px;
}

@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        gap: 50px;
    }
    .footer-nav {
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
    .cta-buttons {
        flex-direction: column;
    }
}

/* ============================================================
   FIT TEST PAGE SPECIFIC STYLES
   ============================================================ */

.fit-test-header {
    background-color: #000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative;
    z-index: 100;
}

.fit-test-main {
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Split Hero Layout */
.ft-hero-split {
    display: flex;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.ft-hero-left {
    flex: 1.2;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}

.ft-hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.ft-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -2px;
    color: white;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.ft-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.ft-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-ft-primary {
    background-color: #fff;
    color: #000;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(255,255,255,0.1);
}

.btn-ft-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,255,255,0.2);
    background-color: #f1f1f1;
}

.btn-ft-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.btn-ft-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Large Image Block */
.ft-image-block {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    background-image: url('HEiGBCEWEAAyAx3.jpg');
    background-size: cover;
    background-position: center 30%;
    position: relative;
    z-index: 1;
}

.ft-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #000 0%, transparent 40%, rgba(0,0,0,0.8) 100%);
}

/* Intersecting Value Bar */
.ft-val-bar-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -40px; /* Pulls it up into the image */
    position: relative;
    z-index: 20;
    padding: 0 20px;
}

.ft-val-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    max-width: 1200px;
    background-color: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    overflow: hidden;
}

.ft-val-item {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.ft-val-item:last-child {
    border-right: none;
}

.ft-val-icon {
    opacity: 0.5;
}

/* Fit Section (Below Image) */
.ft-traits-section {
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #000;
    width: 100%;
}

.ft-badge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ft-traits-title {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: -1px;
    margin-bottom: 60px;
    text-align: center;
}

.ft-traits-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    width: 100%;
}

.ft-trait-row {
    display: flex;
    align-items: center;
    gap: 60px;
    cursor: pointer;
}

.ft-trait-row:hover .ft-trait-img {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.15);
}

.ft-trait-row:hover .test-img-placeholder {
    transform: scale(1.05);
    opacity: 1;
    filter: grayscale(0%) brightness(1.05);
}

.ft-trait-row:hover .ft-trait-content h3 {
    color: #3b82f6;
}

.ft-trait-img {
    flex: 1;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
}

.test-img-placeholder {
    width: 100%;
    height: 100%;
    background-image: url('HEiGBCEWEAAyAx3.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    filter: grayscale(20%) brightness(0.9);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.5s ease, filter 0.5s ease;
}

.ft-trait-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ft-trait-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    transition: color 0.4s ease;
}

.ft-trait-icon {
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

.ft-trait-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* Feature Image Overlays */
.ft-trait-img {
    position: relative; /* ensure overlay binds */
}

.trait-anim-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    padding: 20px;
}

.trait-glass-widget {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.ft-trait-row:hover .trait-glass-widget {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
}

.t-glass-text {
    display: flex;
    flex-direction: column;
}

.t-glass-text span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
}

.t-glass-text strong {
    font-size: 16px;
    color: white;
    font-weight: 500;
}

/* Widget 1: Radar Ping */
.radar-hub {
    position: relative;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.radar-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    z-index: 2;
}
.radar-ring {
    position: absolute;
    inset: -10px;
    border: 2px solid #22c55e;
    border-radius: 50%;
    animation: radarPing 2s infinite ease-out;
}
@keyframes radarPing {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

/* Widget 2: Autonomous Terminal */
.trait-anim-overlay.bottom-align {
    align-items: flex-end;
    justify-content: flex-start;
}
.terminal-widget {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-family: monospace;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}
.t-line {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid transparent; /* default invisible cursor */
}
.ft-trait-row:hover .l1 {
    animation: typingLine 1.5s steps(30, end) forwards;
}
.ft-trait-row:hover .l2 {
    opacity: 0;
    animation: typingLine 1s steps(20, end) forwards 1.5s;
}
.ft-trait-row:hover .l3 {
    opacity: 0;
    animation: typingLine 0.5s steps(15, end) forwards 2.5s, blinkCursor 0.5s step-end infinite alternate 3s;
}
@keyframes typingLine {
    from { width: 0; opacity: 1; }
    to { width: 100%; opacity: 1; }
}
@keyframes blinkCursor {
    50% { border-color: rgba(255,255,255,0.7); }
}

/* Widget 3: Compliance Scanner */
.scanner-widget {
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.scanner-bar {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}
.ft-trait-row:hover .scanner-bar {
    animation: scanPass 2s infinite linear;
}
@keyframes scanPass {
    0% { top: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}
.compliance-ring {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    color: #22c55e;
}
.ft-trait-row:hover .compliance-ring {
    animation: drawCheck 1.5s ease-out forwards 0.5s;
}
@keyframes drawCheck {
    to { stroke-dashoffset: 0; }
}

/* Responsive overrides */
@media (max-width: 1024px) {
    .ft-val-bar {
        grid-template-columns: repeat(2, 1fr);
    }
    .ft-val-item:nth-child(2) {
        border-right: none;
    }
    .ft-val-item:nth-child(1), .ft-val-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .ft-hero-split {
        flex-direction: column;
        gap: 40px;
        padding: 0 24px;
    }
    .ft-hero-left {
        border-left: none;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
        padding-left: 0;
        padding-top: 20px;
    }
    .ft-actions {
        flex-direction: column;
    }
    .btn-ft-primary, .btn-ft-secondary {
        width: 100%;
        text-align: center;
    }
    .ft-val-bar {
        grid-template-columns: 1fr;
    }
    .ft-val-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .ft-val-item:last-child {
        border-bottom: none;
    }
    /* Trait Grid Mobile */
    .ft-trait-row {
        flex-direction: column;
        gap: 32px;
    }
    .ft-trait-img {
        width: 100%;
        height: 220px;
    }
    .ft-trait-content h3 {
        margin-bottom: 16px;
    }
}

/* Industry Examples Section */
.ft-industry-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px 100px 40px;
    background-color: #000;
}

.ft-separator {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
}

.ft-industry-title {
    font-size: 32px;
    font-weight: 500;
    text-align: center;
    color: white;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.ft-industry-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.ft-ind-item {
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s, opacity 0.3s;
    cursor: pointer;
    opacity: 0.6;
}

.ft-ind-item:hover {
    border-color: rgba(255, 255, 255, 0.5);
    opacity: 0.8;
}

.ft-ind-item.active {
    border-color: #3b82f6; 
    opacity: 1;
}

.ft-ind-item span {
    font-size: 13px;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
    line-height: 1.4;
    display: inline-block;
}

/* Tab Icon Animations */
.ft-tab-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    margin-bottom: 12px;
}

.ft-tab-icon {
    width: 28px;
    height: 28px;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}

.ft-ind-item.active .ft-tab-icon {
    color: #3b82f6; 
}

/* 1. Finance Bouncing Nodes */
@keyframes ftBouncer {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.ft-ind-item.active .icon-fin-1 { animation: ftBouncer 1s infinite ease-in-out; }
.ft-ind-item.active .icon-fin-2 { animation: ftBouncer 1s infinite ease-in-out 0.15s; }
.ft-ind-item.active .icon-fin-3 { animation: ftBouncer 1s infinite ease-in-out 0.3s; }

/* 2. Healthcare EKG */
@keyframes ftEKG {
    0% { stroke-dashoffset: 100; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -100; }
}
.icon-health-trace {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
}
.ft-ind-item.active .icon-health-trace {
    animation: ftEKG 2s infinite linear;
}

/* 3. Tech Orbit */
@keyframes ftOrbit {
    100% { transform: rotate(360deg); }
}
.icon-tech-spin { transform-origin: center; }
.ft-ind-item.active .icon-tech-spin {
    animation: ftOrbit 6s linear infinite;
}

/* 4. Gov Shield Pulse */
@keyframes ftPulseShield {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}
.icon-gov-shield { transform-origin: center; }
.ft-ind-item.active .icon-gov-shield {
    animation: ftPulseShield 1.5s infinite ease-in-out;
}

/* 5. Infra Energy Surge */
@keyframes ftSurge {
    0%, 100% { opacity: 0.4; filter: none; }
    50% { opacity: 1; filter: drop-shadow(0 0 6px #3b82f6); }
}
.ft-ind-item.active .icon-infra-bolt {
    animation: ftSurge 1s infinite ease-in-out;
}

/* Image Cards Row */
.ft-industry-content-wrapper {
    position: relative;
    min-height: 400px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.ind-panel {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    animation: fadeInSlideUp 0.4s ease forwards;
}

.ind-panel.active {
    display: grid;
}

@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.ft-ind-card-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
}

.ft-ind-card-col:hover .ft-ind-card-img {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    filter: grayscale(0%) brightness(1.05);
    box-shadow: 0 24px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(59, 130, 246, 0.15);
}

.ft-ind-card-col:hover .ft-ind-card-label {
    color: white;
    border-left-color: #3b82f6;
}

.ft-ind-card-img {
    width: 100%;
    height: 300px;
    background-size: cover;
    border-radius: 16px;
    background-color: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
    filter: grayscale(20%) brightness(0.9);
    position: relative;
    overflow: hidden;
}

/* Card Hover Widget Overlays */
.ind-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 10;
}

.ft-ind-card-col:hover .ind-overlay {
    opacity: 1;
    transform: translateY(0);
}

.ind-widget {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

/* 1. Financial Wave Chart */
.mini-wave-chart { display: flex; gap: 3px; height: 16px; align-items: flex-end; }
.mini-wave-chart .bar { width: 3px; background: #3b82f6; border-radius: 2px; }
.ft-ind-card-col:hover .mini-wave-chart .bar { animation: waveBar 0.8s infinite alternate ease-in-out; }
.ft-ind-card-col:hover .mini-wave-chart .bar:nth-child(2) { animation-delay: 0.2s; }
.ft-ind-card-col:hover .mini-wave-chart .bar:nth-child(3) { animation-delay: 0.4s; }
@keyframes waveBar { 0% { height: 4px; } 100% { height: 16px; } }

/* 2. Healthcare Pulsing Shield */
.ft-ind-card-col:hover .pulse-shield { animation: pulseGreen 1.5s infinite; }
@keyframes pulseGreen {
    0%,100% { filter: drop-shadow(0 0 0 transparent); }
    50% { filter: drop-shadow(0 0 6px #22c55e); }
}

/* 3. Tech Spinning Mesh */
.ft-ind-card-col:hover .spin-mesh { animation: spinMesh 4s linear infinite; transform-origin: center; }
@keyframes spinMesh { 100% { transform: rotate(360deg); } }

/* 4. Gov Defense Radar */
.defense-radar { 
    width: 16px; height: 16px; 
    border: 2px solid rgba(239, 68, 68, 0.3); border-radius: 50%;
    position: relative;
}
.defense-radar::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid #ef4444; border-radius: 50%; border-top-color: transparent; border-right-color: transparent;
}
.ft-ind-card-col:hover .defense-radar::after { animation: spinMesh 1.5s linear infinite; }

/* 5. Infra Telemetry Dot */
.grid-dot { width: 10px; height: 10px; border-radius: 50%; background: #eab308; opacity: 0.3; }
.ft-ind-card-col:hover .grid-dot { animation: blinkYellow 0.8s steps(2, end) infinite; }
@keyframes blinkYellow {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px #eab308; }
    50% { opacity: 0.3; box-shadow: none; }
}

.ft-ind-card-label {
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: color 0.4s ease, border-color 0.4s ease;
}

/* Conclusion Text */
.ft-ind-conclusion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.ft-ind-conclusion svg {
    color: rgba(255,255,255,0.8);
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .ft-industry-grid {
        gap: 10px;
    }
    .ind-panel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ft-industry-grid {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .ft-ind-item {
        width: 100%;
        max-width: 300px;
    }
    .ind-panel {
        grid-template-columns: 1fr;
    }
    .ft-ind-conclusion {
        flex-direction: column;
        text-align: center;
    }
}

/* Fit Test Checklist Section */
.ft-checklist-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 120px 40px;
    background-color: #000;
}

.ft-checklist-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ft-checklist-header h2 {
    font-size: 48px;
    font-weight: 500;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.ft-checklist-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
}

/* Checklist Card */
.ft-checklist-container {
    max-width: 800px;
    margin: 0 auto;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 32px;
    padding: 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    display: flex;
    gap: 0;
    transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.ft-checklist-container.show-results {
    max-width: 1100px;
}

.ft-checklist-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 50%;
}

.ft-results-wrapper {
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease 0.1s;
}

.ft-checklist-container.show-results .ft-results-wrapper {
    width: 380px;
    opacity: 1;
}

.ft-results-panel {
    width: 380px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 40px;
    border-left: 1px solid rgba(255,255,255,0.05); /* Separator line */
}

/* Tiers */
.ft-tier {
    opacity: 0.3;
    transition: opacity 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 20px;
    margin-bottom: 20px;
}

.ft-tier.active {
    opacity: 1;
}

.ft-tier.active.tier-low { border-left-color: #f87171; }
.ft-tier.active.tier-mid { border-left-color: #fbbf24; }
.ft-tier.active.tier-high { border-left-color: #22c55e; }

.ft-tier-score {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.ft-tier-title {
    font-size: 22px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
}

.ft-tier-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.ft-pricing-btn {
    display: block;
    text-align: center;
    background-color: white;
    color: black;
    border-radius: 50px;
    padding: 16px;
    font-weight: 600;
    width: 100%;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.ft-pricing-btn:hover {
    background-color: #e5e5e5;
}

.ft-check-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

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

.ft-check-item:hover {
    opacity: 0.8;
}

.ft-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.2);
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.ft-checkbox:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.ft-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 7px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.ft-check-text {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 900px) {
    .ft-checklist-container.show-results {
        flex-direction: column;
        max-width: 800px;
    }
    .ft-checklist-container.show-results .ft-results-wrapper {
        width: 100%;
    }
    .ft-results-panel {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.05);
    }
    .ft-tier {
        border-left: none;
        border-top: 2px solid transparent;
        padding-left: 0;
        padding-top: 20px;
    }
    .ft-tier.active.tier-low { border-top-color: #f87171; }
    .ft-tier.active.tier-mid { border-top-color: #fbbf24; }
    .ft-tier.active.tier-high { border-top-color: #22c55e; }
}

@media (max-width: 768px) {
    .ft-checklist-header h2 {
        font-size: 36px;
    }
    .ft-checklist-container {
        padding: 16px;
        border-radius: 24px;
    }
    .ft-checklist-card {
        padding: 24px 20px;
        border-radius: 12px;
    }
    .ft-check-item {
        gap: 16px;
        padding: 24px 0;
    }
    .ft-check-text {
        font-size: 14px;
    }
}

/* Timeline Section */
.ft-timeline-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ft-timeline-title {
    font-size: 40px;
    font-weight: 500;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.ft-timeline-container {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.ft-timeline-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.ft-tl-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.ft-tl-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.ft-tl-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* Timeline Charts & Animation */
.ft-tl-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    margin-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ft-bar-col {
    position: relative;
    width: 2px;
    height: 60%; /* Inactive column default height */
}

.ft-bar-col .ft-bar-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.15);
    transform: scaleY(0);
    transform-origin: bottom;
    border-radius: 2px;
}

.ft-tl-chart .has-dot {
    /* Height dynamically set inline for each card */
    width: 2px; 
}

.ft-tl-chart .has-dot .ft-bar-fill {
    background: rgba(255,255,255,0.4);
}

.ft-dot {
    position: absolute;
    top: -6px;
    left: -3px; 
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6; 
    opacity: 0;
    transform: scale(0);
}

/* Triggered by JS */
.animate-chart .ft-bar-fill {
    animation: barGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-chart .ft-dot {
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes barGrow {
    to { transform: scaleY(1); }
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Stagger drawing chart bars left to right */
.ft-tl-chart .ft-bar-col:nth-child(1) .ft-bar-fill { animation-delay: 0.1s; }
.ft-tl-chart .ft-bar-col:nth-child(2) .ft-bar-fill { animation-delay: 0.15s; }
.ft-tl-chart .ft-bar-col:nth-child(3) .ft-bar-fill { animation-delay: 0.2s; }
.ft-tl-chart .ft-bar-col:nth-child(4) .ft-bar-fill { animation-delay: 0.25s; }
.ft-tl-chart .ft-bar-col:nth-child(5) .ft-bar-fill { animation-delay: 0.3s; }
.ft-tl-chart .ft-bar-col:nth-child(6) .ft-bar-fill { animation-delay: 0.35s; }
.ft-tl-chart .ft-bar-col:nth-child(7) .ft-bar-fill { animation-delay: 0.4s; }
.ft-tl-chart .ft-bar-col:nth-child(8) .ft-bar-fill { animation-delay: 0.45s; }
.ft-tl-chart .ft-bar-col:nth-child(9) .ft-bar-fill { animation-delay: 0.5s; } /* The dot bar */

/* Stagger dot pop-in sequentially across cards */
.ft-tl-card:nth-child(1) .ft-dot { animation-delay: 0.8s; }
.ft-tl-card:nth-child(2) .ft-dot { animation-delay: 1.0s; }
.ft-tl-card:nth-child(3) .ft-dot { animation-delay: 1.2s; }
.ft-tl-card:nth-child(4) .ft-dot { animation-delay: 1.4s; }

/* Timeline Footer */
.ft-tl-footer {
    display: flex;
    gap: 40px;
    padding: 32px 24px 0 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ft-tl-footer-left {
    flex: 1;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.ft-tl-footer-left strong {
    color: white;
    font-weight: 500;
}

.ft-tl-footer-right {
    flex: 1.5; /* Slight emphasis on right side text */
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .ft-timeline-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ft-timeline-cards {
        grid-template-columns: 1fr;
    }
    .ft-tl-footer {
        flex-direction: column;
        gap: 24px;
    }
}

/* Requirements Section */
.ft-requirement-section {
    padding: 0 40px 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ft-req-outer {
    background: #111;
    border-radius: 32px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.ft-req-inner {
    background: #0a0a0a;
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(255,255,255,0.05);
}

.ft-req-header {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 48px;
}

.ft-req-hl {
    flex: 1;
}

.ft-req-hl h3 {
    font-size: 32px;
    font-weight: 500;
    color: white;
    letter-spacing: -0.5px;
}

.ft-req-hr {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 40px;
}

.ft-req-hr p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* Cards */
.ft-req-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ft-req-card {
    background: #111;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.ft-req-card svg {
    color: white;
    margin-bottom: 16px;
}

.ft-req-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.ft-req-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
    flex: 1;
}

.ft-req-meta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #ef4444; 
    font-family: inherit;
}

.ft-req-bottleneck {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ft-req-bottleneck h4 {
    font-size: 18px;
    font-weight: 600;
}

.ft-req-bottleneck p {
    font-size: 14px;
}

@media (max-width: 1024px) {
    .ft-req-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ft-req-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .ft-req-hr {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
    }
    .ft-req-cards {
        grid-template-columns: 1fr;
    }
    .ft-req-inner {
        padding: 24px;
    }
}

/* Time at a Glance Section */
.ft-glance-section {
    padding: 0 40px 100px 40px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.ft-glance-title {
    font-size: 36px;
    font-weight: 500;
    color: white;
    text-align: center;
    margin-bottom: 16px;
}

.ft-glance-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.ft-glance-sub .ft-line {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.1);
}

.ft-glance-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.ft-glance-card {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.ft-glance-card:hover {
    background: rgba(255,255,255,0.02);
}

.ft-gc-role {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.ft-gc-time {
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: 8px;
}

.ft-gc-detail {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: monospace;
}

.ft-glance-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ft-gf-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: white;
    white-space: nowrap;
}

.ft-gf-right {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    max-width: 400px;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 40px;
}

.ft-gf-right strong {
    color: white;
    font-weight: 500;
}

/* Method Section */
.ft-method-section {
    padding: 0 40px 120px 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ft-method-container {
    background: #050505; 
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    min-height: 500px;
}

.ft-method-graphic {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.ft-shape-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 120px solid #1d4ed8; 
    top: -100px;
    left: -200px;
    opacity: 0.8;
}

.ft-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #3b82f6; 
    bottom: -50px;
    left: 100px;
}

.ft-method-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 10;
    position: relative;
    background: linear-gradient(to right, transparent, #050505 15%);
}

.ft-mc-card {
    background: #151515;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.ft-mc-card:hover {
    transform: translateX(-4px);
    border-color: rgba(255,255,255,0.15);
}

.ft-mc-card svg {
    color: white;
    margin-bottom: 20px;
}

.ft-mc-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.ft-mc-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.ft-method-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-bottom: 60px;
}

.ft-method-graphic {
    position: relative;
    height: 350px; 
    overflow: hidden;
}

.ft-method-derisk {
    padding: 0 60px;
    z-index: 10;
}

.ft-method-derisk h3 {
    font-size: 40px;
    font-weight: 500;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
    margin-top: 32px;
    letter-spacing: -1px;
}

.ft-method-derisk p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.ft-method-derisk p strong {
    color: white;
    font-weight: 600;
}

.ft-trust-badges {
    display: flex;
    gap: 16px;
}

.ft-badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Final CTA Section */
.ft-final-cta {
    padding: 160px 40px;
    text-align: center;
    position: relative;
    margin-top: 60px;
}

.ft-cta-content {
    position: relative;
    z-index: 10;
}

.ft-cta-content h2 {
    font-size: 56px;
    font-weight: 500;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.ft-cta-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

@media (max-width: 1024px) {
    .ft-glance-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .ft-method-container {
        flex-direction: column;
    }
    .ft-method-left {
        flex: none;
        padding-bottom: 30px;
    }
    .ft-method-graphic {
        height: 250px;
    }
    .ft-shape-1 {
        top: -200px;
        left: -100px;
    }
    .ft-method-content {
        background: transparent;
        padding: 32px;
    }
    .ft-method-derisk {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .ft-glance-cards {
        grid-template-columns: 1fr;
    }
    .ft-glance-footer {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 24px;
    }
    .ft-gf-right {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 24px;
    }
    .ft-final-cta {
        padding: 100px 20px;
    }
    .ft-cta-content h2 {
        font-size: 40px;
    }
}

/* ==========================================================================
   GLOBAL DEPLOY-READY RESPONSIVENESS OMNIBUS
   ========================================================================== */

/* 1. Prevent all horizontal scrolling structurally without breaking position: sticky */
html, body {
    width: 100%;
    /* overflow-x: hidden aggressively breaks position: sticky on webkit/blink. 
       Using clip or just managing element widths prevents sideways scroll. */
    overflow-x: clip;
}

/* 2. Responsive overrides for 768px (Tablets / Mobile) */
@media (max-width: 768px) {
    /* Hero scaling */
    .hero-content h1, 
    .ft-hero-left h1 { 
        font-size: 42px !important; 
        line-height: 1.1;
    }
    
    .hero-content p {
        font-size: 16px !important;
    }

    /* Comparison Table Horizontal Swipe */
    .comp-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
        width: calc(100% + 40px);
    }
    .comp-table {
        min-width: 700px; /* guarantees headers don't squish into unreadable columns */
    }

    /* Navbar alignment tightener */
    .header-left, .header-center, .header-right {
        gap: 12px;
    }
    .nav-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    .nav-center {
        display: none; /* Hide standard links to make room for logo/action button on small screens */
    }

    /* Universal padding reductions */
    section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Bento Grid Fallback mapping */
    .bento-grid {
        grid-template-columns: 1fr !important;
    }

    /* Footer Cleanup */
    .footer-content {
        flex-direction: column !important;
        gap: 40px;
    }
    .footer-nav {
        flex-wrap: wrap;
        gap: 30px;
        width: 100%;
        justify-content: flex-start;
    }
    .footer-col {
        min-width: calc(50% - 30px);
    }
}

/* 3. Small Mobile Drop-down (Under 480px) */
@media (max-width: 480px) {
    .hero-content h1, 
    .ft-hero-left h1 { 
        font-size: 36px !important; 
    }
    
    .gs-section-title, .features-section-title, .ft-timeline-title {
        font-size: 32px !important;
    }

    .footer-col {
        min-width: 100%; /* Fully stack footer */
    }

    .ft-pricing-btn {
        font-size: 14px;
        padding: 12px;
    }
}
/* Slack Message Animations */
.slack-msg {
    animation: slackMsgFadeIn 0.8s ease-out forwards;
    opacity: 0;
}
@keyframes slackMsgFadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.slack-main-pane .slack-msg { animation-delay: 0.2s; }
.thread-body .slack-msg.thread-origin { animation-delay: 0.4s; }
.thread-body .slack-msg:nth-child(3) { animation-delay: 0.8s; }
.thread-body .slack-msg:nth-child(4) { animation-delay: 1.4s; }
.thread-body .slack-msg:nth-child(5) { animation-delay: 2.0s; }

