﻿/* =================================================================
   1. ROOT VARIABLES & FONT DEFINITIONS
   - The core design system for the entire site.
   - Implements the "Color Hierarchy Flip".
================================================================= */
:root {
    /* Color Palette */
    --bg-main-website: #2D2D2D; /* Lighter charcoal for the page background */
    --bg-panel-website: #1E1E1E; /* Darker charcoal for accents and the HUD */
    --text-primary: #D4D4D4;
    --text-secondary: #888888;
    --text-header: #FFFFFF;
    --accent-primary: #00B8D4; /* Electric Teal */
    --accent-hover: #00e5ff;
    --accent-orange: #FF9800;
    --border-color: #444444;
    --accent-purple: #9C27B0; /* Added for trace line */
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-mono: 'Consolas', 'Monaco', 'Courier New', monospace;
    /* Layout */
    --header-height: 70px;
    --color-good: #4CAF50;
    --color-warning: #FFC107;
    --color-critical: #F44336;
    --path-color-1: #00B8D4; /* Teal */
    --path-color-2: #9C27B0; /* Purple */
    --path-color-3: #E91E63; /* Pink */
    --path-color-4: #4CAF50; /* Green */
    --path-color-5: #FF9800; /* Orange */
}

@font-face {
    font-family: 'Material Icons Outlined';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/MaterialIconsOutlined-Regular.otf) format('opentype');
}

/* =================================================================
   2. BASE STYLES & RESETS
   - Sets the foundation for the entire page.
================================================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height); /* Offset for sticky header when jumping to anchors */
}

body {
    background-color: var(--bg-main-website);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* --- Living Blueprint Background (More Visible) --- */
    background-image: linear-gradient(rgba(68, 68, 68, 0.3) 1px, transparent 1px), linear-gradient(90deg, rgba(68, 68, 68, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: pan-grid 20s linear infinite;
}

/* Keyframes for the grid animation */
@keyframes pan-grid {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 50px 0;
    }
}


h1, h2, h3, h4 {
    color: var(--text-header);
    font-weight: 600;
    line-height: 1.3;
}

p {
    color: var(--text-secondary);
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

    a:hover {
        color: var(--accent-hover);
    }

.material-icons-outlined {
    font-family: 'Material Icons Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    vertical-align: middle;
}

/* =================================================================
   3. HUD NAVIGATION (#page-header)
   - The "scroll-aware" sticky header.
================================================================= */
#page-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    border-bottom: 1px solid transparent;
}

    #page-header.scrolled {
        background-color: rgba(30, 30, 30, 0.85); /* Darker charcoal with slight transparency */
        border-bottom-color: var(--border-color);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
    }

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

    .logo img {
        height: 45px;
    }

    .logo .logo-text {
        font-family: var(--font-sans);
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-header);
        white-space: nowrap;
    }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

    .main-nav a:hover {
        color: var(--text-primary);
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* =================================================================
   4. PANEL LAYOUT & STRUCTURE
   - The core of the "Command Deck" layout.
================================================================= */
.panel {
    position: relative;
    overflow: hidden;
}

.full-screen-panel {
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Allow header and content to stack */
    align-items: center;
    justify-content: center;
    padding: var(--header-height) 24px 24px;
}

.panel-content-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.panel-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto; /* Add space below the header */
}

.panel-headline {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.panel-sub-headline {
    font-size: 1.1rem;
    color: var(--text-primary);
}


/* =================================================================
   5. PANEL 1: HERO VIEWPORT
================================================================= */
#hero-graph-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* This creates a subtle vignette effect to focus the text */
    background: radial-gradient(ellipse at center, rgba(45,45,45,0) 0%, rgba(45,45,45,0.8) 80%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.main-headline {
    font-size: 3.5rem;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

    /* The "schematic" teal line under the headline */
    .main-headline::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 20%;
        width: 60%;
        height: 3px;
        background-color: var(--accent-primary);
    }

.sub-headline {
    font-size: 1.25rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* --- Hero Text Animation --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.main-headline {
    animation-delay: 0.2s;
}

.sub-headline {
    animation-delay: 0.4s;
}

.hero-actions {
    animation-delay: 0.6s;
}


/* =================================================================
   6. PANEL 2: PROOF GRID
================================================================= */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.proof-card {
    position: relative; /* Needed for the glow pseudo-element */
    overflow: hidden; /* Keep the glow contained */
    text-align: left;
    padding: 32px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

    .proof-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse 80% 40% at 50% -10%, rgba(0, 184, 212, 0.2), transparent);
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        pointer-events: none;
    }

    .proof-card:hover {
        transform: translateY(-5px);
    }

        .proof-card:hover::after {
            opacity: 1;
        }


    .proof-card .material-icons-outlined {
        font-size: 2.5rem;
        color: var(--accent-orange);
        margin-bottom: 16px;
    }

    .proof-card h3 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .proof-card p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

.details-list {
    list-style: none;
    margin-top: 16px;
    padding-left: 0;
}

    .details-list li {
        font-size: 0.95rem;
        color: var(--text-secondary);
        margin-bottom: 8px;
        position: relative;
        padding-left: 20px;
    }

        .details-list li::before {
            content: '›'; /* Using a chevron as a bullet */
            position: absolute;
            left: 0;
            color: var(--accent-primary);
            font-weight: bold;
        }

    .details-list strong {
        color: var(--text-primary);
        font-weight: 600;
    }


/* =================================================================
   7. PANEL 3: NARRATIVE GRID
================================================================= */
.narrative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.narrative-card {
    position: relative; /* Needed for glow */
    overflow: hidden; /* Needed for glow */
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: 8px;
    background-color: rgba(30, 30, 30, 0.3);
    display: flex;
    flex-direction: column;
    transition: background-color 0.3s ease-in-out;
}

    .narrative-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse 80% 40% at 50% -10%, rgba(0, 184, 212, 0.15), transparent);
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        pointer-events: none;
    }

    .narrative-card:hover {
        background-color: rgba(30, 30, 30, 0.6);
    }

        .narrative-card:hover::after {
            opacity: 1;
        }

    .narrative-card h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        color: var(--accent-primary);
    }

    .narrative-card p {
        color: var(--text-primary);
        flex-grow: 1;
        margin-bottom: 24px;
    }

    .narrative-card strong {
        font-family: var(--font-mono);
        color: var(--accent-orange);
    }

.learn-more-link {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto; /* Pushes the link to the bottom */
}

    .learn-more-link .material-icons-outlined {
        transition: transform 0.2s ease-in-out;
    }

    .learn-more-link:hover .material-icons-outlined {
        transform: translateX(4px);
    }


/* =================================================================
   8. UNIVERSAL COMPONENTS (Buttons, etc.)
================================================================= */
.button-primary,
.button-secondary {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.button-primary {
    background-color: var(--accent-primary);
    color: var(--bg-panel-website);
    border-color: var(--accent-primary);
}

    .button-primary:hover {
        background-color: var(--accent-hover);
        border-color: var(--accent-hover);
        color: var(--bg-panel-website);
        transform: translateY(-2px);
    }

.button-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

    .button-secondary:hover {
        background-color: var(--border-color);
        color: var(--text-header);
        border-color: var(--border-color);
    }

.button-large {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Helper class for monospace font */
.font-mono {
    font-family: var(--font-mono);
}

/* =================================================================
   9. FOOTER
================================================================= */
#page-footer {
    color: var(--text-secondary);
}

.footer-panel {
    background-color: var(--bg-panel-website);
    padding: 64px 24px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.footer-cta h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.footer-cta p {
    max-width: 500px;
    margin-bottom: 32px;
}

.footer-actions {
    display: flex;
    gap: 16px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-nav-col h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

    .footer-nav a:hover {
        color: var(--text-primary);
    }

.sub-footer {
    background-color: #111;
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
}

.sub-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.made-in {
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

.legal-links a {
    color: var(--text-secondary);
    margin-left: 16px;
}
/* =================================================================
   10. PLATFORM PAGE STYLES
================================================================= */
.page-container {
    padding-top: var(--header-height);
}

.page-header-section {
    padding: 64px 24px;
}

.tool-category-section {
    padding: 0 24px 64px 24px;
}

.category-headline {
    font-size: 2rem;
    color: var(--text-header);
    border-bottom: 1px solid var(--accent-orange);
    padding-bottom: 16px;
    margin-bottom: 32px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.tool-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.single-item-grid {
    grid-template-columns: 1fr;
    max-width: calc( (1200px - 48px) / 3 ); /* Width of one card */
}

.tool-card {
    position: relative; /* For glow */
    overflow: hidden; /* For glow */
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    color: var(--text-secondary);
    transition: transform 0.2s ease-in-out;
    text-decoration: none; /* Ensure the whole card doesn't look like a link */
}

    .tool-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse 80% 40% at 50% -10%, rgba(0, 184, 212, 0.2), transparent);
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
        pointer-events: none;
    }


    .tool-card:hover {
        transform: translateY(-5px);
        color: var(--text-primary);
    }

        .tool-card:hover::after {
            opacity: 1;
        }

    .tool-card .material-icons-outlined {
        font-size: 2.5rem;
        color: var(--accent-primary);
        margin-bottom: 16px;
    }

    .tool-card h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .tool-card .tagline {
        font-style: italic;
        color: var(--text-secondary);
        margin-bottom: 16px;
        min-height: 40px;
    }

    .tool-card .description {
        font-size: 0.9rem;
        line-height: 1.7;
        color: var(--text-secondary);
        flex-grow: 1;
    }

    .tool-card:hover .description {
        color: var(--text-primary);
    }

/* =================================================================
   11. TOOL DETAIL PAGE STYLES
================================================================= */
.tool-detail-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 24px;
    align-items: start;
}

.tool-inspector {
    position: sticky;
    top: calc(var(--header-height) + 48px);
}

.inspector-content {
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}

.tool-icon-large {
    font-size: 4rem;
    color: var(--accent-primary);
}

.tool-name {
    font-size: 2.5rem;
    margin-top: 16px;
}

.tool-tagline {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.tool-visual {
    height: 200px;
    background-color: var(--bg-main-website);
    border-radius: 6px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.tool-primary-action label {
    display: block;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.code-block {
    position: relative;
    background-color: #111;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

    .code-block pre {
        padding: 12px;
        color: var(--text-primary);
        overflow-x: auto;
        overflow-y: visible;
        flex-grow: 1;
        white-space: pre;
    }

.copy-button {
    position: relative;
    top: auto;
    right: auto;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

    .copy-button:hover {
        background-color: var(--border-color);
        color: var(--text-primary);
    }

.docs-link {
    display: inline-flex;
    margin-top: 16px;
    font-size: 0.9rem;
}

.tool-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.tool-content h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-top: 32px;
    margin-bottom: 16px;
}

.tool-content ul, .tool-content dl {
    padding-left: 20px;
}

    .tool-content ul li {
        margin-bottom: 10px;
    }

.tool-content dt {
    font-weight: 600;
    color: var(--text-primary);
}

.tool-content dd {
    margin-left: 20px;
    margin-bottom: 16px;
}

/* --- Tab Navigation --- */
.tab-nav {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.tab-link {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 24px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

    .tab-link:hover {
        color: var(--text-primary);
    }

    .tab-link.active {
        color: var(--accent-orange);
        border-bottom-color: var(--accent-orange);
    }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }
/* =================================================================
   12. TOOL VISUAL ANIMATIONS
================================================================= */

/* --- Dependency Trace Animation (Mappa) --- */
.dependency-trace {
    position: absolute;
    width: 100%;
    height: 100%;
}

.trace-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

    .trace-node.is-source {
        background-color: var(--accent-primary);
    }

.trace-line {
    position: absolute;
    width: 2px;
    background-color: var(--accent-purple);
    transform-origin: top center;
    box-shadow: 0 0 8px var(--accent-purple);
    z-index: 1;
    height: 0;
    opacity: 1;
    transition: height 0.4s ease-out;
}

/* --- Risk Trend Animation (Risk Calculator) --- */
.risk-trend-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: 16px;
}

    .risk-trend-visual svg {
        width: 100%;
        height: 100%;
        overflow: visible;
    }

    .risk-trend-visual .grid-line {
        stroke: var(--border-color);
        stroke-width: 1;
        stroke-dasharray: 2,2;
    }

    .risk-trend-visual .chart-path {
        fill: none;
        stroke: var(--accent-orange);
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .risk-trend-visual .tracer-dot {
        fill: var(--accent-orange);
        stroke: var(--bg-main-website);
        stroke-width: 3px;
    }

/* --- Cloud Map Visual (Atlas) --- */
.cloud-map-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.cloud-map-node {
    position: absolute;
    background-color: var(--bg-panel-website);
    border: 2px solid var(--border-color);
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-secondary);
    z-index: 2;
}

    .cloud-map-node.subscription {
        width: 60px;
        height: 40px;
        border-radius: 6px;
        border-color: var(--accent-primary);
        color: var(--accent-primary);
    }

    .cloud-map-node.rg {
        width: 80px;
        height: 35px;
        border-radius: 4px;
    }

    .cloud-map-node.vm {
        width: 40px;
        height: 40px;
        border-radius: 4px;
    }

    .cloud-map-node.db {
        width: 30px;
        height: 45px;
        border-radius: 50% / 20%;
    }

    .cloud-map-node.green {
        border-color: var(--color-good) !important;
    }

    .cloud-map-node.orange {
        border-color: var(--color-warning) !important;
    }

    .cloud-map-node.red {
        border-color: var(--color-critical) !important;
    }

.cloud-map-line {
    position: absolute;
    background-color: var(--border-color);
    height: 2px;
    transform-origin: left center;
    z-index: 1;
}

/* --- Governance Schematic (Architecture Guardian) --- */
.governance-schematic {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 100%;
    padding: 20px;
}

.schematic-container {
    position: relative;
    width: 120px;
    height: 120px;
}

.schematic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    width: 100%;
    height: 100%;
}

.schematic-node {
    width: 30px;
    height: 30px;
    background-color: var(--bg-panel-website);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    justify-self: center;
    align-self: center;
    z-index: 2;
}

    .schematic-node:nth-of-type(1) {
        grid-area: 1 / 2;
    }

    .schematic-node:nth-of-type(2) {
        grid-area: 2 / 1;
    }

    .schematic-node:nth-of-type(3) {
        grid-area: 2 / 3;
    }

    .schematic-node:nth-of-type(4) {
        grid-area: 3 / 2;
    }

.schematic-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.schematic-result .schematic-node:nth-of-type(3) {
    border-color: var(--color-critical);
}

.schematic-result .result-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: var(--color-critical);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 3;
}

.schematic-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 1;
}

    .schematic-svg-overlay path {
        fill: none;
        stroke-width: 2;
        stroke: var(--border-color);
        transition: stroke-dashoffset 0.5s ease-in-out;
    }

        .schematic-svg-overlay path.is-violating {
            stroke: var(--color-critical);
        }

/* --- Data Scanner (SQL Guardian) --- */
.data-scanner-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.scanner-table {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scanner-row {
    display: flex;
    gap: 8px;
}

.scanner-cell {
    width: 80px;
    height: 25px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    transition: background-color 0.2s ease;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-primary);
    box-shadow: 0 0 10px var(--accent-primary);
    animation: scan-table 4s ease-in-out infinite;
}

@keyframes scan-table {
    0% {
        top: 10%;
    }

    50% {
        top: 90%;
    }

    100% {
        top: 10%;
    }
}

.scanner-cell.is-violation {
    animation: flash-red 4s ease-in-out infinite;
}

@keyframes flash-red {
    0%, 45%, 55%, 100% {
        background-color: var(--bg-panel-website);
        border-color: var(--border-color);
    }

    50% {
        background-color: var(--color-critical);
        border-color: var(--color-critical);
    }
}

/* --- Version Detective Visual --- */
.version-visual {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    padding: 20px;
}

.commit-stack {
    position: relative;
    width: 60px;
    height: 100px;
}

.commit-block {
    position: absolute;
    width: 100%;
    height: 20px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    animation: process-commit 6s linear infinite;
}

    .commit-block:nth-child(1) {
        animation-delay: 0s;
    }

    .commit-block:nth-child(2) {
        animation-delay: -1.5s;
    }

    .commit-block:nth-child(3) {
        animation-delay: -3.0s;
    }

    .commit-block:nth-child(4) {
        animation-delay: -4.5s;
    }

.rulebook-gate {
    width: 20px;
    height: 120px;
    background-color: var(--border-color);
    border-radius: 4px;
    animation: gate-flicker 6s steps(1, end) infinite;
}

.version-output {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    color: transparent;
}

    .version-output::before {
        content: "1.3.0";
        animation: version-bump 6s steps(1, end) infinite;
        color: var(--text-header);
    }

@keyframes process-commit {
    0% {
        top: 0;
        left: 0;
        opacity: 1;
    }

    20% {
        top: 80px;
        left: 0;
        opacity: 1;
    }

    25% {
        top: 80px;
        left: 50px;
        opacity: 1;
    }

    30% {
        top: 80px;
        left: 50px;
        opacity: 0;
    }

    90% {
        top: 0;
        left: 0;
        opacity: 0;
    }

    100% {
        top: 0;
        left: 0;
        opacity: 1;
    }
}

@keyframes gate-flicker {
    0%, 24%, 50%, 74%, 100% {
        background-color: var(--border-color);
    }

    25%, 49% {
        background-color: var(--color-good);
    }

    75%, 99% {
        background-color: var(--color-warning);
    }
}

@keyframes version-bump {
    0%, 24% {
        content: "1.3.0";
    }

    25%, 74% {
        content: "1.3.1";
    }

    75%, 100% {
        content: "1.4.0";
    }
}

/* --- Pipeline Gate Controller Visual --- */
.gate-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pipeline-track {
    width: 80%;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.pipeline-flow {
    position: absolute;
    top: 50%;
    left: 10%;
    width: 0%;
    height: 10px;
    background-color: var(--accent-primary);
    border-radius: 5px;
    transform: translateY(-50%);
    animation: flow-pipeline-dam 8s ease-in-out infinite;
    z-index: 2;
}

.gate-post {
    position: absolute;
    width: 10px;
    height: 100px;
    background-color: var(--text-secondary);
    border-radius: 3px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-origin: center center;
    animation: control-dam 8s ease-in-out infinite;
    z-index: 3;
}

.gate-arm {
    display: none;
}

.external-system {
    position: absolute;
    top: 10%;
    left: 75%;
    width: 60px;
    height: 40px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    animation: api-flicker-dam 8s ease-in-out infinite;
    z-index: 1;
}

.check-signal {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: send-signal-dam 8s ease-in-out infinite;
    z-index: 4;
}

@keyframes flow-pipeline-dam {
    0% {
        width: 0%;
    }

    20% {
        width: 40%;
    }

    21%, 69% {
        width: 40%;
    }

    90% {
        width: 80%;
    }

    100% {
        width: 80%;
    }
}

@keyframes control-dam {
    0%, 20% {
        transform: translate(-50%, -50%) scaleY(1);
    }

    21%, 69% {
        transform: translate(-50%, -50%) scaleY(1);
    }

    70%, 100% {
        transform: translate(-50%, -50%) scaleY(0);
    }
}

@keyframes send-signal-dam {
    0%, 24% {
        opacity: 0;
        transform: translate(-50%, -50%);
    }

    25% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    35% {
        opacity: 1;
        transform: translate(110px, -60px);
    }

    36%, 54% {
        opacity: 1;
        transform: translate(110px, -60px);
    }

    55% {
        opacity: 1;
        transform: translate(110px, -60px);
    }

    65% {
        opacity: 0;
        transform: translate(-50%, -50%);
    }

    66%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%);
    }
}

@keyframes api-flicker-dam {
    0%, 39%, 46%, 100% {
        border-color: var(--border-color);
    }

    40%, 45% {
        border-color: var(--accent-orange);
    }
}

/* --- Mobile Adapter Generator Visual --- */
.adapter-gen-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

    .adapter-gen-visual .code-source, .adapter-gen-visual .code-target, .adapter-gen-visual .adapter-processor {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--font-mono);
        border-radius: 6px;
        z-index: 2;
    }

    .adapter-gen-visual .code-source, .adapter-gen-visual .code-target {
        width: 80px;
        height: 60px;
        background-color: var(--bg-panel-website);
        border: 1px solid var(--border-color);
        color: var(--text-secondary);
    }

    .adapter-gen-visual .code-source {
        top: 50%;
        left: 10%;
        transform: translateY(-50%);
        border-color: var(--accent-primary);
        color: var(--accent-primary);
    }

    .adapter-gen-visual .adapter-processor {
        top: 50%;
        left: 50%;
        width: 40px;
        height: 40px;
        background-color: var(--accent-orange);
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .adapter-gen-visual .swift-code {
        top: 15%;
        right: 10%;
    }

    .adapter-gen-visual .kotlin-code {
        bottom: 15%;
        right: 10%;
    }

    .adapter-gen-visual .line {
        position: absolute;
        background-color: var(--border-color);
        height: 2px;
        transform-origin: left center;
        z-index: 1;
    }

    .adapter-gen-visual .line-left {
        width: 25%;
        top: 50%;
        left: 25%;
    }

    .adapter-gen-visual .spark {
        position: absolute;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        opacity: 0;
        z-index: 3;
    }

    .adapter-gen-visual .spark-blue {
        background-color: var(--accent-primary);
        animation: travel-blue-spark 5s ease-in-out infinite;
    }

    .adapter-gen-visual .spark-green-1, .adapter-gen-visual .spark-green-2 {
        background-color: var(--color-good);
    }

    .adapter-gen-visual .spark-green-1 {
        animation: travel-green-spark-1 5s ease-in-out infinite;
    }

    .adapter-gen-visual .spark-green-2 {
        animation: travel-green-spark-2 5s ease-in-out infinite;
    }

@keyframes travel-blue-spark {
    0% {
        top: 50%;
        left: 18%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    40% {
        top: 50%;
        left: 50%;
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    41%, 100% {
        opacity: 0;
    }
}

@keyframes travel-green-spark-1 {
    0%, 40% {
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
    }

    41% {
        opacity: 1;
    }

    80% {
        top: 22%;
        left: 82%;
        opacity: 1;
    }

    81%, 100% {
        opacity: 0;
    }
}

@keyframes travel-green-spark-2 {
    0%, 40% {
        top: 50%;
        left: 50%;
        opacity: 0;
        transform: translate(-50%, -50%);
    }

    41% {
        opacity: 1;
    }

    80% {
        top: 78%;
        left: 82%;
        opacity: 1;
    }

    81%, 100% {
        opacity: 0;
    }
}

/* --- Design Token Generator Visual --- */
.token-gen-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.token-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

    .token-svg-overlay line {
        stroke: var(--border-color);
        stroke-width: 2px;
    }

.design-tool-source {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--accent-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

    .design-tool-source .material-icons-outlined {
        font-size: 2.5rem;
        color: var(--accent-primary);
    }

.code-output {
    position: absolute;
    right: 10%;
    width: 80px;
    height: 40px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    z-index: 2;
    transition: border-color 0.2s ease-in-out;
}

.web-code {
    top: 15%;
    animation: flash-web 6s ease-in-out infinite;
}

.ios-code {
    top: 50%;
    transform: translateY(-50%);
    animation: flash-ios 6s ease-in-out infinite;
}

.android-code {
    bottom: 15%;
    animation: flash-android 6s ease-in-out infinite;
}

.token-spark {
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    opacity: 0;
    will-change: transform;
    z-index: 3;
}

@keyframes flash-web {
    0%, 24%, 30%, 100% {
        border-color: var(--border-color);
    }

    25%, 29% {
        border-color: var(--accent-orange);
    }
}

@keyframes flash-ios {
    0%, 57%, 63%, 100% {
        border-color: var(--border-color);
    }

    58%, 62% {
        border-color: var(--accent-orange);
    }
}

@keyframes flash-android {
    0%, 90%, 96%, 100% {
        border-color: var(--border-color);
    }

    91%, 95% {
        border-color: var(--accent-orange);
    }
}

/* --- Scribe Visual --- */
.scribe-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 20px;
}

.source-artifact {
    width: 50px;
    height: 50px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    color: var(--text-secondary);
    font-size: 0.8rem;
    position: absolute;
    left: 15%;
    opacity: 0;
    animation: scribe-source-move 7s ease-in-out infinite;
}

.artifact-1 {
    top: 15%;
    animation-delay: 0s;
}

.artifact-2 {
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.artifact-3 {
    bottom: 15%;
    animation-delay: 2s;
}

.scribe-processor {
    width: 10px;
    height: 80px;
    background-color: var(--accent-orange);
    border-radius: 5px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: scribe-processor-pulse 7s ease-in-out infinite;
}

.generated-doc {
    width: 80px;
    height: 100px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    position: absolute;
    right: 15%;
    padding: 10px;
}

.doc-line {
    width: 100%;
    height: 4px;
    background-color: var(--text-secondary);
    margin-bottom: 8px;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    animation: scribe-write-line 7s ease-in-out infinite;
}

    .doc-line:nth-child(1) {
        animation-delay: 0s;
    }

    .doc-line:nth-child(2) {
        animation-delay: 1s;
    }

    .doc-line:nth-child(3) {
        animation-delay: 2s;
    }

@keyframes scribe-source-move {
    0% {
        opacity: 0;
        left: 15%;
    }

    10% {
        opacity: 1;
    }

    40% {
        opacity: 1;
        left: 45%;
    }

    41%, 100% {
        opacity: 0;
    }
}

@keyframes scribe-processor-pulse {
    0%, 100% {
        box-shadow: none;
    }

    50% {
        box-shadow: 0 0 15px var(--accent-orange);
    }
}

@keyframes scribe-write-line {
    0%, 40% {
        transform: scaleX(0);
    }

    60% {
        transform: scaleX(1);
    }

    100% {
        transform: scaleX(1);
    }
}

/* --- Conductor Visual --- */
.conductor-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.pipeline-file {
    width: 80px;
    height: 100px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px;
}

.file-line {
    width: 100%;
    height: 4px;
    background-color: var(--text-secondary);
    margin-bottom: 8px;
    border-radius: 2px;
}

    .file-line:nth-child(2) {
        width: 80%;
    }

    .file-line:nth-child(3) {
        width: 90%;
    }

    .file-line:nth-child(4) {
        width: 60%;
    }

.conductor-arrow {
    font-family: 'Material Icons Outlined';
    font-size: 3rem;
    color: var(--accent-orange);
    animation: conductor-scan 5s ease-in-out infinite;
}

    .conductor-arrow::before {
        content: 'arrow_forward';
    }

.graph-display {
    position: relative;
    width: 120px;
    height: 120px;
}

.graph-node {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    opacity: 0;
    animation: node-appear 5s ease-in-out infinite;
}

.node-a {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.5s;
}

.node-b {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 2.0s;
}

.node-c {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 2.5s;
}

.node-d {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3.0s;
}

.graph-svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

    .graph-svg-overlay line {
        stroke: var(--border-color);
        stroke-width: 2;
        stroke-dasharray: 5;
        animation: draw-graph-line 5s ease-in-out infinite;
    }

    .graph-svg-overlay .line-ab {
        animation-delay: 2.0s;
    }

    .graph-svg-overlay .line-ac {
        animation-delay: 2.5s;
    }

    .graph-svg-overlay .line-cd {
        animation-delay: 3.0s;
    }

@keyframes conductor-scan {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }

    20% {
        opacity: 1;
        transform: scale(1.2);
    }

    30%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
}

@keyframes node-appear {
    0%, 29% {
        opacity: 0;
        border-color: var(--border-color);
    }

    30%, 90% {
        opacity: 1;
        border-color: var(--border-color);
    }

    91%, 95% {
        border-color: var(--accent-orange);
    }

    96%, 100% {
        opacity: 0;
        border-color: var(--border-color);
    }
}

@keyframes draw-graph-line {
    0% {
        stroke-dashoffset: 1000;
    }

    30% {
        stroke-dashoffset: 1000;
    }

    50% {
        stroke-dashoffset: 0;
    }

    90% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1000;
    }
}

/* =================================================================
   19. SOLUTIONS PAGE STYLES - DEFINITIVE LAYOUT FIX
================================================================= */
.solution-section {
    max-width: 1000px;
    margin: 0 auto 80px auto;
    padding: 0 24px;
}

.solution-headline {
    font-size: 2rem;
    color: var(--text-header);
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 16px;
}

    .solution-headline::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background-color: var(--accent-orange);
    }

.solution-hero-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.solution-card {
    display: grid;
    /* The FIX: Explicitly define areas and columns on the base class */
    grid-template-columns: 300px 1fr;
    grid-template-areas: "visual content";
    gap: 32px;
    align-items: center;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

    .solution-card:hover {
        transform: translateY(-5px);
    }

    .solution-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse 80% 40% at 50% -10%, rgba(0, 184, 212, 0.1), transparent);
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
        pointer-events: none;
    }

    .solution-card:hover::after {
        opacity: 1;
    }

    /* --- Staggered Layout Logic (Simplified & Corrected) --- */
    .solution-card:nth-child(even) {
        grid-template-columns: 1fr 300px;
        grid-template-areas: "content visual";
    }

        .solution-card:nth-child(even) .solution-card-content {
            text-align: right;
        }

        .solution-card:nth-child(even) .learn-more-link {
            justify-content: flex-end;
        }

.stagger-reverse .solution-card:nth-child(odd) {
    grid-template-columns: 1fr 300px;
    grid-template-areas: "content visual";
}

    .stagger-reverse .solution-card:nth-child(odd) .solution-card-content {
        text-align: right;
    }

    .stagger-reverse .solution-card:nth-child(odd) .learn-more-link {
        justify-content: flex-end;
    }

.stagger-reverse .solution-card:nth-child(even) {
    grid-template-columns: 300px 1fr;
    grid-template-areas: "visual content";
}

    .stagger-reverse .solution-card:nth-child(even) .solution-card-content {
        text-align: left;
    }

    .stagger-reverse .solution-card:nth-child(even) .learn-more-link {
        justify-content: flex-start;
    }

.solution-card-visual {
    height: 180px;
    background-color: var(--bg-main-website);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    grid-area: visual; /* Assign to the grid area */
}

    .solution-card-visual .risk-trend-visual {
        width: 100%;
        height: 100%;
    }

    .solution-card-visual .governance-schematic {
        justify-content: space-around;
        padding: 20px;
    }

.solution-card-content {
    grid-area: content; /* Assign to the grid area */
}

    .solution-card-content h3 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        color: var(--accent-primary);
    }

    .solution-card-content p {
        color: var(--text-primary);
        margin-bottom: 24px;
        max-width: 600px;
    }

/* =================================================================
   20. VISUAL TWEAKS & CORRECTIONS
================================================================= */
.solution-card-visual .schematic-icon {
    transform: translateX(5px) !important;
}

.solution-card-visual .result-icon {
    transform: translate(-50%, -50%) translateX(0px);
}

/* =================================================================
   21. SOLUTIONS INDEX PAGE STYLES
================================================================= */
.solution-index-bridge-text {
    color: var(--text-primary);
    max-width: 800px;
    margin: 32px auto 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

    .solution-index-bridge-text strong {
        color: var(--accent-orange);
        font-weight: 600;
    }

.solution-index-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 24px;
}

.solution-brief-card {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 48px;
    margin-bottom: 32px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

    .solution-brief-card:last-child {
        margin-bottom: 0;
    }

    .solution-brief-card:hover {
        transform: translateY(-5px);
    }

    .solution-brief-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(ellipse 80% 40% at 50% -10%, rgba(0, 184, 212, 0.15), transparent);
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
        pointer-events: none;
    }

    .solution-brief-card:hover::after {
        opacity: 1;
    }

    .solution-brief-card h2 {
        font-size: 1rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .solution-brief-card h3 {
        font-size: 2.2rem;
        color: var(--text-header);
        font-style: italic;
        margin-bottom: 24px;
        line-height: 1.3;
    }

    .solution-brief-card p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--text-primary);
    }

    .solution-brief-card .suite-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 24px;
        font-size: 1.1rem;
        font-weight: bold;
        color: var(--accent-primary);
    }

    .solution-brief-card:hover .suite-link {
        color: var(--accent-hover);
    }

    .solution-brief-card .suite-link .material-icons-outlined {
        transition: transform 0.2s ease-in-out;
    }

    .solution-brief-card:hover .suite-link .material-icons-outlined {
        transform: translateX(4px);
    }

/* =================================================================
   22. PRICING PAGE & CALCULATOR STYLES
================================================================= */
.pricing-calculator-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px 64px 48px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 48px;
    align-items: start;
}

.pricing-calculator {
    grid-column: 1 / 2;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
}

.calculator-inputs {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.input-group {
    display: flex;
    flex-direction: column;
}

    .input-group label {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 8px;
    }

    .input-group input {
        background-color: var(--bg-main-website);
        border: 1px solid var(--border-color);
        color: var(--text-primary);
        padding: 10px;
        border-radius: 4px;
        font-family: var(--font-mono);
        font-size: 1.1rem;
        width: 200px;
    }

.suite-selector {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background-color: var(--bg-main-website);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 24px;
}

.suite-selector-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 8px;
}

.suite-selector-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    align-items: center;
}

.suite-checkbox-group {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

    .suite-checkbox-group label {
        cursor: pointer;
    }

    .suite-checkbox-group span {
        font-size: 1rem;
        color: var(--text-secondary);
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .suite-checkbox-group .suite-icon {
        font-size: 1.3rem;
    }

[data-suite-icon="architect"] {
    color: var(--path-color-1) !important;
}

[data-suite-icon="security"] {
    color: var(--path-color-5) !important;
}

[data-suite-icon="management"] {
    color: var(--path-color-2) !important;
}

[data-suite-icon="engineering"] {
    color: var(--path-color-4) !important;
}

.pricing-table-wrapper {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

    .pricing-table th, .pricing-table td {
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
        white-space: nowrap;
    }

    .pricing-table tr > th:first-child,
    .pricing-table tr > td:first-child {
        width: 35%;
    }


    .pricing-table th {
        font-size: 0.8rem;
        color: var(--text-secondary);
        text-transform: uppercase;
    }

    .pricing-table td {
        font-size: 0.9rem;
        font-family: var(--font-mono);
        color: var(--text-primary);
    }

    .pricing-table .tool-name-cell {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
    }

        .pricing-table .tool-name-cell label[for] {
            cursor: pointer;
        }

.tool-info-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    margin: 0;
    line-height: 1;
}

    .tool-info-btn:hover {
        color: var(--accent-primary);
    }

.pricing-table .suite-icons-cell .icon-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pricing-table .suite-icons-cell .material-icons-outlined {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
}

.pricing-table .committers-cell input {
    width: 60px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.live-quote-summary-wrapper {
    grid-column: 2 / 3;
    position: sticky;
    top: calc(var(--header-height) + 48px);
}

.live-quote-summary {
    background-color: var(--bg-panel-website);
    border: 1px solid var(--accent-primary);
    box-shadow: 0 0 20px rgba(0, 184, 212, 0.2);
    border-radius: 8px;
    padding: 32px;
}

.quote-line-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

.platform-discount {
    color: var(--color-good);
    display: none;
}

.quote-total {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-header);
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-bottom: 24px;
}

.quote-cta {
    width: 100%;
}

.licensing-faq {
    grid-column: 1 / 3;
    max-width: 800px;
    margin: 0 auto;
}

    .licensing-faq dl {
        padding: 0;
    }

    .licensing-faq dt {
        font-size: 1.2rem;
        margin-top: 24px;
    }

    .licensing-faq dd {
        margin: 8px 0 0 0;
        color: var(--text-secondary);
    }

/* --- Row Flash Animation --- */
@keyframes row-flash-architect {
    from {
        background-color: rgba(0, 184, 212, 0.2);
    }

    to {
        background-color: transparent;
    }
}

@keyframes row-flash-security {
    from {
        background-color: rgba(255, 152, 0, 0.2);
    }

    to {
        background-color: transparent;
    }
}

@keyframes row-flash-management {
    from {
        background-color: rgba(156, 39, 176, 0.2);
    }

    to {
        background-color: transparent;
    }
}

@keyframes row-flash-engineering {
    from {
        background-color: rgba(76, 175, 80,.2);
    }

    to {
        background-color: transparent;
    }
}

.row-flash-architect {
    animation: row-flash-architect 1.5s ease-out;
}

.row-flash-security {
    animation: row-flash-security 1.5s ease-out;
}

.row-flash-management {
    animation: row-flash-management 1.5s ease-out;
}

.row-flash-engineering {
    animation: row-flash-engineering 1.5s ease-out;
}

/* --- Modal Styles --- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .modal-backdrop.visible {
        display: flex;
        opacity: 1;
    }

.modal-content {
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

    .modal-content h1 {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .modal-content .material-icons-outlined {
        font-size: 2.5rem;
        color: var(--accent-primary);
    }

    .modal-content p {
        color: var(--text-primary);
    }

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 2rem;
}

    .modal-close-btn:hover {
        color: var(--text-primary);
    }

/* --- Reusable Toggle Switch Component --- */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #4f4f4f;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 24px;
}

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .toggle-slider {
    background-color: var(--accent-primary);
}

    input:checked + .toggle-slider:before {
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
/* =================================================================
   23. SQL SCHEMA GENERATOR VISUAL
================================================================= */
.schema-gen-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.code-representation {
    width: 90px;
    height: 100px;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 10px;
}

    .code-representation .code-line {
        width: 100%;
        height: 4px;
        background-color: var(--text-secondary);
        margin-bottom: 8px;
        border-radius: 2px;
    }

        .code-representation .code-line:nth-child(2) {
            width: 80%;
            animation: code-change 6s ease-in-out infinite;
        }

.db-representation {
    width: 70px;
    height: 90px;
    position: relative;
}
    /* Ellipse for top of cylinder */
    .db-representation::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 20px;
        background-color: var(--bg-panel-website);
        border: 1px solid var(--border-color);
        border-radius: 50%;
    }

    .db-representation .db-layer {
        width: 100%;
        height: 25px;
        background-color: var(--bg-panel-website);
        border: 1px solid var(--border-color);
        border-top: none;
        position: absolute;
    }

        .db-representation .db-layer:nth-child(1) {
            top: 10px;
        }

        .db-representation .db-layer:nth-child(2) {
            top: 35px;
        }

        .db-representation .db-layer:nth-child(3) {
            top: 60px;
            border-bottom-left-radius: 50% 10px;
            border-bottom-right-radius: 50% 10px;
            animation: db-mismatch 6s ease-in-out infinite;
        }

.diff-arrow {
    font-family: 'Material Icons Outlined';
    font-size: 3rem;
    color: var(--accent-orange);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: diff-pulse 6s ease-in-out infinite;
}

    .diff-arrow::before {
        content: 'arrow_right';
    }

.sql-script {
    position: absolute;
    right: -20px; /* Start off-screen */
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    padding: 8px;
    background-color: #111;
    border: 1px solid var(--accent-primary);
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--accent-primary);
    text-align: center;
    opacity: 0;
    animation: script-appear 6s ease-in-out infinite;
}

@keyframes code-change {
    0%, 100% {
        width: 80%;
        background-color: var(--text-secondary);
    }

    20% {
        width: 100%;
        background-color: var(--accent-orange);
    }
    /* The change happens */
    80%, 99% {
        width: 100%;
        background-color: var(--accent-orange);
    }
}

@keyframes db-mismatch {
    0%, 19%, 100% {
        border-color: var(--border-color);
    }

    20%, 99% {
        border-color: var(--color-critical);
    }
    /* DB is now out of sync */
}

@keyframes diff-pulse {
    0%, 30%, 60%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }

    40% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
    /* It's diffing */
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes script-appear {
    0%, 50% {
        opacity: 0;
        right: -20px;
    }

    65% {
        opacity: 1;
        right: 10px;
    }
    /* It appears */
    90% {
        opacity: 1;
        right: 10px;
    }

    100% {
        opacity: 0;
    }
}

/* =================================================================
   23. GETTING STARTED PAGE STYLES
================================================================= */
.getting-started-guide {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px 64px 24px;
}

.guide-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    margin-bottom: 64px;
    align-items: start;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--border-color);
    text-align: center;
    line-height: 1;
}

.step-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-header);
}

.step-content p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 24px;
    max-width: 700px;
}

.step-content .code-block {
    max-width: 700px;
}

.callout-box {
    display: flex;
    align-items: start;
    gap: 16px;
    background-color: rgba(0, 0, 0, 0.2);
    border-left: 3px solid var(--accent-orange);
    padding: 16px;
    margin-top: 24px;
    max-width: 700px;
    border-radius: 0 4px 4px 0;
}

    .callout-box .material-icons-outlined {
        color: var(--accent-orange);
    }

    .callout-box p {
        font-size: 0.9rem;
        color: var(--text-secondary);
        margin-bottom: 0;
    }

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
}

.screenshot-container img {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 12px;
}

.screenshot-caption {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0;
}

    .screenshot-caption strong {
        color: var(--text-primary);
        font-weight: 600;
    }

.guide-next-steps {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 48px;
    margin-top: 64px;
}

    .guide-next-steps h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .guide-next-steps p {
        max-width: 600px;
        margin: 0 auto 32px auto;
        font-size: 1.1rem;
        color: var(--text-primary);
    }

/* =================================================================
   24. IMAGE MODAL STYLES
================================================================= */
.enlargeable-image {
    cursor: zoom-in;
    transition: transform 0.2s ease-in-out;
}

    .enlargeable-image:hover {
        transform: scale(1.02);
        box-shadow: 0 0 15px rgba(0, 184, 212, 0.3);
    }

.image-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

    .image-modal-backdrop.visible {
        display: flex;
        opacity: 1;
    }

.image-modal-content {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.image-modal-backdrop.visible .image-modal-content {
    transform: scale(1);
}

.image-modal-close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--text-secondary);
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

    .image-modal-close-btn:hover {
        color: var(--text-primary);
    }
/* =================================================================
   25. COMPANY PAGE STYLES
================================================================= */
.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 48px auto 0 auto;
}

.founder-card {
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
}

.founder-name {
    font-size: 1.5rem;
    color: var(--text-header);
    margin-bottom: 4px;
}

.founder-title {
    font-size: 1rem;
    color: var(--accent-orange);
    margin-bottom: 16px;
    font-style: italic;
}

.founder-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =================================================================
   26. CONTACT PAGE STYLES
================================================================= */
.contact-page-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-content h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.contact-subheadline {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 48px;
}

.briefing-is, .briefing-is-not {
    margin-bottom: 32px;
}

    .briefing-is h3, .briefing-is-not h3 {
        font-size: 1.2rem;
        margin-bottom: 16px;
        color: var(--text-header);
    }

    .briefing-is ul, .briefing-is-not ul {
        list-style: none;
        padding-left: 0;
    }

        .briefing-is ul li, .briefing-is-not ul li {
            display: flex;
            align-items: start;
            gap: 12px;
            margin-bottom: 12px;
            color: var(--text-secondary);
        }

            .briefing-is ul li .material-icons-outlined {
                color: var(--color-good);
            }

            .briefing-is-not ul li .material-icons-outlined {
                color: var(--color-critical);
            }

.contact-form-wrapper {
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 32px;
}

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 24px;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        background-color: var(--bg-main-website);
        border: 1px solid var(--border-color);
        color: var(--text-primary);
        padding: 12px;
        border-radius: 4px;
        font-family: var(--font-sans);
        font-size: 1rem;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-primary);
            box-shadow: 0 0 8px rgba(0, 184, 212, 0.3);
        }

.form-submit-btn {
    width: 100%;
    margin-top: 16px;
}
/* =================================================================
   27. HUD INTERACTIVITY & FLYOUT MENUS (REVISED)
================================================================= */

/* --- Base Navigation Item Styling --- */
.main-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 22px 0; /* Increased vertical padding for a larger hover target */
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

    .main-nav .nav-link:hover {
        color: var(--text-primary);
    }

    .main-nav .nav-link .dropdown-icon {
        font-size: 1.2rem;
        transition: transform 0.2s ease-in-out;
    }

/* --- Dropdown Container & Primary Panel --- */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    padding: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.dropdown:hover > .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown:hover > .nav-link .dropdown-icon {
    transform: rotate(180deg);
}

/* --- Primary Panel Item Styling (Categories) --- */
.dropdown-content > .flyout {
    position: relative; /* This is the anchor for the flyout panel */
}

    .dropdown-content > a,
    .dropdown-content > .flyout > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        color: var(--text-secondary);
        border-radius: 4px;
        white-space: nowrap;
    }

        .dropdown-content > a:hover,
        .dropdown-content > .flyout:hover > a {
            background-color: var(--border-color);
            color: var(--text-header);
        }

/* --- Flyout (Secondary) Panel Styling --- */
.flyout-content {
    display: none; /* Hidden by default */
    position: absolute;
    top: -9px; /* Align with parent item, accounting for padding */
    left: 100%;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    min-width: 280px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    padding: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.flyout:hover > .flyout-content {
    display: block;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.flyout-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-secondary);
    border-radius: 4px;
    white-space: nowrap;
}

    .flyout-content a:hover {
        background-color: var(--border-color);
        color: var(--text-header);
    }

    .flyout-content a .material-icons-outlined {
        color: var(--accent-primary);
    }

/* --- Mobile Navigation --- */
.mobile-nav-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 1002;
}

    .mobile-nav-toggle .icon-close {
        display: none;
    }

.main-nav.mobile-active .icon-menu {
    display: none;
}

.main-nav.mobile-active .icon-close {
    display: block;
}

.flyout > a > span:first-child {
    flex-grow: 1;
}

.dropdown-content > a > span:first-child {
    flex-grow: 1;
}

/* =================================================================
   28. RESPONSIVE STYLES
================================================================= */
@media (max-width: 1024px) {
    .contact-page-layout {
        grid-template-columns: 1fr;
    }

    .founder-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 300px;
        height: 100vh;
        background-color: var(--bg-panel-website);
        padding-top: var(--header-height);
        transition: right 0.3s ease-in-out;
        z-index: 1001;
    }

        .main-nav.mobile-active {
            right: 0;
            box-shadow: -10px 0 20px rgba(0, 0, 0, 0.3);
        }

        .main-nav ul {
            flex-direction: column;
            gap: 0;
            padding: 24px;
        }

    .mobile-nav-toggle {
        display: block;
    }

    .header-actions .button-secondary {
        display: none; /* Hide one button on smaller screens for space */
    }

    /* Mobile dropdown behavior */
    .dropdown-content {
        display: block;
        position: static;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        margin-top: 8px;
        opacity: 1;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .dropdown.mobile-dd-active .dropdown-content {
        max-height: 500px; /* Animate open */
    }

    .dropdown:hover .dropdown-content {
        /* Disable hover behavior on mobile */
        display: block;
    }

    .dropdown .nav-link .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .dropdown.mobile-dd-active .nav-link .dropdown-icon {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .header-actions .button-primary {
        display: none; /* Hide all buttons on very small screens */
    }
}
/* =================================================================
   29. IMAGE GALLERY STYLES (for Getting Started page)
================================================================= */
.image-gallery {
    margin-top: 24px;
}

.featured-image-container {
    margin-bottom: 24px;
}

    .featured-image-container img {
        width: 100%;
        border: 1px solid var(--border-color);
        border-radius: 6px;
        margin-bottom: 12px;
    }

.featured-image-caption {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 0;
    min-height: 40px; /* Reserve space for two lines of text to prevent layout shift */
}

    .featured-image-caption strong {
        color: var(--text-primary);
        font-weight: 600;
    }

.thumbnail-strip {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap; /* Allow thumbnails to wrap on smaller screens if needed */
}

.thumbnail-image {
    width: 120px;
    height: auto;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease-in-out;
}

    .thumbnail-image:hover {
        opacity: 1;
        transform: scale(1.05);
        border-color: var(--text-primary);
    }

    .thumbnail-image.active {
        opacity: 1;
        border-color: var(--accent-primary);
        transform: scale(1.05);
        box-shadow: 0 0 15px rgba(0, 184, 212, 0.4);
    }

/* --- Responsive adjustments for the gallery --- */
@media (max-width: 768px) {
    .thumbnail-strip {
        /* On smaller screens, allow the strip to be scrolled horizontally */
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 16px; /* Add padding for the scrollbar */
        /* Hide scrollbar for a cleaner look but keep it functional */
        -ms-overflow-style: none; /* IE and Edge */
        scrollbar-width: none; /* Firefox */
    }

        .thumbnail-strip::-webkit-scrollbar {
            display: none; /* Chrome, Safari, and Opera */
        }

    .thumbnail-image {
        width: 100px; /* Make thumbnails slightly smaller on mobile */
    }
}

/* =================================================================
   30. GETTING STARTED PAGE - PROGRESSIVE DISCLOSURE
================================================================= */
.guide-step details {
    margin-top: 24px;
}

.guide-step .details-summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--accent-primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none; /* Hide the default triangle marker in Firefox */
}

    .guide-step .details-summary::-webkit-details-marker {
        display: none; /* Hide the default triangle marker in Chrome/Safari */
    }

    .guide-step .details-summary::before {
        content: '▶';
        font-size: 0.8em;
        transform: rotate(0deg);
        transition: transform 0.2s ease-in-out;
    }

details[open] > .details-summary::before {
    transform: rotate(90deg);
}

.guide-step .details-content {
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.nav-link-highlight {
    color: var(--accent-orange) !important;
    position: relative;
}

    .nav-link-highlight::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 18px; /* Positions the line just below the text, inside the padded area */
        width: 100%;
        height: 2px;
        background-color: var(--accent-orange);
    }

/* =================================================================
   31. RELATED READING SECTION
================================================================= */
.related-reading-section {
    max-width: 1000px;
    margin: 0 auto 64px auto;
    padding: 32px;
    text-align: center;
    background-color: var(--bg-panel-website);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

    .related-reading-section .section-headline {
        font-size: 1.5rem;
        margin-bottom: 16px;
        color: var(--text-primary);
    }

    .related-reading-section .learn-more-link {
        font-size: 1.1rem;
    }

/* =================================================================
   32. COMING SOON & TEASER STYLES
================================================================= */
.coming-soon-banner {
    display: inline-block;
    background-color: rgba(255, 152, 0, 0.1);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.callout-box.interest-cta {
    padding: 24px;
    align-items: center;
    max-width: none;
}

    .callout-box.interest-cta .material-icons-outlined {
        font-size: 2.5rem;
        align-self: flex-start;
    }

.callout-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .callout-content h3 {
        font-size: 1.3rem;
        color: var(--text-header);
        margin: 0;
    }

    .callout-content p {
        font-size: 1rem;
        color: var(--text-primary);
        margin: 0;
    }

    .callout-content a {
        margin-top: 16px;
        align-self: flex-start;
    }
/* =================================================================
   33. SOLUTIONS PAGE ROLLOUT STYLES
================================================================= */

/* Container for the card when unlaunched */
.solution-card.is-unlaunched {
    position: relative;
    /* Mute the card to indicate it's not active yet */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

    /* Hover effect: bring it slightly back to life to encourage clicking */
    .solution-card.is-unlaunched:hover {
        filter: grayscale(20%);
        opacity: 1;
        transform: translateY(-5px);
    }

/* The "Coming Qx 2026" Banner overlay */
.solution-card-banner {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--accent-orange);
    color: #111;
    font-weight: bold;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 5px 30px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Adjust the button style inside unlaunched cards */
.solution-card.is-unlaunched .learn-more-link {
    color: var(--text-secondary);
}

.solution-card.is-unlaunched:hover .learn-more-link {
    color: var(--accent-primary);
}


/* =================================================================
   STYLES SPECIFIC TO THE PRICING PAGE
================================================================== */

/* --- Licensing Model Explanation Section --- */
.licensing-model-section {
    padding: 64px 0;
    border-top: 1px solid var(--border-color-translucent);
}

.licensing-model-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: var(--container-width-large);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.licensing-feature-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

    .licensing-feature-card .feature-icon {
        font-size: 48px;
        color: var(--accent-primary);
        margin-bottom: 16px;
    }

    .licensing-feature-card .feature-title {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--text-primary-inverse);
        margin-bottom: 12px;
    }

    .licensing-feature-card .feature-text {
        color: var(--text-secondary-inverse);
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Specific styling for the list-like paragraphs in the bursting card */
    .licensing-feature-card .bursting-details {
        margin-top: 16px;
    }

        .licensing-feature-card .bursting-details p {
            margin-bottom: 12px;
        }

            .licensing-feature-card .bursting-details p:last-child {
                margin-bottom: 0;
            }

/* --- Architecture Explanation Section --- */
.architecture-explanation-section {
    padding: 80px var(--container-padding);
    background-color: var(--background-panel);
    text-align: center;
}

    .architecture-explanation-section .panel-header {
        max-width: var(--container-width-medium);
        margin: 0 auto;
    }

    .architecture-explanation-section .architecture-text-content {
        max-width: var(--container-width-small);
        margin: 24px auto 0;
        color: var(--text-secondary-inverse);
    }

    .architecture-explanation-section p {
        margin-bottom: 24px;
        font-size: 1.1rem;
        line-height: 1.8;
    }

        .architecture-explanation-section p strong {
            color: var(--text-primary-inverse);
            font-weight: 600;
        }

        .architecture-explanation-section p em {
            color: var(--accent-primary);
            font-style: normal;
        }
