:root {
    --bg-base: #000000;
    --accent: #004D26; /* Deep Jungle Green */
    --accent-vibrant: #00803D;
    --accent-muted: #001208;
    --text-main: #DED9D4; /* Muted Bone */
    --text-muted: #4A4542; /* Darker Steel */
    --glass: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- TACTICAL BACKGROUND ENGINE --- */

.stealth-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at center, #020503 0%, #000000 100%);
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbit 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-muted);
    top: -100px;
    right: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--accent);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes orbit {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-50px, 100px) scale(1.2); }
}

.scanlines {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0) 50%,
        rgba(0,0,0,0.1) 100%
    );
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.4;
}

.blueprint-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 77, 38, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 77, 38, 0.03) 1px, transparent 1px);
    background-size: 45px 45px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* --- CONTENT LAYOUT --- */

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero {
    text-align: center;
    margin-bottom: 80px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 77, 38, 0.05);
    border: 1px solid rgba(0, 77, 38, 0.2);
    color: var(--accent-vibrant);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 4px;
    margin-bottom: 24px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 10vw, 72px);
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent);
}

.subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 4px;
    font-size: 12px;
}

/* --- POLICY CARDS --- */

.policy-card {
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 135, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid var(--border);
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

p {
    color: rgba(237, 232, 225, 0.7);
    font-size: 16px;
}

/* --- FOOTER --- */

.contact-box {
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 77, 38, 0.05) 0%, transparent 100%);
    border: 1px dashed rgba(0, 77, 38, 0.2);
    border-radius: 24px;
    text-align: center;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.email-link {
    color: var(--accent-vibrant);
    font-family: 'IBM Plex Mono', monospace;
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.7;
}

.footer-meta {
    margin-top: 40px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* --- ANIMATIONS --- */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    .policy-card {
        padding: 30px 20px;
    }
}
