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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

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

/* Navigation */
.nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-brand h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.nav-cta {
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 6px;
}

.nav-mobile {
    display: none;
}

/* Banner */
.banner {
    background: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 12px 0;
    margin-top: 72px;
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.banner p {
    font-size: 14px;
    font-weight: 500;
}

/* Hero */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0a0a0a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 10%, rgba(139, 69, 219, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 50%, #3b82f6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: #d1d5db;
    margin-bottom: 32px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-proof {
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border-color: #d1d5db;
}

.btn-secondary:hover {
    border-color: #1a1a1a;
    transform: translateY(-1px);
}

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

.section-alt {
    background: #fafafa;
}

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

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.section-header .subtitle {
    font-size: 20px;
    font-style: italic;
    color: #4b5563;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.step {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.step-number {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step p {
    color: #6b7280;
}

.step ul {
    list-style: none;
    text-align: left;
}

.step li {
    color: #6b7280;
    margin-bottom: 4px;
}

/* Map layers */
.map-layers {
    display: grid;
    gap: 16px;
    margin-bottom: 48px;
}

.layer {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    font-size: 16px;
}

/* Example block */
.example-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 32px;
    margin-top: 48px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.example-block h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.example-block pre {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    font-family: 'SF Mono', Consolas, monospace;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.example-note {
    color: #d1d5db;
    font-size: 14px;
    font-style: italic;
}

/* Integrations */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.integration-category {
    text-align: center;
}

.integration-category h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.integration-category p {
    color: #6b7280;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.benefit h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.benefit p {
    color: #6b7280;
}

.secondary-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.secondary-features li {
    color: #6b7280;
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}

/* Use cases */
.use-cases {
    display: grid;
    gap: 16px;
}

.use-case {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    font-size: 16px;
}

/* Signup */
.section-signup {
    background: #1a1a1a;
    color: #ffffff;
}

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

.signup-content h2 {
    color: #ffffff;
    margin-bottom: 16px;
}

.signup-content p {
    color: #d1d5db;
    margin-bottom: 32px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #374151;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
}

.form-group input::placeholder {
    color: #9ca3af;
}

.consent {
    color: #9ca3af;
    font-size: 12px;
    margin-top: 16px;
}

/* Whitepaper */
.whitepaper-summary {
    max-width: 800px;
    margin: 0 auto 48px;
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 48px 0 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

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

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-brand p {
    color: #d1d5db;
    font-style: italic;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-nav a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-copyright {
    border-top: 1px solid #374151;
    padding-top: 24px;
}

.footer-copyright p {
    color: #6b7280;
    font-size: 14px;
}

/* Brand Styling */
.ai-yellow {
    color: #fbbf24;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.cc-white {
    color: #ffffff;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #6b7280;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    margin-bottom: 16px;
    color: #1a1a1a;
}

.modal-content p {
    margin-bottom: 32px;
    color: #6b7280;
}

.quick-signup-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.quick-signup-form input {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.quick-signup-form input:focus {
    outline: none;
    border-color: #1a1a1a;
}

.consent-quick {
    color: #6b7280;
    font-size: 12px;
    margin: 0;
}

/* Modern Architecture Map Styling */
.architecture-map {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    border: 1px solid #e5e7eb;
}

.map-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.map-header h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.service-card {
    background: #f9fafb;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid;
}

.service-card.healthy {
    border-left-color: #10b981;
}

.service-card.warning {
    border-left-color: #f59e0b;
}

.service-card.critical {
    border-left-color: #ef4444;
}

.service-card h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
}

.service-card .status {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.service-card.healthy .status {
    background: #d1fae5;
    color: #065f46;
}

.service-card.warning .status {
    background: #fef3c7;
    color: #92400e;
}

.service-card.critical .status {
    background: #fee2e2;
    color: #991b1b;
}

.service-card .metrics {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
}

.service-card .metrics div {
    margin-bottom: 4px;
}

.service-card .recommendation {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    background: #f0f9ff;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.roadmap {
    background: #f8fafc;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.roadmap h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.phases {
    margin-bottom: 16px;
}

.phase {
    background: #ffffff;
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 3px solid #6366f1;
    margin-bottom: 8px;
    font-size: 14px;
    color: #374151;
}

.expected {
    font-size: 14px;
    font-weight: 600;
    color: #059669;
    background: #ecfdf5;
    padding: 12px 16px;
    border-radius: 6px;
    border-left: 3px solid #10b981;
}

/* Modern Grafana Dashboard Styling */
.grafana-dashboard {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    margin: 24px 0;
    border: 1px solid #e5e7eb;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.dashboard-header h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.metric-panel {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.metric-panel h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.metric-item {
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.metric-item.healthy {
    background: #d1fae5;
    color: #065f46;
}

.metric-item.warning {
    background: #fef3c7;
    color: #92400e;
}

.metric-item.critical {
    background: #fee2e2;
    color: #991b1b;
}

.analysis-section {
    background: #f8fafc;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 24px;
    border: 1px solid #e2e8f0;
}

.analysis-section h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
}

.priority-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.priority-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid;
}

.priority-item.high {
    border-left-color: #ef4444;
}

.priority-item.medium {
    border-left-color: #f59e0b;
}

.priority-header {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.priority-details {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.priority-details div {
    margin-bottom: 4px;
}

.priority-item .recommendation {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    background: #f0f9ff;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
    margin-bottom: 8px;
}

.priority-item .expected {
    font-size: 13px;
    font-weight: 500;
    color: #059669;
    background: #ecfdf5;
    padding: 6px 12px;
    border-radius: 4px;
}

.evidence-section {
    background: #f1f5f9;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #cbd5e1;
}

.evidence-section h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 16px 0;
}

.evidence-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.evidence-item {
    background: #ffffff;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: #475569;
    border-left: 3px solid #64748b;
}

/* Dashboard Preview - Real Grafana-style Interface */
.dashboard-preview {
    background: #f8fafc;
    border-radius: 12px;
    padding: 0;
    margin: 24px 0;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.dashboard-tabs {
    background: #ffffff;
    display: flex;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 24px;
}

.tab {
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab.active {
    color: #1a1a1a;
    border-bottom-color: #3b82f6;
}

.chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px;
}

.chart-panel {
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.time-range {
    font-size: 12px;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
}

.insight-badge {
    font-size: 11px;
    font-weight: 600;
    color: #3b82f6;
    background: #eff6ff;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.time-series-chart {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 8px;
    margin-bottom: 16px;
    padding: 0 8px;
}

.chart-line {
    flex: 1;
    border-radius: 4px 4px 0 0;
    position: relative;
    min-height: 20px;
    display: flex;
    align-items: start;
    justify-content: center;
}

.chart-line.critical {
    background: linear-gradient(to top, #ef4444, #f87171);
}

.chart-line.warning {
    background: linear-gradient(to top, #f59e0b, #fbbf24);
}

.chart-line.healthy {
    background: linear-gradient(to top, #10b981, #34d399);
}

.data-point {
    font-size: 10px;
    font-weight: 600;
    color: white;
    padding: 2px 4px;
    border-radius: 3px;
    margin-top: -16px;
}

.chart-legend {
    display: flex;
    justify-content: space-around;
    gap: 8px;
}

.legend-item {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    text-align: center;
    font-weight: 500;
}

.legend-item.critical {
    background: #fee2e2;
    color: #991b1b;
}

.legend-item.warning {
    background: #fef3c7;
    color: #92400e;
}

.legend-item.healthy {
    background: #d1fae5;
    color: #065f46;
}

.score-visualization {
    display: flex;
    gap: 24px;
    align-items: center;
}

.score-gauge {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gauge-arc {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 8px solid #f1f5f9;
    top: 10px;
    left: 10px;
}

.gauge-fill {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 8px solid #f59e0b;
    border-color: #f59e0b transparent transparent transparent;
    transform-origin: center;
}

.score-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    z-index: 1;
}

.score-label {
    font-size: 12px;
    color: #64748b;
    z-index: 1;
}

.score-breakdown {
    flex: 1;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.score-metric {
    font-size: 13px;
    color: #374151;
    min-width: 80px;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
}

.bar-fill.critical {
    background: #ef4444;
}

.bar-fill.warning {
    background: #f59e0b;
}

.bar-fill.healthy {
    background: #10b981;
}

.insights-panel, .evidence-panel {
    background: #ffffff;
    margin: 0 24px 24px;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid #e2e8f0;
}

.insight-header, .evidence-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.insight-header h6, .evidence-header h6 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.confidence {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    background: #ecfdf5;
    padding: 4px 8px;
    border-radius: 4px;
}

.insight-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid;
}

.flow-step.critical {
    background: #fef2f2;
    border-left-color: #ef4444;
}

.flow-step.warning {
    background: #fffbeb;
    border-left-color: #f59e0b;
}

.flow-step.healthy {
    background: #f0fdf4;
    border-left-color: #10b981;
}

.step-icon {
    font-size: 20px;
    min-width: 20px;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.step-description {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 8px;
}

.step-action {
    font-size: 14px;
    font-weight: 500;
    color: #3b82f6;
}

.step-timeline {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 6px;
    min-width: 80px;
    text-align: center;
}

.flow-arrow {
    font-size: 18px;
    color: #94a3b8;
    text-align: center;
    margin: 8px 0;
}

.evidence-flow {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.evidence-source {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.source-icon {
    font-size: 16px;
}

.source-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.source-text {
    font-size: 12px;
    color: #64748b;
}

.evidence-connection {
    font-size: 16px;
    color: #94a3b8;
    font-weight: 600;
}

.evidence-result {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    background: #eff6ff;
    padding: 8px 16px;
    border-radius: 6px;
    border: 2px solid #3b82f6;
}

/* Real Grafana Mockup Styles */
.grafana-mockup {
    background: #0f1419;
    border-radius: 8px;
    margin: 24px 0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.grafana-header {
    background: #181b1f;
    border-bottom: 1px solid #2f3349;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.grafana-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.grafana-logo {
    color: #ff8700;
    font-weight: 600;
    font-size: 16px;
}

.grafana-breadcrumb {
    color: #c7d0d9;
    font-size: 14px;
}

.grafana-breadcrumb .active {
    color: #ffffff;
}

.grafana-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-picker {
    background: #262932;
    color: #c7d0d9;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    border: 1px solid #3c434c;
}

.refresh-button {
    background: #262932;
    color: #c7d0d9;
    padding: 8px 10px;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #3c434c;
}

.grafana-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    padding: 20px;
}

.grafana-panel {
    background: #181b1f;
    border: 1px solid #2f3349;
    border-radius: 4px;
    overflow: hidden;
}

.grafana-panel.full-width {
    grid-column: 1 / -1;
}

.panel-header {
    background: #1e2028;
    padding: 8px 16px;
    border-bottom: 1px solid #2f3349;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-header h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.panel-menu {
    color: #8e9196;
    cursor: pointer;
    font-size: 16px;
}

.panel-content {
    padding: 16px;
}

/* Time Series Panel */
.graph-container {
    display: flex;
    height: 200px;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-right: 12px;
    width: 60px;
}

.y-label {
    color: #8e9196;
    font-size: 11px;
}

.graph-area {
    flex: 1;
    position: relative;
}

.time-series-svg {
    width: 100%;
    height: 100%;
}

.current-values {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(24, 27, 31, 0.9);
    padding: 8px;
    border-radius: 4px;
    font-size: 12px;
}

.value-line {
    margin-bottom: 4px;
}

.value-line.payment {
    color: #ff4444;
}

.value-line.auth {
    color: #ff9500;
}

.value-line.user {
    color: #00d084;
}

/* Gauge Panel */
.gauge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 160px;
}

.gauge-svg {
    width: 100%;
    height: 100%;
}

.gauge-value {
    fill: #ffffff;
    font-size: 24px;
    font-weight: 600;
}

.gauge-label {
    fill: #8e9196;
    font-size: 14px;
}

/* Stat Panel */
.stat-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-item {
    text-align: center;
    padding: 12px;
    border-radius: 4px;
}

.stat-item.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.stat-item.warning {
    background: rgba(255, 149, 0, 0.1);
    border: 1px solid rgba(255, 149, 0, 0.3);
}

.stat-item.healthy {
    background: rgba(0, 208, 132, 0.1);
    border: 1px solid rgba(0, 208, 132, 0.3);
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
}

.stat-item.critical .stat-value {
    color: #ff4444;
}

.stat-item.warning .stat-value {
    color: #ff9500;
}

.stat-item.healthy .stat-value {
    color: #00d084;
}

.stat-label {
    color: #c7d0d9;
    font-size: 12px;
}

/* Table Panel */
.table-container {
    overflow-x: auto;
}

.recommendations-table {
    width: 100%;
    border-collapse: collapse;
    color: #c7d0d9;
    font-size: 13px;
}

.recommendations-table th {
    background: #262932;
    color: #ffffff;
    padding: 12px 8px;
    text-align: left;
    font-weight: 500;
    border-bottom: 1px solid #3c434c;
}

.recommendations-table td {
    padding: 12px 8px;
    border-bottom: 1px solid #2f3349;
}

.priority-badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.priority-badge.critical {
    background: #ff4444;
    color: #ffffff;
}

.priority-badge.warning {
    background: #ff9500;
    color: #ffffff;
}

.priority-badge.info {
    background: #5e72e4;
    color: #ffffff;
}

.critical-row {
    background: rgba(255, 68, 68, 0.05);
}

.warning-row {
    background: rgba(255, 149, 0, 0.05);
}

.info-row {
    background: rgba(94, 114, 228, 0.05);
}

/* Living Architecture Map */
.living-map-container {
    margin-top: 40px;
}

.living-map-container h4 {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 20px;
}

.architecture-map-rich {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.map-controls {
    background: #ffffff;
    padding: 16px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-toggles {
    display: flex;
    gap: 8px;
}

.toggle {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.toggle.active {
    background: #3b82f6;
    color: #ffffff;
    border-color: #3b82f6;
}

.filter-select {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
}

.map-canvas {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
}

.map-node {
    position: absolute;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px;
    min-width: 120px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.2s;
}

.map-node:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.map-node.service.healthy {
    border-color: #10b981;
}

.map-node.service.warning {
    border-color: #f59e0b;
}

.map-node.service.critical {
    border-color: #ef4444;
}

.map-node.database.healthy {
    border-color: #10b981;
    background: #f0fdf4;
}

.map-node.database.warning {
    border-color: #f59e0b;
    background: #fffbeb;
}

.map-node.database.critical {
    border-color: #ef4444;
    background: #fef2f2;
}

.map-node.gateway {
    border-color: #6366f1;
    background: #f0f9ff;
}

.map-node.load-balancer {
    border-color: #8b5cf6;
    background: #faf5ff;
}

.node-icon {
    font-size: 20px;
    text-align: center;
    margin-bottom: 8px;
}

.node-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 8px;
}

.node-metrics {
    font-size: 11px;
    color: #64748b;
    text-align: center;
    margin-bottom: 8px;
}

.node-details {
    font-size: 11px;
    color: #64748b;
}

.detail-line {
    margin-bottom: 2px;
}

.health-indicator {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.health-indicator.healthy {
    background: #10b981;
}

.health-indicator.warning {
    background: #f59e0b;
}

.health-indicator.critical {
    background: #ef4444;
}

.recommendation-popup {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 10;
}

.recommendation-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #3b82f6;
}

.modernization-flag {
    position: absolute;
    top: -12px;
    left: -12px;
    background: #ef4444;
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    z-index: 10;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ai-insights-overlay {
    position: absolute;
    z-index: 20;
}

.insight-bubble {
    background: #ffffff;
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    max-width: 250px;
}

.insight-header {
    font-size: 12px;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 8px;
}

.insight-text {
    font-size: 13px;
    color: #374151;
    margin-bottom: 12px;
    line-height: 1.4;
}

.confidence-bar {
    background: #f1f5f9;
    height: 4px;
    border-radius: 2px;
    position: relative;
    margin-bottom: 6px;
}

.confidence-fill {
    background: #10b981;
    height: 100%;
    border-radius: 2px;
}

.confidence-text {
    font-size: 11px;
    color: #059669;
    font-weight: 600;
}

.map-legend {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 20px 24px;
    display: flex;
    gap: 40px;
}

.legend-section h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.health-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.health-dot.healthy {
    background: #10b981;
}

.health-dot.warning {
    background: #f59e0b;
}

.health-dot.critical {
    background: #ef4444;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 16px;
    }
}