/* ========================================
   CyberActive V2 — Inspired by CrowdStrike / Fortinet / PAN
   Enterprise Cybersecurity Marketing Site
   ======================================== */

/* --- Reset --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Variables --- */
:root {
    --bg-dark: #050A14;
    --bg-section: #080F1C;
    --bg-card: #0C1624;
    --bg-card-hover: #0F1F33;
    --bg-header: #060D18;
    --blue: #1E5FAF;
    --blue-light: #2E86DE;
    --blue-glow: rgba(30, 95, 175, 0.4);
    --teal: #1A8A8A;
    --teal-glow: rgba(26, 138, 138, 0.3);
    --gradient-cta: linear-gradient(135deg, #1E5FAF, #2E86DE);
    --gradient-metallic: linear-gradient(135deg, #1E5FAF 0%, #2E86DE 50%, #1A8A8A 100%);
    --gradient-hero: linear-gradient(160deg, #030810 0%, #0A1628 35%, #0B1C2D 60%, #091E2E 80%, #0A2030 100%);
    --gradient-sheen: linear-gradient(145deg, rgba(30, 95, 175, 0.08) 0%, rgba(26, 138, 138, 0.06) 50%, transparent 100%);
    --silver: #C9D1D9;
    --silver-bright: #DFE5EB;
    --text: #E6EDF5;
    --text-muted: #8B99AE;
    --text-dim: #5A6A80;
    --border: rgba(201, 209, 217, 0.08);
    --border-card: rgba(201, 209, 217, 0.06);
    --border-hover: rgba(46, 134, 222, 0.3);
    --border-metallic: rgba(201, 209, 217, 0.12);
    --white: #ffffff;
    --font-display: 'Manrope', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-w: 1240px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);
    --shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-metallic: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 209, 217, 0.05);
}

/* --- Base --- */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--text); }

/* --- Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.text-center { text-align: center; }
.accent { color: var(--blue-light); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding: 14px 36px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-metallic);
    color: var(--white);
    box-shadow: 0 4px 16px var(--blue-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--blue-glow), 0 4px 12px var(--teal-glow);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid rgba(201, 209, 217, 0.25);
}

.btn-outline:hover {
    border-color: var(--blue);
    background: rgba(30, 95, 175, 0.08);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--blue-light);
    padding: 14px 0;
}

.btn-ghost::after {
    content: '\2192';
    transition: transform var(--transition);
}

.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-sm { padding: 10px 24px; font-size: 0.8rem; }
.btn-lg { padding: 18px 48px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ========================================
   Header & Mega Menu
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 13, 24, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.header.scrolled {
    background: rgba(6, 13, 24, 0.95);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.header-logo img {
    height: 34px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 100%;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
    height: 100%;
    white-space: nowrap;
}

.nav-trigger:hover,
.nav-item.active .nav-trigger {
    color: var(--white);
}

.nav-trigger .chevron {
    width: 10px;
    height: 10px;
    transition: transform var(--transition);
}

.nav-item.active .nav-trigger .chevron {
    transform: rotate(180deg);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn { font-size: 0.8rem; padding: 10px 24px; }

.header-link {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 12px;
    transition: color var(--transition);
}

.header-link:hover { color: var(--white); }

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 999;
}

.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.mega-col h4 {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.mega-link {
    display: block;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.mega-link:hover {
    color: var(--white);
    padding-left: 4px;
}

.mega-link span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 2px;
}

.mega-featured {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 24px;
}

.mega-featured h5 {
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.mega-featured p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.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); }

/* Mobile nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: 999;
    padding: 88px 24px 24px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-nav-cta {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   Page Hero
   ======================================== */
.page-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--gradient-hero);
    overflow: hidden;
}

/* Metallic diagonal light sweep — inspired by investor deck */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(155deg, transparent 30%, rgba(30, 95, 175, 0.07) 45%, rgba(26, 138, 138, 0.05) 55%, transparent 70%),
        radial-gradient(ellipse at 80% 100%, rgba(26, 138, 138, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 0%, rgba(30, 95, 175, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-pill);
    background: rgba(30, 95, 175, 0.06);
}

.hero-label .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-light);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.page-hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    max-width: 800px;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.page-hero .hero-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 8px;
    line-height: 1.8;
}

.page-hero .hero-note {
    font-size: 0.9rem;
    color: var(--text-dim);
    font-style: italic;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Home Hero — larger + centered */
.home-hero {
    text-align: center;
    padding: 180px 0 120px;
}

.home-hero h1 {
    font-size: 4.25rem;
    margin-left: auto;
    margin-right: auto;
}

.home-hero .hero-desc {
    margin-left: auto;
    margin-right: auto;
}

.home-hero .hero-ctas {
    justify-content: center;
}

/* Hero canvas */
.hero-canvas-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-canvas-wrap canvas {
    width: 100%;
    height: 100%;
}

.page-hero > .container {
    position: relative;
    z-index: 1;
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--bg-section);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(155deg, transparent 40%, rgba(26, 138, 138, 0.02) 55%, transparent 70%);
    pointer-events: none;
}

.section-header {
    margin-bottom: 56px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    line-height: 1.8;
}

.section-desc:last-child { margin-bottom: 0; }

/* ========================================
   Cards — CrowdStrike inspired
   ======================================== */
.card {
    background: linear-gradient(165deg, var(--bg-card) 0%, rgba(15, 31, 51, 0.6) 100%);
    border: 1px solid var(--border-metallic);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-metallic);
    opacity: 0;
    transition: opacity var(--transition);
}

/* Metallic sheen overlay on hover */
.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 40%, rgba(201, 209, 217, 0.03) 50%, transparent 60%);
    transition: left 0.6s ease;
    pointer-events: none;
}

.card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-metallic);
}

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

.card:hover::after {
    left: 120%;
}

.card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(30, 95, 175, 0.08);
    color: var(--blue-light);
    margin-bottom: 24px;
}

.card-icon svg {
    width: 26px;
    height: 26px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.card .btn-ghost {
    margin-top: 16px;
    font-size: 0.85rem;
}

/* Card grids */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ========================================
   Stats / Recognition Bar
   ======================================== */
.stats-bar {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-section);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient-metallic);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   Feature Blocks (alternating image + text)
   ======================================== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
}

.feature-block + .feature-block {
    border-top: 1px solid var(--border);
}

.feature-block.reverse .feature-visual {
    order: -1;
}

.feature-text .section-label { margin-bottom: 12px; }

.feature-text h2 {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.feature-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.feature-text .check-list {
    margin: 20px 0;
}

.feature-visual {
    background: linear-gradient(165deg, var(--bg-card) 0%, rgba(10, 30, 48, 0.8) 100%);
    border: 1px solid var(--border-metallic);
    border-radius: var(--radius-lg);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    position: relative;
    overflow: hidden;
}

.feature-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(155deg, transparent 35%, rgba(201, 209, 217, 0.02) 50%, transparent 65%),
        radial-gradient(ellipse at 70% 80%, rgba(26, 138, 138, 0.08) 0%, transparent 50%);
}

/* ========================================
   Check List
   ======================================== */
.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(30, 95, 175, 0.12);
    border: 1.5px solid var(--blue);
}

.check-list li::after {
    content: '';
    position: absolute;
    left: 4.5px;
    top: 10px;
    width: 7px;
    height: 4px;
    border-left: 1.5px solid var(--blue-light);
    border-bottom: 1.5px solid var(--blue-light);
    transform: rotate(-45deg);
}

/* ========================================
   Steps / Process
   ======================================== */
.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--border-card), var(--blue), var(--border-card));
    z-index: 0;
}

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

.step-num {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-card);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--blue-light);
    margin: 0 auto 16px;
    transition: all var(--transition);
}

.process-step:hover .step-num {
    border-color: var(--blue);
    background: rgba(30, 95, 175, 0.1);
    box-shadow: 0 0 24px var(--blue-glow);
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    padding: 0 8px;
}

/* ========================================
   Timeline
   ======================================== */
.timeline {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 56px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--border);
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 8px;
}

.timeline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--text-dim);
    margin: 0 auto 16px;
}

.timeline-item.active .timeline-dot {
    width: 18px;
    height: 18px;
    background: var(--blue);
    border-color: var(--blue-light);
    box-shadow: 0 0 16px var(--blue-glow);
}

.timeline-item span {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dim);
}

.timeline-item.active span {
    color: var(--blue-light);
    font-weight: 700;
}

/* ========================================
   Callout / Quote Block
   ======================================== */
.callout {
    background: linear-gradient(165deg, var(--bg-card) 0%, rgba(15, 31, 51, 0.5) 100%);
    border: 1px solid var(--border-metallic);
    border-left: 3px solid;
    border-image: var(--gradient-metallic) 1;
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 32px 40px;
    margin: 40px 0;
}

.callout p {
    font-size: 1.1rem;
    color: var(--text);
    margin: 0;
    font-weight: 500;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #060D18, #0B1C2D, #0A1628);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(155deg, transparent 30%, rgba(30, 95, 175, 0.06) 45%, rgba(26, 138, 138, 0.04) 55%, transparent 70%),
        radial-gradient(ellipse at 70% 90%, rgba(26, 138, 138, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 10%, rgba(30, 95, 175, 0.05) 0%, transparent 45%);
    pointer-events: none;
}

.cta-section > .container { position: relative; z-index: 1; }

.cta-section h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 32px;
}

.cta-section .hero-ctas { justify-content: center; }

/* ========================================
   Contact Form
   ======================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: start;
}

.form-card {
    background: linear-gradient(165deg, var(--bg-card) 0%, rgba(15, 31, 51, 0.6) 100%);
    border: 1px solid var(--border-metallic);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-card h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
}

.form-group label .req { color: var(--blue-light); }
.form-group label .opt { color: var(--text-dim); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 13px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(30, 95, 175, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A6A80' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

.form-error {
    font-size: 0.75rem;
    color: #e74c3c;
    display: none;
}

.form-error.show { display: block; }

.form-consent {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin: 0;
}

.form-consent a { color: var(--blue-light); }

.form-success {
    text-align: center;
    padding: 48px 24px;
    display: none;
}

.form-success.show { display: block; }
.form-success h3 { margin-bottom: 12px; }

/* Sidebar info */
.contact-sidebar h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.contact-sidebar h3:not(:first-child) { margin-top: 32px; }

.contact-sidebar p,
.contact-sidebar li {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sidebar-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.sidebar-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.email-links { display: flex; flex-direction: column; gap: 16px; }

.email-item h4 {
    font-size: 0.8rem;
    color: var(--text-dim);
    font-weight: 500;
    margin-bottom: 2px;
}

.email-item a {
    font-size: 0.9rem;
    color: var(--blue-light);
    font-weight: 500;
}

/* ========================================
   Resources Cards
   ======================================== */
.resource-card {
    background: linear-gradient(165deg, var(--bg-card) 0%, rgba(15, 31, 51, 0.6) 100%);
    border: 1px solid var(--border-metallic);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    position: relative;
}

.resource-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-metallic);
}

.resource-card.featured {
    border-color: var(--blue);
    background: linear-gradient(135deg, rgba(30, 95, 175, 0.05), var(--bg-card));
}

.resource-badge {
    position: absolute;
    top: 0;
    right: 24px;
    background: var(--gradient-metallic);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 0 0 8px 8px;
}

.resource-card .audience {
    font-size: 0.75rem;
    color: var(--blue-light);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.resource-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    flex: 1;
    margin-bottom: 20px;
}

.resource-card .btn { align-self: flex-start; }

/* ========================================
   Industry Cards
   ======================================== */
.industry-card {
    background: linear-gradient(165deg, var(--bg-card) 0%, rgba(15, 31, 51, 0.6) 100%);
    border: 1px solid var(--border-metallic);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-metallic);
    opacity: 0;
    transition: opacity var(--transition);
}

.industry-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-metallic);
}

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

.industry-card .card-icon { margin-bottom: 20px; }

.industry-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.industry-card h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-dim);
    margin: 20px 0 10px;
}

.industry-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.industry-card .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.industry-card .tag-list span {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(30, 95, 175, 0.08);
    border: 1px solid var(--border-card);
    color: var(--text-muted);
}

/* ========================================
   Footer — CrowdStrike-style multi-column
   ======================================== */
.footer {
    background: var(--bg-header);
    border-top: 1px solid var(--border-metallic);
    padding: 64px 0 32px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-metallic);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 32px;
    margin-bottom: 16px;
}

.footer-brand .tagline {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 4px;
}

.footer-brand .desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(201, 209, 217, 0.06);
    color: var(--silver);
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--blue);
    color: var(--white);
}

.social-icon svg { width: 16px; height: 16px; }

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dim);
    margin-bottom: 20px;
}

.footer-col li { margin-bottom: 10px; }

.footer-col li a {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-col li a:hover { color: var(--white); }

.footer-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 0.78rem;
    color: var(--text-dim);
}

.footer-legal a:hover { color: var(--text); }

/* ========================================
   Cookie Banner
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-header);
    border-top: 1px solid var(--border);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner p {
    margin: 0;
    font-size: 0.83rem;
    color: var(--text-muted);
    max-width: 680px;
}

.cookie-banner a { color: var(--blue-light); }

.cookie-accept {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 8px 24px;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.78rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background var(--transition);
}

.cookie-accept:hover { background: var(--blue-light); }

/* ========================================
   Enhanced Feature Visuals — Meaningful Diagrams
   ======================================== */

/* --- SOC Automation Visual (index.html) --- */
.viz-soc-transform {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-soc-transform .viz-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 24px;
}

.viz-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: stretch;
}

.viz-col {
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-card);
}

.viz-col-before {
    background: rgba(201, 95, 80, 0.04);
    border-color: rgba(201, 95, 80, 0.15);
}

.viz-col-after {
    background: rgba(30, 95, 175, 0.04);
    border-color: rgba(30, 95, 175, 0.2);
}

.viz-col-label {
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-card);
}

.viz-col-before .viz-col-label { color: rgba(201, 95, 80, 0.7); }
.viz-col-after .viz-col-label { color: var(--blue-light); }

.viz-step-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.viz-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
}

.viz-step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.viz-col-before .viz-step-dot { background: rgba(201, 95, 80, 0.4); }
.viz-col-after .viz-step-dot { background: var(--blue); }

.viz-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
}

.viz-arrow svg {
    width: 24px;
    height: 24px;
}

.viz-metric {
    text-align: center;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--border-card);
}

.viz-metric-value {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
}

.viz-col-before .viz-metric-value { color: rgba(201, 95, 80, 0.6); }
.viz-col-after .viz-metric-value { color: var(--blue-light); }

.viz-metric-label {
    font-size: 0.55rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* --- Shift Comparison Visual (solutions.html) --- */
.viz-shift {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-shift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.viz-shift-card {
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--border-card);
    text-align: center;
}

.viz-shift-card h5 {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-card);
}

.viz-shift-card.before { background: rgba(201, 95, 80, 0.03); border-color: rgba(201, 95, 80, 0.12); }
.viz-shift-card.before h5 { color: rgba(201, 95, 80, 0.6); }
.viz-shift-card.after { background: rgba(30, 95, 175, 0.03); border-color: rgba(30, 95, 175, 0.15); }
.viz-shift-card.after h5 { color: var(--blue-light); }

.viz-shift-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.viz-shift-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.viz-shift-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.viz-shift-card.before .viz-shift-item svg { color: rgba(201, 95, 80, 0.5); }
.viz-shift-card.after .viz-shift-item svg { color: var(--blue-light); }

/* --- Alert Overflow Visual (why.html) --- */
.viz-alert-overflow {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-overflow-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.viz-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.viz-bar-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-dim);
    width: 70px;
    text-align: right;
    flex-shrink: 0;
}

.viz-bar-track {
    flex: 1;
    height: 24px;
    background: rgba(201, 209, 217, 0.04);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.viz-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.viz-bar-fill.blue { background: linear-gradient(90deg, rgba(30, 95, 175, 0.3), rgba(30, 95, 175, 0.5)); }
.viz-bar-fill.orange { background: linear-gradient(90deg, rgba(201, 150, 80, 0.3), rgba(201, 150, 80, 0.5)); }
.viz-bar-fill.red { background: linear-gradient(90deg, rgba(201, 95, 80, 0.3), rgba(201, 95, 80, 0.6)); }

.viz-bar-capacity {
    position: absolute;
    right: 35%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(201, 95, 80, 0.4);
}

.viz-bar-capacity::after {
    content: 'Analyst Capacity';
    position: absolute;
    top: -18px;
    right: -40px;
    font-size: 0.5rem;
    color: rgba(201, 95, 80, 0.5);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.viz-overflow-caption {
    text-align: center;
    font-size: 0.7rem;
    color: var(--text-dim);
    margin-top: 20px;
    font-style: italic;
}

/* --- Threat Acceleration Visual (why.html) --- */
.viz-threat-accel {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-threat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.viz-threat-item {
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border-card);
    background: rgba(201, 95, 80, 0.02);
    text-align: center;
}

.viz-threat-item svg {
    width: 28px;
    height: 28px;
    color: rgba(201, 95, 80, 0.5);
    margin-bottom: 8px;
}

.viz-threat-item h6 {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.viz-threat-item p {
    font-size: 0.6rem;
    color: var(--text-dim);
    line-height: 1.4;
    margin: 0;
}

.viz-threat-arrow {
    text-align: center;
    margin: 16px 0;
    color: var(--blue-light);
}

.viz-threat-result {
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(30, 95, 175, 0.2);
    background: rgba(30, 95, 175, 0.04);
}

.viz-threat-result h6 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-light);
}

.viz-threat-result p {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin: 4px 0 0;
}

/* --- Unified Platform Visual (why.html) --- */
.viz-unified {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-unified-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.viz-layer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(30, 95, 175, 0.15);
    background: linear-gradient(135deg, rgba(30, 95, 175, 0.04), rgba(26, 138, 138, 0.02));
    transition: all var(--transition);
}

.viz-layer:hover {
    border-color: var(--blue);
    background: rgba(30, 95, 175, 0.08);
}

.viz-layer-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 95, 175, 0.08);
    color: var(--blue-light);
    flex-shrink: 0;
}

.viz-layer-icon svg {
    width: 16px;
    height: 16px;
}

.viz-layer-text h6 {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1px;
}

.viz-layer-text p {
    font-size: 0.6rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.3;
}

.viz-layer-connector {
    width: 2px;
    height: 8px;
    background: rgba(30, 95, 175, 0.15);
    margin: -3px auto;
    position: relative;
    z-index: -1;
}

/* --- Governance Visual (why.html + platform.html) --- */
.viz-governance {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-gov-center {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid rgba(30, 95, 175, 0.25);
    background: rgba(30, 95, 175, 0.04);
    margin-bottom: 16px;
}

.viz-gov-center svg {
    width: 32px;
    height: 32px;
    color: var(--blue-light);
    margin-bottom: 8px;
}

.viz-gov-center h6 {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--blue-light);
}

.viz-gov-ring {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.viz-gov-item {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid var(--border-card);
    background: rgba(201, 209, 217, 0.02);
    text-align: center;
}

.viz-gov-item svg {
    width: 20px;
    height: 20px;
    color: var(--teal);
    margin-bottom: 6px;
}

.viz-gov-item h6 {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.viz-gov-item p {
    font-size: 0.55rem;
    color: var(--text-dim);
    margin: 0;
    line-height: 1.3;
}

/* --- Enhanced Platform SVG Visuals --- */
.viz-platform-diagram {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-platform-diagram svg {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
}

/* --- Lifecycle Ring Visual (platform.html) --- */
.viz-lifecycle {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.viz-ring {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid rgba(30, 95, 175, 0.15);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viz-ring::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1.5px dashed rgba(30, 95, 175, 0.1);
}

.viz-ring-center {
    text-align: center;
}

.viz-ring-center svg {
    width: 32px;
    height: 32px;
    color: var(--blue-light);
    margin-bottom: 6px;
}

.viz-ring-center span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.viz-ring-node {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1.5px solid rgba(30, 95, 175, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.viz-ring-node:hover {
    border-color: var(--blue);
    background: rgba(30, 95, 175, 0.08);
    box-shadow: 0 0 16px var(--blue-glow);
}

.viz-ring-node svg {
    width: 16px;
    height: 16px;
    color: var(--blue-light);
    margin-bottom: 2px;
}

.viz-ring-node span {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.viz-ring-node:nth-child(2) { top: -28px; left: 50%; transform: translateX(-50%); }
.viz-ring-node:nth-child(3) { top: 25%; right: -28px; }
.viz-ring-node:nth-child(4) { bottom: 25%; right: -28px; }
.viz-ring-node:nth-child(5) { bottom: -28px; left: 50%; transform: translateX(-50%); }
.viz-ring-node:nth-child(6) { top: 25%; left: -28px; }

/* --- Scale Architecture Visual (platform.html) --- */
.viz-scale {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-scale-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.viz-scale-node {
    padding: 12px 8px;
    border-radius: 10px;
    border: 1px solid var(--border-card);
    background: rgba(201, 209, 217, 0.02);
    text-align: center;
    transition: all var(--transition);
}

.viz-scale-node:hover {
    border-color: rgba(30, 95, 175, 0.3);
    background: rgba(30, 95, 175, 0.04);
}

.viz-scale-node svg {
    width: 20px;
    height: 20px;
    color: var(--blue-light);
    margin-bottom: 6px;
}

.viz-scale-node span {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
}

.viz-scale-hub {
    grid-column: 1 / -1;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid rgba(30, 95, 175, 0.25);
    background: rgba(30, 95, 175, 0.04);
    text-align: center;
    margin-top: 4px;
}

.viz-scale-hub svg {
    width: 24px;
    height: 24px;
    color: var(--blue-light);
    margin-bottom: 4px;
}

.viz-scale-hub span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-light);
}

/* --- Technology Decision Visual (technology.html) --- */
.viz-decision-web {
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.viz-signal-rows {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.viz-signal-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-card);
    background: rgba(201, 209, 217, 0.02);
    transition: all var(--transition);
}

.viz-signal-row:hover {
    border-color: rgba(30, 95, 175, 0.25);
    background: rgba(30, 95, 175, 0.03);
}

.viz-signal-row svg {
    width: 16px;
    height: 16px;
    color: var(--blue-light);
    flex-shrink: 0;
}

.viz-signal-row span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.viz-converge-arrow {
    text-align: center;
    color: var(--blue-light);
}

.viz-converge-arrow svg {
    width: 24px;
    height: 24px;
}

.viz-decision-core {
    padding: 16px 24px;
    border-radius: 12px;
    border: 2px solid rgba(30, 95, 175, 0.3);
    background: rgba(30, 95, 175, 0.06);
    text-align: center;
    width: 100%;
}

.viz-decision-core h6 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-light);
    margin-bottom: 4px;
}

.viz-decision-core p {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- Escalation Path Visual (technology.html) --- */
.viz-escalation {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-path-steps {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.viz-path-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 8px;
}

.viz-path-step:nth-child(1) { background: rgba(201, 95, 80, 0.03); border: 1px solid rgba(201, 95, 80, 0.08); }
.viz-path-step:nth-child(2) { background: rgba(201, 95, 80, 0.05); border: 1px solid rgba(201, 95, 80, 0.12); }
.viz-path-step:nth-child(3) { background: rgba(201, 95, 80, 0.07); border: 1px solid rgba(201, 95, 80, 0.16); }

.viz-path-step .num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(201, 95, 80, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(201, 95, 80, 0.6);
    flex-shrink: 0;
}

.viz-path-step span {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.viz-path-intercept {
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(30, 95, 175, 0.25);
    background: rgba(30, 95, 175, 0.04);
    display: flex;
    align-items: center;
    gap: 12px;
}

.viz-path-intercept svg {
    width: 20px;
    height: 20px;
    color: var(--blue-light);
    flex-shrink: 0;
}

.viz-path-intercept span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--blue-light);
}

/* --- Recovery Verification Visual (technology.html) --- */
.viz-recovery {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-recovery-steps {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.viz-recovery-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-card);
    background: rgba(30, 95, 175, 0.02);
}

.viz-recovery-step.active {
    border-color: rgba(30, 95, 175, 0.3);
    background: rgba(30, 95, 175, 0.06);
}

.viz-recovery-step svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.viz-recovery-step:not(.active) svg { color: var(--text-dim); }
.viz-recovery-step.active svg { color: var(--blue-light); }

.viz-recovery-text h6 {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1px;
}

.viz-recovery-text p {
    font-size: 0.6rem;
    color: var(--text-dim);
    margin: 0;
}

.viz-recovery-step.active .viz-recovery-text h6 { color: var(--blue-light); }

/* --- Fragmented vs Unified Visual (platform.html) --- */
.viz-fragmented {
    width: 100%;
    position: relative;
    z-index: 1;
}

.viz-frag-before {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.viz-frag-tool {
    padding: 10px 6px;
    border-radius: 8px;
    border: 1px dashed rgba(201, 95, 80, 0.2);
    background: rgba(201, 95, 80, 0.02);
    text-align: center;
}

.viz-frag-tool span {
    font-size: 0.55rem;
    color: rgba(201, 95, 80, 0.5);
    font-weight: 600;
}

.viz-frag-arrow {
    text-align: center;
    color: var(--blue-light);
    margin-bottom: 16px;
}

.viz-frag-after {
    padding: 16px;
    border-radius: 12px;
    border: 2px solid rgba(30, 95, 175, 0.25);
    background: rgba(30, 95, 175, 0.04);
    text-align: center;
}

.viz-frag-after svg {
    width: 28px;
    height: 28px;
    color: var(--blue-light);
    margin-bottom: 6px;
}

.viz-frag-after h6 {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-light);
    margin-bottom: 4px;
}

.viz-frag-after p {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin: 0;
}

/* --- Simplified Visualization Overrides (text-based HTML) --- */

/* Lifecycle Ring - text center without SVG */
.viz-ring-center {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

/* Ring nodes with inline positioning override nth-child */
.viz-ring-node {
    font-family: var(--font-display);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
}

/* Fragmented: new simplified structure */
.viz-fragmented {
    display: flex;
    align-items: center;
    gap: 16px;
}

.viz-frag-label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.viz-frag-before,
.viz-frag-after {
    flex: 1;
}

.viz-frag-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.viz-frag-tools span {
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px dashed rgba(201, 95, 80, 0.25);
    background: rgba(201, 95, 80, 0.03);
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(201, 95, 80, 0.6);
}

.viz-frag-gaps {
    font-size: 0.55rem;
    color: rgba(201, 95, 80, 0.5);
    font-weight: 500;
}

.viz-frag-arrow {
    font-size: 1.5rem;
    color: var(--blue-light);
    flex-shrink: 0;
}

.viz-frag-unified {
    padding: 14px;
    border-radius: 10px;
    border: 2px solid rgba(30, 95, 175, 0.25);
    background: rgba(30, 95, 175, 0.04);
    text-align: center;
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-light);
    line-height: 1.4;
}

.viz-frag-unified small {
    display: block;
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
}

.viz-frag-result {
    font-size: 0.55rem;
    color: var(--blue-light);
    font-weight: 500;
    text-align: center;
}

/* Governance: text-based center + items */
.viz-gov-center span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Gov items use grid from original .viz-gov-ring */

/* Scale: span-based grid items */
.viz-scale-grid span {
    display: block;
    padding: 12px 8px;
    border-radius: 10px;
    border: 1px solid var(--border-card);
    background: rgba(201, 209, 217, 0.02);
    text-align: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
}

.viz-scale-grid span:hover {
    border-color: rgba(30, 95, 175, 0.3);
    background: rgba(30, 95, 175, 0.04);
    color: var(--blue-light);
}

.viz-scale-hub small {
    display: block;
    font-size: 0.55rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Decision Web: signal items */
.viz-signal {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-card);
    background: rgba(201, 209, 217, 0.02);
    transition: all var(--transition);
}

.viz-signal:hover {
    border-color: rgba(30, 95, 175, 0.25);
    background: rgba(30, 95, 175, 0.03);
}

.viz-signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue-light);
    flex-shrink: 0;
}

.viz-signal-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
}

.viz-signal-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(30, 95, 175, 0.3), transparent);
}

.viz-decision-core span {
    display: block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue-light);
    line-height: 1.4;
}

.viz-decision-output {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(30, 95, 175, 0.2);
    background: rgba(30, 95, 175, 0.03);
    width: 100%;
    justify-content: center;
}

.viz-decision-output > span:first-child {
    font-size: 1.2rem;
    color: var(--blue-light);
}

.viz-output-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--blue-light);
    line-height: 1.3;
}

/* Escalation: numbered steps with connectors */
.viz-path-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(201, 95, 80, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 800;
    color: rgba(201, 95, 80, 0.6);
    flex-shrink: 0;
}

.viz-path-connector {
    width: 2px;
    height: 12px;
    background: rgba(201, 95, 80, 0.15);
    margin: 0 auto;
}

.viz-path-step.viz-intercept {
    background: rgba(30, 95, 175, 0.06);
    border: 1.5px solid rgba(30, 95, 175, 0.25);
}

.viz-path-step.viz-intercept .viz-path-num {
    background: rgba(30, 95, 175, 0.12);
    color: var(--blue-light);
}

.viz-path-step.viz-intercept span:not(.viz-path-num) {
    color: var(--blue-light);
    font-weight: 600;
}

.viz-path-blocked {
    width: 2px;
    height: 12px;
    background: rgba(30, 95, 175, 0.15);
    margin: 0 auto;
    position: relative;
}

.viz-path-blocked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -4px;
    right: -4px;
    height: 2px;
    background: rgba(201, 95, 80, 0.4);
}

.viz-path-step.viz-prevented {
    background: rgba(201, 209, 217, 0.02);
    border: 1px dashed rgba(201, 209, 217, 0.08);
    opacity: 0.5;
}

.viz-path-step.viz-prevented .viz-path-num {
    background: rgba(201, 209, 217, 0.04);
    color: var(--text-dim);
}

/* Recovery: icon + text steps with arrows */
.viz-recovery-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-dim);
    flex-shrink: 0;
}

.viz-recovery-arrow {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(30, 95, 175, 0.3);
    line-height: 1;
}

.viz-recovery-step span:not(.viz-recovery-icon) {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.viz-recovery-step.viz-recovery-final {
    border-color: rgba(30, 95, 175, 0.3);
    background: rgba(30, 95, 175, 0.06);
}

.viz-recovery-step.viz-recovery-final .viz-recovery-icon {
    color: var(--blue-light);
}

.viz-recovery-step.viz-recovery-final span:not(.viz-recovery-icon) {
    color: var(--blue-light);
    font-weight: 700;
}

/* --- Timeline Enhancement (why.html) --- */
.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    padding: 0;
}

.timeline::before { display: none; }

.timeline-item {
    flex: none;
    width: auto;
    padding: 20px 12px;
    border-radius: var(--radius);
    border: 1px solid var(--border-card);
    background: rgba(201, 209, 217, 0.02);
    text-align: center;
    transition: all var(--transition);
}

.timeline-item:hover {
    border-color: rgba(30, 95, 175, 0.2);
    background: rgba(30, 95, 175, 0.03);
}

.timeline-item.active {
    border-color: var(--blue);
    background: rgba(30, 95, 175, 0.06);
    box-shadow: 0 0 24px var(--blue-glow);
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(201, 209, 217, 0.04);
    border: 1.5px solid var(--border-card);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.timeline-dot svg {
    width: 18px;
    height: 18px;
    color: var(--text-dim);
}

.timeline-item.active .timeline-dot {
    width: 44px;
    height: 44px;
    background: rgba(30, 95, 175, 0.1);
    border-color: var(--blue);
    box-shadow: 0 0 16px var(--blue-glow);
}

.timeline-item.active .timeline-dot svg {
    color: var(--blue-light);
}

.timeline-content h4 {
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 0.72rem;
    color: var(--text-dim);
    line-height: 1.5;
    margin: 0;
}

.timeline-item.active .timeline-content h4 { color: var(--blue-light); }
.timeline-item.active .timeline-content p { color: var(--text-muted); }

.timeline-item span {
    display: none;
}

/* ========================================
   Bottleneck Diagram (Alert Pipeline Visual)
   ======================================== */
.bottleneck-visual {
    padding: 32px 24px;
    min-height: 380px;
}

.bottleneck-diagram {
    width: 100%;
    position: relative;
    z-index: 1;
}

.bottleneck-title {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 28px;
}

.bottleneck-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
}

.bn-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 56px;
    position: relative;
}

.bn-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 95, 175, 0.08);
    border: 1.5px solid rgba(30, 95, 175, 0.25);
    color: var(--blue-light);
    transition: all var(--transition);
}

.bn-icon svg {
    width: 20px;
    height: 20px;
}

.bn-icon-human {
    background: rgba(201, 95, 80, 0.08);
    border-color: rgba(201, 95, 80, 0.3);
    color: #C95F50;
}

.bn-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

.bn-sub {
    font-size: 0.6rem;
    color: #C95F50;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -4px;
}

/* Delay connectors — grow progressively longer */
.bn-delay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding-top: 12px;
    min-width: 36px;
}

.bn-delay-line {
    width: 100%;
    height: 2px;
    background: rgba(201, 209, 217, 0.12);
    position: relative;
    margin-top: 12px;
}

.bn-delay-line::after {
    content: '';
    position: absolute;
    right: -1px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 5px solid rgba(201, 209, 217, 0.2);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.bn-delay-tag {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
    white-space: nowrap;
}

.bn-delay-longer {
    min-width: 48px;
}

.bn-delay-longer .bn-delay-line {
    background: rgba(201, 150, 80, 0.2);
}

.bn-delay-longer .bn-delay-tag {
    color: rgba(201, 150, 80, 0.6);
}

.bn-delay-longest {
    min-width: 56px;
}

.bn-delay-longest .bn-delay-line {
    background: rgba(201, 95, 80, 0.2);
}

.bn-delay-longest .bn-delay-tag {
    color: rgba(201, 95, 80, 0.5);
}

/* Timeline bar at the bottom */
.bn-timeline {
    margin-top: 28px;
    padding: 0 8px;
}

.bn-time-bar {
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg,
        rgba(30, 95, 175, 0.3) 0%,
        rgba(201, 150, 80, 0.3) 50%,
        rgba(201, 95, 80, 0.4) 100%
    );
}

.bn-time-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
}

.bn-time-labels span {
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dim);
}

.bn-time-labels span:last-child {
    color: rgba(201, 95, 80, 0.6);
}

.bn-caption {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-top: 20px;
    font-style: italic;
}

/* ========================================
   Scroll Reveal
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* stagger children */
.reveal-group > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal-group.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-group.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-group.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-group.visible > *:nth-child(5) { transition-delay: 0.32s; }

.reveal-group.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-page {
    padding: 140px 0 80px;
    max-width: 780px;
    margin: 0 auto;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.legal-page h1 { font-size: 2.5rem; margin-bottom: 8px; }
.legal-page .effective { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 40px; }
.legal-page h2 { font-size: 1.25rem; margin-top: 36px; margin-bottom: 12px; }
.legal-page h3 { font-size: 1.05rem; margin-top: 20px; margin-bottom: 8px; }
.legal-page p, .legal-page li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; }
.legal-page ul { margin: 12px 0; padding-left: 24px; }
.legal-page ul li { margin-bottom: 6px; list-style: disc; }

/* ========================================
   Responsive
   ======================================== */
/* --- Odd-count grid fix: last item spans full width when alone --- */
.grid-3.grid-balanced > *:last-child:nth-child(3n + 1) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
}

.grid-3.grid-balanced > *:nth-last-child(2):nth-child(3n + 1),
.grid-3.grid-balanced > *:nth-last-child(1):nth-child(3n + 2) {
    /* When 2 remain, center them */
}

/* Resources / Solutions: 5 items → 3 + 2 centered */
.grid-3-balanced {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-3-balanced .card-row-centered {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 66.66%;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .page-hero h1 { font-size: 3rem; }
    .home-hero h1 { font-size: 3.25rem; }
    .section-title { font-size: 2.25rem; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .mega-menu-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-block { gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .process-steps::before { display: none; }
    .timeline { grid-template-columns: repeat(3, 1fr); }
    .viz-comparison { grid-template-columns: 1fr; gap: 12px; }
    .viz-arrow { transform: rotate(90deg); }
    .grid-3-balanced .card-row-centered { max-width: 100%; }
}

@media (max-width: 767px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }

    /* Header mobile */
    .header-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }

    .header-actions .btn-outline,
    .header-actions .header-link { display: none; }

    .page-hero { padding: 120px 0 64px; }
    .page-hero h1 { font-size: 2.25rem; }
    .home-hero { padding: 130px 0 80px; }
    .home-hero h1 { font-size: 2.5rem; }

    .section-title { font-size: 1.75rem; }

    .grid-2, .grid-3, .grid-4, .grid-3-balanced { grid-template-columns: 1fr; }
    .grid-3-balanced .card-row-centered { grid-template-columns: 1fr; max-width: 100%; }
    .feature-block { grid-template-columns: 1fr; gap: 32px; }
    .feature-block.reverse .feature-visual { order: 0; }
    .contact-layout { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }

    .timeline { grid-template-columns: 1fr 1fr; gap: 12px; }
    .timeline-item.active { grid-column: 1 / -1; }

    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal { justify-content: center; }

    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { text-align: center; }

    .cta-section h2 { font-size: 2rem; }

    .cookie-banner { flex-direction: column; text-align: center; gap: 12px; padding: 16px 20px; }

    .stat-item h3 { font-size: 2rem; }

    .viz-shift-grid { grid-template-columns: 1fr; }
    .viz-threat-grid { grid-template-columns: 1fr; }
    .viz-frag-before { grid-template-columns: repeat(2, 1fr); }
    .viz-scale-grid { grid-template-columns: 1fr 1fr; }
    .viz-ring { width: 180px; height: 180px; }
    .viz-ring-node { width: 44px; height: 44px; font-size: 0.45rem; }
    .viz-gov-ring { grid-template-columns: 1fr; }

    .viz-fragmented { flex-direction: column; }
    .viz-frag-arrow { transform: rotate(90deg); }
    .viz-frag-tools { justify-content: center; }
    .viz-decision-web { gap: 12px; }
    .viz-gov-ring { grid-template-columns: 1fr; }
}

@media (max-width: 479px) {
    .page-hero h1, .home-hero h1 { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .timeline { grid-template-columns: 1fr; }
    .viz-comparison { grid-template-columns: 1fr; }
    .viz-bar-capacity::after { display: none; }
}
