/* =================================================================
   RAXE Threat Intelligence Report - Interactive Styles
   Updated: Vibrant Cyan-Purple-Magenta Color Scheme
   ================================================================= */

/* ===== Ensure Header Displays Correctly ===== */
.threat-intel-page .header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.threat-intel-page .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.threat-intel-page .nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.threat-intel-page .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #c4c4d4;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.threat-intel-page .nav-link:hover {
    color: #ffffff;
}

.threat-intel-page .nav-link-active {
    color: #00d4ff;
}

.threat-intel-page .nav-link-login {
    background: rgba(155, 92, 255, 0.15);
    border: 1px solid rgba(155, 92, 255, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    color: #ffffff;
}

.threat-intel-page .nav-link-login:hover {
    background: rgba(155, 92, 255, 0.25);
    border-color: rgba(155, 92, 255, 0.5);
}

.threat-intel-page .logo-img {
    height: 36px;
    width: auto;
}

.threat-intel-page .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Hide mobile menu on desktop */
.threat-intel-page .mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .threat-intel-page .mobile-menu {
        display: block;
    }

    .threat-intel-page .nav {
        display: none;
    }
}

/* ===== Custom Properties for Threat Intel Page ===== */
.threat-intel-page {
    /* New Brand Gradient Colors */
    --ti-cyan: #00d4ff;
    --ti-purple: #9b5cff;
    --ti-magenta: #ff00ff;
    --ti-pink: #ff73c0;

    /* Primary Gradient (Left to Right: Cyan -> Purple -> Magenta) */
    --ti-gradient-primary: linear-gradient(90deg, #00d4ff 0%, #9b5cff 50%, #ff00ff 100%);
    --ti-gradient-primary-135: linear-gradient(135deg, #00d4ff 0%, #9b5cff 50%, #ff00ff 100%);
    --ti-gradient-reverse: linear-gradient(90deg, #ff00ff 0%, #9b5cff 50%, #00d4ff 100%);

    /* Accent Gradients */
    --ti-gradient-cyan-purple: linear-gradient(90deg, #00d4ff 0%, #9b5cff 100%);
    --ti-gradient-purple-magenta: linear-gradient(90deg, #9b5cff 0%, #ff00ff 100%);
    --ti-gradient-cyan-pink: linear-gradient(90deg, #00d4ff 0%, #ff73c0 100%);

    /* Glow Effects */
    --ti-glow-cyan: 0 0 30px rgba(0, 212, 255, 0.4);
    --ti-glow-magenta: 0 0 30px rgba(255, 0, 255, 0.4);
    --ti-glow-mixed: 0 0 40px rgba(0, 212, 255, 0.3), 0 0 60px rgba(255, 0, 255, 0.2);
    --ti-glow-strong: 0 0 60px rgba(0, 212, 255, 0.5), 0 0 100px rgba(255, 0, 255, 0.3);

    /* Border Gradient (for pseudo-element borders) */
    --ti-border-gradient: linear-gradient(135deg, #00d4ff 0%, #9b5cff 50%, #ff00ff 100%);

    /* Enhanced Colors */
    --ti-accent-primary: #00d4ff;
    --ti-accent-secondary: #9b5cff;
    --ti-accent-tertiary: #ff00ff;

    background: var(--bg-primary);
}

/* ===== Hero Section ===== */
.ti-hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ti-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 212, 255, 0.2), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 0, 255, 0.15), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(155, 92, 255, 0.12), transparent);
    z-index: 0;
}

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

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

.ti-report-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 255, 0.1));
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
    color: var(--ti-cyan);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 32px;
    animation: fadeSlideDown 0.6s ease-out;
}

/* TLP (Traffic Light Protocol) Badge */
.ti-tlp-badge {
    background: #ffffff;
    color: #1a1a1a;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
}

.ti-report-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 100px;
    background: var(--ti-gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ti-badge-icon {
    display: flex;
    align-items: center;
}

.ti-badge-divider {
    opacity: 0.4;
}

.ti-badge-date {
    color: #c4c4d4;
    font-weight: 500;
}

.ti-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #ffffff;
}

.ti-title-line {
    display: block;
}

.ti-title-gradient {
    background: var(--ti-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ti-hero-subtitle {
    font-size: 1.25rem;
    color: #c4c4d4;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 24px;
}

.ti-hero-subtitle strong {
    color: #ffffff;
    font-weight: 600;
}

.ti-hero-period {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
}

.ti-period-label {
    color: #606070;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ti-period-value {
    color: #00d4ff;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

/* Hero Tagline */
.ti-hero-tagline {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ti-cyan);
    margin-bottom: 16px;
    animation: fadeSlideDown 0.5s ease-out 0.1s both;
}

/* Urgency callout in subtitle */
.ti-urgency {
    background: var(--ti-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

/* Threat count emphasis */
.ti-threat-count {
    background: var(--ti-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero CTA Buttons */
.ti-hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.6s ease-out 0.4s both;
}

.ti-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ti-hero-btn-primary {
    background: var(--ti-gradient-primary);
    color: white;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.ti-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--ti-glow-strong), 0 8px 25px rgba(0, 0, 0, 0.4);
}

.ti-hero-btn-secondary {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--ti-cyan);
}

.ti-hero-btn-secondary:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--ti-cyan);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

/* Enterprise contact link */
.ti-hero-enterprise-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-decoration: none;
    transition: color 0.2s ease;
    animation: fadeIn 0.6s ease-out 0.6s both;
}

.ti-hero-enterprise-link:hover {
    color: var(--ti-cyan);
}

/* ===== Social Proof Bar ===== */
.ti-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 32px;
    padding: 12px 24px;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 100px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    animation: fadeIn 0.6s ease-out 0.7s both;
    flex-wrap: wrap;
}

.ti-proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    white-space: nowrap;
}

.ti-proof-item svg {
    color: var(--ti-cyan);
    opacity: 0.7;
    flex-shrink: 0;
}

.ti-proof-item strong {
    color: var(--text-primary);
    font-weight: 600;
}

.ti-proof-badge {
    background: rgba(0, 212, 255, 0.1);
    color: var(--ti-cyan);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ti-proof-link {
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.ti-proof-link:hover {
    background: rgba(0, 212, 255, 0.08);
    color: var(--text-primary);
}

.ti-proof-link:hover svg {
    opacity: 1;
}

.ti-proof-divider {
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    margin: 0 4px;
}

/* Social Proof Responsive */
@media (max-width: 900px) {
    .ti-social-proof {
        border-radius: 16px;
        gap: 8px;
        padding: 16px;
    }

    .ti-proof-divider {
        display: none;
    }

    .ti-proof-item {
        padding: 8px 12px;
    }
}

@media (max-width: 600px) {
    .ti-social-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
        padding: 12px;
    }

    .ti-proof-item {
        justify-content: center;
        font-size: 0.75rem;
        padding: 8px;
    }

    .ti-proof-badge {
        font-size: 0.625rem;
        padding: 3px 8px;
    }
}

/* ===== Stats Grid ===== */
.ti-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.ti-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Gradient border for stat cards */
.ti-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(155, 92, 255, 0.2) 50%, rgba(255, 0, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.3s ease;
}

/* Top gradient line on hover */
.ti-stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--ti-gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ti-stat-card:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-6px);
    box-shadow: var(--ti-glow-mixed);
}

.ti-stat-card:hover::before {
    background: var(--ti-gradient-primary);
}

.ti-stat-card:hover::after {
    opacity: 1;
}

.ti-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(0, 212, 255, 0.1);
    color: var(--ti-cyan);
    transition: all 0.3s ease;
}

.ti-stat-icon-scans {
    background: rgba(0, 212, 255, 0.15);
    color: var(--ti-cyan);
}
.ti-stat-icon-threats {
    background: rgba(255, 0, 255, 0.12);
    color: var(--ti-magenta);
}
.ti-stat-icon-rate {
    background: rgba(155, 92, 255, 0.15);
    color: var(--ti-purple);
}
.ti-stat-icon-confidence {
    background: rgba(52, 211, 153, 0.15);
    color: var(--color-success);
}

.ti-stat-card:hover .ti-stat-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px currentColor;
}

/* Enhanced stat values - larger and with glow */
.ti-stat-value {
    font-size: 3rem;
    font-weight: 900;
    background: var(--ti-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
    line-height: 1.2;
    margin-bottom: 8px;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.ti-stat-label {
    font-size: 0.875rem;
    color: #9595a5;
    font-weight: 500;
}

/* Scroll Indicator */
.ti-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    color: var(--ti-cyan);
    font-size: 0.875rem;
    animation: fadeIn 0.6s ease-out 0.8s both, bounce 2s ease-in-out infinite 1.4s;
}

.ti-scroll-indicator svg {
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.5));
}

/* ===== Sidebar Navigation ===== */
.ti-sidebar {
    position: fixed;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ti-sidebar.visible {
    opacity: 1;
    visibility: visible;
}

.ti-sidebar-content {
    background: rgba(15, 15, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.ti-sidebar-content::before {
    content: '';
    position: absolute;
    inset: -1px;
    padding: 1px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(255, 0, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    z-index: -1;
    mask-composite: exclude;
}

.ti-sidebar-title {
    font-size: 0.75rem;
    color: var(--ti-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.ti-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ti-sidebar-nav li {
    margin-bottom: 8px;
}

.ti-sidebar-link {
    display: block;
    color: #9595a5;
    text-decoration: none;
    font-size: 0.875rem;
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
    cursor: pointer;
}

.ti-sidebar-link:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.12);
    border-left-color: rgba(0, 212, 255, 0.5);
}

.ti-sidebar-link.active {
    color: #00d4ff;
    border-left-color: #00d4ff;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.2), transparent);
    font-weight: 500;
}

/* Ensure sidebar nav is clickable */
.ti-sidebar-nav {
    position: relative;
    z-index: 10;
}

.ti-sidebar-nav li {
    position: relative;
    z-index: 10;
}

/* ===== Executive Summary Section ===== */
.ti-executive-summary {
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.03) 0%, transparent 100%);
}

.ti-exec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.ti-exec-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 28px;
    position: relative;
}

.ti-exec-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(155, 92, 255, 0.15) 50%, rgba(255, 0, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ti-exec-highlight {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(155, 92, 255, 0.05) 100%);
}

.ti-exec-highlight::before {
    background: var(--ti-gradient-primary);
    opacity: 0.4;
}

.ti-exec-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(155, 92, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ti-cyan);
    margin-bottom: 20px;
}

.ti-exec-icon-new {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.15), rgba(155, 92, 255, 0.1));
    color: var(--ti-magenta);
}

.ti-exec-icon-threat {
    background: linear-gradient(135deg, rgba(255, 159, 64, 0.15), rgba(239, 68, 68, 0.1));
    color: #ff9f40;
}

.ti-exec-icon-action {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(0, 212, 255, 0.1));
    color: var(--color-success);
}

.ti-exec-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ti-exec-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

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

.ti-exec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ti-exec-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
}

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

.ti-exec-list li strong {
    color: var(--text-primary);
}

.ti-exec-actions-list li::before {
    background: var(--color-success);
}

/* Top Threats in Executive Summary */
.ti-exec-threats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ti-exec-threat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.ti-exec-threat-rank {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--ti-gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    flex-shrink: 0;
}

.ti-exec-threat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ti-exec-threat-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.ti-exec-threat-stat {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
}

/* Executive Stats Bar */
.ti-exec-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 16px;
    padding: 28px 40px;
    position: relative;
}

.ti-exec-stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(155, 92, 255, 0.2) 50%, rgba(255, 0, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ti-exec-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.ti-exec-stat-value {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--ti-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
}

.ti-exec-stat-label {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    text-align: center;
}

.ti-exec-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

/* Responsive Executive Summary */
@media (max-width: 900px) {
    .ti-exec-grid {
        grid-template-columns: 1fr;
    }

    .ti-exec-highlight {
        grid-column: span 1;
    }

    .ti-exec-stats-bar {
        flex-wrap: wrap;
        gap: 24px;
        padding: 24px;
    }

    .ti-exec-stat-divider {
        display: none;
    }

    .ti-exec-stat-item {
        min-width: 120px;
    }
}

/* ===== Section Styles ===== */
.ti-section {
    padding: 100px 0;
    position: relative;
}

.ti-section-dark {
    background: rgba(0, 0, 0, 0.3);
}

.ti-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ti-section-number {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    background: var(--ti-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
    position: relative;
}

.ti-section-number::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 100px;
    background: var(--ti-gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ti-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.ti-section-subtitle {
    font-size: 1.125rem;
    color: var(--text-tertiary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Key Findings Grid ===== */
.ti-findings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ti-finding-card {
    background: linear-gradient(135deg, rgba(20, 20, 25, 0.9), rgba(15, 15, 20, 0.95));
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Gradient glow border effect */
.ti-finding-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 17px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3) 0%, rgba(155, 92, 255, 0.2) 50%, rgba(255, 0, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.ti-finding-card:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(255, 0, 255, 0.05));
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.4);
    box-shadow:
        0 0 30px rgba(0, 212, 255, 0.2),
        0 0 60px rgba(255, 0, 255, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.4);
}

.ti-finding-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5) 0%, rgba(155, 92, 255, 0.4) 50%, rgba(255, 0, 255, 0.5) 100%);
}

.ti-finding-featured {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.08));
    border-color: rgba(0, 212, 255, 0.3);
}

.ti-finding-featured::before {
    background: var(--ti-gradient-primary);
    opacity: 0.5;
}

.ti-finding-wide {
    grid-column: span 2;
}

.ti-finding-rank {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--ti-cyan);
    background: rgba(0, 212, 255, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
}

.ti-finding-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(155, 92, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ti-cyan);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.ti-finding-card:hover .ti-finding-icon {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
    transform: scale(1.05);
}

.ti-finding-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ti-finding-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.ti-finding-percent {
    font-size: 2.25rem;
    font-weight: 900;
    background: var(--ti-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
}

.ti-finding-count {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.ti-finding-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.ti-finding-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--ti-cyan);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ti-finding-explore:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--ti-cyan);
    transform: translateX(4px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* ===== Threat Family Chart ===== */
.ti-chart-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.ti-chart-main {
    display: flex;
    justify-content: center;
    overflow: visible;
}

/* Ensure tooltip container can overflow */
.ti-chart-container {
    overflow: visible;
}

.ti-donut-wrapper {
    position: relative;
    width: 400px;
    height: 400px;
    /* Removed filter to prevent tooltip clipping - glow effect moved to canvas */
    overflow: visible;
}

.ti-donut-wrapper canvas {
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 30px rgba(0, 212, 255, 0.15)) drop-shadow(0 0 60px rgba(255, 0, 255, 0.1));
}

.ti-donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    background: radial-gradient(circle, rgba(15, 15, 20, 0.98) 0%, rgba(15, 15, 20, 0.95) 70%, transparent 100%);
    border-radius: 50%;
    padding: 40px;
}

.ti-donut-total {
    font-size: 2.75rem;
    font-weight: 900;
    background: var(--ti-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.ti-donut-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* External Chart.js Tooltip Styles */
#chartjs-tooltip {
    background: rgba(15, 15, 20, 0.98);
    border: 1px solid rgba(155, 92, 255, 0.5);
    border-radius: 10px;
    padding: 14px 18px;
    font-family: 'Inter', sans-serif;
    pointer-events: none;
    transition: opacity 0.15s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(155, 92, 255, 0.2);
    z-index: 99999;
    min-width: 180px;
}

#chartjs-tooltip .tooltip-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

#chartjs-tooltip .tooltip-body {
    display: flex;
    align-items: center;
    gap: 10px;
}

#chartjs-tooltip .tooltip-color {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

#chartjs-tooltip .tooltip-value {
    color: #c4c4d4;
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
}

.ti-chart-details {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 32px;
    min-height: 300px;
    position: relative;
}

.ti-chart-details::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 0, 255, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ti-detail-header {
    margin-bottom: 24px;
}

.ti-detail-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.ti-detail-subtitle {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* ===== Family Cards ===== */
.ti-family-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.ti-family-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.ti-family-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(255, 0, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.3s ease;
}

.ti-family-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(255, 0, 255, 0.3) 100%);
}

.ti-family-card.expanded {
    box-shadow: var(--ti-glow-mixed);
}

.ti-family-card.expanded::before {
    background: var(--ti-gradient-primary);
    opacity: 0.5;
}

.ti-family-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    cursor: pointer;
    position: relative;
    z-index: 5;
    user-select: none;
}

.ti-family-header:hover {
    background: rgba(0, 212, 255, 0.05);
}

.ti-family-header:active {
    background: rgba(0, 212, 255, 0.1);
}

.ti-family-color {
    width: 8px;
    height: 40px;
    border-radius: 4px;
    flex-shrink: 0;
}

.ti-family-info {
    flex: 1;
}

.ti-family-name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.ti-family-stats {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.ti-family-percent {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--ti-gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ti-family-toggle {
    background: rgba(0, 212, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ti-cyan);
    cursor: pointer;
    transition: all 0.2s ease;
}

.ti-family-toggle:hover {
    background: rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
}

.ti-family-card.expanded .ti-family-toggle {
    transform: rotate(180deg);
    background: var(--ti-gradient-primary);
    color: white;
}

.ti-family-body {
    display: none;
    padding: 0 20px 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.ti-family-card.expanded .ti-family-body {
    display: block;
}

.ti-family-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    padding-top: 20px;
}

.ti-family-techniques h5,
.ti-family-mitigation h5 {
    font-size: 0.8125rem;
    background: var(--ti-gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.ti-family-techniques ul,
.ti-family-mitigation ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ti-family-techniques li,
.ti-family-mitigation li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.ti-family-techniques li::before,
.ti-family-mitigation li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ti-cyan);
}

.ti-family-mitigation li::before {
    background: var(--color-success);
}

/* ===== Attack Techniques Chart & Table ===== */
.ti-techniques-chart {
    max-width: 900px;
    margin: 0 auto 48px;
    height: 400px;
    position: relative;
}

.ti-techniques-table {
    overflow-x: auto;
}

.ti-techniques-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.ti-techniques-table th,
.ti-techniques-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.ti-techniques-table th {
    color: var(--ti-cyan);
    font-weight: 500;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(0, 212, 255, 0.05);
}

.ti-techniques-table tr {
    transition: background 0.2s ease;
}

.ti-techniques-table tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.ti-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--ti-gradient-primary);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8125rem;
}

.ti-mono {
    font-family: var(--font-mono);
}

.ti-confidence {
    font-family: var(--font-mono);
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8125rem;
}

.ti-confidence-high {
    background: rgba(52, 211, 153, 0.15);
    color: var(--color-success);
}

.ti-confidence-medium {
    background: rgba(251, 191, 36, 0.15);
    color: var(--color-warning);
}

.ti-risk {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ti-risk-critical {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-error);
}

.ti-risk-high {
    background: rgba(255, 159, 64, 0.15);
    color: var(--threat-jailbreak);
}

.ti-risk-medium {
    background: rgba(251, 191, 36, 0.15);
    color: var(--color-warning);
}

/* ===== Harm Categories ===== */
.ti-harm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.ti-harm-featured {
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.1), rgba(239, 68, 68, 0.08));
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 24px;
    position: relative;
}

.ti-harm-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 0, 255, 0.4) 0%, rgba(239, 68, 68, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ti-harm-icon {
    color: var(--ti-magenta);
    flex-shrink: 0;
}

.ti-harm-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ti-harm-stats {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}

.ti-harm-percent {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--ti-magenta), var(--color-error));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
}

.ti-harm-count {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.ti-harm-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.ti-harm-trend {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.ti-trend-label {
    color: var(--text-muted);
}

.ti-trend-value {
    font-weight: 600;
}

.ti-trend-stable { color: var(--text-tertiary); }

.ti-harm-secondary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ti-harm-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.ti-harm-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.15) 0%, rgba(255, 0, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.2s ease;
}

.ti-harm-card:hover {
    background: rgba(0, 212, 255, 0.05);
}

.ti-harm-card:hover::before {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.4) 0%, rgba(255, 0, 255, 0.3) 100%);
}

.ti-harm-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: calc(var(--harm-percent) * 10);
    max-width: 100%;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), transparent);
    pointer-events: none;
}

.ti-harm-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ti-harm-name {
    font-size: 0.9375rem;
    font-weight: 500;
    display: block;
    margin-bottom: 2px;
}

.ti-harm-value {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
}

.ti-harm-value small {
    color: var(--text-muted);
}

.ti-trend-badge {
    font-size: 0.6875rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.ti-trend-up {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-error);
}

.ti-trend-down {
    background: rgba(52, 211, 153, 0.15);
    color: var(--color-success);
}

.ti-trend-badge.ti-trend-stable {
    background: rgba(0, 212, 255, 0.1);
    color: var(--ti-cyan);
}

/* ===== Emerging Threats ===== */
.ti-emerging-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ti-emerging-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.ti-emerging-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 0, 255, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.3s ease;
}

.ti-emerging-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ti-glow-mixed);
}

.ti-emerging-card:hover::before {
    background: var(--ti-gradient-primary);
}

.ti-emerging-new {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.05));
}

.ti-emerging-new::before {
    background: var(--ti-gradient-primary);
    opacity: 0.5;
}

.ti-emerging-badge {
    display: inline-block;
    background: var(--ti-gradient-primary);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.ti-emerging-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ti-emerging-icon {
    color: var(--ti-cyan);
}

.ti-emerging-stats {
    text-align: right;
}

.ti-emerging-percent {
    font-size: 1.75rem;
    font-weight: 900;
    background: var(--ti-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
}

.ti-emerging-count {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.ti-emerging-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.ti-emerging-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.9375rem;
}

.ti-emerging-patterns h4 {
    font-size: 0.8125rem;
    background: var(--ti-gradient-cyan-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.ti-emerging-patterns ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ti-emerging-patterns li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ti-emerging-patterns li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ti-cyan);
}

.ti-emerging-confidence {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 0.875rem;
}

.ti-confidence-label {
    color: var(--text-muted);
}

.ti-confidence-value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--color-success);
}

.ti-confidence-value.ti-confidence-medium {
    color: var(--color-warning);
}

.ti-confidence-note {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.ti-emerging-action {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.1), rgba(0, 212, 255, 0.05));
    border-radius: 8px;
    padding: 16px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.ti-emerging-action strong {
    color: var(--color-success);
}

/* ===== Recommendations ===== */
.ti-rec-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    background: rgba(0, 212, 255, 0.03);
    border-radius: 12px;
    padding: 8px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.ti-rec-filter::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(255, 0, 255, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ti-rec-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.ti-rec-tab:hover {
    color: var(--text-primary);
    background: rgba(0, 212, 255, 0.08);
}

.ti-rec-tab-active {
    background: var(--ti-gradient-primary);
    color: white;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.ti-rec-panel {
    display: none;
}

.ti-rec-panel-active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.ti-rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.ti-rec-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
}

.ti-rec-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 0, 255, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.3s ease;
}

.ti-rec-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--ti-glow-mixed);
}

.ti-rec-card:hover::before {
    background: var(--ti-gradient-primary);
}

.ti-rec-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--ti-gradient-primary);
    color: white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 16px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.ti-rec-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.ti-rec-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ti-rec-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.ti-rec-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ti-cyan);
}

/* Policy Table */
.ti-policy-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ti-policy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 212, 255, 0.03);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.ti-policy-action {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 4px;
}

.ti-policy-block {
    background: rgba(239, 68, 68, 0.15);
    color: var(--color-error);
}

.ti-policy-flag {
    background: rgba(251, 191, 36, 0.15);
    color: var(--color-warning);
}

.ti-policy-review {
    background: rgba(0, 212, 255, 0.15);
    color: var(--ti-cyan);
}

.ti-policy-threshold {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Baseline Table */
.ti-baseline-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ti-baseline-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 212, 255, 0.03);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.ti-baseline-env {
    font-weight: 500;
    color: var(--text-primary);
}

.ti-baseline-rate {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--ti-cyan);
}

/* ===== Methodology ===== */
.ti-methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 48px;
}

.ti-method-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
    position: relative;
}

.ti-method-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(255, 0, 255, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ti-method-layer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--ti-gradient-primary);
    color: white;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 16px;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.ti-method-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.ti-method-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.ti-method-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.ti-method-card li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--ti-cyan);
    font-family: var(--font-mono);
}

.ti-method-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.ti-method-metric {
    text-align: center;
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    position: relative;
}

.ti-method-metric::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(255, 0, 255, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.ti-metric-value {
    font-size: 2.25rem;
    font-weight: 900;
    background: var(--ti-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
    display: block;
    margin-bottom: 8px;
}

.ti-metric-label {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

/* ===== Framework Alignment Badges ===== */
.ti-framework-alignment {
    margin-top: 48px;
    text-align: center;
}

.ti-framework-title {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 500;
}

.ti-framework-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.ti-framework-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 16px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    min-width: 280px;
}

.ti-framework-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(155, 92, 255, 0.15) 50%, rgba(255, 0, 255, 0.1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.3s ease;
}

.ti-framework-badge:hover {
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-2px);
}

.ti-framework-badge:hover::before {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(155, 92, 255, 0.3) 50%, rgba(255, 0, 255, 0.25) 100%);
}

.ti-framework-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(155, 92, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ti-cyan);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ti-framework-badge:hover .ti-framework-badge-icon {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(155, 92, 255, 0.15));
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.ti-framework-badge-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
}

.ti-framework-badge-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.ti-framework-badge-desc {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.4;
}

.ti-framework-badge-arrow {
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.2s ease;
    opacity: 0.5;
}

.ti-framework-badge:hover .ti-framework-badge-arrow {
    color: var(--ti-cyan);
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Responsive Framework Badges */
@media (max-width: 768px) {
    .ti-framework-badges {
        flex-direction: column;
        align-items: center;
    }

    .ti-framework-badge {
        width: 100%;
        max-width: 340px;
        min-width: auto;
    }
}

/* ===== Intelligence Services / TLP Section ===== */
.ti-tlp-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.ti-tlp-intro strong {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: var(--font-mono);
}

.ti-tlp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ti-tlp-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.ti-tlp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.3s ease;
}

.ti-tlp-card:hover {
    transform: translateY(-4px);
}

/* TLP:WHITE Card */
.ti-tlp-white::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.ti-tlp-white:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

.ti-tlp-current {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

/* TLP:GREEN Card */
.ti-tlp-green::before {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.4) 0%, rgba(52, 211, 153, 0.15) 100%);
}

.ti-tlp-green:hover {
    box-shadow: 0 0 30px rgba(52, 211, 153, 0.25);
}

/* TLP:AMBER Card - Using #D97706 for WCAG AA compliance */
.ti-tlp-amber::before {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.4) 0%, rgba(217, 119, 6, 0.15) 100%);
}

.ti-tlp-amber:hover {
    box-shadow: 0 0 30px rgba(217, 119, 6, 0.25);
}

/* TLP:RED Card */
.ti-tlp-red::before {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.4) 0%, rgba(239, 68, 68, 0.15) 100%);
}

.ti-tlp-red:hover {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.25);
}

.ti-tlp-card-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ti-tlp-marker {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-mono);
}

.ti-tlp-marker.tlp-white {
    background: #ffffff;
    color: #1a1a1a;
}

.ti-tlp-marker.tlp-green {
    background: #34d399;
    color: #064e3b;
}

.ti-tlp-marker.tlp-amber {
    background: #D97706;
    color: #78350f;
}

.ti-tlp-marker.tlp-red {
    background: #ef4444;
    color: #ffffff;
}

.ti-tlp-current-tag {
    font-size: 0.6875rem;
    color: var(--ti-cyan);
    background: rgba(0, 212, 255, 0.15);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
}

.ti-tlp-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.ti-tlp-sharing {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    margin-bottom: 20px;
    font-style: italic;
}

.ti-tlp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.ti-tlp-features li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.ti-tlp-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.ti-tlp-white .ti-tlp-features li::before {
    background: rgba(255, 255, 255, 0.6);
}

.ti-tlp-green .ti-tlp-features li::before {
    background: #34d399;
}

.ti-tlp-amber .ti-tlp-features li::before {
    background: #D97706;
}

.ti-tlp-red .ti-tlp-features li::before {
    background: #ef4444;
}

.ti-tlp-audience {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8125rem;
}

.ti-tlp-audience-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.6875rem;
}

.ti-tlp-audience span:last-child {
    color: var(--text-tertiary);
}

/* Services Grid */
.ti-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.ti-service-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.ti-service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(155, 92, 255, 0.15) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: all 0.3s ease;
}

.ti-service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ti-glow-mixed);
}

.ti-service-card:hover::before {
    background: var(--ti-gradient-primary);
}

.ti-service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(155, 92, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ti-cyan);
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.ti-service-card:hover .ti-service-icon {
    background: var(--ti-gradient-primary);
    color: white;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.ti-service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.ti-service-card p {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

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

@media (max-width: 600px) {
    .ti-services-grid {
        grid-template-columns: 1fr;
    }
}

/* TLP CTA Section */
.ti-tlp-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(155, 92, 255, 0.05));
    border-radius: 16px;
    position: relative;
}

.ti-tlp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: var(--ti-gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.ti-tlp-cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.ti-tlp-cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.ti-tlp-cta-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0 0 12px;
}

.ti-tlp-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ti-cyan);
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ti-tlp-email:hover {
    color: var(--ti-magenta);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.ti-tlp-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ti-gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ti-tlp-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.5), 0 0 60px rgba(255, 0, 255, 0.3);
}

@media (max-width: 768px) {
    .ti-tlp-cta {
        flex-direction: column;
        text-align: center;
        padding: 32px;
    }

    .ti-tlp-cta-content {
        margin-bottom: 24px;
    }
}

/* TLP Grid Responsive */
@media (max-width: 1200px) {
    .ti-tlp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .ti-tlp-card {
        padding: 24px;
    }
}

/* ===== CTA Section ===== */
.ti-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(0, 212, 255, 0.05) 50%, rgba(255, 0, 255, 0.03) 100%);
}

.ti-cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.ti-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.ti-cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.ti-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.ti-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ti-cta-btn-primary {
    background: var(--ti-gradient-primary);
    color: white;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.ti-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--ti-glow-strong);
}

.ti-cta-btn-secondary {
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--ti-cyan);
}

.ti-cta-btn-secondary:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--ti-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* ===== Footer ===== */
.ti-footer {
    padding: 48px 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.ti-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ti-footer-disclaimer {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.ti-footer-license {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.ti-footer-license strong {
    color: var(--ti-cyan);
}

.ti-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ti-footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.ti-footer-brand {
    text-align: right;
}

.ti-footer-logo {
    height: 32px;
    margin-bottom: 12px;
}

.ti-footer-copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ===== Chart Skeleton Loading States ===== */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.chart-skeleton {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 10;
}

.chart-loaded .chart-skeleton {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Donut Chart Skeleton */
.skeleton-donut {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    position: relative;
    background: linear-gradient(
        90deg,
        rgba(40, 40, 50, 1) 0%,
        rgba(60, 60, 75, 1) 50%,
        rgba(40, 40, 50, 1) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite linear;
}

.skeleton-donut::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62%;
    height: 62%;
    border-radius: 50%;
    background: rgba(15, 15, 20, 0.98);
}

.skeleton-donut::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 16px;
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        rgba(40, 40, 50, 1) 0%,
        rgba(60, 60, 75, 1) 50%,
        rgba(40, 40, 50, 1) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite linear;
}

/* Bar Chart Skeleton */
.skeleton-bars {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
}

.skeleton-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 32px;
}

.skeleton-bar-label {
    width: 160px;
    height: 14px;
    border-radius: 4px;
    background: linear-gradient(
        90deg,
        rgba(40, 40, 50, 1) 0%,
        rgba(60, 60, 75, 1) 50%,
        rgba(40, 40, 50, 1) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite linear;
    flex-shrink: 0;
}

.skeleton-bar-fill {
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        rgba(40, 40, 50, 1) 0%,
        rgba(60, 60, 75, 1) 50%,
        rgba(40, 40, 50, 1) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.8s infinite linear;
}

/* Stagger the bar widths for visual interest */
.skeleton-bar:nth-child(1) .skeleton-bar-fill { width: 85%; }
.skeleton-bar:nth-child(2) .skeleton-bar-fill { width: 72%; }
.skeleton-bar:nth-child(3) .skeleton-bar-fill { width: 70%; }
.skeleton-bar:nth-child(4) .skeleton-bar-fill { width: 68%; }
.skeleton-bar:nth-child(5) .skeleton-bar-fill { width: 62%; }
.skeleton-bar:nth-child(6) .skeleton-bar-fill { width: 60%; }
.skeleton-bar:nth-child(7) .skeleton-bar-fill { width: 58%; }

/* Stagger animation delays for smoother appearance */
.skeleton-bar:nth-child(1) .skeleton-bar-label,
.skeleton-bar:nth-child(1) .skeleton-bar-fill { animation-delay: 0s; }
.skeleton-bar:nth-child(2) .skeleton-bar-label,
.skeleton-bar:nth-child(2) .skeleton-bar-fill { animation-delay: 0.1s; }
.skeleton-bar:nth-child(3) .skeleton-bar-label,
.skeleton-bar:nth-child(3) .skeleton-bar-fill { animation-delay: 0.2s; }
.skeleton-bar:nth-child(4) .skeleton-bar-label,
.skeleton-bar:nth-child(4) .skeleton-bar-fill { animation-delay: 0.3s; }
.skeleton-bar:nth-child(5) .skeleton-bar-label,
.skeleton-bar:nth-child(5) .skeleton-bar-fill { animation-delay: 0.4s; }
.skeleton-bar:nth-child(6) .skeleton-bar-label,
.skeleton-bar:nth-child(6) .skeleton-bar-fill { animation-delay: 0.5s; }
.skeleton-bar:nth-child(7) .skeleton-bar-label,
.skeleton-bar:nth-child(7) .skeleton-bar-fill { animation-delay: 0.6s; }

/* Responsive skeleton adjustments */
@media (max-width: 1200px) {
    .skeleton-donut {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .skeleton-donut {
        width: 200px;
        height: 200px;
    }

    .skeleton-bar-label {
        width: 100px;
    }
}

/* ===== Animations ===== */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

@keyframes countUp {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.5), 0 0 60px rgba(255, 0, 255, 0.3);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
    .ti-sidebar {
        display: none;
    }

    .ti-chart-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ti-donut-wrapper {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }
}

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

    .ti-findings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ti-finding-wide {
        grid-column: span 2;
    }

    .ti-harm-grid {
        grid-template-columns: 1fr;
    }

    .ti-emerging-grid {
        grid-template-columns: 1fr;
    }

    .ti-method-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .ti-footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .ti-footer-brand {
        text-align: center;
    }

    .ti-footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .ti-hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .ti-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ti-stat-card {
        padding: 24px;
    }

    .ti-stat-value {
        font-size: 2.5rem;
    }

    .ti-section {
        padding: 60px 0;
    }

    .ti-section-header {
        margin-bottom: 40px;
    }

    .ti-findings-grid {
        grid-template-columns: 1fr;
    }

    .ti-finding-wide {
        grid-column: span 1;
    }

    .ti-family-cards {
        grid-template-columns: 1fr;
    }

    .ti-donut-wrapper {
        width: 280px;
        height: 280px;
    }

    .ti-rec-filter {
        flex-direction: column;
    }

    .ti-methodology-grid {
        grid-template-columns: 1fr;
    }

    .ti-method-metrics {
        grid-template-columns: 1fr;
    }

    .ti-cta-buttons {
        flex-direction: column;
    }

    .ti-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .ti-hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ti-report-badge {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ti-badge-divider {
        display: none;
    }

    .ti-hero-period {
        flex-direction: column;
        gap: 4px;
    }

    .ti-finding-stat {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .ti-techniques-table {
        font-size: 0.8125rem;
    }

    .ti-techniques-table th,
    .ti-techniques-table td {
        padding: 12px;
    }
}

/* ===== Back to Top Button ===== */
.ti-back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 15, 20, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--ti-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 900;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ti-back-to-top::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 50%;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(155, 92, 255, 0.3) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ti-back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ti-back-to-top:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: var(--ti-cyan);
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ti-back-to-top:hover::before {
    background: var(--ti-gradient-primary);
}

.ti-back-to-top:active {
    transform: translateY(-2px);
}

.ti-back-to-top svg {
    transition: transform 0.2s ease;
}

.ti-back-to-top:hover svg {
    transform: translateY(-2px);
}

/* Mobile positioning */
@media (max-width: 768px) {
    .ti-back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* ===== Standard Card Borders (Solid, Subtle) ===== */
/* These replace gradient borders on non-featured/standard cards */

/* Standard finding cards - use solid border instead of gradient */
.ti-finding-card:not(.ti-finding-featured)::before {
    background: rgba(0, 212, 255, 0.15);
}

.ti-finding-card:not(.ti-finding-featured):hover::before {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(155, 92, 255, 0.3) 50%, rgba(255, 0, 255, 0.4) 100%);
}

/* Standard family cards - use solid border */
.ti-family-card::before {
    background: rgba(0, 212, 255, 0.15);
}

.ti-family-card:hover::before,
.ti-family-card.expanded::before {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(255, 0, 255, 0.3) 100%);
}

/* Standard harm cards (secondary) - use solid border */
.ti-harm-card::before {
    background: rgba(0, 212, 255, 0.12);
}

.ti-harm-card:hover::before {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.35) 0%, rgba(255, 0, 255, 0.25) 100%);
}

/* Standard recommendation cards - use solid border */
.ti-rec-card::before {
    background: rgba(0, 212, 255, 0.15);
}

.ti-rec-card:hover::before {
    background: var(--ti-gradient-primary);
}

/* Standard method cards - use solid border */
.ti-method-card::before {
    background: rgba(0, 212, 255, 0.15);
}

.ti-method-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(255, 0, 255, 0.3) 100%);
}

/* Standard method metric cards - use solid border */
.ti-method-metric::before {
    background: rgba(0, 212, 255, 0.18);
}

/* Standard service cards - use solid border */
.ti-service-card::before {
    background: rgba(0, 212, 255, 0.15);
}

.ti-service-card:hover::before {
    background: var(--ti-gradient-primary);
}

/* Standard emerging cards (non-new) - use solid border */
.ti-emerging-card:not(.ti-emerging-new)::before {
    background: rgba(0, 212, 255, 0.15);
}

.ti-emerging-card:not(.ti-emerging-new):hover::before {
    background: var(--ti-gradient-primary);
}

/* Executive stats bar - solid border by default, gradient on hover */
.ti-exec-stats-bar::before {
    background: rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.ti-exec-stats-bar:hover::before {
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3) 0%, rgba(155, 92, 255, 0.2) 50%, rgba(255, 0, 255, 0.3) 100%);
}

/* Standard exec cards - use solid border */
.ti-exec-card:not(.ti-exec-highlight)::before {
    background: rgba(0, 212, 255, 0.15);
}

.ti-exec-card:not(.ti-exec-highlight):hover::before {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.35) 0%, rgba(155, 92, 255, 0.25) 50%, rgba(255, 0, 255, 0.2) 100%);
}

/* Chart details panel - solid border */
.ti-chart-details::before {
    background: rgba(0, 212, 255, 0.15);
}

/* TLP cards (non-current) - keep their color-specific borders but make them subtle by default */
.ti-tlp-card:not(.ti-tlp-current)::before {
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.ti-tlp-card:not(.ti-tlp-current):hover::before {
    opacity: 1;
}

/* ===== Mobile Bottom Sheet Navigation ===== */
.ti-mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* Only show on screens <= 1200px where sidebar is hidden */
@media (max-width: 1200px) {
    .ti-mobile-nav {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

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

/* Collapsed state - the pill bar */
.ti-mobile-nav-collapsed {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    margin: 0 16px 16px;
    padding: 0 24px;
    background: rgba(15, 15, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow:
        0 -4px 20px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 212, 255, 0.1);
}

/* Gradient border for collapsed state */
.ti-mobile-nav-collapsed::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5) 0%, rgba(155, 92, 255, 0.4) 50%, rgba(255, 0, 255, 0.5) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.ti-mobile-nav-collapsed:active {
    transform: scale(0.98);
}

.ti-mobile-nav-current {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.ti-mobile-nav-chevron {
    color: var(--ti-cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

/* Expanded state */
.ti-mobile-nav-expanded {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    background: rgba(15, 15, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin: 0 16px 8px;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        transform 0.3s ease;
    box-shadow:
        0 -8px 32px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 212, 255, 0.15);
}

/* Gradient border for expanded state */
.ti-mobile-nav-expanded::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.4) 0%, rgba(155, 92, 255, 0.3) 50%, rgba(255, 0, 255, 0.4) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* When nav is expanded */
.ti-mobile-nav.expanded .ti-mobile-nav-expanded {
    max-height: 60vh;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.ti-mobile-nav.expanded .ti-mobile-nav-chevron {
    transform: rotate(180deg);
}

.ti-mobile-nav.expanded .ti-mobile-nav-collapsed {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(255, 0, 255, 0.1));
}

/* Navigation list */
.ti-mobile-nav-list {
    list-style: none;
    padding: 12px 8px;
    margin: 0;
}

.ti-mobile-nav-list li {
    margin: 0;
}

.ti-mobile-nav-link {
    display: block;
    padding: 14px 20px;
    color: #c4c4d4;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.2s ease;
    position: relative;
}

.ti-mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(0, 212, 255, 0.08);
}

.ti-mobile-nav-link:active {
    background: rgba(0, 212, 255, 0.15);
}

.ti-mobile-nav-link.active {
    color: var(--ti-cyan);
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.15), transparent);
}

.ti-mobile-nav-link.active::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: var(--ti-gradient-primary);
    border-radius: 2px;
}

/* Hide mobile nav on larger screens */
@media (min-width: 1201px) {
    .ti-mobile-nav {
        display: none !important;
    }
}

/* Add padding to footer when mobile nav is visible */
@media (max-width: 1200px) {
    .ti-footer {
        padding-bottom: calc(48px + 88px);
    }

    /* Adjust back-to-top button position when mobile nav is present */
    .ti-back-to-top {
        bottom: 90px;
    }

    .ti-back-to-top.visible {
        bottom: 90px;
    }
}

/* ===== Report Navigator ===== */
.ti-report-navigator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
}

.ti-report-nav-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ti-report-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: none;
    background: transparent;
    color: #606070;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ti-report-nav-btn:hover:not(:disabled) {
    color: #00d4ff;
}

.ti-report-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.ti-report-nav-btn svg {
    width: 16px;
    height: 16px;
}

.ti-report-selector {
    position: relative;
}

/* Custom dropdown button */
.ti-report-select-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 212, 255, 0.3);
    padding: 4px 0;
    color: #00d4ff;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ti-report-select-btn:hover {
    border-bottom-color: #00d4ff;
}

.ti-report-select-btn:focus {
    outline: none;
    border-bottom-color: #00d4ff;
}

.ti-report-select-arrow {
    color: #00d4ff;
    transition: transform 0.2s ease;
}

.ti-report-selector.open .ti-report-select-arrow {
    transform: rotate(180deg);
}

/* Custom dropdown menu */
.ti-report-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: #0f0f14;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 6px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ti-report-selector.open .ti-report-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.ti-report-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #c4c4d4;
    font-size: 0.8125rem;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.ti-report-dropdown-item:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #ffffff;
}

.ti-report-dropdown-item.selected {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
}

.ti-report-dropdown-item-check {
    width: 16px;
    height: 16px;
    opacity: 0;
}

.ti-report-dropdown-item.selected .ti-report-dropdown-item-check {
    opacity: 1;
}

.ti-report-nav-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
}

.ti-report-nav-info {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ti-report-count {
    font-size: 0.75rem;
    color: #606070;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Data loading error banner */
.ti-data-error-banner {
    background: linear-gradient(90deg, rgba(255, 159, 64, 0.15) 0%, rgba(255, 107, 157, 0.15) 100%);
    border-bottom: 1px solid rgba(255, 159, 64, 0.3);
    color: #ffb347;
    padding: 12px 24px;
    text-align: center;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ti-data-error-banner svg {
    flex-shrink: 0;
}

/* Visually hidden for accessibility */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile responsiveness for report navigator */
@media (max-width: 640px) {
    .ti-report-navigator {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 16px;
    }

    .ti-report-nav-divider {
        display: none;
    }

    .ti-report-nav-info {
        width: 100%;
        justify-content: center;
    }

    .ti-report-select-btn {
        font-size: 0.8125rem;
    }

    .ti-report-dropdown {
        min-width: 160px;
    }

    .ti-report-dropdown-item {
        padding: 8px 10px;
        font-size: 0.75rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    .ti-sidebar,
    .ti-scroll-indicator,
    .ti-cta,
    .ti-finding-explore,
    .ti-back-to-top,
    .ti-mobile-nav {
        display: none !important;
    }

    .ti-section {
        page-break-inside: avoid;
    }

    .ti-family-card.expanded .ti-family-body {
        display: block;
    }
}
