:root {
    --bg-dark: #0f1923;
    --bg-card: rgba(18, 28, 40, 0.88);
    --bg-card-alt: rgba(0, 0, 0, 0.3);
    --bg-overlay: rgba(15, 25, 35, 0.95);
    --primary: #4a90b8;
    --accent: #c8a45c;
    --secondary: #7ba3be;
    --text: #e8ecf1;
    --text-muted: rgba(232, 236, 241, 0.7);
    --text-faint: rgba(232, 236, 241, 0.5);
    --border: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(74, 144, 184, 0.4);
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --shadow-glow: rgba(74, 144, 184, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}

/* Full-page background */
.bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 25, 35, 0.7) 0%, rgba(15, 25, 35, 0.85) 50%, rgba(15, 25, 35, 0.95) 100%);
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: var(--bg-overlay);
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
}

.logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
}

.hero-tagline {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 30px;
    height: 30px;
    stroke: rgba(255, 255, 255, 0.5);
}

/* DropOps Feature */
.dropops-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-hover);
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    margin-top: 2rem;
    transition: all 0.4s ease;
    text-decoration: none;
}

.dropops-feature:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 40px var(--shadow-glow);
    transform: translateY(-3px);
}

.dropops-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
}

.dropops-content {
    text-align: left;
}

.dropops-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.25rem;
}

.dropops-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.dropops-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
}

.dropops-cta:hover {
    gap: 0.75rem;
    color: var(--accent);
}

/* Security & Governance Cards */
.card-security,
.card-governance {
    grid-column: span 6;
}

.card-security {
    background: linear-gradient(135deg, rgba(18, 28, 40, 0.92) 0%, rgba(20, 40, 55, 0.92) 100%);
}

.card-governance {
    background: linear-gradient(135deg, rgba(18, 28, 40, 0.92) 0%, rgba(35, 30, 50, 0.92) 100%);
}

.card-security .card-icon,
.card-governance .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.security-highlights,
.governance-highlights {
    list-style: none;
    margin-top: 1.5rem;
}

.security-highlights li,
.governance-highlights li {
    padding: 0.5rem 0;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.security-highlights .icon,
.governance-highlights .icon {
    color: var(--accent);
}

.section-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.section-cta:hover {
    background: #b8943e;
    box-shadow: 0 4px 15px var(--shadow-glow);
    transform: translateY(-2px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Main Content - Magazine Grid */
.magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* Card Styles */
.card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px var(--shadow-glow);
}

.card-header {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #fff;
}

.card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.card-paragraph-spaced {
    margin-top: 1rem;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--accent);
}

.text-accent {
    color: var(--accent);
}

.text-bright {
    color: rgba(232, 236, 241, 0.9);
}

.product-detail {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

/* Card Sizes */
.card-large {
    grid-column: span 8;
}

.card-medium {
    grid-column: span 6;
}

.card-small {
    grid-column: span 4;
}

.card-full {
    grid-column: span 12;
}

/* Mission Card */
.card-mission {
    grid-column: span 7;
    grid-row: span 2;
}

.card-mission h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

.card-mission p {
    font-size: 1.1rem;
}

/* What We Do Card */
.card-whatwedo {
    grid-column: span 5;
}

.capabilities-list {
    list-style: none;
    margin-top: 1.5rem;
}

.capabilities-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.capabilities-list .icon {
    color: var(--accent);
    font-size: 1.2rem;
}

/* Philosophy Card */
.card-philosophy {
    grid-column: span 5;
}

.philosophy-points {
    margin-top: 1.5rem;
}

.philosophy-point {
    margin-bottom: 1.25rem;
}

.philosophy-point h4 {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.philosophy-point p {
    font-size: 0.95rem;
}

/* Government Card */
.card-government {
    grid-column: span 6;
    background: linear-gradient(135deg, rgba(18, 28, 40, 0.92) 0%, rgba(22, 35, 52, 0.92) 100%);
}

.gov-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.vosb-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 8px;
    background: #fff;
    padding: 4px;
}

.gov-header-text p {
    font-size: 1rem;
    color: var(--text-muted);
}

.gov-codes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.25rem;
    background: var(--bg-card-alt);
    border-radius: 10px;
}

.gov-code-item label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 0.25rem;
}

.gov-code-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

.naics-section h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-faint);
    margin-bottom: 1rem;
}

.naics-list {
    list-style: none;
}

.naics-list li {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

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

.naics-code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--primary);
    width: 70px;
    flex-shrink: 0;
}

.naics-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.gov-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gov-cta:hover {
    box-shadow: 0 4px 15px var(--shadow-glow);
}

/* Products Card */
.card-products {
    grid-column: span 6;
}

.product-item {
    background: var(--bg-card-alt);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.product-item h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-item p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 0.75rem;
}

/* Contact Card */
.card-contact {
    grid-column: span 12;
    padding: 3rem;
}

.contact-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.contact-headshot {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-hover);
    flex-shrink: 0;
}

.contact-content {
    flex: 1;
}

.card-contact h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-name {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

.founder-bio {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(232, 236, 241, 0.85);
    border-left: 2px solid var(--accent);
    padding-left: 1rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.card-contact p {
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.contact-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(74, 144, 184, 0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: var(--text-faint);
    font-size: 0.85rem;
}

footer a {
    color: var(--text-muted);
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .card-mission,
    .card-whatwedo,
    .card-philosophy,
    .card-government,
    .card-products,
    .card-security,
    .card-governance {
        grid-column: span 12;
    }

    .card-mission {
        grid-row: span 1;
    }

    .hero-tagline {
        font-size: 2.5rem;
    }

    nav {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    .hero-tagline {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .dropops-feature {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

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

    .magazine-grid {
        padding: 2rem 1rem 4rem;
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .gov-codes {
        grid-template-columns: 1fr;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
    }

    .contact-inner {
        flex-direction: column;
        text-align: center;
    }

    .contact-headshot {
        width: 140px;
        height: 140px;
    }
}
