/* ============================================
   TITAN AI — Shared Styles
   Copyright (c) 2026 TITAN AI LLC
   ============================================ */

/* VARIABLES */
:root {
    --bg: #0a0a0f;
    --card: #12121f;
    --green: #00ff88;
    --cyan: #00e5ff;
    --purple: #bf00ff;
    --red: #ff0040;
    --orange: #ff6600;
    --amber: #ffaa00;
    --pink: #ff4081;
    --teal: #00bfa5;
    --blue: #448aff;
    --text: #e0e0e8;
    --dim: #888899;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,255,136,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}
a { color: var(--cyan); text-decoration: none; }

/* ============================================
   NAV
   ============================================ */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10,10,15,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,255,136,0.08);
    padding: 15px 0;
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}
.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green), var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}
.nav-links { display: flex; gap: 18px; align-items: center; flex-wrap: nowrap; }
.nav-links a {
    color: #aab0c0;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    transition: color 0.2s;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover { color: var(--cyan); }
.nav-links a.active {
    color: var(--green);
    border-bottom-color: var(--green);
}
.nav-cta {
    background: var(--green);
    color: #000;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.2s;
}
.nav-cta:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle { display: none; cursor: pointer; font-size: 24px; color: var(--cyan); background: none; border: none; }

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 100px 30px;
    position: relative;
    z-index: 1;
}
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--cyan);
    letter-spacing: 2px;
}
.section-sub {
    text-align: center;
    color: var(--dim);
    font-size: 16px;
    margin-bottom: 60px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 30px 80px;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green), var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero .tagline {
    font-family: 'Share Tech Mono', monospace;
    font-size: 20px;
    color: var(--cyan);
    letter-spacing: 3px;
    margin-bottom: 15px;
}
.hero .desc {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text);
}
.hero-cta { display: inline-flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.hero-cta a {
    padding: 16px 40px;
    border-radius: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
}

/* BUTTONS */
.btn-primary {
    background: linear-gradient(135deg, var(--green), var(--cyan));
    color: #000;
}
.btn-primary:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,255,136,0.3);
}
.btn-secondary {
    border: 1px solid var(--cyan);
    color: var(--cyan);
}
.btn-secondary:hover { background: rgba(0,229,255,0.1); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: var(--card);
    border-top: 1px solid rgba(0,255,136,0.08);
    border-bottom: 1px solid rgba(0,255,136,0.08);
    padding: 40px 0;
    position: relative;
    z-index: 1;
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 30px;
    text-align: center;
}
.stat-num {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 900;
    color: var(--green);
    text-shadow: 0 0 20px rgba(0,255,136,0.3);
}
.stat-label {
    color: var(--amber);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ============================================
   AGENT CARDS
   ============================================ */
.agents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.agent-card {
    background: linear-gradient(135deg, var(--card), #1a1a2e);
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 14px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,229,255,0.2);
    cursor: pointer;
}
.agent-card .top-bar {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}
.agent-card .icon { font-size: 36px; margin-bottom: 12px; }
.agent-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    margin-bottom: 4px;
    letter-spacing: 1px;
}
.agent-card .tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    margin-bottom: 12px;
    display: block;
}
.agent-card p { color: var(--text); font-size: 15px; line-height: 1.7; }
.agent-card .tier-badge {
    font-family: 'Orbitron', monospace;
    font-size: 9px;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 12px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.price-card {
    background: var(--card);
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 14px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s;
}
.price-card:hover { transform: translateY(-5px); }
.price-card.featured {
    border-color: var(--green);
    box-shadow: 0 0 30px rgba(0,255,136,0.1);
}
.price-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    color: var(--cyan);
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.price-card .price {
    font-family: 'Orbitron', monospace;
    font-size: 42px;
    font-weight: 900;
    color: var(--green);
    margin: 15px 0;
}
.price-card .price span { font-size: 16px; color: var(--amber); }
.price-card ul { list-style: none; text-align: left; margin: 20px 0; }
.price-card ul li {
    padding: 8px 0;
    color: var(--text);
    font-size: 14px;
    border-bottom: 1px solid rgba(0,229,255,0.08);
}
.price-card ul li::before { content: '> '; color: var(--amber); }
.price-card .btn-price {
    display: block;
    padding: 14px;
    background: var(--green);
    color: #000;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.2s;
}
.price-card .btn-price:hover { filter: brightness(1.2); }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    margin-top: 30px;
}
.comparison-table th {
    background: var(--card);
    color: var(--green);
    padding: 15px;
    text-align: left;
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(0,255,136,0.2);
}
.comparison-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--text);
}
.comparison-table tr:hover { background: rgba(0,229,255,0.03); }
.check { color: var(--green); }
.cross { color: var(--red); }

/* ============================================
   COMPLIANCE
   ============================================ */
.compliance-section {
    background: linear-gradient(135deg, rgba(0,255,136,0.02), rgba(0,229,255,0.02));
}
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.comp-card {
    background: var(--card);
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}
.comp-card:hover {
    transform: translateY(-3px);
    border-color: var(--green);
}
.comp-card .fw-name {
    font-family: 'Orbitron', monospace;
    font-size: 13px;
    color: var(--green);
    margin-bottom: 6px;
    letter-spacing: 1px;
}
.comp-card .fw-count {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    color: var(--cyan);
    text-shadow: 0 0 15px rgba(0,229,255,0.3);
}
.comp-card .fw-label {
    font-size: 11px;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}
.comp-card .fw-industry {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--amber);
    margin-top: 8px;
}
.industry-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-top: 30px;
}
.industry-table th {
    background: var(--card);
    color: var(--green);
    padding: 14px;
    text-align: left;
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(0,255,136,0.2);
}
.industry-table td {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    color: var(--text);
}
.industry-table tr:hover { background: rgba(0,229,255,0.03); }
.industry-table .badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
}

/* ============================================
   RESULTS CARDS
   ============================================ */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.result-card {
    background: var(--card);
    border-radius: 10px;
    padding: 20px;
}
.result-card .result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.result-card .result-name {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
}
.result-card .result-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}
.result-card .result-details {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text);
    line-height: 1.8;
}

/* ============================================
   INDUSTRY / SOLUTION CARDS
   ============================================ */
.industry-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.industry-card {
    background: linear-gradient(135deg, var(--card), #1a1a2e);
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 14px;
    padding: 35px;
    transition: all 0.3s;
    text-align: center;
}
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.industry-card .ind-icon { font-size: 42px; margin-bottom: 15px; }
.industry-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.industry-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 20px;
}
.industry-card .ind-link {
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 10px 24px;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.2s;
}
.industry-card .ind-link:hover { filter: brightness(1.2); transform: translateY(-1px); }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.step-card {
    background: var(--card);
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}
.step-num {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}
.step-label {
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    color: var(--cyan);
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.step-desc { font-size: 13px; color: var(--text); line-height: 1.6; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    text-align: center;
    padding: 100px 30px;
    background: linear-gradient(135deg, rgba(0,255,136,0.03), rgba(0,229,255,0.03), rgba(191,0,255,0.03));
}
.cta-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    color: var(--green);
    margin-bottom: 20px;
}
.cta-section p { margin-bottom: 30px; font-size: 18px; color: var(--text); }

/* ============================================
   CONTACT CARD
   ============================================ */
.contact-card {
    background: var(--card);
    border: 1px solid rgba(0,255,136,0.1);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
}
.contact-card .contact-title {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    color: var(--green);
    text-align: center;
    margin-bottom: 20px;
}
.contact-info {
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    color: var(--cyan);
    line-height: 2;
}
.contact-extras {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(0,255,136,0.15);
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--text);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--card);
    border-top: 1px solid rgba(0,255,136,0.08);
    padding: 50px 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
footer .brand {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
footer .contact {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    margin: 5px 0;
    color: var(--text);
}
footer .copyright { font-size: 12px; margin-top: 20px; color: var(--amber); }
footer .footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 30px;
}
footer .footer-links a {
    color: var(--dim);
    font-size: 13px;
    transition: color 0.2s;
}
footer .footer-links a:hover { color: var(--cyan); }

/* ============================================
   PAGE HERO (sub-pages)
   ============================================ */
.page-hero {
    padding: 140px 30px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.page-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green), var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}
.page-hero .page-desc {
    font-size: 18px;
    color: var(--text);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   TIER HEADER
   ============================================ */
.tier-header {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

/* ============================================
   SOLUTION BLOCK
   ============================================ */
.solution-block {
    background: var(--card);
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 14px;
    padding: 40px;
    margin-bottom: 30px;
}
.solution-block h3 {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.solution-block .solution-desc {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}
.solution-agents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}
.solution-agent-chip {
    background: rgba(0,229,255,0.05);
    border: 1px solid rgba(0,229,255,0.15);
    border-radius: 8px;
    padding: 12px 16px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.solution-agent-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,229,255,0.15);
}
.solution-frameworks {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--dim);
    margin-top: 15px;
}

/* ============================================
   HIGHLIGHT BOX
   ============================================ */
.highlight-box {
    text-align: center;
    padding: 25px;
    background: rgba(0,255,136,0.08);
    border: 1px solid rgba(0,255,136,0.25);
    border-radius: 12px;
}
.highlight-box .highlight-title {
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    color: var(--green);
    margin-bottom: 12px;
    text-shadow: 0 0 15px rgba(0,255,136,0.4);
}
.highlight-box .highlight-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    color: #c8c8d0;
    line-height: 1.8;
}

/* ============================================
   PROVEN RESULTS STATS
   ============================================ */
.proven-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.proven-stat {
    background: var(--card);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}
.proven-num {
    font-family: 'Orbitron', monospace;
    font-size: 36px;
    font-weight: 900;
    text-shadow: 0 0 15px currentColor;
}
.proven-label {
    color: var(--amber);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}
.proven-detail {
    color: var(--dim);
    font-size: 11px;
    margin-top: 4px;
}

/* Before/After */
.before-after {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.ba-card {
    background: var(--card);
    border-radius: 12px;
    padding: 25px;
}
.ba-title {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.ba-list {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--text);
    line-height: 2.2;
}

/* ============================================
   SECURITY PAGE
   ============================================ */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.security-card {
    background: var(--card);
    border: 1px solid;
    border-radius: 14px;
    padding: 30px;
    transition: all 0.3s;
}
.security-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.sec-icon { font-size: 36px; margin-bottom: 12px; }
.security-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.security-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}
.table-wrap {
    overflow-x: auto;
}

/* ============================================
   TRUSTED BY / SOCIAL PROOF
   ============================================ */
.trusted-section {
    background: linear-gradient(135deg, rgba(0,229,255,0.02), rgba(191,0,255,0.02));
    border-top: 1px solid rgba(0,229,255,0.06);
    border-bottom: 1px solid rgba(0,229,255,0.06);
}

.trust-industries {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}
.trust-badge {
    font-family: 'Orbitron', monospace;
    font-size: 11px;
    letter-spacing: 1px;
    padding: 10px 20px;
    border: 1px solid;
    border-radius: 8px;
    background: rgba(0,0,0,0.3);
    transition: all 0.3s;
}
.trust-badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.3);
    background: rgba(0,0,0,0.5);
}

.trust-clients {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.trust-client-card {
    background: var(--card);
    border: 1px solid;
    border-radius: 12px;
    padding: 25px 35px;
    text-align: center;
    transition: all 0.3s;
    min-width: 180px;
}
.trust-client-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.trust-client-name {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.trust-client-industry {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.5px;
}
.trust-logo {
    max-height: 40px;
    max-width: 150px;
    margin-bottom: 10px;
    filter: brightness(0.9) grayscale(0.3);
    transition: filter 0.3s;
}
.trust-client-card:hover .trust-logo {
    filter: brightness(1) grayscale(0);
}

.trust-counter {
    text-align: center;
    margin-bottom: 40px;
}
.trust-counter-num {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.trust-counter-label {
    font-family: 'Orbitron', monospace;
    font-size: 13px;
    color: var(--dim);
    letter-spacing: 2px;
    margin-top: 5px;
}

.trust-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.trust-testimonial {
    background: var(--card);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s;
}
.trust-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.trust-quote {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}
.trust-author {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--dim);
}

/* ============================================
   CERTIFICATION BADGES
   ============================================ */
.cert-badges-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.cert-badge {
    background: var(--card);
    border: 1px solid;
    border-radius: 12px;
    padding: 18px 20px;
    text-align: center;
    min-width: 120px;
    transition: all 0.3s;
}
.cert-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
.cert-icon { font-size: 28px; margin-bottom: 6px; }
.cert-name {
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
}
.cert-status {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}
.cert-active {
    background: rgba(0,255,136,0.15);
    color: var(--green);
    border: 1px solid rgba(0,255,136,0.3);
}
.cert-progress {
    background: rgba(255,170,0,0.15);
    color: var(--amber);
    border: 1px solid rgba(255,170,0,0.3);
}

/* Security Overview Grid */
.security-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.sec-overview-card {
    background: var(--card);
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}
.sec-overview-num {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    text-shadow: 0 0 15px currentColor;
    margin-bottom: 6px;
}
.sec-overview-label {
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    color: var(--amber);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sec-overview-detail {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

/* Scanning Architecture */
.scan-arch-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.scan-arch-step {
    background: var(--card);
    border: 1px solid;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}
.scan-arch-num {
    font-family: 'Orbitron', monospace;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 6px;
}
.scan-arch-title {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.scan-arch-desc {
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
    text-align: left;
}

/* Trust Points */
.trust-point {
    background: var(--card);
    border: 1px solid rgba(0,229,255,0.06);
    border-radius: 10px;
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.trust-point-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.trust-point-text { font-size: 13px; color: var(--text); line-height: 1.6; }

/* CSPM Coverage Cards */
.scan-coverage-card {
    background: var(--card);
    border: 1px solid;
    border-radius: 14px;
    padding: 30px;
}
.scan-coverage-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    margin-bottom: 4px;
    letter-spacing: 1px;
}
.scan-coverage-sub {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--dim);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.scan-coverage-list {
    list-style: none;
    padding: 0;
}
.scan-coverage-list li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.scan-coverage-list li::before {
    content: '> ';
    color: var(--green);
    font-family: 'Share Tech Mono', monospace;
}

/* Certification Detail Cards */
.cert-detail-card {
    background: var(--card);
    border: 1px solid;
    border-radius: 14px;
    padding: 30px;
}
.cert-detail-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.cert-detail-item:last-child { border-bottom: none; }
.cert-detail-name {
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}
.cert-detail-desc {
    font-size: 13px;
    color: var(--dim);
    line-height: 1.6;
    display: block;
}

/* Azure Inherited Certs */
.azure-cert-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.azure-cert-tag {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--cyan);
    padding: 6px 14px;
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 20px;
    background: rgba(0,229,255,0.05);
    letter-spacing: 0.5px;
}

/* SLA Cards */
.sla-card {
    background: var(--card);
    border: 1px solid rgba(0,229,255,0.08);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}
.sla-num {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    font-weight: 900;
    text-shadow: 0 0 15px currentColor;
    margin-bottom: 6px;
}
.sla-label {
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    color: var(--amber);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.sla-detail {
    font-size: 12px;
    color: var(--dim);
    line-height: 1.5;
}

/* Document Request */
.doc-request-item {
    background: var(--card);
    border: 1px solid rgba(0,229,255,0.06);
    border-radius: 8px;
    padding: 14px 18px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    color: var(--text);
    transition: all 0.2s;
}
.doc-request-item:hover {
    border-color: rgba(0,255,136,0.2);
    transform: translateX(4px);
}

/* Homepage Trust Strip (below stats) */
.trust-cert-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px 30px;
    background: rgba(0,229,255,0.02);
    border-bottom: 1px solid rgba(0,229,255,0.06);
    position: relative;
    z-index: 1;
}
.trust-cert-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: var(--dim);
    transition: color 0.2s;
}
.trust-cert-mini:hover { color: var(--text); }
.trust-cert-mini .tci {
    font-size: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .proven-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-cards { grid-template-columns: repeat(2, 1fr); }
    .security-overview-grid { grid-template-columns: repeat(2, 1fr); }
    .scan-arch-flow { grid-template-columns: repeat(2, 1fr); }
    .sla-card { }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 36px; }
    .page-hero h1 { font-size: 32px; }
    .agents-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .industry-cards { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .before-after { grid-template-columns: 1fr; }
    .compliance-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
    .proven-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-testimonials { grid-template-columns: 1fr; }
    .security-grid { grid-template-columns: 1fr; }
    .security-overview-grid { grid-template-columns: 1fr; }
    .scan-arch-flow { grid-template-columns: 1fr; }
    .scan-coverage-card { margin-bottom: 0; }
    .sla-card { }
    .cert-badges-strip { gap: 10px; }
    .cert-badge { min-width: 100px; padding: 14px 16px; }
    .cert-detail-card { margin-bottom: 0; }
    .trust-cert-strip { gap: 16px; }
    .trust-counter-num { font-size: 36px; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: rgba(10,10,15,0.98); padding: 20px; gap: 15px; border-bottom: 1px solid rgba(0,255,136,0.1); }
    .nav-toggle { display: block; }
    section { padding: 60px 20px; }
}

/* ============================================
   LIVE STATUS — Badge, Banner, Overlay
   ============================================ */
.live-badge,
.coming-soon-badge {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #000;
    background: linear-gradient(135deg, #00ff88, #00cc66);
    padding: 4px 14px;
    border-radius: 20px;
    margin-left: 8px;
    vertical-align: middle;
    animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 8px rgba(0,255,136,0.3); }
    50% { box-shadow: 0 0 18px rgba(0,255,136,0.6); }
}

.live-banner,
.coming-soon-banner {
    background: linear-gradient(135deg, rgba(0,255,136,0.12), rgba(0,204,102,0.12));
    border: 1px solid rgba(0,255,136,0.3);
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}
.live-banner .csb-title,
.coming-soon-banner .csb-title {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 900;
    color: #00ff88;
    letter-spacing: 3px;
    margin-bottom: 8px;
    text-shadow: 0 0 15px rgba(0,255,136,0.4);
}
.live-banner .csb-text,
.coming-soon-banner .csb-text {
    font-family: 'Share Tech Mono', monospace;
    font-size: 14px;
    color: var(--text);
    line-height: 1.7;
}

.coming-soon-overlay {
    position: relative;
}
.coming-soon-overlay::after {
    display: none;
}
.coming-soon-overlay .coming-soon-badge {
    position: relative;
    z-index: 2;
}

/* ============================================
   ANIMATED FLOW DIAGRAM (Adept-style)
   ============================================ */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 20px 0;
}
.flow-node {
    background: linear-gradient(135deg, var(--card), #1a1a2e);
    border: 1px solid rgba(0,229,255,0.2);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    width: 180px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: nodeGlow 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}
.flow-node:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 50px rgba(0,0,0,0.5);
    border-color: rgba(0,229,255,0.3);
}
.flow-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.3s;
}
.flow-node:hover .flow-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px currentColor;
}
.flow-label {
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.flow-desc {
    font-size: 12px;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 10px;
}
.flow-agent {
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    opacity: 0.7;
}
.flow-arrow {
    display: flex;
    align-items: center;
    padding: 0 4px;
}

/* ============================================
   BEFORE/AFTER CHART
   ============================================ */
.ba-chart-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.ba-chart-side {
    flex: 1;
    background: var(--card);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0,229,255,0.08);
}
.ba-chart-header {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 24px;
    text-shadow: 0 0 20px currentColor;
}
.ba-chart-bars {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.ba-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}
.ba-bar-label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--dim);
    width: 65px;
    text-align: right;
    letter-spacing: 0.5px;
}
.ba-bar-track {
    flex: 1;
    height: 28px;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}
.ba-bar {
    height: 100%;
    background: var(--bar-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    width: 0;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 0;
    box-shadow: 0 0 15px var(--bar-color);
}
.ba-bar.animated {
    width: var(--bar-width);
    min-width: 32px;
}
.ba-bar[data-value="0"].animated {
    width: 32px;
    background: rgba(0,255,136,0.15);
    color: var(--green);
    box-shadow: none;
}
.ba-total {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
    letter-spacing: 1px;
}
.ba-chart-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ============================================
   SCROLL FADE-IN ANIMATIONS
   ============================================ */
.fade-in-section {
    opacity: 1;
    transform: none;
}
.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* ============================================
   ANIMATED COUNTERS
   ============================================ */
.counter {
    display: inline-block;
}

/* ============================================
   INTERMITTENT GLOW (3-min cycle)
   ============================================ */

/* Stat numbers: glow bursts every ~180s (3 min) */
.stat-num {
    animation: statGlowBurst 180s ease-in-out infinite;
}
.stat-num:nth-child(1) { animation-delay: 0s; }
@keyframes statGlowBurst {
    0%, 95% { text-shadow: 0 0 10px rgba(0,255,136,0.2); }
    96% { text-shadow: 0 0 30px rgba(0,255,136,0.7), 0 0 60px rgba(0,255,136,0.3), 0 0 90px rgba(0,229,255,0.2); }
    97% { text-shadow: 0 0 15px rgba(0,255,136,0.3); }
    98% { text-shadow: 0 0 40px rgba(0,255,136,0.8), 0 0 80px rgba(0,255,136,0.4), 0 0 120px rgba(0,229,255,0.3); }
    99% { text-shadow: 0 0 20px rgba(0,255,136,0.4); }
    100% { text-shadow: 0 0 10px rgba(0,255,136,0.2); }
}

/* Agent cards: intermittent border glow every ~180s */
.agent-card {
    animation: agentCardBurst 180s ease-in-out infinite;
}
.agent-card:nth-child(1) { animation-delay: 0s; }
.agent-card:nth-child(2) { animation-delay: 45s; }
.agent-card:nth-child(3) { animation-delay: 90s; }
.agent-card:nth-child(4) { animation-delay: 135s; }
@keyframes agentCardBurst {
    0%, 94% { box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
    95% { box-shadow: 0 0 20px rgba(0,229,255,0.15), 0 0 40px rgba(0,229,255,0.08); }
    96% { box-shadow: 0 0 35px rgba(0,229,255,0.3), 0 0 70px rgba(0,229,255,0.12); border-color: rgba(0,229,255,0.4); }
    97% { box-shadow: 0 0 45px rgba(0,229,255,0.4), 0 0 90px rgba(0,229,255,0.15); transform: translateY(-3px); }
    98% { box-shadow: 0 0 30px rgba(0,229,255,0.2), 0 0 60px rgba(0,229,255,0.08); }
    99% { box-shadow: 0 0 15px rgba(0,229,255,0.1); transform: translateY(0); }
    100% { box-shadow: 0 4px 15px rgba(0,0,0,0.2); }
}

/* Page hero title intermittent glow */
.page-hero h1 {
    animation: pageTitleBurst 180s ease-in-out infinite;
}
@keyframes pageTitleBurst {
    0%, 93% { filter: drop-shadow(0 0 5px rgba(0,255,136,0.15)); }
    94% { filter: drop-shadow(0 0 15px rgba(0,255,136,0.3)); }
    95% { filter: drop-shadow(0 0 30px rgba(0,255,136,0.5)) drop-shadow(0 0 60px rgba(191,0,255,0.3)); }
    96% { filter: drop-shadow(0 0 40px rgba(0,255,136,0.6)) drop-shadow(0 0 80px rgba(191,0,255,0.4)); }
    97% { filter: drop-shadow(0 0 25px rgba(0,255,136,0.4)) drop-shadow(0 0 50px rgba(191,0,255,0.2)); }
    98% { filter: drop-shadow(0 0 10px rgba(0,255,136,0.2)); }
    100% { filter: drop-shadow(0 0 5px rgba(0,255,136,0.15)); }
}

/* Tier header intermittent glow */
.tier-header {
    animation: tierBurst 180s ease-in-out infinite;
}
@keyframes tierBurst {
    0%, 94% { text-shadow: none; }
    95% { text-shadow: 0 0 15px currentColor; }
    96.5% { text-shadow: 0 0 30px currentColor, 0 0 60px currentColor; }
    98% { text-shadow: 0 0 10px currentColor; }
    100% { text-shadow: none; }
}

/* ============================================
   GLOW & MOVEMENT ANIMATIONS
   ============================================ */

/* Flow node glow */
@keyframes nodeGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(0,229,255,0.1), inset 0 0 8px rgba(0,229,255,0.02); }
    50% { box-shadow: 0 0 25px rgba(0,229,255,0.25), inset 0 0 15px rgba(0,229,255,0.05); border-color: rgba(0,229,255,0.4); }
}

/* Flow icon spin on idle */
.flow-icon {
    animation: iconFloat 4s ease-in-out infinite;
}
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Industry cards glow */
.industry-card {
    animation: cardGlow 4s ease-in-out infinite;
}
@keyframes cardGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 8px 35px rgba(0,229,255,0.12), 0 0 20px rgba(0,229,255,0.06); }
}

/* Stats bar numbers pulse */
.stats-bar {
    animation: statsBarGlow 5s ease-in-out infinite;
}
@keyframes statsBarGlow {
    0%, 100% { box-shadow: inset 0 0 30px rgba(0,255,136,0.02); }
    50% { box-shadow: inset 0 0 60px rgba(0,255,136,0.06); }
}

/* Before/After bars shimmer */
.ba-bar.animated::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: barShimmer 3s ease-in-out infinite;
}
.ba-bar { position: relative; overflow: hidden; }
@keyframes barShimmer {
    0% { left: -100%; }
    50% { left: 150%; }
    100% { left: 150%; }
}

/* Before/After card glow */
.ba-chart-side {
    animation: baCardGlow 4s ease-in-out infinite;
}
.ba-chart-side:first-child {
    animation-delay: 0s;
}
.ba-chart-side:last-child {
    animation-delay: 2s;
}
@keyframes baCardGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0,0,0,0.3); }
    50% { box-shadow: 0 8px 40px rgba(0,229,255,0.12), 0 0 15px rgba(0,229,255,0.05); border-color: rgba(0,229,255,0.2); }
}

/* Proven stat cards pulse */
.proven-stat {
    animation: provenPulse 3s ease-in-out infinite;
}
.proven-stat:nth-child(1) { animation-delay: 0s; }
.proven-stat:nth-child(2) { animation-delay: 0.5s; }
.proven-stat:nth-child(3) { animation-delay: 1s; }
.proven-stat:nth-child(4) { animation-delay: 1.5s; }
@keyframes provenPulse {
    0%, 100% { box-shadow: 0 0 8px rgba(0,0,0,0.2); transform: translateY(0); }
    50% { box-shadow: 0 8px 30px rgba(0,229,255,0.1); transform: translateY(-3px); }
}

/* Comparison table row glow on hover */
.comparison-table tbody tr {
    transition: all 0.3s;
}
.comparison-table tbody tr:hover {
    background: rgba(0,229,255,0.06);
    box-shadow: inset 0 0 20px rgba(0,229,255,0.03);
}

/* Trust badge floating */
.trust-badge {
    animation: badgeFloat 5s ease-in-out infinite;
}
.trust-badge:nth-child(1) { animation-delay: 0s; }
.trust-badge:nth-child(2) { animation-delay: 0.8s; }
.trust-badge:nth-child(3) { animation-delay: 1.6s; }
.trust-badge:nth-child(4) { animation-delay: 2.4s; }
.trust-badge:nth-child(5) { animation-delay: 3.2s; }
.trust-badge:nth-child(6) { animation-delay: 4s; }
@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
    50% { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
}

/* Trust cert strip shimmer */
.trust-cert-strip {
    animation: certStripGlow 6s ease-in-out infinite;
}
@keyframes certStripGlow {
    0%, 100% { background: rgba(0,229,255,0.02); }
    50% { background: rgba(0,229,255,0.05); }
}

/* CTA section glow pulse */
.cta-section {
    animation: ctaGlow 5s ease-in-out infinite;
}
@keyframes ctaGlow {
    0%, 100% { background: linear-gradient(135deg, rgba(0,255,136,0.03), rgba(0,229,255,0.03), rgba(191,0,255,0.03)); }
    50% { background: linear-gradient(135deg, rgba(0,255,136,0.07), rgba(0,229,255,0.07), rgba(191,0,255,0.07)); }
}

/* Button glow pulse */
.btn-primary {
    animation: btnGlow 2.5s ease-in-out infinite;
}
@keyframes btnGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0,255,136,0.2); }
    50% { box-shadow: 0 0 25px rgba(0,255,136,0.4), 0 0 50px rgba(0,255,136,0.15); }
}

/* Nav CTA glow */
.nav-cta {
    animation: navCtaGlow 2s ease-in-out infinite;
}
@keyframes navCtaGlow {
    0%, 100% { box-shadow: 0 0 8px rgba(0,255,136,0.2); }
    50% { box-shadow: 0 0 20px rgba(0,255,136,0.4); }
}

/* Step cards subtle float */
.step-card {
    animation: stepFloat 5s ease-in-out infinite;
}
.step-card:nth-child(1) { animation-delay: 0s; }
.step-card:nth-child(2) { animation-delay: 0.6s; }
.step-card:nth-child(3) { animation-delay: 1.2s; }
.step-card:nth-child(4) { animation-delay: 1.8s; }
.step-card:nth-child(5) { animation-delay: 2.4s; }
@keyframes stepFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }
}

/* Section title glow */
.section-title {
    animation: titleGlow 4s ease-in-out infinite;
}
@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 10px rgba(0,229,255,0.2); }
    50% { text-shadow: 0 0 25px rgba(0,229,255,0.5), 0 0 50px rgba(0,229,255,0.15); }
}

/* Hero title enhanced glow */
.hero h1 {
    animation: heroTitleGlow 4s ease-in-out infinite;
}
@keyframes heroTitleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(0,255,136,0.2)); }
    50% { filter: drop-shadow(0 0 30px rgba(0,255,136,0.4)) drop-shadow(0 0 60px rgba(191,0,255,0.2)); }
}

/* Proven pop animation */
@keyframes provenPop {
    0% { transform: scale(0.5); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}

/* Stat glow now uses intermittent burst (see above) */

/* ============================================
   HERO PARTICLE GLOW
   ============================================ */
.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,255,136,0.06) 0%, rgba(191,0,255,0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: heroGlow 6s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

/* ============================================
   GLOBAL CARD HOVER EFFECTS
   ============================================ */
.proven-stat:hover,
.stat-card:hover,
.comp-card:hover,
.feature-card:hover,
.solution-block:hover,
.sev-bar:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,229,255,0.2);
    cursor: pointer;
}
.industry-card {
    cursor: pointer;
}
.comp-card {
    cursor: pointer;
}
.sev-bar {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* ============================================
   RESPONSIVE — FLOW DIAGRAM & CHART
   ============================================ */
@media (max-width: 1024px) {
    .flow-diagram { gap: 10px; }
    .flow-node { width: 150px; padding: 20px 14px; }
    .flow-arrow svg { width: 40px; }
    .ba-chart-container { flex-direction: column; }
    .ba-chart-divider { transform: rotate(90deg); }
}
@media (max-width: 768px) {
    .flow-diagram { flex-direction: column; gap: 8px; }
    .flow-node { width: 100%; max-width: 280px; }
    .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
    .ba-chart-container { flex-direction: column; }
    .ba-chart-divider { transform: rotate(90deg); margin: -10px auto; }
    .comparison-table { font-size: 11px; }
    .comparison-table th, .comparison-table td { padding: 8px 6px; }
}
