/* Tech Light Variables & Clean Resets */
:root {
    --bg-light: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --accent-blue: #0052ff;
    --accent-cyan: #0ea5e9;
    --accent-indigo: #6366f1; /* NEW: Added for beautiful tech gradients */
    --border-color: #cbd5e1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-light);
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

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

/* System-font typography settings replacing Courier New */
.badge, .card-index, .feature-tag, .btn-nav, .nav-links a, .spec-item h4, .footer-text, 
.value-tag, .metric-id, .advantage-tag, .matrix-header, .compliance-tag, .client-meta, .score-wrapper {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-color);
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

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

.nav-links li {
    margin: 0 16px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.btn-nav {
    text-decoration: none;
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: rgba(0, 82, 255, 0.05);
}

/* Hero Section */
.hero {
    padding: 140px 24px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    /* Blends electric blue and soft indigo into a clean, modern mesh gradient */
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(0, 82, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at top center, rgba(0, 82, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
}

.badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.3);
    color: var(--accent-blue);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 40px auto;
}

.btn-hero {
    text-decoration: none;
    background-color: var(--text-main); /* Changed to stark black for contrast */
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); /* Ultra smooth ease */
    display: inline-block;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.btn-hero:hover {
    background-color: var(--accent-blue);
    transform: translateY(-2px); /* Lifts button smoothly on hover */
    box-shadow: 0 12px 24px rgba(0, 82, 255, 0.2); /* Emits soft blue glow */
}


/* Value Proposition Section */
.value-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.value-split {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.value-main {
    flex: 1.2;
}

.value-tag {
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.value-main h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.value-main p {
    font-size: 16px;
    color: var(--text-muted);
}

.value-metrics-grid {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.metric-box {
    border-left: 2px solid var(--border-color);
    padding-left: 24px;
    transition: border-color 0.2s ease;
}

.metric-box:hover {
    border-left-color: var(--accent-blue);
}

.metric-id {
    color: var(--accent-cyan);
    margin-bottom: 8px;
    display: block;
}

.metric-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.metric-box p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Process Section */
.process-section {
    padding: 90px 0;
    background-color: var(--bg-subtle);
    border-bottom: 1px solid var(--border-color);
}

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

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
}

.tech-grid {
    display: flex;
    gap: 0; /* Flush alignment to force card borders to stitch together cleanly */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.tech-card {
    background: var(--bg-card);
    border: none;
    border-right: 1px solid var(--border-color); /* Interior grid dividers */
    padding: 48px 36px;
    flex: 1;
    transition: all 0.3s ease;
}

.tech-card:last-child {
    border-right: none; /* Strip out final hanging side border lines */
}

/* Subtle micro-interaction: card reveals an accent border on hover */
.tech-card:hover {
    background-color: var(--bg-light);
    box-shadow: inset 0 4px 0 var(--accent-blue); /* Spawns clean tracking indicator line at the top */
    transform: scale(1.01);
    z-index: 2;
}

.card-index {
    color: var(--accent-cyan);
    margin-bottom: 16px;
    display: block;
}

.tech-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.tech-card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Managed Advantage Comparison Settings */
.advantage-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
}

.advantage-split {
    display: flex;
    gap: 64px;
    align-items: center;
}

.advantage-main {
    flex: 1.2;
}

.advantage-tag {
    color: var(--accent-blue);
    margin-bottom: 16px;
    display: block;
}

.advantage-main h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.advantage-main p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.advantage-main .highlight-p {
    color: var(--text-main);
    font-weight: 600;
}

.compliance-box {
    margin-top: 32px;
    padding: 16px;
    background-color: var(--bg-subtle);
    border: 1px dashed var(--border-color);
    border-radius: 4px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.compliance-tag {
    color: var(--text-muted);
    background-color: #e2e8f0;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

.compliance-box p {
    font-size: 13px;
    margin-bottom: 0;
}

.matrix-card {
    flex: 1;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.matrix-header {
    background-color: var(--text-main);
    color: var(--bg-light);
    padding: 12px 20px;
}

.matrix-row {
    display: flex;
}

.matrix-col {
    flex: 1;
    padding: 24px 20px;
}

.matrix-col:first-child {
    border-right: 1px solid var(--border-color);
}

.matrix-col h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 16px;
}

.matrix-col ul {
    list-style: none;
    font-size: 13px;
    color: var(--text-muted);
}

.matrix-col ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 14px;
}

.matrix-col ul li::before {
    content: "•";
    color: var(--border-color);
    position: absolute;
    left: 0;
}

.line-through h4 { color: #94a3b8; }
.line-through ul li {
    text-decoration: line-through;
    color: #94a3b8;
}

.active-col { background-color: rgba(0, 82, 255, 0.02); }
.active-col h4 { color: var(--accent-blue); }
.active-col ul li::before { color: var(--accent-blue); }

/* Featured Client Directory Section Settings */
.directory-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-subtle);
}

/* Modern grid system handling 6 items cleanly */
.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.client-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    /* Implements micro timing parameters for high-fidelity response */
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.01);
}

.client-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-6px); /* Elevates the featured card off the page canvas */
    box-shadow: 0 20px 32px rgba(15, 23, 42, 0.06); /* Spawns elegant layout depth */
}

/* Subtle color punch for the arrow indicator icon text strings */
.client-card:hover .client-link {
    color: var(--accent-indigo);
    padding-left: 4px; /* Tiny bounce push animation on arrow icon */
    transition: all 0.2s ease;
}
/* Logo and Badge Layout Header Row */
.client-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

/* Text-Based Minimalist Tech Logo Placeholder */
.client-logo {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-main);
    border: 1px solid var(--text-main);
    padding: 4px 8px;
    border-radius: 2px;
    background-color: var(--bg-light);
    text-transform: uppercase;
}

.client-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

/* Metrics Container Layout Row */
.client-metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 12px;
}

.client-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.score-wrapper {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.score-value {
    color: var(--text-main);
    background-color: var(--bg-subtle);
    padding: 2px 6px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.badge-loved {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--accent-blue);
    background-color: rgba(0, 82, 255, 0.06);
    border: 1px solid rgba(0, 82, 255, 0.2);
    padding: 4px 8px;
    border-radius: 3px;
    white-space: nowrap;
}

.client-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1; /* Aligns read links evenly along card bottom edges */
}

.client-link {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-blue);
    transition: color 0.2s ease;
    margin-top: auto;
}

/* Responsive Breakpoints Handling Grid Wrapping */
@media (max-width: 992px) {
    .directory-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet sizes */
    }
}

@media (max-width: 768px) {
    .directory-grid {
        grid-template-columns: 1fr; /* 1 column on phone sizes */
    }
}

/* Footer Section */
.footer {
    padding: 40px 0;
    text-align: center;
    background-color: var(--bg-light);
}

.footer-text { color: var(--text-muted); }

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .tech-grid, .directory-grid, .value-split, .advantage-split, .matrix-row {
        flex-direction: column;
    }
    .matrix-col:first-child {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .hero h1 { font-size: 34px; }
    .value-main h2, .advantage-main h2 { font-size: 28px; }
}

/* Tech Core Features Layout Rules */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.features-split {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

.feature-block {
    flex: 1.2;
}

.feature-tag {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.feature-block h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.feature-block p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.feature-specs {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.spec-item h4 {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spec-item p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Update to your existing mobile media query breakpoint */
@media (max-width: 768px) {
    .features-split {
        flex-direction: column;
        gap: 40px;
    }
    .feature-block h3 {
        font-size: 26px;
    }
}

/* Optimization & Insights Section Layout Rules */
.insights-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.insights-tag {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.section-lead {
    max-width: 750px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.insights-grid {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    align-items: stretch;
}

/* Negative Feedback Routing Guard Highlight Panel */
.insight-main-card {
    flex: 1.2;
    background-color: var(--bg-subtle);
    border: 1px solid var(--border-color);
    padding: 48px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Simple blueprint graphic treatment using pure CSS background styling lines */
.insight-main-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 100% 0%, rgba(0, 82, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.panel-header {
    margin-bottom: 20px;
}

.panel-status {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-blue);
    background-color: rgba(0, 82, 255, 0.06);
    border: 1px solid rgba(0, 82, 255, 0.15);
    padding: 4px 8px;
    border-radius: 3px;
}

.insight-main-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.insight-main-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.insight-main-card .highlight-text {
    color: var(--text-main);
    font-weight: 600;
    margin-bottom: 0;
}

/* Diagnostics Split Sidebar Stack */
.insight-side-stack {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
}

.diagnostic-box {
    border-left: 2px solid var(--border-color);
    padding-left: 24px;
    transition: border-left-color 0.2s ease;
}

.diagnostic-box:hover {
    border-left-color: var(--accent-blue);
}

.diag-id {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 8px;
}

.diagnostic-box h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
}

.diagnostic-box p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Breaking Media Query adjustments */
@media (max-width: 992px) {
    .insights-grid {
        flex-direction: column;
        gap: 40px;
    }
    .insight-main-card {
        padding: 32px 24px;
    }
}

/* ==========================================================================
   INDIVIDUAL CLIENT PROFILE STYLES 
   ========================================================================== */

/* Header / Title block layout rules */
.audit-hero {
    padding: 60px 0 40px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumbs {
    margin-bottom: 24px;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--accent-blue);
}

.audit-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.client-brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.audit-hero h1 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.audit-lead {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    line-height: 1.6;
}

/* Metrics Dashboard Matrix Component Styles */
.metrics-dashboard {
    padding: 40px 0;
    background-color: var(--bg-subtle);
    border-bottom: 1px solid var(--border-color);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dash-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 24px 20px;
    border-radius: 4px;
}

.dash-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.dash-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.dash-value.text-blue {
    color: var(--accent-blue);
}

/* Core Case Content Split Layout */
.case-body-section {
    padding: 80px 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.case-split {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.case-text-block {
    flex: 1.5;
}

.case-section-tag {
    color: var(--accent-blue);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.case-text-block h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.case-text-block h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 32px 0 12px 0;
    color: var(--text-main);
}

.case-text-block p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* Sidebar Deployment Metadata Styles */
.case-sidebar {
    flex: 1;
    position: sticky;
    top: 100px;
}

.spec-card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-subtle);
    border-radius: 4px;
    overflow: hidden;
}

.spec-header {
    background-color: var(--text-main);
    color: var(--bg-light);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
}

.spec-list-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.spec-list-row:last-child {
    border-bottom: none;
}

.spec-list-row .spec-label {
    color: var(--text-muted);
    font-weight: 500;
}

.spec-list-row .spec-detail {
    color: var(--text-main);
    font-weight: 700;
}

/* Sub-page call to action banner rules */
.cta-banner {
    padding: 80px 24px;
    text-align: center;
    background-color: var(--bg-subtle);
    border-bottom: 1px solid var(--border-color);
}

.cta-banner h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.cta-banner p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* Profiles Responsive Breakpoints adjustments */
@media (max-width: 992px) {
    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .case-split {
        flex-direction: column;
        gap: 48px;
    }
    .case-sidebar {
        width: 100%;
        position: static;
    }
}

@media (max-width: 600px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    .audit-title-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .audit-hero h1 {
        font-size: 28px;
    }
    .case-text-block h2 {
        font-size: 24px;
    }
}





/* Inline Vector Icon Styling Rules */
.metric-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-blue); /* Automatically colors the vector lines electric blue */
    margin-bottom: 12px;
    display: block;
}

.card-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-blue);
    margin-bottom: 20px;
    display: block;
}

/* Adjustments to box borders to fit icons cleanly */
.metric-box {
    border-left: 2px solid var(--border-color);
    padding-left: 24px;
    padding-top: 4px;
    padding-bottom: 4px;
}





/* Vibrant Light Gradient Hero Section Styling */
.hero {
    /* Glowing, energetic light-mode gradient layout */
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 50%, #e0f2fe 100%);
    padding: 140px 24px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.hero-container {
    max-width: 800px; /* Limits width to keep the line lengths comfortable to read */
    margin: 0 auto;
}

/* Bright Blue Accent Badge Component */
.hero .badge {
    display: inline-block;
    background: rgba(0, 82, 255, 0.08);
    border: 1px solid rgba(0, 82, 255, 0.25);
    color: var(--accent-blue);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 24px;
}

/* Bold, modern typography treatments optimized for a light backdrop */
.hero h1 {
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    color: var(--text-main); /* Deep slate for high legibility */
    line-height: 1.15;
}

.hero p {
    font-size: 19px;
    color: var(--text-muted); /* Soft gray for a balanced reading tone */
    max-width: 660px;
    margin: 0 auto 44px auto;
    line-height: 1.65;
}

/* High-Contrast Electric Blue Call-To-Action Button */
.hero .btn-hero {
    text-decoration: none;
    background-color: var(--accent-blue); /* Solid electric blue theme */
    color: #ffffff; /* Crisp white text overlay */
    padding: 18px 36px;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.2s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0, 82, 255, 0.15);
}

.hero .btn-hero:hover {
    background-color: #003ccb;
    transform: translateY(-1px);
    box-shadow: 0 6px 25px rgba(0, 82, 255, 0.3);
}

/* Mobile Breakpoint Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 100px 24px;
    }
    .hero h1 {
        font-size: 36px;
        letter-spacing: -0.5px;
    }
    .hero p {
        font-size: 16px;
    }
}



/* Client page icons */
.dash-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
    margin-bottom: 16px;
    display: block;
}

.spec-label-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-weight: 500;
}

.sidebar-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
    display: inline-block;
}

/* Minor dash-card adjustment to anchor space */
.dash-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


