:root {
    /* Colors */
    --bg-night: #060913;
    --bg-anthracite: #111520;
    --accent-cyan: #00f0ff;
    --accent-cyan-glow: rgba(0, 240, 255, 0.4);
    --accent-violet: #8a2be2;
    --accent-violet-glow: rgba(138, 43, 226, 0.4);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-night);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Node Effects */
.bg-nodes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(0, 240, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: var(--transition-fast);
}

nav.scrolled {
    background: rgba(6, 9, 19, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 32px;
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
}

.nav-cta:hover {
    background: var(--accent-cyan);
    color: var(--bg-night);
    box-shadow: 0 0 15px var(--accent-cyan-glow);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.6;
    /* Increased slightly since we'll use a strong dark overlay */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient mapping to ensure the text pops over the light sections of the video */
    background: linear-gradient(to bottom, rgba(6, 9, 19, 0.4), var(--bg-night) 95%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-inline: auto;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), #00b3ff);
    color: var(--bg-night);
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px var(--accent-cyan-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-cyan-glow);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Problem Section */
.section {
    padding: 8rem 0;
}

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

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

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

.problem-card {
    padding: 2.5rem;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-violet);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.1);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ff4757;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--text-muted);
}

.problem-statement {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 4rem;
    padding: 2rem;
    border-left: 4px solid var(--accent-violet);
    background: linear-gradient(to right, rgba(138, 43, 226, 0.1), transparent);
}

/* Solutions Section */
.solutions {
    background: var(--bg-anthracite);
}

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

.solution-card {
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--accent-cyan-glow), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.solution-content {
    position: relative;
    z-index: 1;
}

.solution-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-muted);
}

/* Sectors Section */
.tabs-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tabs-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.tab-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition-fast);
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--accent-violet);
    border-color: var(--accent-violet);
    box-shadow: 0 0 15px var(--accent-violet-glow);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-card {
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.tab-card h3 {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.tab-card p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Methodology */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
}

/* Connection line between steps on desktop */
@media (min-width: 992px) {
    .steps-grid::before {
        content: '';
        position: absolute;
        top: 3rem;
        left: 10%;
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-violet), transparent);
        z-index: 0;
    }
}

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

.step-number {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: var(--bg-night);
    border: 2px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0 auto 2rem;
    box-shadow: 0 0 30px var(--bg-night), inset 0 0 20px var(--accent-cyan-glow);
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-muted);
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-violet-glow) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-inline: auto;
}

/* Footer */
footer {
    background: var(--bg-night);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Modal / Diagnostic Form */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 9, 19, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--accent-cyan);
}

.form-header {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: var(--glass-border);
    border-radius: 2px;
    margin-bottom: 2rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--accent-cyan);
    width: 33%;
    transition: var(--transition-smooth);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-select option {
    background: var(--bg-night);
    color: var(--text-main);
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.form-step.active {
    display: block;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.privacy-notice {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(6, 9, 19, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--accent-cyan);
    z-index: 99;
}

.mobile-sticky-cta .btn-primary {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        align-items: flex-start;
    }

    .hero-content {
        margin-top: 2rem;
    }

    .cta-group {
        flex-direction: column;
    }

    .btn-secondary {
        justify-content: center;
    }

    .section {
        padding: 4rem 0;
    }

    .mobile-sticky-cta {
        display: block;
    }

    /* Add padding to body to prevent content from hiding behind sticky cta */
    body {
        padding-bottom: 80px;
    }

    .cookie-banner.show {
        bottom: 90px;
        /* Above the mobile sticky CTA */
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Chat UI Styles embedded in Modal */
.messages-area {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    min-height: 300px;
    max-height: 50vh;
}

.message-bubble {
    max-width: 85%;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    animation: slideUp 0.3s ease-out;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
}

.message-assistant {
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(0, 240, 255, 0.02));
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 1rem 1rem 1rem 0.25rem;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.05);
    color: var(--text-main);
}

.message-user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--accent-violet), #5a189a);
    color: #fff;
    border-radius: 1rem 1rem 0.25rem 1rem;
    box-shadow: 0 4px 15px var(--accent-violet-glow);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    align-self: flex-start;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typingBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GDPR Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -150%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(17, 21, 32, 0.95);
    border: 1px solid var(--accent-cyan);
    padding: 1.5rem;
    z-index: 999999;
    /* Max z-index to avoid overlap */
    transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 240, 255, 0.1);
    border-radius: 12px;
}

.cookie-banner.show {
    bottom: 2rem !important;
    /* Force priority */
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.cookie-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

/* Legal Pages Typography */
.legal-text h3 {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.5rem;
}

.legal-text a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.input-area {
    padding: 1.5rem;
    background: var(--bg-anthracite);
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.input-container {
    display: flex;
    gap: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 0.5rem;
    transition: var(--transition-fast);
}

.input-container:focus-within {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 2px var(--accent-cyan-glow);
}

.message-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.75rem;
    resize: none;
}

.message-input::placeholder {
    color: var(--text-muted);
}

.send-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-cyan), #00b3ff);
    border: none;
    border-radius: 0.75rem;
    color: var(--bg-night);
    cursor: pointer;
    transition: var(--transition-fast);
}

.send-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px var(--accent-cyan-glow);
}

/* =========================================
   BLOG & CMS STYLES
========================================= */

/* Main Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

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

/* Card Styling */
.blog-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition-normal);
    height: 100%;
    border: 1px solid var(--glass-border);
    background: rgba(17, 21, 32, 0.6);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 240, 255, 0.1);
    border-color: rgba(0, 240, 255, 0.3);
}

.blog-card-image {
    height: 200px;
    width: 100%;
    /* Abstract placeholder gradient since we don't have actual jpgs yet */
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(138, 43, 226, 0.15));
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.blog-card:hover .blog-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), transparent);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    align-items: center;
}

.blog-card h3 {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.blog-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-fast);
}

.blog-card:hover .read-more {
    text-shadow: 0 0 8px var(--accent-cyan-glow);
}

/* Individual Article View */
.article-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0 5rem 0;
    text-align: left;
}

.back-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    transition: var(--transition-fast);
    border: 1px solid var(--glass-border);
}

.back-link:hover {
    color: var(--accent-cyan);
    border-color: rgba(0, 240, 255, 0.3);
    background: rgba(0, 240, 255, 0.05);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.article-title {
    font-size: 2.5rem;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    border-left: 4px solid var(--accent-violet);
    padding-left: 1.5rem;
}

/* Article Markdown Styling */
.article-body {
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.article-body h3 {
    font-size: 1.75rem;
    color: var(--accent-cyan);
    margin: 3rem 0 1.5rem 0;
    font-family: var(--font-heading);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.75rem;
}

.article-body strong {
    color: #fff;
}

.article-body code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    color: var(--accent-cyan);
    font-family: monospace;
    font-size: 0.9em;
}

.article-body i {
    color: var(--text-muted);
}

/* Author / CTA Box within Article */
.author-box {
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-cyan);
    background: rgba(0, 240, 255, 0.03);
    margin-top: 4rem;
}