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

:root {
    --primary: #003C55;
    --primary-light: #004d6e;
    --secondary: #A5B729;
    --tertiary: #0E3A54;
    --neutral: #64748B;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-light: #94a3b8;
    
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    
    /* Animation Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Base Elements */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 8rem 0;
}

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

/* Animations */
@keyframes pulseRed {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes pulseOrange {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.pulse-red::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulseRed 2s infinite;
}

.pulse-orange::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #f59e0b;
    border-radius: 50%;
    margin-right: 6px;
    animation: pulseOrange 2s infinite;
}

/* Scroll Reveal Classes */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-element.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}
.section-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.25rem;
    color: var(--neutral);
    max-width: 600px;
    margin: 0 auto;
}
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-primary {
    background: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
}
.btn-primary:hover {
    background: #92a321;
    border-color: #92a321;
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}
.btn-dark {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
    border: 1px solid var(--white);
}
.btn-xl {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}
.btn-glow {
    background: var(--secondary);
    color: var(--white);
    box-shadow: 0 0 20px rgba(165, 183, 41, 0.4);
    border: none;
}
.btn-glow:hover {
    box-shadow: 0 0 30px rgba(165, 183, 41, 0.6);
    transform: translateY(-2px);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

/* Hero Background Wrapper */
.hero-bg-wrapper {
    background: linear-gradient(to bottom, #001f2f 0%, var(--primary) 70%, var(--white) 100%);
    padding-bottom: 8rem;
    position: relative;
    z-index: 1;
}

/* Announcement Bar */
.announcement-bar {
    background: #00121e;
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
}
.btn-announcement {
    background: rgba(255,255,255,0.15);
    color: white;
    border: none;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: 0.3s;
}
.btn-announcement:hover {
    background: rgba(255,255,255,0.25);
}
.close-btn {
    position: absolute;
    right: 15px;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.6;
}

/* Navigation */
.header {
    padding: 1.25rem 2rem;
    width: 100%;
    background-color: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}
.nav-links a:hover, .nav-link:hover {
    opacity: 1;
}
.logo img {
    height: 32px;
}
.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    opacity: 0.8;
    display: flex;
}
.icon-btn:hover {
    opacity: 1;
}
.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    opacity: 0.8;
}
.navbar .btn-outline {
    color: var(--text-dark);
    border: 1px solid rgba(15, 23, 42, 0.2);
}
.navbar .btn-outline:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    padding: 4rem 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}
.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 4rem;
}
.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a1c4fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* Slider */
.hero-slider-container {
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}
.slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 0;
    margin: 0;
    will-change: transform;
}
.slider-card {
    width: 600px;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
    flex-shrink: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.45;
    transform: scale(0.92);
    will-change: transform, opacity;
}
.slider-card.active {
    opacity: 1;
    transform: scale(1);
}
.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    transform: scale(1.06);
    will-change: transform;
}
.slider-card.active .slider-img {
    transform: scale(1);
}
.slider-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: var(--white);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1.2s ease;
    transform: translateY(20px);
    opacity: 0;
}
.slider-card.active .slider-card-content {
    transform: translateY(0);
    opacity: 1;
}
.slider-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.slider-card-content p {
    font-size: 1rem;
    opacity: 0.9;
}
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}
.slider-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}
.slider-btn:hover {
    background: rgba(255,255,255,0.2);
}
.slider-dots {
    display: flex;
    gap: 0.75rem;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.3s;
}
.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Missions Intro Section */
.missions-intro {
    background-color: var(--white);
    padding-top: 4rem;
    padding-bottom: 6rem;
}
.missions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.missions-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.missions-icon {
    width: 48px;
    height: 48px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.missions-title-group {
    display: flex;
    flex-direction: column;
}
.missions-title {
    font-size: 2.25rem;
    color: #003c55;
    margin-bottom: 0.25rem;
    font-weight: 800;
}
.missions-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}
.btn-blue {
    background: #2563eb;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}
.btn-blue:hover {
    background: #1d4ed8;
}

/* 1. Live Missions (Dashboard) */
.live-missions {
    background-color: #003c55;
    position: relative;
    z-index: 10;
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-image: radial-gradient(circle at center 30%, rgba(165,183,41,0.05) 0%, transparent 60%);
}
.video-showcase {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.98);
    transition: transform 0.5s ease;
}
.video-showcase:hover {
    transform: scale(1);
}
.premium-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.live-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}
.live-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: var(--white);
    transition: transform 0.4s var(--ease-out-expo);
}
.live-card:hover {
    transform: translateY(-10px);
}
.live-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
    transition: transform 0.6s ease;
}
.live-card:hover .live-card-bg {
    transform: scale(1.05);
}
.live-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,30,45,0.9) 100%);
    z-index: -1;
}
.card-offset-1 {
    margin-top: 3rem;
}
.card-offset-2 {
    margin-top: 1.5rem;
}
.live-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(0,0,0,0.6);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-mono);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.live-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.live-content p {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.live-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    font-family: var(--font-mono);
    color: #94a3b8;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* 2. How It Works (Timeline) */
.how-it-works {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}
.how-it-works .section-title {
    color: var(--text-dark);
}
.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.timeline-line {
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 15%, #e2e8f0 85%, transparent 100%);
    z-index: 0;
}
.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.step-number {
    width: 64px;
    height: 64px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 0 0 2px var(--secondary), var(--shadow-md);
    position: relative;
}
.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(165,183,41,0.2);
    z-index: -1;
    transition: transform 0.3s ease;
}
.timeline-step:hover .step-number::after {
    transform: scale(1.2);
}
.step-content h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}
.step-content p {
    color: var(--neutral);
    line-height: 1.6;
}

/* 3. Use Cases (Bento Box) */
.use-cases {
    background-color: var(--bg-light);
}
.use-cases .section-title {
    color: var(--text-dark);
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}
.bento-item {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}
.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.bento-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.bento-wide {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}
.bento-square {
    /* Auto placed in remaining slots */
}
.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transition: transform 0.7s ease;
}
.bento-item:hover .bento-bg {
    transform: scale(1.05);
}
.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,30,45,0.92) 0%, rgba(0,30,45,0.35) 60%, rgba(0,30,45,0.1) 100%);
    z-index: 2;
}
.bento-content {
    position: relative;
    z-index: 3;
}
.gradient-bg-1 {
    background: linear-gradient(135deg, var(--tertiary) 0%, var(--primary) 100%);
}
.gradient-bg-1::before, .gradient-bg-2::before { display: none; }
.gradient-bg-2 {
    background: linear-gradient(135deg, var(--primary) 0%, #1a5675 100%);
}
.bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.bento-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}
.icon-wrap {
    font-size: 2.5rem;
    margin-bottom: auto;
    background: rgba(255,255,255,0.1);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 2rem;
}

/* Global Network Map Section */
.global-network {
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.global-network::before {
    display: none;
}
.map-container.canvas-mode {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    border-radius: 1rem;
    overflow: hidden;
    background: transparent;
}
.canvas-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
    cursor: crosshair;
}
@media (min-width: 640px) {
    .canvas-wrapper { height: 620px; }
}
#worldMapCanvas {
    display: block;
    width: 100%;
    height: 100%;
}
.canvas-overlays {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Toolbars */
.map-toolbar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}
.toolbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
}
.pulse-indicator {
    position: relative;
    display: flex;
    width: 0.75rem;
    height: 0.75rem;
}
.pulse-core {
    position: relative;
    display: inline-flex;
    border-radius: 9999px;
    width: 0.75rem;
    height: 0.75rem;
    background-color: #10b981;
}
.pulse-wave {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 9999px;
    background-color: #34d399;
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}
.toolbar-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #34d399;
}
.toolbar-divider {
    color: #64748b;
    font-size: 0.75rem;
    display: none;
}
.toolbar-stats {
    font-size: 0.75rem;
    color: #cbd5e1;
    display: none;
}
@media (min-width: 640px) {
    .toolbar-divider, .toolbar-stats { display: inline-block; }
}
.btn-simulate {
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(5, 150, 105, 0.9);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
}
.btn-simulate:hover {
    background: #10b981;
}
.icon-zap { color: #fcd34d; }

.map-ticker {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 20;
    display: none;
    align-items: center;
    gap: 0.5rem;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    padding: 0.5rem 0.875rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(30, 41, 59, 0.9);
    font-size: 0.75rem;
    color: #cbd5e1;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
    .map-ticker { display: flex; }
}
.icon-radio {
    color: #34d399;
    animation: pulseDot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.ticker-label {
    font-weight: 600;
    color: white;
}
.ticker-text {
    animation: pulseDot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Floating Mission Cards */
.canvas-mission-card {
    position: absolute;
    pointer-events: auto;
    transform: translate(-50%, -100%);
    margin-bottom: 0.75rem;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.canvas-mission-card:hover {
    transform: translate(-50%, -100%) scale(1.05);
    z-index: 30;
}
.mission-card-inner {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(51, 65, 85, 0.8);
    border-radius: 0.75rem;
    padding: 0.625rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 12rem;
    transition: all 0.2s;
}
@media (min-width: 640px) {
    .mission-card-inner { width: 14rem; }
}
.canvas-mission-card:hover .mission-card-inner {
    border-color: #3b82f6;
}
.mission-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 0.25rem;
}
.mission-loc {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #60a5fa;
}
.mission-icon { color: #60a5fa; }
.mission-time {
    padding: 0.125rem 0.375rem;
    border-radius: 0.25rem;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    font-size: 0.625rem;
}
.mission-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.mission-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.25rem;
    border-top: 1px solid #1e293b;
    font-size: 0.625rem;
}
.mission-agent {
    display: flex;
    align-items: center;
    gap: 0.375rem;
}
.mission-avatar {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background: #3b82f6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.5rem;
    box-shadow: 0 0 0 1px #60a5fa;
}
.mission-name {
    color: #cbd5e1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60px;
}
.mission-status {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}
.status-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
}
.text-emerald-400 { color: #34d399; }
.text-blue-400 { color: #60a5fa; }
.bg-emerald-400 { background: #34d399; }
.bg-blue-400 { background: #60a5fa; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

/* Hover Delegate Modal */
.delegate-modal {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 30;
    max-width: 20rem;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(59, 130, 246, 0.5);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    pointer-events: auto;
}
.slide-up {
    animation: slideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-flex {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.modal-avatar-wrapper {
    position: relative;
}
.modal-img {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    object-fit: cover;
    box-shadow: 0 0 0 2px #3b82f6, 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.modal-badge {
    position: absolute;
    bottom: -0.25rem;
    right: -0.25rem;
    background: #10b981;
    color: #020617;
    padding: 0.125rem;
    border-radius: 9999px;
    font-size: 0.5rem;
    font-weight: bold;
    box-shadow: 0 0 0 2px #0f172a;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-info {
    flex: 1;
    min-width: 0;
}
.modal-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-title-row h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin: 0;
}
.modal-status {
    display: inline-flex;
    align-items: center;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.modal-loc {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 0 0 0.5rem 0;
}
.modal-stats-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #94a3b8;
}
.modal-rating {
    color: #fbbf24;
    font-weight: 600;
}
.modal-bio {
    font-size: 0.75rem;
    color: #cbd5e1;
    margin-top: 0.75rem;
    line-height: 1.625;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.modal-btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background: #2563eb;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
    transition: background 0.2s;
}
.modal-btn:hover { background: #3b82f6; }

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 3rem;
    position: relative;
    z-index: 2;
}
.stat-block {
    text-align: center;
}
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}
.stat-number::after {
    content: '+';
    color: var(--secondary);
}
.stat-number.text-literal::after {
    content: '';
}
.stat-label {
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 1.1rem;
}

/* 4. Testimonials */
.testimonials {
    background: linear-gradient(
        180deg,
        #003c55 0%,
        #003c55 15%,
        #094863 35%,
        #215c7a 55%,
        #497b97 72%,
        #87a8be 86%,
        #d3e2ec 95%,
        #ffffff 100%
    );
    position: relative;
}
.testimonials .section-title {
    color: var(--white);
}
.testimonials .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08);
    border: 1px solid #f1f5f9;
}
.offset-card {
    margin-top: 3rem;
}
.test-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}
.bg-blue { background: #3b82f6; }
.bg-green { background: #10b981; }
.bg-dark { background: var(--primary); }
.test-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
}
.test-info span {
    font-size: 0.85rem;
    color: var(--neutral);
    display: flex;
    align-items: center;
    gap: 4px;
}
.verified {
    color: #3b82f6;
    font-size: 0.75rem;
    background: #eff6ff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

/* 5. Final CTA */
.final-cta {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 10rem 0;
}
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(165,183,41,0.15) 0%, rgba(0,60,85,0) 70%);
    z-index: 1;
    pointer-events: none;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.cta-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}
.cta-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    line-height: 1.6;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* 6. Footer */
.site-footer {
    background-color: #00121e;
    padding: 6rem 0 2rem;
    color: #94a3b8;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-logo {
    height: 32px;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}
.footer-brand p {
    line-height: 1.6;
    max-width: 250px;
}
.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.75rem;
}
.footer-links a {
    color: #94a3b8;
}
.footer-links a:hover {
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}
.legal-links {
    display: flex;
    gap: 1.5rem;
}
.legal-links a:hover {
    color: var(--white);
}

/* Responsive Overrides */
/* --- Fluid Typography & Global Resets --- */
.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
}
.section-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
}
.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
}
.section-padding {
    padding: clamp(4rem, 10vw, 8rem) 0;
}

/* --- Mobile Menu Styles --- */
.mobile-only { display: none; }
.desktop-only { display: flex; }

.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}
.hamburger-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark); /* Changed from white for visibility on white background */
    transition: all 0.3s ease;
    border-radius: 2px;
}
.hamburger-btn.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-btn.is-active span:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.mobile-menu-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
}
.mobile-menu-content {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
    text-align: center;
}
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}
.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu-overlay.is-active .mobile-nav-links a,
.mobile-menu-overlay.is-active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu-footer .btn { width: 100%; }

/* --- Responsive Layout Breakpoints --- */

@media (max-width: 1024px) {
    .live-grid, .timeline, .bento-grid, .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-tall, .bento-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .hero-mockup-wrapper {
        margin-left: -2rem;
    }
}

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: flex !important; }
    
    .hamburger-btn { display: flex; }
    
    /* Layout Stacks */
    .live-grid, .timeline, .bento-grid, .testimonial-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid { gap: 2rem; }
    .footer-brand { margin-bottom: 1rem; }
    .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
    
    .timeline-line { display: none; }
    .card-offset-1, .card-offset-2, .offset-card { margin-top: 0; }
    .live-missions { margin-top: 0; padding-top: 4rem; }
    .hero-bg-wrapper { padding-bottom: 3rem; }

    /* Missions Section Header Mobile Fix */
    .missions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }
    .missions-header-right {
        width: 100%;
    }
    .missions-header-right .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .missions-title {
        font-size: 1.75rem;
    }
    .missions-subtitle {
        font-size: 1.1rem;
    }
    
    /* Hero Adjustments */
    .hero-content {
        padding: 6rem 0 3rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-buttons .btn { width: 100%; }
    
    /* Mockups */
    .hero-mockup-wrapper {
        margin-left: 0;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .mockup-main {
        position: relative;
        left: 0;
        width: 100%;
        max-width: 500px;
    }
    .mockup-mobile {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: -60px;
        z-index: 10;
        width: 180px;
    }
    
    /* CTA Section */
    .cta-actions { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
    .cta-actions .btn { width: 100%; }
    
    /* Carousel Touch Scroll Snap */
    .carousel-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1rem; /* Space for scrollbar if shown */
        pointer-events: auto; /* Enable touch */
    }
    .carousel-track::-webkit-scrollbar { display: none; } /* Chrome */
    .carousel-slide {
        scroll-snap-align: center;
        flex: 0 0 85%; /* Slightly smaller on mobile to peek next card */
        max-width: 350px;
    }
    
    /* Hero Slider Mobile Fix */
    .hero-slider-container {
        padding: 1rem 0;
        overflow: hidden;
        width: 100%;
    }
    .slider-track {
        padding: 0;
        gap: 1rem;
        transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .slider-card {
        min-width: unset;
        width: 80vw;
        max-width: 380px;
        height: 340px;
        border-radius: 18px;
    }
    .slider-card-content {
        padding: 1.25rem;
    }
    .slider-card-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.25rem;
    }
    .slider-card-content p {
        font-size: 0.85rem;
    }
    .slider-controls {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Map Adjustments */
    .canvas-wrapper {
        height: 400px;
    }
    .canvas-mission-card {
        display: none !important; /* Hide floating labels on mobile to prevent overlap, rely on tapping dots instead */
    }
    .map-toolbar {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
        text-align: center;
    }
    .toolbar-left, .toolbar-right {
        justify-content: center;
        width: 100%;
    }
    .toolbar-divider { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .announcement-bar {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem;
    }
    .carousel-slide {
        flex: 0 0 95%; /* Take up most of screen on small phones */
    }
}

/* ==========================================================================
   NEW ENTERPRISE SECTIONS & MOTION POLISH
   ========================================================================== */

/* Section Badge */
.section-badge {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--secondary);
    background: rgba(165, 183, 41, 0.1);
    border: 1px solid rgba(165, 183, 41, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Reveal on Scroll */
.reveal-element {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Why Bthere Section */
.why-bthere {
    background: linear-gradient(180deg, #0f172a 0%, #082537 35%, #043147 70%, #003c55 100%);
    position: relative;
    margin-bottom: -2px;
}
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 950px;
    margin: 3.5rem auto 0;
}
.comparison-card {
    padding: 2.25rem 2rem;
    border-radius: 1.25rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.comparison-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px -15px rgba(0, 60, 85, 0.5);
}
.featured-comp {
    border-color: rgba(165, 183, 41, 0.5);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(0, 60, 85, 0.4) 100%);
    box-shadow: 0 0 30px rgba(165, 183, 41, 0.15);
}
.comp-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
}
.comp-icon {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}
.red-tint { background: rgba(239, 68, 68, 0.15); }
.lime-tint { background: rgba(165, 183, 41, 0.2); }
.blue-tint { background: rgba(59, 130, 246, 0.2); }
.comparison-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}
.comp-desc {
    color: #94a3b8;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.comp-bullets {
    list-style: none;
    padding: 0;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.comp-bullets li {
    font-size: 0.9rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.comp-bullets .cross { color: #f87171; font-weight: bold; }
.comp-bullets .check { color: #4ade80; font-weight: bold; }

/* Platform Capabilities Grid */
.platform-capabilities {
    background: #020617;
}
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}
.cap-card {
    padding: 1.75rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}
.cap-card:hover {
    border-color: rgba(165, 183, 41, 0.4);
    background: rgba(15, 23, 42, 0.9);
    transform: translateY(-4px);
}
.cap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.cap-code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--secondary);
    opacity: 0.8;
}
.cap-icon { font-size: 1.5rem; }
.cap-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.cap-card p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Dashboard Preview Section */
.dashboard-preview-section {
    background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
}
.dashboard-window {
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.6);
}
.dash-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: rgba(2, 6, 23, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dash-dots { display: flex; gap: 0.4rem; }
.dash-dots .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }
.dash-title-bar {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #64748b;
    background: rgba(255, 255, 255, 0.04);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
}
.dash-status-pill {
    font-size: 0.7rem;
    font-weight: 700;
    color: #4ade80;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.dash-nav-tabs {
    display: flex;
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.dash-tab {
    flex: 1;
    padding: 1rem;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s;
    border-bottom: 2px solid transparent;
}
.dash-tab:hover { color: #ffffff; background: rgba(255, 255, 255, 0.02); }
.dash-tab.active {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
    background: rgba(165, 183, 41, 0.05);
}
.dash-body { padding: 2rem; }
.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Tab 1 Layout */
.dash-grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}
.dash-video-viewport {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    height: 340px;
    background: #000;
}
.viewport-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.viewport-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.vp-tag {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.6rem;
    border-radius: 0.35rem;
    font-family: 'JetBrains Mono', monospace;
}
.vp-coords {
    background: rgba(15, 23, 42, 0.85);
    color: #94a3b8;
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 0.35rem;
    font-family: 'JetBrains Mono', monospace;
}
.vp-controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
}
.vp-btn {
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(8px);
}
.vp-btn.highlight {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
}
.dash-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.dash-card-mini {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem;
    border-radius: 0.75rem;
}
.dash-card-mini h4 { font-size: 0.85rem; color: #94a3b8; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.delegate-mini-info { display: flex; items-center; gap: 0.75rem; }
.avatar-sm { width: 2.25rem; height: 2.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; }
.bg-blue { background: #3b82f6; }
.status-step-list { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.8rem; }
.s-step.done { color: #4ade80; }
.s-step.active { color: var(--secondary); font-weight: 700; }
.s-step.pending { color: #64748b; }

/* Tab 2 Evidence Grid */
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.ev-item {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0.75rem;
    padding: 1rem;
    position: relative;
}
.ev-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #10b981;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
}
.ev-item img { width: 100%; height: 140px; object-fit: cover; border-radius: 0.5rem; margin-bottom: 0.75rem; }
.ev-item p { font-size: 0.85rem; color: #fff; font-weight: 600; margin-bottom: 0.25rem; }
.ev-item span { font-size: 0.75rem; color: #64748b; font-family: 'JetBrains Mono', monospace; }

/* Tab 3 AI Summary */
.ai-report-box {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(165, 183, 41, 0.3);
    border-radius: 0.75rem;
    padding: 1.75rem;
}
.ai-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.ai-icon { font-size: 1.5rem; }
.ai-header h3 { font-size: 1.15rem; color: #fff; }
.ai-badge { margin-left: auto; background: rgba(165, 183, 41, 0.15); color: var(--secondary); font-size: 0.75rem; padding: 0.3rem 0.75rem; border-radius: 9999px; font-weight: 700; }
.ai-report-box p { color: #cbd5e1; font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.25rem; }
.ai-actions-list { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.85rem; color: #4ade80; }

/* Trust & Security */
.trust-security {
    background: #ffffff;
    color: #0f172a;
}
.trust-security .section-title {
    color: #003c55;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: initial;
}
.trust-security .section-subtitle {
    color: #475569;
}
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.sec-card {
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}
.sec-card:hover {
    transform: translateY(-4px);
    border-color: #003c55;
    box-shadow: 0 15px 30px -10px rgba(0, 60, 85, 0.12);
}
.sec-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.sec-card h3 { font-size: 1.1rem; color: #003c55; font-weight: 700; margin-bottom: 0.65rem; }
.sec-card p { font-size: 0.85rem; color: #475569; line-height: 1.5; }

/* FAQ Accordion */
.faq-section {
    background: #ffffff;
    color: #0f172a;
}
.faq-section .section-title {
    color: #003c55;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: initial;
}
.faq-section .section-subtitle {
    color: #475569;
}
.faq-accordion {
    max-width: 850px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    border-radius: 0.85rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.faq-item:hover {
    border-color: #003c55;
    box-shadow: 0 10px 25px -5px rgba(0, 60, 85, 0.08);
}
.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question h3 { font-size: 1.05rem; font-weight: 600; color: #003c55; }
.faq-icon { font-size: 1.35rem; color: #003c55; font-weight: bold; transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(45deg); color: #849600; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s;
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}
.faq-answer p { color: #475569; font-size: 0.925rem; line-height: 1.6; }

/* Mobile & Tablet Overrides for New Sections */
@media (max-width: 1024px) {
    .comparison-grid { grid-template-columns: 1fr; }
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .dash-grid-layout { grid-template-columns: 1fr; }
    .evidence-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .capabilities-grid { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .dash-nav-tabs { flex-direction: column; }
    .dash-video-viewport { height: 240px; }
}

/* ==========================================================================
   MEET OUR GLOBAL DELEGATE NETWORK SECTION & MARQUEE CAROUSEL
   ========================================================================== */

.delegate-network-section {
    background: linear-gradient(180deg, #003c55 0%, #082837 50%, #003c55 100%);
    position: relative;
    overflow: hidden;
    padding-bottom: 5rem;
}

/* Marquee Container & Masks */
.delegate-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.delegate-marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: delegateMarqueeLoop 38s linear infinite;
    will-change: transform;
}

.delegate-marquee-container:hover .delegate-marquee-track {
    animation-play-state: paused;
}

@keyframes delegateMarqueeLoop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Full Portrait Profile Cards */
.profile-card {
    position: relative;
    width: 270px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #081a29;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 20px 45px -12px rgba(16, 185, 129, 0.25);
}

.profile-rating {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    background: rgba(16, 185, 129, 0.85);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.profile-card:hover .profile-img {
    transform: scale(1.05);
}

.profile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 2.5rem 1.25rem 1.15rem 1.25rem;
    background: linear-gradient(180deg, rgba(2, 10, 20, 0) 0%, rgba(2, 10, 20, 0.75) 40%, rgba(2, 10, 20, 0.96) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.profile-info-left {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.profile-info-left h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.profile-location {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
}

.profile-info-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

.profile-spec {
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.2;
}

.spec-green { color: #4ade80; }
.spec-emerald { color: #34d399; }
.spec-teal { color: #2dd4bf; }

.profile-missions {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}
    gap: 0.4rem;
}


