/* ===== IMPORT FONTS DIRECTLY IN CSS ===== */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Mono:wght@400;700&family=DM+Sans:wght@400;500;700&display=swap');

/*
 * CyberVantage About Page - Design System
 * CRITICAL: Use 'Syne' font for ALL headings (h1, h2, h3)
 * Body text uses 'DM Sans'
 * Matches landing page design system
 */

:root {
    --about-bg: #0a0a1a;
    --about-text: #ffffff;
    --accent-primary: #00f2ff;
    --accent-secondary: #7000ff;
    --accent-tertiary: #ff006e;
    --accent-glow: #00ffaa;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    background: var(--about-bg);
    color: var(--about-text);
    font-family: 'DM Sans', sans-serif !important;
    cursor: none !important;
}

.glass-nav .logo {
    font-family: 'Syne', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: -1px;
}

.glass-nav .nav-links a,
.nav-dropdown-menu a,
.btn-primary,
.btn-glass,
.btn-outline {
    font-family: 'DM Sans', sans-serif !important;
}

/* ===== FORCE SYNE FONT ON ALL HEADINGS ===== */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.phase-card h3,
.glass-panel h3,
.essential-card h3,
.cta-panel h2 {
    font-family: 'Syne', sans-serif !important;
    font-weight: 800 !important;
    font-stretch: normal !important;
    transform: none !important;
}

body * {
    cursor: none !important;
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.08"/%3E%3C/svg%3E');
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.container {
    max-width: 100%;
    width: 100%;
    padding: 92px 0 0;
}

.gradient-mesh {
    position: fixed;
    inset: 0;
    z-index: -3;
    overflow: hidden;
}

.mesh-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    animation: meshFloat 20s infinite ease-in-out;
}

.mesh-1 {
    width: 640px;
    height: 640px;
    left: -220px;
    top: -180px;
    background: radial-gradient(circle, var(--accent-secondary) 0%, transparent 70%);
}

.mesh-2 {
    width: 780px;
    height: 780px;
    right: -280px;
    bottom: -300px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
    animation-delay: -8s;
}

.mesh-3 {
    width: 560px;
    height: 560px;
    right: 14%;
    top: 36%;
    background: radial-gradient(circle, var(--accent-tertiary) 0%, transparent 70%);
    animation-delay: -4s;
}

.mesh-4 {
    width: 700px;
    height: 700px;
    left: 28%;
    bottom: -220px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation-delay: -12s;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--accent-primary);
    pointer-events: none !important;
    z-index: 999999;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    mix-blend-mode: difference;
    will-change: transform;
}

.cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-primary);
    pointer-events: none !important;
    z-index: 1000000;
    transform: translate(-50%, -50%);
    will-change: transform;
}

.custom-cursor.hover {
    width: 54px;
    height: 54px;
    background: rgba(0, 242, 255, 0.12);
    border-color: var(--accent-glow);
}

.about-page {
    padding: 2.4rem 10% 5rem;
    position: relative;
    z-index: 1;
}

.about-hero {
    min-height: calc(100vh - 130px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.eyebrow {
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
    margin-bottom: 1rem;
}

.hero-title,
.section-title {
    font-family: 'Syne', sans-serif !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: -2px !important;
    font-stretch: normal !important;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-glow) 50%, var(--accent-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 7rem);
    margin-bottom: 1rem;
}

.hero-subtitle {
    max-width: 620px;
    line-height: 1.7;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    min-height: 430px;
    border-radius: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(22px);
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35), 0 0 45px rgba(0, 242, 255, 0.18);
    transition: transform 0.6s var(--ease-smooth), box-shadow 0.6s var(--ease-smooth);
}

.shield-core {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 4.2rem;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(112, 0, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 45px rgba(0, 242, 255, 0.45);
}

.orbit,
.pulse {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.orbit {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.orbit-1 {
    width: 240px;
    height: 240px;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    border-color: rgba(0, 255, 170, 0.25);
}

.pulse {
    border: 1px solid rgba(0, 242, 255, 0.4);
    animation: pulseRing 4s ease-in-out infinite;
}

.pulse-1 {
    width: 230px;
    height: 230px;
}

.pulse-2 {
    width: 330px;
    height: 330px;
    animation-delay: -2s;
}

.about-section {
    margin-top: 4rem;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    margin-bottom: 2rem;
}

.phase-grid,
.compliance-grid,
.essential-grid {
    display: grid;
    gap: 2rem;
}

.phase-grid,
.compliance-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.essential-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.phase-card,
.glass-panel,
.essential-card,
.cta-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(25px);
    border-radius: 24px;
    box-shadow: 0 16px 46px rgba(6, 8, 27, 0.55);
    transition: all 0.6s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.phase-card,
.glass-panel,
.essential-card {
    padding: 2rem;
}

.phase-card::before,
.glass-panel::before,
.essential-card::before,
.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.06), rgba(112, 0, 255, 0.06));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.phase-card:hover,
.glass-panel:hover,
.essential-card:hover,
.cta-panel:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 242, 255, 0.45);
    box-shadow: 0 22px 60px rgba(0, 242, 255, 0.24);
}

.phase-card:hover::before,
.glass-panel:hover::before,
.essential-card:hover::before,
.cta-panel:hover::before {
    opacity: 1;
}

.phase-number {
    font-family: 'Space Mono', monospace;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
    color: rgba(0, 255, 170, 0.82);
    margin-bottom: 1rem;
}

.phase-icon {
    font-size: 1.7rem;
    display: inline-block;
    margin-bottom: 0.85rem;
}

.phase-card h3,
.glass-panel h3,
.essential-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.phase-card p,
.glass-panel p,
.cta-panel p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin: 0;
}

.status {
    display: inline-block;
    margin-top: 0.8rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Space Mono', monospace;
}

.status.implemented {
    background: rgba(0, 255, 170, 0.16);
    color: #00ffaa;
}

.status.partial {
    background: rgba(255, 0, 110, 0.16);
    color: #ff5f9a;
}

.cta-panel {
    text-align: center;
    padding: 3rem 2rem;
    margin: 4rem auto 0;
    max-width: 980px;
}

.cta-panel h2 {
    font-family: 'Syne', sans-serif !important;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800 !important;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: #fff;
}

.btn-primary,
.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth), background 0.4s var(--ease-smooth);
}

.btn-primary {
    border: 0;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-glow));
    color: #04131b;
    box-shadow: 0 12px 34px rgba(0, 242, 255, 0.3);
}

.btn-glass {
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.about-footer {
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4rem;
    font-size: 1rem;
}

.about-footer p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.about-footer .heart {
    color: #ff006e;
    display: inline-block;
    animation: heartbeat 1.2s ease-in-out infinite;
    font-size: 1.4rem;
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.6));
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.3); }
    20%, 40% { transform: scale(1); }
}

.about-footer .creators {
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reveal {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.2s var(--ease-smooth), transform 1.2s var(--ease-smooth);
}

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

@keyframes meshFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(80px, -80px) scale(1.08);
    }
    50% {
        transform: translate(-45px, 90px) scale(0.95);
    }
    75% {
        transform: translate(120px, 35px) scale(1.05);
    }
}

@keyframes pulseRing {
    0%,
    100% {
        transform: scale(0.95);
        opacity: 0.65;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }
}

@media (max-width: 1200px) {
    .about-page {
        padding-inline: 7%;
    }

    .about-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-visual {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 900px) {
    body,
    body * {
        cursor: auto !important;
    }

    .custom-cursor,
    .cursor-dot {
        display: none;
    }

    .about-page {
        padding: 1.4rem 6% 4rem;
    }

    .phase-grid,
    .compliance-grid,
    .essential-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .hero-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding-top: 80px;
    }

    .about-page {
        padding-inline: 1rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .btn-primary,
    .btn-glass {
        width: 100%;
        padding: 1rem 1.25rem;
    }

    .hero-actions {
        width: 100%;
    }

    .phase-card,
    .glass-panel,
    .essential-card,
    .cta-panel {
        border-radius: 20px;
    }
}