:root {
    --bg-primary: #000000;
    --bg-secondary: #0a0d14;
    --text-main: #f1f5f9;
    --text-muted: #8b9bb4;
    --accent-gold: #00e5ff;
    --accent-gold-hover: #5cffff;
    --accent-teal: #39ff14;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(0, 229, 255, 0.15);
    --gradient-primary: linear-gradient(135deg, #000000 0%, #0a0d14 50%, #000000 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-gold), #0077ff);
    --glass-hover: rgba(0, 229, 255, 0.08);
    --shadow-glow: 0 0 40px rgba(0, 229, 255, 0.15);
    --accent-indigo: #0077ff;
    --accent-purple: #8a2be2;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 229, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 119, 255, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.04) 0%, transparent 50%);
    z-index: -1;
    animation: meshShift 20s ease-in-out infinite;
}
@keyframes meshShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: 1.75rem; font-weight: 600; color: var(--accent-gold); }

p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.125rem; }

/* Utilities */
.container {
    width: min(90%, 1200px);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--accent-gold);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 13, 20, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(90%, 1200px);
    margin: 0 auto;
}

.logo-text { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.logo-accent { color: var(--accent-gold); }

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s;
    border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(10, 13, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 1rem;
        border-left: 1px solid var(--glass-border);
        z-index: 1000;
    }
    .nav-links.open { display: flex; }
}
.nav-cta {
    background: var(--glass-bg);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold) !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-teal);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-visual {
    width: min(90%, 1000px);
    margin: 0 auto;
    perspective: 1000px;
}

.glass-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: var(--bg-secondary);
}

/* Layouts */
.section { padding: 8rem 0; }
.dark-section { background: var(--bg-secondary); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reverse { direction: rtl; }
.reverse > * { direction: ltr; }

@media (max-width: 768px) {
    .grid-2 { grid-template-columns: 1fr; text-align: center; }
    .hero-buttons { flex-direction: column; }
    .nav-links { display: none; }
}

/* Feature List */
.feature-list { list-style: none; margin-top: 2rem; }
.feature-list li { margin-bottom: 1rem; display: flex; align-items: center; gap: 1rem; color: var(--text-main); font-weight: 500; }
.feature-list span { color: var(--accent-teal); font-weight: bold; }

/* Floating Animation */
.floating { animation: float 6s ease-in-out infinite; }
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card h4 { font-size: 1.25rem; color: #fff; margin-bottom: 1rem; }
.card p { font-size: 1rem; margin-bottom: 0; }

/* Terminal Block */
.terminal-block {
    background: #000;
    border-radius: 12px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.terminal-header {
    background: #111;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #333;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #FF5F56; }
.yellow { background: #FFBD2E; }
.green { background: #27C93F; }
.term-title { margin-left: 1rem; color: #888; font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; }

.terminal-body {
    padding: 2rem;
    font-family: 'JetBrains Mono', monospace;
    color: #A1A1AA;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.terminal-body code { display: block; }
.terminal-body code:nth-child(2) { color: #10B981; }
.terminal-body code:nth-child(4) { color: #D4AF37; }

/* CTA Section */
.cta-section {
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.05) 0%, transparent 70%);
}
.btn.large { padding: 1.25rem 3rem; font-size: 1.125rem; margin-top: 2rem; }

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    text-align: center;
}
.footer-logo { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.footer-logo span { color: var(--accent-gold); }
.footer-bottom { margin-top: 3rem; font-size: 0.875rem; color: #666; border-top: 1px solid var(--glass-border); padding-top: 2rem; }

/* Scroll Animations */
.reveal {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

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

.fade-up { transform: translateY(40px); }
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }

/* Dev Blog Section */
.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--glass-bg);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card.hidden {
    display: none;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
    border-color: rgba(212, 175, 55, 0.4);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.blog-tag {
    color: var(--accent-teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h4 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}

.blog-card p {
    font-size: 0.95rem;
    flex-grow: 1;
}

.read-more {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--accent-gold-hover);
}

/* Stat Counter Animations */
.stat-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .stat-number { font-size: 2rem; }
}

/* Agent Workforce Grid */
.agent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.agent-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s;
}
.agent-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.agent-card:hover::before { opacity: 1; }
.agent-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}
.agent-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.25rem;
}
.agent-role {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.agent-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Stakeholder / Team Page Styles */
.agent-bio {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    flex-grow: 1;
}
.agent-bio strong {
    color: var(--text-main);
    font-weight: 600;
}
.agent-bio p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.agent-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
}
.stat-badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s ease;
}
.agent-card:hover .stat-badge {
    background: rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.4);
    color: var(--accent-gold-hover);
}

/* Department Sections */
.dept-section {
    margin-bottom: 6rem;
}
.dept-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}
.dept-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--gradient-accent);
}
.dept-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 700;
}
.dept-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 900px;
    line-height: 1.8;
}
.dept-intro p { font-size: 1rem; }
.executive-summary {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.8;
}
.executive-summary p { font-size: 1.05rem; }
.word-count {
    text-align: center;
    padding: 2.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
}

/* Stakeholder page header */
.stakeholder-hero {
    text-align: center;
    margin-bottom: 5rem;
    padding: 5rem 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
.stakeholder-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--gradient-accent);
}
.stakeholder-hero h1 {
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.stakeholder-hero h2 {
    color: var(--accent-teal);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Stakeholder agent-card expanded view */
.stakeholder-page .agent-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}
.stakeholder-page .agent-grid {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}
@media (max-width: 768px) {
    .stakeholder-page .agent-grid { grid-template-columns: 1fr; }
    .stakeholder-hero { padding: 3rem 1.5rem; }
    .stakeholder-hero h1 { font-size: 2.5rem; }
    .dept-title { font-size: 1.75rem; }
}

/* Architecture Section */
.arch-diagram {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
}
.arch-layers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.arch-layer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s;
}
.arch-layer:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(8px);
}
.arch-layer-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}
.arch-layer-content h4 {
    color: var(--text-main);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.arch-layer-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Blog Article Layout */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}
.blog-article-hero {
    text-align: center;
    padding: 6rem 0 3rem;
}
.blog-article-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-main);
    margin-bottom: 1.5rem;
}
.blog-article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.blog-article-body h2 {
    color: var(--accent-gold);
    font-size: 1.75rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}
.blog-article-body p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.blog-article-body ul {
    list-style: none;
    margin: 1.5rem 0;
}
.blog-article-body li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
.blog-article-body li::before {
    content: '▹';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}
.blog-callout {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}
.blog-callout strong {
    color: var(--accent-gold);
}
.blog-article-body code {
    background: rgba(129, 140, 248, 0.1);
    color: #c084fc;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9em;
}

/* Enhanced Footer */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    text-align: left;
    margin-bottom: 3rem;
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.footer-col h4 {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}
.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-gold); }
.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Pulse Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
    animation: pulse 2s infinite;
    display: inline-block;
}

/* ===================================
   READING PROGRESS BAR (Blog Pages)
   =================================== */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
}

/* ===================================
   CLIENT SHOWCASE SECTION
   =================================== */
.showcase-section {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.showcase-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    transition: all 0.4s ease;
}

.showcase-card:hover {
    border-color: rgba(245, 158, 11, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.showcase-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.showcase-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.showcase-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.showcase-metric {
    text-align: center;
}

.showcase-metric-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
}

.showcase-metric-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

.showcase-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-visual img {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .showcase-card { grid-template-columns: 1fr; }
    .showcase-metrics { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
    .showcase-metric-value { font-size: 1.5rem; }
}

/* ===================================
   PROCESS TIMELINE ("How It Works")
   =================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    color: #000;
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.process-step h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

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

/* ===================================
   SOCIAL LINKS
   =================================== */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ===================================
   "LATEST" BADGE ON BLOG CARDS
   =================================== */
.blog-card-latest {
    position: relative;
    border-color: rgba(245, 158, 11, 0.3);
}

.blog-card-latest::after {
    content: 'LATEST';
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent-gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

/* ===================================
   STAKEHOLDER PAGE OVERRIDES
   =================================== */
.stakeholder-header {
    text-align: center;
    padding: 8rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.stakeholder-header h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.dept-section {
    margin-bottom: 5rem;
}

.dept-header {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

.dept-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
}

.dept-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    color: var(--text-main);
    margin: 0;
    font-weight: 700;
}

.dept-intro {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 900px;
    line-height: 1.8;
}

.stat-badge {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-gold);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: all 0.3s;
}

.agent-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 1.25rem;
    border-top: 1px solid var(--glass-border);
}

.executive-summary {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   ACCESSIBILITY: Reduced Motion
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .floating { animation: none; }
    .reading-progress { transition: none; }
}
