@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&family=Montserrat:wght@800;900&display=swap');

:root {
    --primary-color: #ff4e00; /* Vibrant Safety Orange */
    --text-color: #0d0d0d;     /* Charcoal/Near Black */
    --text-light: #555555;     /* Muted Gray for description */
    --bg-color: #f7f8f8;
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --logo-font-family: 'Syncopate', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

/* Background Image setup */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: var(--bg-color);
}

.background-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 90%;
    width: auto;
}

/* Main Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 5.2rem 2.2rem 5.2rem;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    gap: 1.5rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.brand-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .brand-logo-img {
    transform: scale(1.08);
}

.logo-text {
    font-family: var(--logo-font-family);
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-color);
}

nav {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

nav a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 0.88rem;
    transition: color 0.25s ease;
    white-space: nowrap;
}

nav a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'SF Mono', 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    font-weight: 600;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-color);
    opacity: 0.45;
    cursor: pointer;
    padding: 0.25rem 0.45rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
}

.lang-btn:hover {
    opacity: 0.85;
    background: rgba(0, 0, 0, 0.05);
}

.lang-btn.active {
    opacity: 1;
    color: var(--primary-color);
    font-weight: 700;
    background: rgba(255, 78, 0, 0.08);
}

.lang-sep {
    color: var(--text-color);
    opacity: 0.25;
    user-select: none;
    font-size: 0.75rem;
}

.divider {
    width: 1px;
    height: 18px;
    background-color: #e5e5ea;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
}

.btn-primary:hover {
    background-color: #e04500;
}

.demo-btn {
    padding: 0.65rem 1.35rem;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--text-color);
    gap: 0.8rem;
    border-radius: 0;
}

.btn-secondary:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Arrow transition */
.btn .arrow-icon {
    transition: transform 0.25s ease;
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Main Area */
main {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    margin-top: -3rem;
}

.subheading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
}

.subheading .dot {
    font-size: 1.2rem;
    line-height: 0;
    color: #8e8e93;
    margin: 0 2px;
}

.main-heading {
    font-size: 5.1rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.8rem;
    color: var(--text-color);
    letter-spacing: -1.5px;
}

.main-heading .highlight {
    color: var(--primary-color);
}

.description {
    font-size: 1.12rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 400;
    letter-spacing: -0.2px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 3.2rem;
}

.cta-btn {
    padding: 0.95rem 2rem;
}

/* Footer */
footer {
    padding-bottom: 1.5rem;
}

.footer-note {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-note .line {
    width: 24px;
    height: 1px;
    background-color: #8e8e93;
}

.footer-note .text {
    font-size: 0.82rem;
    color: #8e8e93;
    font-weight: 600;
    letter-spacing: 0.2px;
}

/* About Mission Section */
.about-mission {
    position: relative;
    z-index: 2;
    background-color: #050506;
    color: #ffffff;
    padding: 12rem 5.2rem;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 8rem;
    align-items: flex-start;
}

.about-left {
    flex: 1;
    position: sticky;
    top: 12rem;
}

.about-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
}

.about-heading {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #ffffff;
}

.about-right {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.highlight-text {
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.about-text {
    font-size: 1.25rem;
    line-height: 1.65;
    font-weight: 400;
    color: #d1d5db;
    letter-spacing: -0.2px;
}

.about-text strong {
    color: #ffffff;
    font-weight: 600;
}

/* Scroll Active Text */
.scroll-text {
    opacity: 0.3;
    transform: scale(0.95);
    transform-origin: center left;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-text.active {
    opacity: 1;
    color: #ffffff;
    transform: scale(1.05);
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.5); /* makes text look thicker */
}

/* Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 2s cubic-bezier(0.16, 1, 0.3, 1), transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsiveness */
@media (max-width: 1400px) {
    .content-wrapper {
        padding: 2rem 5rem;
    }
    .main-heading {
        font-size: 4.8rem;
    }
}

@media (max-width: 1100px) {
    .content-wrapper {
        padding: 2rem 3rem;
    }
    nav {
        display: none; /* Hide desktop nav */
    }
    .main-heading {
        font-size: 4.2rem;
    }
    .about-container {
        gap: 4rem;
    }
    .about-heading {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }
    .content-wrapper {
        height: auto;
        min-height: 100vh;
        padding: 1.5rem 1.5rem;
        background: rgba(255, 255, 255, 0.9);
    }
    .hero-content {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
    .main-heading {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
        line-height: 1.1;
        letter-spacing: -1px;
    }
    .header-actions .demo-btn,
    .header-actions .divider {
        display: none;
    }
    .background-image {
        height: 50%;
        opacity: 0.15;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .btn-secondary {
        width: auto;
    }
    .about-mission {
        padding: 5rem 1.5rem;
    }
    .about-container {
        flex-direction: column;
        gap: 2.5rem;
    }
    .about-left {
        position: static;
    }
    .about-right {
        padding-top: 0;
        padding-bottom: 0;
        gap: 2rem;
    }
    .about-heading {
        font-size: 2.2rem;
        line-height: 1.15;
    }
    .highlight-text {
        font-size: 1.4rem;
        line-height: 1.4;
        color: #ffffff;
        margin-bottom: 0.5rem;
    }
    .about-text {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #e5e7eb;
    }
}

/* Capabilities Section */
.capabilities {
    position: relative;
    z-index: 2;
    background-color: var(--bg-color); /* #f7f8f8 */
    color: var(--text-color);
    padding: 12rem 5.2rem;
}

.cap-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cap-header {
    max-width: 900px;
    margin-bottom: 8rem;
}

.cap-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cap-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
}

.cap-heading {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 2.5rem;
    color: var(--text-color);
}

.cap-description {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -0.3px;
}

.cap-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: start;
}

.cap-flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    color: var(--primary-color);
    opacity: 0.35;
    transition: opacity 0.4s ease;
}
.cap-grid:hover .cap-flow-arrow {
    opacity: 0.7;
}

.cap-card {
    display: flex;
    flex-direction: column;
    transition: opacity 0.4s ease, transform 0.4s ease;
    cursor: default;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid transparent;
}
.cap-card:hover {
    border-color: rgba(255, 77, 0, 0.08);
    box-shadow: 0 8px 32px rgba(255, 77, 0, 0.04), 0 0 0 1px rgba(255, 77, 0, 0.04);
    transform: translateY(-2px);
}

.cap-grid:hover .cap-card:not(:hover) {
    opacity: 0.25;
}

.cap-number {
    font-family: var(--logo-font-family);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.cap-line {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 2.5rem;
    position: relative;
}

.cap-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cap-card:hover .cap-line::after {
    width: 100%;
}

.cap-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
}

.cap-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Responsiveness for Capabilities */
@media (max-width: 1400px) {
    .cap-grid {
        gap: 3rem;
    }
}

@media (max-width: 1100px) {
    .cap-heading {
        font-size: 3.5rem;
    }
    .cap-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .capabilities {
        padding: 6rem 1.5rem;
    }
    .cap-header {
        margin-bottom: 4rem;
    }
    .cap-heading {
        font-size: clamp(2.5rem, 9vw, 3.2rem);
    }
    .cap-description {
        font-size: 1.25rem;
    }
    .cap-grid:hover .cap-card:not(:hover) {
        opacity: 0.3;
    }
    
    /* Show lines fully on mobile instead of relying on hover */
    .cap-line::after {
        width: 100%;
    }
    .cap-flow-arrow {
        display: none;
    }
    .cap-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .cap-card {
        padding: 0;
        border: none;
    }
    .cap-card:hover {
        border-color: transparent;
        box-shadow: none;
        transform: none;
    }
}

/* Technology & Intelligence Layer (Horizontal Scroll) */
.tech-horizontal-wrap {
    height: 400vh; /* 4 screens of scrolling */
    background-color: var(--bg-color);
    position: relative;
    z-index: 3;
}

.tech-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.tech-horizontal {
    display: flex;
    align-items: center;
    gap: 15vw;
    padding: 0 15vw;
    width: max-content;
    will-change: transform;
}

.tech-intro {
    width: 55vw;
    flex-shrink: 0;
}

.tech-intro-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.tech-intro-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
}

.tech-intro h2 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--text-color);
    margin-bottom: 2rem;
}

.tech-intro p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 800px;
}

.tech-item {
    width: 40vw;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.tech-num {
    font-family: var(--logo-font-family);
    font-size: 15rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.06;
    line-height: 0.8;
    position: absolute;
    top: -5rem;
    left: -3rem;
    z-index: 0;
    will-change: transform;
}

.tech-item-content {
    position: relative;
    z-index: 1;
}

.tech-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.tech-item p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
}

.tech-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #f0f0f0;
    z-index: 10;
}

.tech-progress-fill {
    height: 100%;
    width: 0%;
    background-color: var(--primary-color);
    will-change: width;
}

/* Responsiveness for Tech Section */
@media (max-width: 1100px) {
    .tech-intro { width: 70vw; }
    .tech-item { width: 55vw; }
    .tech-intro h2 { font-size: 4rem; }
    .tech-num { font-size: 10rem; top: -3rem; }
    .tech-item h3 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .tech-horizontal-wrap {
        height: 350vh;
        padding: 0;
    }
    .tech-sticky {
        position: sticky;
        height: 100vh;
    }
    .tech-horizontal {
        flex-direction: row;
        gap: 20vw;
        padding: 0 7.5vw;
        width: max-content;
    }
    .tech-intro {
        width: 85vw;
    }
    .tech-item {
        width: 80vw;
    }
    .tech-intro h2 {
        font-size: clamp(2.5rem, 9vw, 3.2rem);
    }
    .tech-item h3 {
        font-size: 2.2rem;
    }
    .tech-num {
        font-size: 10rem;
        top: -2.5rem;
        left: -1rem;
    }
    .tech-progress-bar {
        display: block;
        height: 3px;
    }
}

/* Outcomes & Impact Section (Stacking Cards) */
.outcomes-section {
    background-color: #050506;
    color: #fff;
    padding: 12rem 5vw 15rem 5vw;
    position: relative;
    z-index: 4;
}

.outcomes-header {
    max-width: 900px;
    margin: 0 auto 10rem auto;
    text-align: center;
}

.outcomes-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.outcomes-label::before, .outcomes-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
}

.outcomes-heading {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 2.5rem;
}

.outcomes-description {
    font-size: 1.35rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.outcomes-cards {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem; /* Spacing before they stick */
    padding-bottom: 10rem;
}

.outcome-card {
    position: sticky;
    top: calc(15vh + var(--idx) * 2.5rem);
    background-color: #0d0d0e;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 2rem;
    padding: 6rem;
    display: flex;
    gap: 4rem;
    box-shadow: 0 -15px 40px rgba(0,0,0,0.4); /* Shadow cast onto cards below */
    transition: transform 0.4s ease;
}

.outcome-card-num {
    font-family: var(--logo-font-family);
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 0.8;
    opacity: 0.8;
    flex-shrink: 0;
}

.outcome-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outcome-card h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #fff;
}

.outcome-card p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

/* Responsiveness for Outcomes Section */
@media (max-width: 1100px) {
    .outcome-card {
        padding: 4rem;
        gap: 3rem;
    }
    .outcome-card-num {
        font-size: 6rem;
    }
    .outcome-card h3 {
        font-size: 2.5rem;
    }
    .outcomes-heading {
        font-size: 3.8rem;
    }
}

@media (max-width: 768px) {
    .outcomes-section {
        padding: 6rem 1.5rem 10rem 1.5rem;
    }
    .outcomes-header {
        margin-bottom: 4rem;
    }
    .outcomes-heading {
        font-size: 3rem;
    }
    .outcome-card {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        top: calc(10vh + var(--idx) * 1.5rem);
    }
    .outcome-card-num {
        font-size: 4rem;
    }
    .outcome-card h3 {
        font-size: 2rem;
    }
    .outcomes-description {
        font-size: 1.15rem;
    }
    .outcomes-label::before, .outcomes-label::after {
        width: 20px;
    }
}

/* ===== Operations Intelligence Section ===== */
.intelligence-section {
    background-color: #f7f8f8;
    color: var(--text-color);
    padding: 12rem 5vw 6rem 5vw;
    position: relative;
    z-index: 5;
}

.intel-flow-container {
    display: flex;
    flex-direction: column;
    max-width: 1400px;
    margin: 0 auto;
    gap: 3.5rem;
}

.intel-header-block {
    max-width: 800px;
}

.intel-stage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

.intel-stage-grid .intel-cap-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.25rem;
    padding: 2.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.intel-stage-grid .intel-cap-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 77, 0, 0.3);
}

.intel-center-dashboard {
    width: 100%;
    margin: 1rem 0;
}

.intel-center-dashboard .ops-panel {
    max-width: 100%;
}

@media (max-width: 900px) {
    .intel-stage-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

.intel-left-content {
    position: sticky;
    top: 12vh;
}

.intel-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.intel-label::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--primary-color);
}

.intel-heading {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.intel-description {
    font-size: 1.25rem;
    line-height: 1.65;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 520px;
}

/* Capability Cards */
.intel-capabilities {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.intel-cap-card {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: relative;
    cursor: default;
    transition: opacity 0.3s ease;
}
.intel-cap-card:first-child {
    border-top: 1px solid rgba(0,0,0,0.06);
}

.intel-cap-line {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.intel-cap-card:hover .intel-cap-line {
    width: 100%;
}

.intel-cap-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}

.intel-cap-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 460px;
}

/* --- Right Column: Ops Panel --- */
.intel-right {
    flex: 1;
    min-width: 0;
}

.ops-panel {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Panel Header */
.ops-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.ops-panel-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.ops-panel-dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    flex-shrink: 0;
}
.ops-panel-dot.pulse {
    animation: dash-pulse 2s infinite;
}
@keyframes dash-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(255, 77, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0); }
}
.ops-panel-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-color);
}

/* Status Chips */
.ops-status-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.ops-status-live {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}
.ops-status-transit {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
}
.ops-status-processing {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}
.ops-status-delivered {
    background: rgba(34, 197, 94, 0.08);
    color: #15803d;
}
.ops-status-idle {
    background: rgba(0,0,0,0.04);
    color: var(--text-light);
}

/* Badges */
.ops-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.55rem;
    border-radius: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
}
.ops-badge-active {
    background: rgba(59, 130, 246, 0.08);
    color: #2563eb;
}
.ops-badge-ai {
    background: rgba(255, 77, 0, 0.08);
    color: var(--primary-color);
}

/* Ops Card */
.ops-card {
    background: #f9fafb;
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.ops-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    border-color: rgba(0,0,0,0.08);
}
.ops-card-compact {
    padding: 1rem 1.25rem;
}
.ops-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.ops-card-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-color);
}
.ops-card-subtitle {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--text-light);
    background: rgba(0,0,0,0.03);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Shipment List */
.ops-shipment-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ops-shipment-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.ops-shipment-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ops-shipment-row:first-child {
    padding-top: 0;
}
.ops-shipment-id {
    font-family: monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
    min-width: 75px;
}
.ops-shipment-route {
    font-size: 0.85rem;
    color: var(--text-light);
    flex: 1;
}

/* Route Timeline */
.ops-timeline {
    position: relative;
    padding-left: 1.5rem;
}
.ops-timeline::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgba(0,0,0,0.08);
}
.ops-timeline-item {
    position: relative;
    padding-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.ops-timeline-item:last-child {
    padding-bottom: 0;
}
.ops-timeline-dot {
    position: absolute;
    left: -1.5rem;
    top: 3px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.12);
    background: #ffffff;
    z-index: 1;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.ops-timeline-done .ops-timeline-dot {
    background: #16a34a;
    border-color: #16a34a;
}
.ops-timeline-active .ops-timeline-dot {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 77, 0, 0.15);
}
.ops-timeline-warning .ops-timeline-dot {
    background: #f59e0b;
    border-color: #f59e0b;
}
.ops-timeline-pending .ops-timeline-dot {
    background: #e5e7eb;
    border-color: #d1d5db;
}

.ops-timeline-content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.ops-timeline-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}
.ops-timeline-time {
    font-size: 0.75rem;
    color: var(--text-light);
    font-family: monospace;
}
.ops-timeline-meta {
    font-size: 0.75rem;
    color: #d97706;
    line-height: 1.4;
    font-style: italic;
}

/* 2-Column Grid */
.ops-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

/* Fleet Status */
.ops-fleet-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ops-fleet-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.ops-fleet-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}
.ops-health-bar {
    height: 5px;
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
    overflow: hidden;
}
.ops-health-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--primary-color);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ops-health-good {
    background: #16a34a;
}
.ops-health-mid {
    background: #f59e0b;
}

/* Warehouse Activity */
.ops-warehouse-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ops-wh-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.ops-wh-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ops-wh-row:first-child {
    padding-top: 0;
}
.ops-wh-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-color);
}

/* AI Recommendations */
.ops-card-ai {
    background: #fefefe;
    border: 1px solid rgba(255, 77, 0, 0.08);
}
.ops-rec-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.ops-rec-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: background 0.2s ease;
}
.ops-rec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ops-rec-item:first-child {
    padding-top: 0;
}
.ops-rec-priority {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}
.ops-priority-high {
    background: #ef4444;
    box-shadow: 0 0 6px rgba(239, 68, 68, 0.3);
}
.ops-priority-med {
    background: #f59e0b;
}
.ops-priority-low {
    background: #94a3b8;
}
.ops-rec-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.ops-rec-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.45;
}
.ops-rec-meta {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.2px;
}

/* ETA Confidence */
.ops-eta-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.ops-eta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ops-eta-id {
    font-family: monospace;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-color);
    min-width: 72px;
}
.ops-eta-bar-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}
.ops-eta-bar {
    flex: 1;
    height: 5px;
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
    overflow: hidden;
}
.ops-eta-fill {
    height: 100%;
    border-radius: 3px;
    background: var(--primary-color);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.ops-eta-high {
    background: #16a34a;
}
.ops-eta-done {
    background: #94a3b8;
}
.ops-eta-val {
    font-family: monospace;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    min-width: 55px;
    text-align: right;
}

/* Closing */
.intel-closing {
    margin-top: 8rem;
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.closing-line {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0.4;
    line-height: 1.2;
    transition: opacity 0.4s;
}
.closing-line.highlight-line {
    color: var(--primary-color);
    opacity: 1;
    margin-top: 1rem;
}

/* ===== Responsiveness ===== */
@media (max-width: 1100px) {
    .intel-container {
        flex-direction: column;
        gap: 4rem;
    }
    .intel-left {
        flex: none;
        width: 100%;
    }
    .intel-left-content {
        position: static;
    }
    .intel-heading {
        font-size: 3.5rem;
    }
    .intel-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .intelligence-section {
        padding: 6rem 1.5rem 0rem 1.5rem;
        overflow: visible;
        background-color: #f7f8f8;
    }
    .intel-container {
        gap: 3rem;
    }
    .intel-heading {
        font-size: clamp(2.5rem, 9vw, 3.2rem);
    }
    .intel-description {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        max-width: 100%;
    }
    .intel-cap-card {
        padding: 1.5rem 0;
    }
    .intel-cap-card h4 {
        font-size: 1.2rem;
    }
    .intel-cap-card p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    /* Ops Panel Mobile */
    .ops-panel {
        padding: 1.25rem;
        gap: 1rem;
        border-radius: 1.25rem;
    }
    .ops-grid-2col {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .ops-shipment-row {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .ops-shipment-id {
        min-width: auto;
    }
    .ops-shipment-route {
        flex: none;
        width: 100%;
        order: 3;
        font-size: 0.8rem;
    }
    .ops-timeline {
        padding-left: 1.25rem;
    }
    .ops-timeline-dot {
        left: -1.25rem;
    }
    .ops-rec-label {
        font-size: 0.82rem;
    }
    .ops-eta-row {
        flex-wrap: wrap;
        gap: 0.4rem;
    }
    .ops-eta-id {
        min-width: auto;
    }
    .ops-eta-bar-wrap {
        width: 100%;
    }

    /* Closing */
    .intel-closing {
        margin-top: 3rem;
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
        position: relative;
        z-index: 2;
        background: #f7f8f8;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        border-top: none;
    }
    .closing-line {
        font-size: clamp(2.2rem, 9vw, 3rem);
        letter-spacing: -1px;
        line-height: 1.2;
    }
}

/* Future Vision Section */
.future-section {
    position: relative;
    background-color: #f7f8f8;
    color: #000000;
    height: 280vh; /* Shortened scroll track */
    z-index: 10;
    overflow: visible; 
}

/* Premium Scroll Scrub Smoothing */
.future-phase,
.future-text-managed,
.future-text-coordinated,
.future-subtext,
.bento-card,
.future-closing-statement {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, opacity;
}

.future-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
    animation: breathe 8s ease-in-out infinite alternate;
}

@keyframes breathe {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.future-phase {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0 5vw;
}

.future-kicker {
    font-family: 'SF Mono', 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 6vh;
    left: 5vw;
}

.future-headline {
    text-align: center;
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.1;
    display: grid;
    place-items: center;
}

.future-text-managed {
    grid-area: 1 / 1;
    color: #000000;
    transition: opacity 0.1s;
}

.future-text-coordinated {
    grid-area: 1 / 1;
    color: #000000;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
}

.future-phase-2 {
    opacity: 0;
    pointer-events: none;
}

.future-split {
    display: flex;
    width: 100%;
    max-width: 1400px;
    justify-content: space-between;
    align-items: center;
    gap: 8vw;
}

.future-left {
    flex: 0 0 42%;
}

.future-subtext {
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.85);
    transform: translateY(30px);
    opacity: 0;
}

.future-right {
    flex: 0 0 50%;
}

.future-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.bento-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    opacity: 0;
    transform: translateY(40px);
    transition: background 0.3s, border-color 0.3s;
}

.bento-card:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
}

.bento-card h4 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
}

.bento-card p {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.future-phase-3 {
    opacity: 0;
    pointer-events: none;
}

.future-closing-statement {
    text-align: center;
    font-size: clamp(2rem, 4.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: #000000;
    opacity: 0;
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .future-split {
        flex-direction: column;
        gap: 4rem;
    }
    .future-left, .future-right {
        flex: 1 1 auto;
        width: 100%;
    }
    .future-subtext {
        font-size: 1.35rem;
    }
    .bento-card {
        padding: 2rem 1.5rem;
    }
}
@media (max-width: 768px) {
    /* Cognitive Scale / Future Section Mobile Scroll Scrubbing (Desktop parity) */
    .future-split {
        gap: 1.5rem;
    }
    .future-subtext {
        font-size: 1.15rem;
        line-height: 1.4;
        text-align: center;
    }
    .future-bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }
    .bento-card {
        padding: 1.1rem 1rem;
        border-radius: 1rem;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }
    .bento-card h4 { 
        font-size: 0.9rem; 
        margin-bottom: 0.4rem; 
    }
    .bento-card p { 
        font-size: 0.8rem; 
        line-height: 1.35; 
    }
    .future-closing-statement {
        padding: 0 1rem;
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }
}

/* Call To Action Section */
.cta-section {
    background-color: #050506;
    color: #ffffff;
    padding: 150px 5vw;
    display: flex;
    justify-content: center;
}

.cta-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10vw;
    align-items: center;
}

.cta-headline {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 2.5rem;
}

.cta-subtext-container p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.cta-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: #ffffff;
    color: #000000;
    border-radius: 100px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
}

.cta-actions .btn-primary:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
}

.cta-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s, border-color 0.3s;
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-closing p {
    font-family: 'SF Mono', 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.cta-closing span {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1024px) {
    .cta-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* Footer Section */
.footer-section {
    background-color: #050506;
    color: #ffffff;
    padding: 100px 5vw 50px 5vw;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8vw;
    margin-bottom: 100px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--logo-font-family);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-tagline {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 500;
}

.footer-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    max-width: 400px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.footer-column h4 {
    font-family: 'SF Mono', 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
}

.footer-column h4.mt-4 {
    margin-top: 3rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 1.2rem;
}

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 0.6;
}

.footer-column ul li a strong {
    display: block;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.footer-column ul li a span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 100px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.9rem;
    margin-right: 2rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-bottom-statement {
    text-align: center;
    font-size: clamp(3rem, 9vw, 11rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -3px;
    color: #ffffff;
}

.footer-bottom-statement span {
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .footer-links-group {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .footer-links-group {
        grid-template-columns: 1fr;
    }
    
    /* CTA Mobile Optimization */
    .cta-section {
        padding: 5rem 1.5rem;
    }
    .cta-headline {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 1.5rem;
    }
    .cta-subtext-container p {
        font-size: 1.05rem;
        line-height: 1.5;
    }
    .cta-actions {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 2rem;
        width: 100%;
    }
    .cta-actions .btn-primary,
    .cta-actions .btn-secondary {
        width: 100%;
        padding: 1.1rem 1.5rem;
        text-align: center;
        box-sizing: border-box;
    }
    .cta-closing p {
        font-size: 1.15rem;
        line-height: 1.4;
    }
}
}

/* ===== Interactive Software Product Previews ===== */

/* Hero Live Status Strip */
.hero-live-status {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding: 0.65rem 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    white-space: nowrap;
}
.hero-status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.status-dot-green {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
}
.status-dot-green.pulse {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    animation: green-pulse 2s infinite;
}
@keyframes green-pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.status-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-color);
}
.status-meta {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}
.hero-status-divider {
    width: 1px;
    height: 14px;
    background: rgba(0, 0, 0, 0.1);
}

/* Capability Cards UI Widgets */
.cap-ui-widget {
    margin-top: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 0.85rem;
    padding: 1rem 1.15rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.cap-card:hover .cap-ui-widget {
    border-color: rgba(255, 77, 0, 0.15);
}
.ui-widget-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.6rem;
    margin-bottom: 0.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.ui-widget-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--text-color);
}
.ui-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}
.pulse-green { background: #22c55e; }
.pulse-amber { background: #f59e0b; }
.pulse-orange { background: var(--primary-color); }
.ui-widget-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.ui-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
}
.ui-label {
    color: var(--text-light);
    font-weight: 500;
}
.ui-badge {
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
}
.ui-badge-live { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.ui-badge-active { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.ui-badge-warning { background: rgba(239, 68, 68, 0.1); color: #dc2626; }
.ui-badge-amber { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.ui-badge-green { background: rgba(34, 197, 94, 0.1); color: #15803d; }
.ui-code { font-family: monospace; font-size: 0.72rem; color: var(--text-color); font-weight: 600; }

.ui-action-btn {
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.45rem 0.75rem;
    background: rgba(255, 77, 0, 0.06);
    color: var(--primary-color);
    border: 1px solid rgba(255, 77, 0, 0.15);
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25 ease;
}
.ui-action-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}
.ui-action-btn.applied {
    background: #16a34a !important;
    border-color: #16a34a !important;
    color: #ffffff !important;
}

/* Technology Slide UI Panels */
.tech-ui-panel {
    margin-top: 2rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 1.15rem;
    padding: 1.25rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}
.tech-ui-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.85rem;
    margin-bottom: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.tech-ui-search {
    font-size: 0.8rem;
    color: var(--text-light);
}
.tech-search-input {
    border: none;
    background: #f4f5f5;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.72rem;
    color: var(--text-color);
    width: 150px;
    font-family: inherit;
}
.tech-ui-chips {
    display: flex;
    gap: 0.4rem;
}
.tech-chip {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    background: #f0f0f0;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}
.tech-chip.active, .tech-chip:hover {
    background: var(--text-color);
    color: #ffffff;
}

.tech-ui-table {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.table-head {
    display: grid;
    grid-template-columns: 0.9fr 1.8fr 1.3fr 1.3fr;
    gap: 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0.3rem 0.5rem 0.5rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.table-row {
    display: grid;
    grid-template-columns: 0.9fr 1.8fr 1.3fr 1.3fr;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.78rem;
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}
.table-row:last-child { border-bottom: none; }
.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    width: fit-content;
}
.status-pill.transit { background: rgba(59, 130, 246, 0.1); color: #2563eb; }
.status-pill.processing { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.status-pill.delivered { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.table-row span:last-child {
    font-size: 0.75rem;
    white-space: nowrap;
    color: var(--text-light);
    font-weight: 500;
}

.tech-panel-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-color);
}
.tech-risk-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.tech-risk-card {
    padding: 0.75rem;
    border-radius: 0.75rem;
    background: #f9fafb;
    border: 1px solid rgba(0,0,0,0.04);
}
.risk-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}
.risk-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.risk-dot.red { background: #ef4444; }
.risk-dot.amber { background: #f59e0b; }
.risk-score { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; color: var(--text-light); }
.risk-card-meta { font-size: 0.72rem; color: var(--text-light); line-height: 1.35; }

.tech-decision-card {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.decision-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    flex-wrap: wrap;
}
.decision-savings { font-size: 0.72rem; font-weight: 700; color: #16a34a; white-space: nowrap; }
.decision-body { font-size: 0.8rem; color: var(--text-light); line-height: 1.4; }
.decision-actions { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; }
.tech-btn-apply {
    padding: 0.45rem 0.9rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}
.tech-btn-apply:hover { background: #e04400; }
.tech-btn-apply.applied { background: #16a34a !important; }
.tech-decision-status { font-size: 0.7rem; color: var(--text-light); font-weight: 500; }

/* Interactive Recommendations in Ops Panel */
.interactive-rec-btn {
    margin-top: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 77, 0, 0.06);
    color: var(--primary-color);
    border: 1px solid rgba(255, 77, 0, 0.15);
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.2s ease;
}
.interactive-rec-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}
.interactive-rec-btn.applied {
    background: #16a34a !important;
    border-color: #16a34a !important;
    color: #ffffff !important;
}

.selected-row {
    background: rgba(255, 77, 0, 0.03) !important;
    border-left: 3px solid var(--primary-color) !important;
    padding-left: 0.5rem !important;
}

/* Mobile Responsiveness for Software UI Mockups */
@media (max-width: 768px) {
    .hero-live-status {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.6rem;
        padding: 0.5rem 1rem;
        border-radius: 100px;
    }
    .hero-status-divider { display: inline-block; opacity: 0.3; }

    .tech-ui-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    .table-head, .table-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .table-head span:nth-child(2), .table-row span:nth-child(2) {
        display: none;
    }
}

/* ===== Engagement Journey & Audit Form ===== */

.cta-flow-wrap {
    margin-bottom: 2.5rem;
}
.cta-flow-kicker {
    font-family: 'SF Mono', 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.cta-flow-steps {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.flow-step-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}
.flow-step-chip.active, .flow-step-chip:hover {
    background: rgba(255, 77, 0, 0.12);
    border-color: rgba(255, 77, 0, 0.4);
    color: #ffffff;
}
.step-num {
    font-family: monospace;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.7rem;
}
.flow-step-arrow {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

/* Audit Form Card */
.cta-form-card {
    margin-top: 3.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.form-header {
    margin-bottom: 1.75rem;
}
.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.35rem;
}
.form-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.audit-request-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-input, .form-select {
    width: 100%;
    padding: 0.85rem 1.15rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
.form-select option {
    background: #0d0d0e;
    color: #ffffff;
}
.form-input:focus, .form-select:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.09);
}
.btn-form-submit {
    margin-top: 0.5rem;
    padding: 1rem 1.75rem;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}
.btn-form-submit:hover {
    transform: translateY(-2px);
    background: #e04400;
}
.form-success-msg {
    margin-top: 0.5rem;
    padding: 0.85rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 0.75rem;
    color: #4ade80;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .cta-form-card {
        padding: 1.5rem;
        border-radius: 1.15rem;
    }
    .cta-flow-steps {
        gap: 0.3rem;
    }
    .flow-step-arrow { display: none; }
}

/* ===== Accessibility & Production Polish ===== */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
.btn, .btn-primary, .btn-secondary, .lang-btn, .ui-action-btn, .tech-btn-apply, .interactive-rec-btn {
    min-height: 44px;
    touch-action: manipulation;
}

/* ===== Comprehensive Viewport & Mobile Refinement ===== */
@media (max-width: 480px) {
    .main-heading {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }
    .about-heading, .cap-heading, .outcomes-heading, .intel-heading, .future-heading, .cta-headline {
        font-size: 2.1rem !important;
        line-height: 1.18 !important;
    }
    .about-text {
        font-size: 1.05rem !important;
        line-height: 1.65 !important;
        color: #e5e7eb !important;
    }
    .cap-text, .outcomes-subtext, .cta-subtext-container p {
        font-size: 1.0rem !important;
        line-height: 1.6 !important;
    }
    .hero-content {
        padding-top: 2.5rem !important;
    }
    .cta-actions {
        flex-direction: column !important;
        width: 100% !important;
    }
    .cta-actions .btn-primary, .cta-actions .btn-secondary {
        width: 100% !important;
        text-align: center !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    .footer-links-group {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 375px) {
    .main-heading {
        font-size: 2.2rem !important;
    }
    .about-heading, .cap-heading, .outcomes-heading, .intel-heading, .future-heading, .cta-headline {
        font-size: 1.85rem !important;
    }
    .brand-logo-img {
        height: 38px !important;
    }
    .logo-text {
        font-size: 1.25rem !important;
    }
}


