/* --- 1. VARIABLES & RESET --- */
:root {
    /* Palette */
    --col-primary: #6685cc;
    --col-dark: #0F172A;
    /* Utility Blue */
    --col-deepest: #020617;
    /* Gunmetal */
    --col-surface: #FFFFFF;
    /* White */
    --col-wash: #F8FAFC;
    /* Muted */
    --col-border: #E2E8F0;
    /* Slate-200 */

    /* Text */
    --col-text-main: #0F172A;
    /* Dark Gunmetal */
    --col-text-muted: #64748B;
    /* Slate-500 */
    --col-text-light: #F8FAFC;

    /* Typography */
    --font-brand: 'Cinzel', serif;
    --font-ui: 'Inter', sans-serif;

    /* Spacing & Shapes */
    --radius-sharp: 2px;
    --container-width: 1200px;
    --header-height: 80px;
}

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

body {
    font-family: var(--font-ui);
    color: var(--col-text-main);
    background-color: var(--col-wash);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-brand);
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

/* --- 2. COMPONENTS --- */

/* Buttons (Standard) */
.btn {
    position: relative;
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sharp);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.35s;
    background: transparent;
    z-index: 1;
}

.btn-primary {
    border: 1px solid var(--col-primary);
    color: var(--col-primary);
}

.btn-primary:before,
.btn-primary:after {
    background: var(--col-primary);
}

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

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:before,
.btn-outline-light:after {
    background: white;
    color: var(--col-deepest);
}

.btn-outline-light span::before {
    color: var(--col-dark);
}

/* Button Slide Animation */
.btn:before,
.btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    z-index: -1;
    transition: all 0.35s;
}

.btn:before {
    opacity: 0.5;
}

.btn:after {
    transition-delay: 0.2s;
}

.btn:hover:before,
.btn:hover:after {
    top: 0;
}

/* Button Text Animation */
.btn span {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    transition: transform 0.35s ease;
}

.btn-primary span:before {
    content: attr(data-text);
    position: absolute;
    top: -200%;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-light span:before {
    content: attr(data-text);
    position: absolute;
    top: -200%;
    left: 0;
    width: 100%;
    height: 100%;
    color: var(--col-deepest);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover span {
    transform: translateY(200%);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

/* --- 3. HEADER --- */
header {
    background-color: var(--col-deepest);
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: white;
}

.auth-actions {
    display: flex;
    gap: 15px;
}

/* --- 4. HERO SECTION --- */
.hero {
    background-color: var(--col-dark);
    color: white;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image-placeholder {
    background-color: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-family: var(--font-brand);
    text-transform: uppercase;
}

/* --- 5. HOW IT WORKS --- */
.process-section {
    background-color: var(--col-surface);
    border-bottom: 1px solid var(--col-border);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--col-dark);
    margin-bottom: 15px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: var(--col-wash);
    border: 1px solid var(--col-border);
    padding: 30px;
    border-radius: var(--radius-sharp);

    /* Smooth Transition for all changes */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: default;
    position: relative;
    z-index: 1;
}

.process-card:hover {
    background-color: var(--col-deepest);
    /* Dark Background */
    border-color: var(--col-primary);
    /* Blue Border */
    transform: translateY(-10px);
    /* Lift Up */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    /* Deep Shadow */
}

.step-number {
    font-family: var(--font-brand);
    color: var(--col-dark);
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.15;
    /* Faded by default */
    line-height: 1;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.process-card h3 {
    font-size: 1.2rem;
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--col-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--col-text-muted);
    line-height: 1.6;
    transition: color 0.3s ease;
}

.process-card:hover .step-number {
    color: white;
    opacity: 1;
    /* Fully visible white number */
}

.process-card:hover h3 {
    color: white;
    /* White Heading */
}

.process-card:hover p {
    color: #cbd5e1;
    /* Light Grey Text */
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
        /* 1 column on mobile */
    }
}

/* --- 6. FEATURES / TECH (Preserved) --- */
.features-section {
    background-color: var(--col-deepest);
    color: white;
    position: relative;
}

.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid #1e293b;
    border-bottom: 1px solid #1e293b;
}

.feature-box {
    padding: 80px;
    border-right: 1px solid #1e293b;
}

.feature-box:last-child {
    border-right: none;
}

.feature-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.feature-box p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.tech-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #cbd5e1;
}

.tech-list li::before {
    content: "►";
    position: absolute;
    left: 0;
    color: var(--col-primary);
    font-size: 0.8rem;
    top: 4px;
}

/* --- 7. FOOTER --- */
footer {
    background-color: var(--col-dark);
    color: white;
    padding: 60px 0 30px;
    border-top: 1px solid #1e293b;
}

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

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #64748B;
    max-width: 300px;
}

.footer-links h5 {
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--col-primary);
}

.copyright {
    text-align: center;
    color: #475569;
    font-size: 0.8rem;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
}

/* --- PRICING SECTION --- */
.pricing-section {
    background-color: var(--col-deepest);
    color: white;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: white;
}

.pricing-header p {
    color: #94a3b8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--col-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: var(--radius-sharp);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--col-primary);
}

.pricing-card.featured {
    background-color: #1e293b;
    border: 1px solid var(--col-primary);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.1);
}

.pricing-card h3 {
    font-family: var(--font-brand);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-family: var(--font-brand);
    font-weight: 700;
    color: var(--col-primary);
    margin-bottom: 20px;
    line-height: 1;
}

.price span {
    font-size: 1rem;
    color: #94a3b8;
    font-family: var(--font-ui);
    font-weight: 400;
}

.plan-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

.pricing-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    color: #94a3b8;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "✓";
    color: var(--col-primary);
    font-weight: bold;
}

/* --- ANIMATED BUTTON (For Pricing) --- */
.btn-animate {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 46px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;

    background: transparent;
    color: var(--col-primary);
    border: 1px solid var(--col-primary);
    border-radius: var(--radius-sharp);

    position: relative;
    overflow: hidden;
    transition: border-color .35s;
    cursor: pointer;
}

.btn-animate:before,
.btn-animate:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    background: var(--col-primary);
    z-index: 0;
    transition: all .35s;
}

.btn-animate:before {
    opacity: .5;
}

.btn-animate:after {
    transition-delay: .2s;
}

.btn-animate:hover:before,
.btn-animate:hover:after {
    top: 0;
}

.btn-animate span {
    display: block;
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    transition: transform 0.35s ease;
}

.btn-animate span:before {
    content: attr(data-text);
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
}

.btn-animate:hover span {
    transform: translateY(100%);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .hero-content,
    .process-grid,
    .feature-split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .feature-box {
        padding: 40px;
        border-right: none;
        border-bottom: 1px solid #1e293b;
    }
}

/* --- HERO ANIMATION: COMPACT HUD --- */

.hero-anim-stage {
    width: 100%;
    height: 400px;
    background-color: #020617;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* Reduced gap from 40px */
    font-family: 'Courier New', Courier, monospace;
}

/* Background Grid */
.hero-anim-stage::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(78, 105, 168, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 105, 168, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridPan 20s linear infinite;
    z-index: 0;
}

@keyframes gridPan {
    0% {
        transform: translate(-10%, -10%);
    }

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

/* --- HUD PANELS (COMPACT) --- */
.hud-panel {
    width: 120px;
    /* Reduced from 180px */
    z-index: 2;
    color: #94a3b8;
    font-size: 0.75rem;
    /* Slightly smaller font */
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hud-header {
    color: var(--col-primary);
    font-weight: bold;
    border-bottom: 1px solid rgba(78, 105, 168, 0.3);
    padding-bottom: 3px;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.hud-row {
    display: flex;
    justify-content: space-between;
}

.hud-label {
    opacity: 0.6;
}

.hud-val {
    color: white;
    font-weight: bold;
}

.hud-val.highlight {
    color: #10b981;
}

/* Typing Animation */
.typing-1,
.typing-2,
.typing-3,
.typing-4 {
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    animation: typeReveal 2s steps(10) forwards infinite;
}

.typing-1 {
    animation-delay: 0.5s;
}

.typing-2 {
    animation-delay: 1.5s;
}

.typing-3 {
    animation-delay: 2.5s;
}

.typing-4 {
    animation-delay: 3.5s;
}

@keyframes typeReveal {
    0% {
        width: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 1;
    }
}

/* Right Panel specific */
.loading-bar-container {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 5px;
}

.loading-bar {
    height: 100%;
    background: var(--col-primary);
    width: 0%;
    animation: loadProgress 4s ease-in-out infinite;
}

.status-text {
    font-size: 0.65rem;
    /* Smaller status text */
    margin-top: 5px;
}

.upload-status {
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 0.7rem;
}

.dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    animation: blink 1s infinite;
}

@keyframes loadProgress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        opacity: 0.3;
    }
}


/* --- CENTER STAGE: THE WIREFRAME CUBE --- */
.scan-container {
    width: 140px;
    /* Reduced footprint */
    height: 140px;
    position: relative;
    z-index: 10;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scan-frame {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--col-primary);
    opacity: 0.7;
}

.tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Cube */
.wireframe-cube {
    width: 80px;
    /* Smaller cube */
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    animation: spinCube 10s linear infinite;
}

.face {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(78, 105, 168, 0.1);
    border: 1px solid rgba(78, 105, 168, 0.5);
    box-shadow: 0 0 10px rgba(78, 105, 168, 0.2);
}

/* Recalculate 3D transform for smaller 80px cube (half is 40px) */
.front {
    transform: translateZ(40px);
}

.back {
    transform: rotateY(180deg) translateZ(40px);
}

.right {
    transform: rotateY(90deg) translateZ(40px);
}

.left {
    transform: rotateY(-90deg) translateZ(40px);
}

.top {
    transform: rotateX(90deg) translateZ(40px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(40px);
}

/* Laser */
.laser-beam {
    position: absolute;
    width: 100%;
    height: 2px;
    background: #ffffff;
    box-shadow: 0 0 15px #ffffff, 0 0 30px var(--col-primary);
    top: 0;
    left: 0;
    animation: scanDown 3s ease-in-out infinite;
    z-index: 20;
    opacity: 0.8;
}

@keyframes spinCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

@keyframes scanDown {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

@media (max-width: 600px) {
    .hud-panel {
        display: none;
    }
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* About Hero Specifics */
.hero-network-stage {
    width: 100%;
    height: 400px;
    background-color: #020617;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Reusing grid animation from landing, but slightly different opacity */
.hero-network-stage::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(78, 105, 168, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(78, 105, 168, 0.1) 1px, transparent 1px);
    background-size: 60px 60px; /* Larger grid for map feel */
    animation: gridPan 30s linear infinite;
    z-index: 0;
}

/* Network Nodes (Dots on the map) */
.network-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--col-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--col-primary);
    z-index: 2;
}

.node-1 { top: 30%; left: 20%; animation: pulseNode 3s infinite; }
.node-2 { top: 60%; left: 70%; animation: pulseNode 4s infinite 1s; }
.node-3 { top: 40%; left: 50%; animation: pulseNode 3s infinite 2s; }
.node-4 { top: 75%; left: 30%; animation: pulseNode 5s infinite 0.5s; }

/* Connecting Lines */
.network-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--col-primary), transparent);
    height: 1px;
    opacity: 0.4;
    transform-origin: left center;
    z-index: 1;
}

@keyframes pulseNode {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- STATS SECTION --- */
.stats-section {
    background-color: var(--col-deepest);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-card {
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    font-family: var(--font-brand);
    font-size: 3rem;
    color: var(--col-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-family: var(--font-ui);
    color: #94a3b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- MISSION SPLIT --- */
.mission-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
    color: var(--col-dark);
    margin-bottom: 25px;
}

.mission-text p {
    color: var(--col-text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.mission-visual {
    background-color: #cbd5e1;
    height: 400px;
    border-radius: var(--radius-sharp);
    position: relative;
    overflow: hidden;
}

/* Simulated Image Overlay */
.mission-visual::after {
    content: "HQ / LOGISTICS CENTER";
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: var(--font-brand);
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 2;
}

.mission-visual::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

/* --- TEAM SECTION --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border: 1px solid var(--col-border);
    border-radius: var(--radius-sharp);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--col-primary);
}

.team-photo {
    height: 280px;
    background-color: #e2e8f0;
    position: relative;
    /* Placeholder pattern */
    background-image: repeating-linear-gradient(45deg, #e2e8f0 0, #e2e8f0 10px, #f1f5f9 10px, #f1f5f9 20px);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-family: var(--font-brand);
    font-size: 1.25rem;
    color: var(--col-dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--col-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.team-bio {
    color: var(--col-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Responsive adjustments for About Page */
@media (max-width: 900px) {
    .mission-split {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .stat-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
}