/* === OVERWATCH SECURITY - Glassmorphism Design System === */
/* Tokens pulled directly from Overwatch Console globals.css */

:root {
    --bg-primary: #0a110e;
    --bg-secondary: #121d18;
    --bg-tertiary: #1d2d25;
    --text-primary: #e8edf5;
    --text-secondary: #8b9bb5;
    --accent-green: #3bdd5c;
    --accent-lime: #b8ff4a;
    --accent-purple: #c54cff;
    --accent-glow: #3bdd5c;
    --border-color: rgba(59, 221, 92, 0.25);
    --glass-bg: rgba(14, 25, 20, 0.85);
    --glass-bg-light: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.10);
    --shadow-glow: 0 0 60px -20px rgba(59, 221, 92, 0.20);
    --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse at 15% 50%, rgba(59, 221, 92, 0.09), transparent 55%),
        radial-gradient(ellipse at 85% 20%, rgba(184, 255, 74, 0.07), transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(197, 76, 255, 0.05), transparent 45%);
}

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

.gradient-text {
    background: linear-gradient(90deg, #3bdd5c, #b8ff4a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(10, 17, 14, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 221, 92, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 120px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-green);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    border-radius: 2px;
}

.nav-cta {
    color: var(--accent-lime);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(141, 198, 63, 0.3);
    border-radius: 8px;
    background: rgba(141, 198, 63, 0.1);
    transition: all 0.2s ease;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: rgba(141, 198, 63, 0.2);
    box-shadow: 0 0 15px rgba(141, 198, 63, 0.15);
}

.nav-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-mobile-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 17, 14, 0.96);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }
    .nav-links.open { display: flex; }
    .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    border: none;
}

.btn-primary {
    background: rgba(30, 181, 58, 0.2);
    color: var(--accent-lime);
    border: 1px solid rgba(30, 181, 58, 0.4);
    box-shadow: 0 0 20px rgba(30, 181, 58, 0.1);
}

.btn-primary:hover {
    background: rgba(30, 181, 58, 0.3);
    box-shadow: 0 0 30px rgba(30, 181, 58, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(30, 181, 58, 0.08);
    top: 10%;
    left: -10%;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(176, 38, 255, 0.05);
    bottom: 10%;
    right: -5%;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 209, 93, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 209, 93, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(30, 181, 58, 0.08);
    border: 1px solid rgba(30, 181, 58, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--accent-green);
    margin-bottom: 2rem;
    letter-spacing: 0.03em;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(30, 181, 58, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(30, 181, 58, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(30, 181, 58, 0); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

/* === SECTION COMMON === */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-green);
    padding: 0.35rem 1rem;
    border: 1px solid rgba(30, 181, 58, 0.2);
    border-radius: 100px;
    background: rgba(30, 181, 58, 0.06);
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* === DIFFERENTIATORS === */
.differentiators {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.diff-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.diff-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.diff-card:hover {
    border-color: var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.diff-icon { font-size: 2rem; margin-bottom: 1rem; }

.diff-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.diff-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .diff-grid { grid-template-columns: 1fr; }
}

/* === PLATFORM / AGENTS === */
.platform {
    padding: 6rem 0;
}

.agents-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.agent-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--accent-green);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    opacity: 0;
    transform: translateY(20px);
    /* flex child sizing: 4 per row on desktop */
    flex: 0 0 calc(25% - 1rem);
    min-width: 220px;
    max-width: 280px;
    box-sizing: border-box;
}

.agent-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.agent-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.agent-icon {
    color: var(--accent-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 181, 58, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(30, 181, 58, 0.15);
}

.agent-status {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-green);
    font-weight: 600;
}

.agent-status-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--accent-green);
    opacity: 0.85;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent-green);
    animation: pulse 2s infinite;
}

.agent-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.agent-codename {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.85rem;
}

.agent-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .agent-card { flex: 0 0 calc(50% - 0.75rem); max-width: none; }
}

@media (max-width: 600px) {
    .agent-card { flex: 0 0 100%; max-width: none; }
}

/* === SERVICES === */
.services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.service-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-lime));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-accent { opacity: 1; }

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card > p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    transform: translateY(-50%);
    box-shadow: 0 0 4px var(--accent-green);
}

.service-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}

.service-card--featured {
    border-left-color: var(--accent-lime);
    background: rgba(141, 198, 63, 0.03);
}

/* === HOW WE OPERATE === */
.how-section {
    padding: 6rem 0;
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 0.3s var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card:hover {
    border-color: var(--border-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    background: rgba(255, 255, 255, 0.09);
}

.step-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(180deg, var(--accent-green), var(--accent-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--accent-green);
    margin-bottom: 0.75rem;
}

.step-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.step-connector {
    width: 40px;
    height: 1px;
    background: var(--border-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .steps-grid { flex-direction: column; gap: 1rem; }
    .step-connector { width: 1px; height: 30px; }
}

/* === CREDENTIALS & TRUST === */
.credentials {
    padding: 6rem 0;
}

.certs-marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
    padding: 1rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.certs-marquee-content {
    display: flex;
    gap: 1.5rem;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.certs-marquee-content:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 0.75rem)); }
}

.cert-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    width: 200px;
    flex-shrink: 0;
    transition: all 0.3s var(--transition);
}

.cert-card:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    background: rgba(255, 255, 255, 0.05);
}

.cert-badge {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    border-radius: 8px;
    filter: drop-shadow(0 0 8px rgba(30, 181, 58, 0.15));
}

.cert-badge-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 12px;
}

.cert-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
}

.cert-offsec {
    color: #f97316;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.cert-microsoft {
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.cert-blueteam {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.cert-comptia {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.cert-tcm {
    color: #e879a8;
    background: rgba(232, 121, 168, 0.12);
    border: 1px solid rgba(232, 121, 168, 0.3);
}

.cert-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.cert-issuer {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.trust-strip {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.descriptive-trust {
    max-width: 800px;
    margin: 0 auto;
}

.trust-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-glow);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.trust-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 400;
}

.trust-description strong {
    color: var(--text-primary);
    font-weight: 600;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
    .certs-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
    .certs-grid { grid-template-columns: repeat(2, 1fr); }

}

/* === METRICS === */
.metrics {
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.metrics-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.metric {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

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

.metric-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    display: block;
    letter-spacing: -0.02em;
}

.metric-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.25rem;
}

.metric-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 600px) {
    .metrics-grid { flex-direction: column; gap: 2rem; }
    .metric-divider { width: 40px; height: 1px; }
}

/* === CTA === */
.cta-section {
    padding: 6rem 0;
}

.cta-card {
    text-align: center;
    padding: 4rem 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: 0 8px 60px rgba(30, 181, 58, 0.06);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-green), var(--accent-lime), transparent);
}

.cta-card h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 2rem;
    font-size: 0.95rem;
}

/* === FOOTER === */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

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

.footer-logo {
    height: 130px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links a, .footer-contact a, .footer-contact p {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* === ANIMATIONS === */
.agent-card, .service-card, .step-card, .diff-card, .metric {
    transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

.agent-card:nth-child(2) { transition-delay: 0.1s; }
.agent-card:nth-child(3) { transition-delay: 0.2s; }
.agent-card:nth-child(4) { transition-delay: 0.3s; }

.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }

/* === HERO SPLIT LAYOUT === */
.hero-split {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-visual {
    perspective: 1000px;
}

.console-preview {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s var(--transition);
    animation: float 6s ease-in-out infinite;
}

.console-preview:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

@keyframes float {
    0%, 100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-5deg) rotateX(2deg) translateY(-10px); }
}

.console-topbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.console-dots {
    display: flex;
    gap: 5px;
}

.console-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.console-dots span:nth-child(1) { background: #ff5f57; }
.console-dots span:nth-child(2) { background: #ffbd2e; }
.console-dots span:nth-child(3) { background: #28ca41; }

.console-title {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.console-preview img {
    width: 100%;
    display: block;
}

/* === SLIDESHOW === */
.slideshow {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-primary);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0.6rem;
    background: rgba(0, 0, 0, 0.4);
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(30, 181, 58, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.slide-dot.active {
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    transform: scale(1.2);
}

.slide-dot:hover {
    background: rgba(30, 181, 58, 0.5);
}

@media (max-width: 968px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .console-preview {
        transform: none;
        animation: none;
    }
    .hero { padding-top: 6rem; }
}

/* === ARCHITECTURE PREVIEW === */
.architecture-preview {
    max-width: 600px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s var(--transition);
}

.architecture-preview:hover {
    border-color: var(--border-color);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
    transform: translateY(-3px);
}

.arch-image {
    width: 100%;
    display: block;
}

/* === TECH STACK STRIP === */
.tech-stack {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.stack-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.stack-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stack-item {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.stack-item:hover {
    color: var(--accent-green);
}

.stack-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 600px) {
    .stack-items { gap: 1rem; }
    .stack-dot { display: none; }
}
