html {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif !important;
}

body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif !important;
}

.team-card .aspect-square {
    position: relative;
}

.team-card .aspect-square::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(237, 114, 33, 0.25);
    box-shadow: inset 0 0 15px rgba(237, 114, 33, 0.35);
    pointer-events: none;
    transition: all 0.5s ease-out;
    z-index: 10;
}

.team-card:hover .aspect-square::after {
    border-color: rgba(237, 114, 33, 0.85);
    box-shadow: inset 0 0 25px rgba(237, 114, 33, 0.65), 0 0 12px rgba(237, 114, 33, 0.4);
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.typewriter-cursor::after {
    content: '|';
    animation: blink 1s step-end infinite;
    color: #ED7221;
    margin-left: 4px;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.glass-blur {
    backdrop-filter: blur(12px);
    background: rgba(18, 19, 22, 0.7);
    border: 1px solid rgba(242, 242, 242, 0.1);
}

.hairline-grid {
    display: grid;
    gap: 1px;
    background-color: rgba(242, 242, 242, 0.12);
}

.hairline-grid>* {
    background-color: #000000;
}

.sunburst-rotate {
    animation: rotate 40s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

/* Progress Bar Animation */
.progress-line {
    width: 0%;
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.progress-line.visible {
    width: 65%;
}

/* Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background-color: #000000;
    /* panel */
    border: 1px solid rgba(242, 242, 242, 0.12);
    /* border-line */
    border-top: 3px solid transparent !important;
    border-image: linear-gradient(to right, #ED7221, #F19253) 1 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: translateY(40px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-input {
    width: 100%;
    background-color: #000000 !important;
    border: 1px solid rgba(242, 242, 242, 0.12) !important;
    color: #F2F2F2 !important;
    padding: 1.35rem 1rem 0.65rem 1rem !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;

    font-size: 14px !important;
    border-radius: 2px !important;
}

.modal-input:focus {
    outline: none !important;
    border-color: #ED7221 !important;
    box-shadow: 0 0 12px rgba(237, 114, 33, 0.18) !important;
    background-color: #111111 !important;
}

.floating-label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;

    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left top;
}

.textarea-label {
    top: 1.2rem !important;
    transform: none !important;
}

/* Float logic */
.modal-input:focus~.floating-label,
.modal-input:not(:placeholder-shown)~.floating-label {
    transform: translateY(-135%) scale(0.8) !important;
    color: #ED7221 !important;
}

.modal-input:focus~.textarea-label,
.modal-input:not(:placeholder-shown)~.textarea-label {
    transform: translateY(-90%) scale(0.8) !important;
    color: #ED7221 !important;
}

.modal-close-btn {
    color: #999999;
    /* steel */
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #F19253;
    /* primary */
}

/* Success Screen style */
.modal-success-screen {
    position: absolute;
    inset: 0;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    text-align: center;
    padding: 2.5rem;
}

.modal-success-screen.active {
    opacity: 1;
    pointer-events: auto;
}

/* Cinema Mode Fullscreen Gallery */
.cinema-gallery-wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(25px);
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.cinema-header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    z-index: 10;
}

.cinema-close-btn {
    background: rgba(242, 242, 242, 0.05);
    border: 1px solid rgba(242, 242, 242, 0.1);
    color: #999999;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cinema-close-btn:hover {
    background: #ED7221;
    color: #000000;
    border-color: #ED7221;
    transform: rotate(90deg);
}

.cinema-viewport {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 6rem;
    box-sizing: border-box;
    overflow: hidden;
}

.cinema-image-container {
    max-width: 100%;
    max-height: calc(100vh - 280px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(242, 242, 242, 0.1);
    border-radius: 0.5rem;
    background-color: #000000;
    overflow: hidden;
}

.cinema-main-image {
    max-width: 100%;
    max-height: calc(100vh - 280px);
    object-fit: contain;
    display: block;
    transition: opacity 0.2s ease;
}

.cinema-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(242, 242, 242, 0.1);
    color: #CCCCCC;
    width: 60px;
    height: 60px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    z-index: 10;
}

.cinema-nav-arrow:hover {
    background: #ED7221;
    color: #000000;
    border-color: #ED7221;
    box-shadow: 0 0 15px rgba(237, 114, 33, 0.4);
}

.cinema-nav-arrow.left {
    left: 2rem;
}

.cinema-nav-arrow.right {
    right: 2rem;
}

.cinema-bottom-bar {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    z-index: 10;
}

.cinema-thumbnails-wrapper {
    width: 100%;
    max-width: 1200px;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(237, 114, 33, 0.3) transparent;
}

.cinema-thumbnails-wrapper::-webkit-scrollbar {
    height: 4px;
}

.cinema-thumbnails-wrapper::-webkit-scrollbar-thumb {
    background: rgba(237, 114, 33, 0.3);
    border-radius: 2px;
}

.cinema-thumbnails-strip {
    display: flex;
    gap: 0.75rem;
    padding: 0 0.5rem;
    width: max-content;
}

.gallery-thumb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem;
    background-color: #000000;
    border: 1px solid rgba(242, 242, 242, 0.1);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 130px;
    flex-shrink: 0;
}

.gallery-thumb-item:hover {
    border-color: rgba(237, 114, 33, 0.5);
    transform: translateY(-4px);
    background-color: rgba(237, 114, 33, 0.02);
}

.gallery-thumb-item.active {
    border-color: #ED7221;
    background-color: rgba(237, 114, 33, 0.08);
    box-shadow: 0 0 15px rgba(237, 114, 33, 0.15);
}

.gallery-thumb-img-wrapper {
    width: 100%;
    height: 70px;
    border-radius: 0.15rem;
    overflow: hidden;
    background-color: #000000;
}

.gallery-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.gallery-thumb-item:hover .gallery-thumb-img,
.gallery-thumb-item.active .gallery-thumb-img {
    opacity: 1;
}

.gallery-thumb-info {
    font-size: 11px;

    color: #999999;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery-thumb-item.active .gallery-thumb-info {
    color: #F19253;
    font-weight: 600;
}

.material-symbols-filled {
    font-variation-settings: 'FILL' 1;
}

/* Capability Cards Hover Elevation & Glow */
.hairline-grid>div {
    position: relative;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.hairline-grid>div:hover {
    transform: translateY(-8px);
    background-color: #0A0A0A !important;
    /* panel-elevated */
    box-shadow: 0 20px 40px rgba(237, 114, 33, 0.08), 0 0 0 1px rgba(237, 114, 33, 0.15) !important;
    z-index: 2;
}

/* Gentle Bobbing Browser Showcase */
@keyframes bobbing {

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

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

.floating-showcase {
    animation: bobbing 6s ease-in-out infinite;
}

/* Button Light Beam Sweep Reflex & Tactical Shiny Appearance */
.glow-sweep {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ED7221 0%, #ED7221 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35),
        0 4px 15px rgba(237, 114, 33, 0.2) !important;
    border: 1px solid #F19253 !important;
    color: #000000 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glow-sweep::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.35) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-30deg);
    transition: none;
}

.glow-sweep:hover {
    background: linear-gradient(180deg, #F19253 0%, #F19253 100%) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 6px 20px rgba(241, 146, 83, 0.4) !important;
    border-color: #FFFFFF !important;
    transform: translateY(-2px) scale(1.02);
}

.glow-sweep:hover::after {
    left: 150%;
    transition: left 0.85s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.glow-sweep:active {
    transform: translateY(1px) scale(0.98);
}

/* Animated Wireframe Globe Styles */
.cinema-globe {
    transform-style: preserve-3d;
    perspective: 800px;
}

.globe-atmosphere {
    fill: none;
    stroke: rgba(153, 153, 153, 0.15);
    stroke-width: 1;
}

.globe-latitude {
    fill: none;
    stroke: rgba(153, 153, 153, 0.15);
    stroke-width: 0.75;
}

.globe-latitude.equator {
    stroke: rgba(153, 153, 153, 0.25);
}

.globe-meridian {
    fill: none;
    stroke: rgba(153, 153, 153, 0.15);
    stroke-width: 0.75;
    transform-origin: center;
}

@keyframes rotateM1 {
    0% {
        rx: 90px;
        opacity: 1;
    }

    25% {
        rx: 0px;
        opacity: 0.2;
    }

    50% {
        rx: 90px;
        opacity: 1;
    }

    75% {
        rx: 0px;
        opacity: 0.2;
    }

    100% {
        rx: 90px;
        opacity: 1;
    }
}

@keyframes rotateM2 {
    0% {
        rx: 0px;
        opacity: 0.2;
    }

    25% {
        rx: 90px;
        opacity: 1;
    }

    50% {
        rx: 0px;
        opacity: 0.2;
    }

    75% {
        rx: 90px;
        opacity: 1;
    }

    100% {
        rx: 0px;
        opacity: 0.2;
    }
}

@keyframes rotateM3 {
    0% {
        rx: 45px;
    }

    25% {
        rx: 75px;
    }

    50% {
        rx: 45px;
    }

    75% {
        rx: 75px;
    }

    100% {
        rx: 45px;
    }
}

.globe-meridian.m1 {
    animation: rotateM1 10s linear infinite;
}

.globe-meridian.m2 {
    animation: rotateM2 10s linear infinite;
}

.globe-meridian.m3 {
    animation: rotateM3 8s ease-in-out infinite;
}

.globe-route {
    fill: none;
    stroke: #ED7221;
    stroke-width: 1.5;
    stroke-dasharray: 6 3;
    animation: dashRoute 8s linear infinite;
}

@keyframes dashRoute {
    to {
        stroke-dashoffset: -40;
    }
}

.globe-node {
    fill: #ED7221;
}

.globe-node.pulse {
    animation: pulseGlow 2s ease-in-out infinite;
    transform-origin: center;
}

@keyframes pulseGlow {

    0%,
    100% {
        r: 3px;
        opacity: 0.6;
    }

    50% {
        r: 6px;
        opacity: 1;
    }
}

.globe-node.center-node {
    fill: #F19253;
}

.globe-badge {
    display: inline-block;
    border: 1px solid rgba(237, 114, 33, 0.3);
    background-color: rgba(237, 114, 33, 0.08);
    color: #ED7221;

    font-size: 9px;
    padding: 0.25rem 0.6rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
    z-index: 10;
    white-space: nowrap;
}

/* Header Text Mask Slide-Up Reveal */
.header-reveal {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 100%;
}

.header-reveal>* {
    display: block !important;
    transform: translateY(105%);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-reveal.visible>* {
    transform: translateY(0);
}

/* Sourcing Comparison Card Premium Accentuation */
.sourcing-premium-card {
    border: 1px solid rgba(237, 114, 33, 0.25) !important;
    background: radial-gradient(circle at 80% 80%, rgba(237, 114, 33, 0.08) 0%, #0A0A0A 100%) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(237, 114, 33, 0.05) !important;
    transition: all 0.4s ease;
}

.sourcing-premium-card:hover {
    border-color: rgba(237, 114, 33, 0.5) !important;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5), 0 0 50px rgba(237, 114, 33, 0.1) !important;
}

.sourcing-feature-premium {
    border: 1px solid rgba(237, 114, 33, 0.25) !important;
    border-left: 4px solid #ED7221 !important;
    /* Bold primary left border */
    background-color: rgba(237, 114, 33, 0.03) !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.sourcing-feature-premium:hover {
    background-color: rgba(237, 114, 33, 0.06) !important;
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(237, 114, 33, 0.1) !important;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #ED7221 0%, #F19253 100%);
    z-index: 9999;
    width: 0;
    transition: width 0.1s ease-out;
}

/* Radar Sweep SVG Animation */
.radar-sweep {
    transform-origin: 100px 100px;
    animation: radarScan 5s linear infinite;
    stroke: rgba(237, 114, 33, 0.4);
    stroke-width: 1.5;
}

@keyframes radarScan {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Pulse Ring on Route Nodes */
.pulse-ring-circle {
    fill: none;
    stroke: #ED7221;
    stroke-width: 1.5;
    transform-origin: center;
    animation: pulseRing 2.5s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.3);
        opacity: 0.8;
    }

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

/* Seal Stamp Animation on Scroll */
.seal-stamp {
    opacity: 0;
    transform: scale(2.5) rotate(-15deg);
    filter: blur(8px);
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        filter 0.8s ease;
}

.reveal-on-scroll.visible .seal-stamp {
    opacity: 0.18;
    /* Promoted to be larger and more central */
    transform: scale(1.6) rotate(-5deg);
    filter: blur(0);
}

/* Live Ticker Ticker Strip */
.ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: #000000;
    border-top: 1px solid rgba(242, 242, 242, 0.1);
    border-bottom: 1px solid rgba(242, 242, 242, 0.1);
    padding: 1.25rem 0;
}

.ticker-wrap {
    display: flex;
    width: 100%;
}

.ticker-move {
    display: flex;
    white-space: nowrap;
    animation: tickerPlay 35s linear infinite;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 2rem;
    color: #999999;
    /* steel */

    font-size: 12px;
    letter-spacing: 0.05em;
}

.ticker-item span {
    color: #ED7221;
    /* orange */
}

@keyframes tickerPlay {
    0% {
        transform: translateX(0);
    }

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

/* Montserratactive Tabs for Capabilities Grid */
.tabs-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 2.5rem;
    background: #000000;
    border: 1px solid rgba(242, 242, 242, 0.1);
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .tabs-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.25rem;
    }
}

.tabs-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (max-width: 768px) {
    .tabs-list {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 0.5rem;
    }
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background-color: #000000;
    /* void */
    border: 1px solid rgba(242, 242, 242, 0.08);
    border-radius: 0.25rem;
    color: #999999;
    /* steel */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
    width: 100%;
}

@media (max-width: 768px) {
    .tab-btn {
        flex-shrink: 0;
        padding: 0.75rem 1rem;
        width: auto;
    }
}

.tab-btn:hover {
    border-color: rgba(237, 114, 33, 0.4);
    color: #CCCCCC;
}

.tab-btn.active {
    background-color: #000000;
    /* panel */
    border-color: #ED7221;
    color: #F19253;
    box-shadow: 0 0 15px rgba(237, 114, 33, 0.1);
}

.tab-panel-content {
    background-color: #000000;
    border: 1px solid rgba(242, 242, 242, 0.08);
    border-radius: 0.25rem;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    min-height: 320px;
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
    .tab-panel-content {
        padding: 1.75rem;
        min-height: 240px;
    }
}

.tab-panel-icon {
    font-size: 5rem;
    color: rgba(237, 114, 33, 0.04);
    position: absolute;
    top: 2rem;
    right: 2rem;
    pointer-events: none;
}

/* Milestone Popover / Detail Box */
.milestone-popover {
    background-color: #000000;
    border: 1px solid rgba(237, 114, 33, 0.2);
    border-radius: 0.25rem;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    display: block;
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Montserratactive Progress Dot states */
.progress-node-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    outline: none;
}

.progress-node-btn:hover {
    transform: scale(1.1);
}

.progress-node-btn.active .node-dot {
    background-color: #ED7221;
    box-shadow: 0 0 15px rgba(237, 114, 33, 0.8);
    border-color: #ED7221;
}

/* Premium Duotone Graded Images */
.duotone-wrapper {
    position: relative;
    display: block;
    background-color: #000000;
    overflow: hidden;
}

.duotone-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(237, 114, 33, 0.22) 0%, rgba(0, 0, 0, 0.7) 100%);
    mix-blend-mode: color;
    pointer-events: none;
    z-index: 2;
}

.duotone-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(237, 114, 33, 0.05) 0%, transparent 80%);
    mix-blend-mode: screen;
    pointer-events: none;
    z-index: 2;
}

.duotone-img {
    filter: grayscale(100%) contrast(125%) brightness(75%);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.duotone-wrapper:hover .duotone-img {
    transform: scale(1.04);
}

/* World Map Visualization Dashboard */
.world-map-svg {
    background-color: #000000;
}

.map-outline {
    stroke: rgba(237, 114, 33, 0.25);
    fill: none;
    stroke-width: 0.6;
    stroke-dasharray: 2 2;
}

.map-grid {
    stroke: rgba(242, 242, 242, 0.02);
    stroke-width: 0.5;
}

.map-route-primary {
    stroke: #ED7221;
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    fill: none;
    stroke-linecap: round;
}

.map-route-secondary {
    stroke: rgba(237, 114, 33, 0.25);
    stroke-width: 1;
    stroke-dasharray: 3 3;
    fill: none;
    stroke-linecap: round;
}

.map-destination-marker {
    fill: #ED7221;
    stroke: #000000;
    stroke-width: 1.5;
}

.map-destination-pulse {
    fill: none;
    stroke: #ED7221;
    stroke-width: 1.5;
    animation: mapPulse 2.5s infinite cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

@keyframes mapPulse {
    0% {
        transform: scale(0.4);
        opacity: 1;
    }

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

.map-country-badge {

    font-size: 8px;
    fill: #999999;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.map-country-flag {
    font-size: 8px;
    fill: #ED7221;

}

/* Comet Plane/Ship group and animateMotion */
.comet-group {
    pointer-events: none;
}

.comet-dot {
    fill: #ED7221;
    filter: drop-shadow(0 0 8px #ED7221);
}

.comet-pulse {
    stroke: #ED7221;
    fill: none;
    stroke-width: 1.2;
    animation: mapPulse 1.5s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

/* Process Active Steps */
.process-step-trigger {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 2px solid transparent;
    padding-left: 1.5rem;
}

.process-step-trigger.active {
    border-left-color: #ED7221;
    transform: translateX(8px);
}

.process-step-trigger.active h4 {
    color: #F19253 !important;
}

.process-step-trigger.active span.font-data-lg {
    color: #ED7221 !important;
    opacity: 1 !important;
}

/* Stat Cards Hover Lift & Glow */
.stat-card-hover {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.stat-card-hover:hover {
    transform: translateY(-5px);
    border-color: rgba(237, 114, 33, 0.5) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(237, 114, 33, 0.1) !important;
}

/* Browser Mockup 3D Perspective Tilt & Ambient Glow */
.floating-showcase {
    transform: perspective(1000px) rotateX(2.5deg) rotateY(-1deg) rotateZ(0deg) translateZ(0);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
    transform-style: preserve-3d;
    position: relative;
}

.floating-showcase::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(237, 114, 33, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(10px);
}

.reveal-on-scroll.visible .floating-showcase {
    transform: perspective(1000px) rotateX(1deg) rotateY(-0.3deg) rotateZ(0deg) translateZ(0);
}

/* Spin-slow helper animation */
.animate-spin-slow {
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Systems Pilot Brand Colors */
.systems-pilot-brand-orange {
    color: #ED7221;
}

/* Premium Social Links */
.social-link-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 17px;
    font-weight: 500;
    color: #999999;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.25s ease, transform 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-link-premium:hover {
    color: #ED7221;
    transform: translateY(-2px);
}

/* Underline grow left to right animation */
.social-link-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: #ED7221;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.social-link-premium:hover::after {
    transform: scaleX(1);
}

/* Arrow transition */
.social-link-premium .arrow-icon {
    display: inline-block;
    transition: transform 0.25s ease, color 0.25s ease;
}

.social-link-premium:hover .arrow-icon {
    transform: translate(2px, -2px);
    color: #ED7221;
}

/* Our Journeys Pill Styling */
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.02);
    color: #999999;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem; /* ~14px */
    font-weight: 500;
    transition: all 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.social-pill:hover {
    border-color: rgba(237, 114, 33, 0.7); /* Brand orange */
    color: #F2F2F2;
    background-color: rgba(237, 114, 33, 0.05);
    transform: translateY(-2px);
}

.social-pill:focus-visible {
    outline: 2px solid #ED7221;
    outline-offset: 2px;
}

/* Scroll to Top Button */
#scroll-top-btn.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* ─────────────────────────────────────────────────────────────
   SHENZHEN AUGUST EXPO CAMPAIGN & TRADE MISSION STYLES
   ───────────────────────────────────────────────────────────── */

/* Hero & Backgrounds */
.mission-hero-section {
    position: relative;
    background-color: #000000;
    background-image: 
        radial-gradient(circle at 85% 15%, rgba(237, 114, 33, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 15% 75%, rgba(237, 114, 33, 0.08) 0%, transparent 40%);
    overflow: hidden;
}

.mission-grid-bg {
    position: absolute;
    inset: 0;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    pointer-events: none;
}

/* Highlight Badges & Cards */
.visa-highlight-box {
    border: 1px solid rgba(237, 114, 33, 0.5);
    background: linear-gradient(135deg, rgba(237, 114, 33, 0.1) 0%, rgba(10, 10, 10, 0.95) 100%);
    box-shadow: 0 0 30px rgba(237, 114, 33, 0.15);
    transition: all 0.3s ease;
}

.visa-highlight-box:hover {
    border-color: rgba(237, 114, 33, 0.85);
    box-shadow: 0 0 40px rgba(237, 114, 33, 0.25);
}

.expo-category-card {
    background-color: #0A0A0A;
    border: 1px solid #333333;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expo-category-card::top {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #ED7221;
}

.expo-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(237, 114, 33, 0.6);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(237, 114, 33, 0.15);
}

.event-item-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1rem 0;
    transition: background-color 0.2s ease;
}

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

/* Comparison Section (Inclusions / Exclusions) */
.comparison-included-card {
    background-color: #0A0A0A;
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-top: 4px solid #2ECC71;
    position: relative;
}

.comparison-excluded-card {
    background-color: #0A0A0A;
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-top: 4px solid #E74C3C;
    position: relative;
}

/* FAQ Accordion */
.mission-faq-item {
    background-color: #0A0A0A;
    border: 1px solid #333333;
    transition: border-color 0.3s ease;
}

.mission-faq-item:hover {
    border-color: #ED7221;
}

.mission-faq-trigger {
    cursor: pointer;
    user-select: none;
}

.mission-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
}

.mission-faq-item.open .mission-faq-content {
    max-height: 500px;
}

.mission-faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: #ED7221;
}

.faq-icon {
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Qualification Modal Form */
.mission-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow-y: auto;
}

.mission-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mission-modal-card {
    background-color: #0A0A0A;
    border: 1px solid #333333;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(237, 114, 33, 0.2);
    max-width: 850px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

/* Custom Select & Form Controls (No Inline Styles - Overrides @tailwindcss/forms & autofill) */
.mission-select-input,
input.mission-select-input,
select.mission-select-input,
textarea.mission-select-input {
    background-color: #121212 !important;
    border: 1px solid #333333 !important;
    color: #FFFFFF !important;
    padding: 0.85rem 1rem !important;
    width: 100% !important;
    border-radius: 0.25rem !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mission-select-input::placeholder {
    color: #777777 !important;
    opacity: 1;
}

/* Prevent Chrome/Safari autofill from forcing white backgrounds with unreadable text */
.mission-select-input:-webkit-autofill,
.mission-select-input:-webkit-autofill:hover, 
.mission-select-input:-webkit-autofill:focus,
.mission-select-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #1A1A1A inset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    transition: background-color 5000s ease-in-out 0s;
}

.mission-select-input:focus {
    outline: none !important;
    border-color: #ED7221 !important;
    box-shadow: 0 0 0 2px rgba(237, 114, 33, 0.25) !important;
}

.mission-select-input option {
    background-color: #141414 !important;
    color: #FFFFFF !important;
    padding: 0.5rem;
}

/* Form Helper Utilities */
.hidden-none {
    display: none !important;
}

.block-show {
    display: block !important;
}

.flex-show {
    display: flex !important;
}

.border-orange-alert {
    border-color: #ED7221 !important;
    box-shadow: 0 0 10px rgba(237, 114, 33, 0.4) !important;
}

.no-scroll {
    overflow: hidden !important;
}

/* Live Lead Tracker Dashboard */
.tracker-container {
    background-color: #0A0A0A;
    border: 1px solid #333333;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.status-pill {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    cursor: pointer;
    border: 1px solid transparent;
}

.status-new {
    background-color: rgba(59, 130, 246, 0.15);
    color: #60A5FA;
    border-color: rgba(59, 130, 246, 0.4);
}

.status-contacted {
    background-color: rgba(245, 158, 11, 0.15);
    color: #FBBF24;
    border-color: rgba(245, 158, 11, 0.4);
}

.status-qualified {
    background-color: rgba(139, 92, 246, 0.15);
    color: #A78BFA;
    border-color: rgba(139, 92, 246, 0.4);
}

.status-booked {
    background-color: rgba(237, 114, 33, 0.2);
    color: #ED7221;
    border-color: rgba(237, 114, 33, 0.5);
}

.status-paid, .status-confirmed {
    background-color: rgba(16, 185, 129, 0.2);
    color: #34D399;
    border-color: rgba(16, 185, 129, 0.5);
}

.status-unqualified {
    background-color: rgba(239, 68, 68, 0.15);
    color: #F87171;
    border-color: rgba(239, 68, 68, 0.4);
}

.whatsapp-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background-color: #25D366;
    color: #000000;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 0.25rem;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-size: 0.85rem;
}

.whatsapp-action-btn:hover {
    background-color: #1EBE5D;
    transform: scale(1.03);
}

.whatsapp-action-btn:active {
    transform: scale(0.98);
}

/* Responsive modal table tweaks */
@media (max-width: 768px) {
    .mission-modal-card {
        max-height: 95vh;
        padding: 1rem;
    }
}

/* Dashboard Statistics & Overview Cards */
.stats-overview-panel {
    background-color: #0A0A0A;
    border: 1px solid #333333;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.stat-card-item {
    background-color: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.375rem;
    padding: 1rem;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card-item:hover {
    border-color: rgba(237, 114, 33, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

.stat-num-total {
    color: #F2F2F2;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.stat-num-orange {
    color: #ED7221;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.stat-num-blue {
    color: #60A5FA;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.stat-num-amber {
    color: #FBBF24;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.stat-num-purple {
    color: #A78BFA;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.stat-num-green {
    color: #34D399;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.stat-num-red {
    color: #F87171;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}