@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=IBM+Plex+Sans:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap');

/* =========================================================================
   VARIABLES & THEMING
   ========================================================================= */
:root {
    /* Phase 2 Brand Tokens */
    --brand-navy: #0B1F3B;
    --brand-blue: #1556A8;
    --brand-teal: #0E8A8A;
    --cta-orange: #E46A2E;
    --cta-orange-dark: #C95722;
    --bg-warm: #F4F1EA;
    --text-strong: #1B2430;
    --text-muted: #5A6678;

    /* Legacy-safe aliases */
    --navy-deep: #060E1C;
    --navy-mid: #102A4B;
    --primary-navy: var(--brand-navy);
    --teal-dark: #0A6B6B;
    --teal-cta: var(--cta-orange);

    --white: #FFFFFF;
    --gray-light: #F4F7FA;
    --gray-mid: #EBF4F6;

    --text-body: var(--text-strong);
    --text-subtle: #98A5B8;
    --text-soft: #6C7891;

    --surface-light: #F8FBFF;
    --surface-card: #FFFFFF;
    --surface-dark: #08172D;
    --surface-dark-soft: #0E223E;
    --border-strong: #CBD5E1;
    --hero-overlay-unified: linear-gradient(
        135deg,
        rgba(11, 31, 59, 0.92) 0%,
        rgba(11, 31, 59, 0.86) 58%,
        rgba(14, 138, 138, 0.34) 100%
    );
    
    --card-border: #E2E8F0;
    --dark-divider: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-main: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Sora', 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;

    /* Legacy variables mapping (temp safety for un-updated components) */
    --brand-green: var(--brand-teal);
    --deep-slate: var(--primary-navy);
    --text-main: var(--text-body);
    --bg-main: var(--white);
    --bg-alt: var(--gray-light);
    
    /* Spacing scale */
    --space-8: 0.5rem;
    --space-16: 1rem;
    --space-24: 1.5rem;
    --space-40: 2.5rem;
    --space-64: 4rem;
    --space-96: 6rem;

    /* Legacy spacing aliases */
    --space-xs: var(--space-8);
    --space-sm: var(--space-16);
    --space-md: var(--space-24);
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================================
   GLOBAL RESET
   ========================================================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.15;
    color: var(--primary-navy);
    margin: 0;
}

h1 { font-size: 56px; font-weight: 800; }
h2 { font-size: 40px; font-weight: 700; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }

.text-small { font-size: 14px; font-weight: 400; }
.eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-teal);
}

@media (max-width: 1024px) {
    h1 { font-size: 38px; }
    h2 { font-size: 30px; }
}

@media (max-width: 768px) {
    h1 { font-size: 30px; }
    h2 { font-size: 26px; }
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Specific Content Images handling per prompt */
.content-img,
.feature-visual img {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    object-fit: cover;
}

/* =========================================================================
   REUSABLE UTILITIES
   ========================================================================= */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xxl) 0;
}

.bg-alt {
    background-color: var(--bg-alt);
}

.text-center {
    text-align: center;
}

.mb-loose {
    margin-bottom: var(--space-xl);
}

.w-full {
    width: 100%;
}

/* Buttons */
/* =========================================================================
   BUTTON SYSTEMS
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    min-height: 48px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--cta-orange);
    color: var(--white) !important;
    box-shadow: 0 4px 14px rgba(228, 106, 46, 0.32);
}

.btn-primary:hover {
    background-color: var(--cta-orange-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--brand-teal) !important;
    border: 2px solid var(--brand-teal);
}

.btn-secondary:hover {
    background-color: var(--brand-teal);
    color: var(--white) !important;
}

.btn-ghost {
    background: transparent;
    color: var(--brand-teal) !important;
    padding: 0;
    min-height: auto;
    font-weight: 600;
}

.btn-ghost::after {
    content: 'â†’';
    margin-left: 6px;
    transition: transform var(--transition-fast);
}

.btn-ghost:hover {
    text-decoration: underline;
}

.btn-ghost:hover::after {
    transform: translateX(4px);
}

/* =========================================================================
   CARD COMPONENT SYSTEM & FORMS
   ========================================================================= */
.service-card {
    background: var(--white);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 32px;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media (max-width: 768px) {
    .service-card {
        padding: 24px;
    }
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.12), rgba(0, 151, 167, 0.12));
    border: 1px solid rgba(0, 194, 203, 0.25);
    color: var(--brand-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.service-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-card-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Forms */
.form-input {
    height: 48px;
    border: 1.5px solid #CBD5E0;
    border-radius: 8px;
    font-size: 16px; /* Prevents iOS Zoom */
    padding: 12px 16px;
    width: 100%;
    color: var(--text-body);
    font-family: var(--font-main);
    transition: all 0.15s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-teal);
    box-shadow: 0 0 0 3px rgba(0, 194, 203, 0.15);
}

/* Typography elements */
.section-subtitle {
    display: block;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-slate);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.125rem;
    color: var(--slate-grey);
    max-width: 700px;
    margin: 0 auto;
}

.highlight-blue {
    color: var(--brand-blue);
}

.highlight-green {
    color: var(--brand-green);
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    color: var(--text-main);
}

/* Hero Value Card & Checks */
.hero-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--brand-green-light);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

/* Hero Specific Glass (Darker for Contrast) */
.hero-glass-card {
    background: rgba(15, 23, 42, 0.85);
    /* Darker Ocean Deep Slate */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white) !important;
}

.hero-glass-card p {
    color: var(--white) !important;
    font-weight: 500;
    /* Slightly heavier for better anti-aliasing on dark bg */
}

.hero-glass-card li {
    color: var(--white) !important;
}

.hero-glass-card:hover .hero-check {
    background: var(--brand-green);
    transform: scale(1.1);
}

.hero-glass-card:hover .hero-check i {
    color: var(--white);
}

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 16px rgba(4, 12, 24, 0.24);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.3s ease, backdrop-filter 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease, padding var(--transition-normal);
    padding: 1rem 0;
}

.header.scrolled {
    padding: 0.75rem 0;
    background: rgba(10, 22, 40, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(4, 12, 24, 0.28);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--deep-slate);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-inc {
    font-weight: 400;
    color: var(--brand-green);
}

/* Simulated swirl logo icon using CSS if image isn't loaded */
.logo-icon-css {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: conic-gradient(var(--brand-blue) 0% 180deg, var(--brand-green) 180deg 360deg);
    display: inline-block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-icon-css {
    transform: rotate(360deg);
}

.nav-list {
    display: flex;
    align-items: stretch;
    gap: var(--space-lg);
    height: 100%;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9375rem;
    position: relative;
    padding-bottom: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-blue);
}

.nav-item:not(:last-child) .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-green);
    transition: width var(--transition-normal);
}

.nav-item:not(:last-child) .nav-link:hover::after,
.nav-item:not(:last-child) .nav-link.active::after {
    width: 100%;
}

.nav-close,
.nav-toggle {
    display: none;
    color: var(--deep-slate);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- DROPDOWN MENU --- */
.dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-wrapper .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background-color: var(--white);
    box-shadow: var(--shadow-xl);
    border-radius: 8px;
    padding: var(--space-sm) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s, visibility 0s ease 0.45s;
    z-index: 150;
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown-wrapper:hover .dropdown-menu {
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, visibility 0s ease 0s;
}

.dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-wrapper:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--brand-blue);
    background-color: var(--bg-main);
    padding-left: 25px;
    /* Subtle hover effect */
}

/* =========================================================================
   HERO / PAGE HEADERS
   ========================================================================= */
.page-header {
    position: relative;
    padding-top: 180px;
    padding-bottom: var(--space-xl);
    background-color: var(--deep-slate);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-header-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
}

.page-header-desc {
    font-size: 1.25rem;
    color: var(--slate-lighter);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero {
    position: relative;
    padding-top: 200px;
    padding-bottom: 100px;
    overflow: hidden;
    color: var(--white);
}

/* Full Bleed Image Background */
@keyframes bgZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(-2%, -2%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

.hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.9;
    will-change: transform;
    animation: bgZoom 15s ease-in-out infinite alternate;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-lighter);
    margin-bottom: var(--space-xl);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-sm);
}

/* =========================================================================
   GENERIC GRID CARDS (Used in Services & BTP Offerings)
   ========================================================================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.info-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-blue-light);
}

.info-icon {
    width: 64px;
    height: 64px;
    background-color: var(--brand-blue-light);
    color: var(--brand-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: var(--space-md);
    transition: all var(--transition-normal);
}

.info-card:hover .info-icon {
    background-color: var(--brand-blue);
    color: var(--white);
    transform: scale(1.1);
}

.info-icon.green {
    background-color: var(--brand-green-light);
    color: var(--brand-green);
}

.info-card:hover .info-icon.green {
    background-color: var(--brand-green);
    color: var(--white);
    transform: scale(1.1);
}

.info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-slate);
    margin-bottom: var(--space-sm);
}

.info-desc {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-top: auto;
}

.info-link i {
    transition: transform var(--transition-fast);
}

.info-link:hover {
    color: var(--brand-blue-hover);
}

.info-link:hover i {
    transform: translateX(5px);
}

/* =========================================================================
   FEATURE SPLIT VISUALS (Left Text / Right Image)
   ========================================================================= */
.feature-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin-bottom: var(--space-xxl);
}

.feature-split.reverse {
    direction: rtl;
}

.feature-split.reverse>* {
    direction: ltr;
    /* Reset content direction */
}

.feature-content h2 {
    font-size: 2rem;
    color: var(--deep-slate);
    margin-bottom: var(--space-md);
}

.feature-content p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.feature-list {
    margin-top: var(--space-md);
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-list i {
    color: var(--brand-green);
    font-size: 24px;
    margin-top: 2px;
}

/* duplicate feature-visual removed */

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--deep-slate);
    color: var(--slate-lightest);
    padding-top: var(--space-xl);
    border-top: 4px solid var(--brand-blue);
}

.footer-container {
    display: flex;
    flex-direction: column;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-logo {
    margin-bottom: var(--space-sm);
    display: inline-block;
    color: white;
}

.footer-description {
    color: var(--slate-light);
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--deep-slate-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background-color: var(--brand-blue);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--slate-light);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brand-green);
}

.footer-bottom {
    padding: var(--space-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--slate-light);
    font-size: 0.875rem;
}

/* =========================================================================
   CONTACT FORM (Re-used)
   ========================================================================= */
.contact-form-wrapper {
    background-color: var(--white);
    padding: var(--space-xl);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--deep-slate);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--slate-lighter);
    border-radius: 6px;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px var(--brand-blue-light);
    background-color: var(--white);
}

/* =========================================================================
   MEDIA QUERIES
   ========================================================================= */
@media screen and (max-width: 992px) {

    .hero-container,
    .feature-split,
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .feature-split.reverse {
        direction: ltr;
    }
}

@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        padding: 4rem 2rem;
        transition: right var(--transition-normal);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.show-menu {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    /* Mobile Dropdown Overrides */
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        padding: 0;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 10px;
    }

    .dropdown-wrapper:hover .dropdown-menu {
        display: block;
    }

    .dropdown-link {
        padding: 8px 0 8px 20px;
    }
}

/* =========================================
   Clients Grid Styling
   ========================================= */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.client-logo-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
    height: 100%;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-blue-light);
}

.client-logo-card img {
    max-width: 160px;
    height: auto;
    max-height: 80px;
    filter: grayscale(100%) opacity(0.6);
    transition: all var(--transition-normal);
    z-index: 1;
}

.client-logo-card:hover img {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

.client-company-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--brand-blue);
    color: var(--white);
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    transition: transform var(--transition-normal);
    z-index: 2;
    transform: translateY(100%);
}

.client-logo-card:hover .client-company-name {
    transform: translateY(0);
}
/* =========================================================================
   NEW: DESKTOP & MOBILE NAVIGATION REBUILD
   ========================================================================= */

/* Desktop Scrolled State */
.header.scrolled-desktop {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header.scrolled-desktop .logo-text,
.header.scrolled-desktop .nav-link {
    color: var(--white) !important;
}

.header.scrolled-desktop .logo-text {
    transition: color var(--transition-normal);
}

/* Nav Chevron Animation */
.nav-chevron {
    transition: transform var(--transition-fast);
}
.dropdown-wrapper:hover .nav-chevron {
    transform: rotate(180deg);
}

/* Optional hero overlap mode enabled with <body class="hero-overlap"> */
body.hero-overlap .header:not(.scrolled-desktop),
body.hero-overlap .navbar:not(.scrolled):not(.scrolled-desktop) {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
body.hero-overlap .header:not(.scrolled-desktop) .nav-link,
body.hero-overlap .header:not(.scrolled-desktop) .logo-text {
    color: var(--white);
}

@media (max-width: 1024px) {
    .desktop-nav, .nav-cta {
        display: none !important;
    }
}
@media (min-width: 1025px) {
    .mobile-toggle {
        display: none !important;
    }
}

/* Mobile Drawer & Overlay */
.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.mobile-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 100vw;
    height: 100vh;
    background: #0A1628;
    z-index: 1100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-drawer.active {
    transform: translateX(0);
}

.mobile-nav-link {
    display: block;
    color: var(--white);
    font-size: 18px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    font-weight: 500;
}

/* Accordions */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.2);
    list-style: none;
    padding: 0;
    margin: 0;
}
.accordion-content li a {
    display: block;
    color: var(--text-subtle);
    font-size: 14px;
    padding: 12px 24px 12px 36px;
    text-decoration: none;
    transition: color 0.2s;
}
.accordion-content li a:hover {
    color: var(--brand-teal);
}
.accordion-toggle {
    cursor: pointer;
}
.accordion-toggle i {
    transition: transform 0.3s ease;
}

/* Explicit text coloration fixes */
.hero-glass-card p, .hero-glass-card li {
    color: var(--white) !important;
}

/* Ensure stats band numbers are white */
.stats-band div {
    color: var(--white);
}


/* =========================================================================
   FIX 8 & 25: GLOBAL OVERLAYS & MOBILE RESPONSIVE
   ========================================================================= */

/* Canonical non-home hero system */
.hero-canonical {
  position: relative;
  background-color: var(--primary-navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 560px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 120px !important;
  padding-bottom: 60px !important;
}

.hero-canonical .hero-unified-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay-unified) !important;
  backdrop-filter: none !important;
}

.hero-canonical .hero-canonical-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-canonical .hero-canonical-eyebrow {
  margin-bottom: 24px;
  display: inline-block;
  color: var(--brand-teal);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-canonical .page-header-title {
  color: #FFFFFF !important;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.8);
}

.hero-canonical .page-header-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.hero-canonical .hero-canonical-cta {
  padding: 16px 32px;
  font-size: 16px;
}

/* Company metrics moved outside hero to preserve hero height parity */
.company-metrics-strip {
  background: rgba(6, 14, 28, 0.98);
  border-top: 1px solid rgba(0, 194, 203, 0.2);
  padding: 32px 0;
}

.company-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.company-metric-value {
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.company-metric-label {
  color: #94A3B8;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 8px;
}

/* Mobile Responsiveness (Fix 25) */
/* 1. Prevent horizontal scroll globally */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* 2. All images responsive */
img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1024px) {
  .hero-canonical {
    min-height: 500px !important;
  }

  .hero-canonical .page-header-title {
    font-size: clamp(36px, 5vw, 46px);
  }

  .hero-canonical .page-header-desc {
    font-size: 17px;
  }

  .company-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

/* 3. Hero backgrounds - no fixed attachment on mobile */
@media (max-width: 768px) {
  [class*="hero"] {
    background-attachment: scroll !important;
  }

  .hero-canonical {
    min-height: 440px !important;
    padding-top: 110px !important;
    padding-bottom: 48px !important;
  }

  .hero-canonical .hero-canonical-eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .hero-canonical .page-header-title {
    margin-bottom: 18px;
    font-size: clamp(30px, 8vw, 36px);
  }

  .hero-canonical .page-header-desc {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero-canonical .hero-canonical-cta {
    width: 100%;
    max-width: 320px;
  }

  .company-metrics-strip {
    padding: 26px 0;
  }

  .company-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .company-metric-value {
    font-size: 32px;
  }

  .home-delivery-brief {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .home-delivery-brief-media,
  .home-delivery-brief-image {
    min-height: 210px;
  }

  .home-delivery-brief-media::after {
    background: linear-gradient(180deg, rgba(3, 11, 22, 0.08) 0%, rgba(3, 11, 22, 0.48) 100%);
  }

  .home-delivery-brief-copy {
    padding: 24px 22px 26px;
    gap: 12px;
  }

  .home-delivery-brief-copy::before {
    inset: 10px;
    border-radius: 18px;
  }

  .home-delivery-brief-kicker {
    font-size: 0.64rem;
    padding: 7px 10px;
  }

  .home-delivery-brief-copy h3 {
    font-size: 1.45rem;
    max-width: none;
  }

  .home-delivery-brief-copy p {
    font-size: 0.92rem;
    line-height: 1.58;
    max-width: none;
  }

  .home-delivery-flow {
    gap: 12px;
  }

  .home-delivery-flow::before {
    left: 18px;
  }

  .home-delivery-flow-item {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .home-delivery-flow-item .home-delivery-number {
    width: 36px;
    height: 36px;
    font-size: 0.78rem;
  }

  .home-delivery-flow-copy {
    padding-top: 2px;
  }

  .home-delivery-flow-copy h4 {
    font-size: 0.98rem;
  }

  .home-delivery-flow-copy p {
    font-size: 0.86rem;
    line-height: 1.5;
  }
}

/* 4. All grid layouts - single column on mobile */
@media (max-width: 640px) {
  .services-grid,
  .capabilities-grid,
  .outcomes-grid,
  .stats-grid,
  .cards-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 5. Stats band - 2 col on mobile */
@media (max-width: 768px) {
  .stats-band {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px;
  }
}

/* 6. Hero content - single column on mobile */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-feature-card {
    display: none; /* Hide glass card on mobile for clean layout */
  }
  .hero-content h1 {
    font-size: 30px !important;
  }
}

/* 7. Form inputs - 16px minimum prevents iOS zoom */
input, select, textarea {
  font-size: 16px !important;
}

/* 8. Footer - single column on mobile */
.footer-sap-col {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .footer-sap-col {
    flex-direction: column;
    gap: 20px;
  }
  .footer-grid, .footer-content {
    grid-template-columns: 1fr !important;
  }
}

footer .footer-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.28fr) minmax(0, 1.82fr) minmax(0, 1.42fr) !important;
  gap: 28px !important;
  align-items: start;
}

footer .footer-brand p {
  max-width: 270px !important;
  font-size: 13.5px;
  line-height: 1.75 !important;
}

footer .footer-col h4 {
  margin-bottom: 18px !important;
  font-size: 15px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
}

footer .footer-col ul {
  gap: 10px !important;
}

footer .footer-col a {
  display: inline-block;
  font-size: 13.25px !important;
  line-height: 1.45 !important;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

footer .footer-sap-col {
  gap: 24px;
}

footer .footer-sap-col > div:last-child ul {
  margin-top: 41px !important;
}

@media (max-width: 1180px) {
  footer .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) !important;
    gap: 32px 40px !important;
  }

  footer .footer-brand p {
    max-width: 320px !important;
  }
}

@media (max-width: 768px) {
  footer .footer-grid {
    grid-template-columns: 1fr !important;
  }

  footer .footer-col a {
    white-space: normal;
  }

  footer .footer-sap-col > div:last-child ul {
    margin-top: 0 !important;
  }
}

/* 9. Leadership Section Hidden (Fix 2) */
.leadership-section { display: none !important; }


/* =========================================================================
   FIX 10: MOBILE DRAWER STYLES
   ========================================================================= */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-backdrop.active {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 90vw);
  height: 100vh;
  background: #0A1628;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.drawer-logo {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
}
.drawer-logo span { color: #00C2CB; }

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-close:hover { background: rgba(255,255,255,0.08); }

.drawer-nav {
  flex: 1;
  padding: 8px 0;
  overflow-y: auto;
}

.drawer-nav-link {
  display: block;
  padding: 16px 24px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s;
}
.drawer-nav-link:hover { color: #00C2CB; }
.drawer-nav-link.active,
.drawer-nav-link[aria-current="page"] {
  color: #00C2CB;
  background: rgba(0, 194, 203, 0.08);
}

.drawer-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  padding: 16px 24px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  user-select: none;
  transition: color 0.15s;
}
.drawer-toggle:hover { color: #00C2CB; }
.drawer-toggle.active,
.drawer-nav-item.is-current-group > .drawer-toggle {
  color: #00C2CB;
  background: rgba(0, 194, 203, 0.08);
}

.toggle-icon {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.2s ease;
  color: #00C2CB;
}
.toggle-icon.rotated { transform: rotate(45deg); }

.drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0,0,0,0.2);
}
.drawer-submenu a {
  display: block;
  padding: 12px 24px 12px 40px;
  color: #94A3B8;
  font-size: 14px;
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  transition: color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.drawer-submenu a:hover { color: #00C2CB; }

.submenu-category {
  display: block;
  padding: 10px 24px 4px 24px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00C2CB;
  margin-top: 8px;
}

.drawer-cta {
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.btn-full-width {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 24px;
  background: #00BFA5;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0,191,165,0.35);
  transition: background 0.2s, transform 0.2s;
}
.btn-full-width:hover {
  background: #0097A7;
  transform: translateY(-1px);
}

/* Hamburger button */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.hamburger-btn:hover { background: rgba(255,255,255,0.08); }
.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}
.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================================
   FIX 7 & 13 & 14 & CTA: GLOBAL CSS OVERRIDES
   ========================================================================= */

/* Complete Navbar CSS */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 16px rgba(4, 12, 24, 0.24);
  transition: background 0.3s ease,
              backdrop-filter 0.3s ease,
              border-bottom 0.3s ease,
              box-shadow 0.3s ease;
}
.navbar.hero-overlap {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.navbar.scrolled,
.navbar.scrolled-desktop {
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 24px rgba(4, 12, 24, 0.28);
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo svg,
.navbar-logo img {
  height: 40px;
  width: auto;
}

.desktop-nav-links {
  display: flex;
  align-items: stretch;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover {
  color: #00C2CB;
  background: rgba(255,255,255,0.05);
}
.nav-link.active {
  color: #00C2CB;
  border-bottom: 3px solid #00C2CB;
  border-radius: 0;
  padding-bottom: 5px;
}
.nav-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.nav-item:hover .nav-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), 
              0 0 0 1px rgba(0,0,0,0.04);
  padding: 16px 20px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s, visibility 0s ease 0.45s;
  transform: translateX(-50%) translateY(-6px);
}
.nav-item:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-panel::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.nav-item:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, visibility 0s ease 0s;
}

.dropdown-panel.dropdown-wide {
  min-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 16px;
  left: auto;
  right: 0;
  transform: none;
}
.nav-item:hover .dropdown-panel.dropdown-wide {
  transform: none;
}

.dropdown-category {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00C2CB;
  padding: 12px 10px 4px;
  display: block;
}
.dropdown-link {
  display: block;
  padding: 8px 10px;
  color: #2D3748;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.dropdown-link:hover {
  color: #00C2CB;
  background: #F4F7FA;
}

.mega-menu-grid {
  min-width: 980px;
  width: min(96vw, var(--mega-menu-max-width, 1080px));
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(268px, 0.72fr);
  gap: 24px;
  align-items: stretch;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(13, 39, 68, 0.08);
  background: linear-gradient(160deg, #ffffff 0%, #f7fbff 100%);
  transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s, visibility 0s ease 0.45s;
}

.mega-menu-columns {
  display: grid;
  grid-template-columns: repeat(var(--mega-column-count, 3), minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
  align-items: start;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.mega-menu-title {
  color: var(--brand-blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.mega-menu-link {
  position: relative;
  display: block;
  padding: 11px 10px 11px 18px;
  border-radius: 10px;
  color: #1d2b3d;
  font-weight: 500;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.mega-menu-link::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 3px;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-teal));
  transform: translateY(-50%);
  transition: height var(--transition-fast);
}

.mega-menu-link:hover,
.mega-menu-link:focus-visible,
.mega-menu-link.is-hovered,
.mega-menu-link.is-current {
  color: var(--brand-navy);
  background: rgba(21, 86, 168, 0.08);
  box-shadow: inset 0 0 0 1px rgba(21, 86, 168, 0.12);
}

.mega-menu-link:hover::before,
.mega-menu-link:focus-visible::before,
.mega-menu-link.is-hovered::before,
.mega-menu-link.is-current::before {
  height: 18px;
}

.mega-menu-link:focus-visible {
  outline: 2px solid rgba(21, 86, 168, 0.38);
  outline-offset: 1px;
}

.mega-preview-card {
  border-radius: 14px;
  background: linear-gradient(165deg, #0d2849 0%, #10345f 48%, #0e8a8a 130%);
  color: #e6f0ff;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.mega-preview-eyebrow {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(230, 240, 255, 0.8);
  margin-bottom: 10px;
  font-weight: 700;
}

.mega-preview-title {
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 10px;
}

.mega-preview-copy {
  color: rgba(225, 236, 252, 0.88);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.mega-preview-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(218, 241, 252, 0.86);
  margin-bottom: 14px;
}

.mega-preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 13px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.mega-preview-cta:hover,
.mega-preview-cta:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.mega-preview-visual {
  margin-top: 16px;
  height: 98px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mega-preview-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dropdown-wrapper.mega-menu-wrapper:hover .mega-menu-grid,
.dropdown-wrapper.mega-menu-wrapper:focus-within .mega-menu-grid {
  transform: translateX(-50%) translateY(0);
}
.mega-menu-grid::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
  background: transparent;
}

.dropdown-wrapper.mega-menu-wrapper:hover .mega-menu-grid,
.dropdown-wrapper.mega-menu-wrapper:focus-within .mega-menu-grid {
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.3s ease 0s, transform 0.3s ease 0s, visibility 0s ease 0s;
}

@media (max-width: 1360px) {
  .mega-menu-grid {
    min-width: 0;
    width: min(96vw, var(--mega-menu-max-width, 980px));
  }
}

@media (max-width: 1240px) {
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .mega-menu-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .mega-preview-card {
    min-height: auto;
    padding: 14px;
  }

  .mega-preview-visual {
    display: none;
  }
}

.nav-cta-item {
  margin-left: 24px;
}

.nav-cta-item .btn {
  padding: 10px 24px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--cta-orange);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(228, 106, 46, 0.34);
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--cta-orange-dark);
  transform: translateY(-1px);
}

/* Base structural additions for cards */
.capabilities-section {
  background: #F4F7FA;
  padding: 100px 0;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.capability-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.capability-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.capability-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(0,194,203,0.12), rgba(0,151,167,0.12));
  border: 1px solid rgba(0,194,203,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
}
.capability-title {
  font-size: 16px;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 8px;
}
.capability-body {
  font-size: 14px;
  color: #718096;
  line-height: 1.7;
}

.process-section {
  background: #FFFFFF;
  padding: 100px 0;
}
.process-steps {
  display: flex;
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: repeating-linear-gradient(to right, rgba(0,194,203,0.4) 0, rgba(0,194,203,0.4) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #00BFA5;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(0,191,165,0.35);
}
.step-title {
  font-size: 17px;
  font-weight: 700;
  color: #2D3748;
  margin-bottom: 10px;
}
.step-body {
  font-size: 14px;
  color: #718096;
  line-height: 1.7;
}

.outcomes-section {
  background: #0A1628;
  padding: 80px 0;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.outcome-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0,194,203,0.2);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s;
}
.outcome-card:hover {
  background: rgba(0,194,203,0.08);
  border-color: rgba(0,194,203,0.4);
}
.metric-number {
  font-size: 52px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 10px;
}
.metric-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00C2CB;
}

.cta-section {
  background: linear-gradient(135deg, #0A1628 0%, #0D2137 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300C2CB' fill-opacity='0.04'%3E%3Cpolygon points='30 0 60 15 60 45 30 60 0 45 0 15'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.cta-section h2 {
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-section p {
  color: #94A3B8;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}
.cta-section .btn-primary {
  position: relative;
  z-index: 1;
  font-size: 16px;
  padding: 16px 36px;
  min-height: 54px;
}

/* Media Queries overrides */
@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 32px;
  }
  .process-steps::before {
    display: none; 
  }
  .process-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 0;
  }
  .step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 18px;
    margin: 0;
  }
  
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px;
  }
  .outcomes-grid .metric-number {
    font-size: 36px;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-info {
    order: 2;
  }
  .contact-form {
    order: 1;
  }

  .desktop-nav-links { display: none !important; }
  .nav-cta-desktop, .nav-cta { display: none !important; }
  .hamburger-btn { display: flex !important; }
}

@media (min-width: 769px) {
  .hamburger-btn { display: none !important; }
  .mobile-drawer { display: none !important; }
  .mobile-backdrop { display: none !important; }
}

@media (max-width: 640px) {
  .capabilities-grid {
    grid-template-columns: 1fr !important;
  }
  .service-card-image {
    height: 140px;
  }
  .hero-content h1 {
    font-size: 28px !important;
  }
  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .metric-number { font-size: 32px; }
  .metric-label { font-size: 10px; }
}


/* Accessibility Focus States */
a:focus, button:focus, input:focus, select:focus, textarea:focus, details summary:focus {
    outline: 2px solid var(--brand-teal) !important;
    outline-offset: 2px !important;
}

/* =========================================================================
   PHASE 1 PROFESSIONALIZATION COMPONENTS
   ========================================================================= */
.pro-section-light {
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF3F8 100%);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.pro-section-dark {
    background: linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-dark-soft) 100%);
}

.pro-grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: stretch;
}

.pro-panel {
    background: var(--surface-card);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.06);
}

.pro-panel h3,
.pro-panel h4 {
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.pro-panel p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.proof-strip {
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.12), rgba(0, 151, 167, 0.08));
    border-top: 1px solid rgba(0, 194, 203, 0.28);
    border-bottom: 1px solid rgba(0, 194, 203, 0.28);
    padding: 28px 0;
}

.proof-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.proof-metric {
    background: rgba(7, 20, 40, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
}

.proof-metric-value {
    color: #FFFFFF;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.proof-metric-label {
    color: var(--text-subtle);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.offer-card {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-left: 3px solid var(--brand-teal);
    border-radius: 12px;
    padding: 24px;
}

.offer-card h3 {
    font-size: 20px;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.offer-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.deliverables-list,
.outcome-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}

.deliverables-list li,
.outcome-list li {
    background: #FFFFFF;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 16px 18px;
    color: var(--text-body);
    line-height: 1.6;
}

.deliverables-list li strong,
.outcome-list li strong {
    color: var(--primary-navy);
}

.content-kicker {
    color: var(--brand-teal);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 10px;
    display: inline-block;
}

.content-lead {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.8;
}

.soft-note {
    font-size: 13px;
    color: var(--text-soft);
}

.page-cta-stack {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 1024px) {
    .proof-strip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .pro-grid-2,
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Newsletter Strip hidden correctly */
@media (max-width: 768px) {
    .newsletter-band form {
        display: none !important;
    }
    .newsletter-band .subscribe-mobile-trigger {
        display: flex !important;
        align-items: center;
        gap: 8px;
        color: white;
        background: var(--brand-teal);
        padding: 8px 16px;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
    }
}
.subscribe-mobile-trigger { display: none; }

/* =========================================================================
   MOBILE INTEGRITY FIXES (NO DESKTOP IMPACT)
   ========================================================================= */
@media (max-width: 900px) {
    /* Collapse inline multi-column grids used across page-specific sections */
    [style*="grid-template-columns: repeat(auto-fit, minmax("],
    [style*="grid-template-columns: repeat(auto-fill, minmax("],
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: 2fr 1fr"],
    [style*="grid-template-columns: 1fr 1fr 1fr"],
    [style*="grid-template-columns: repeat(3, 1fr)"],
    [style*="grid-template-columns: repeat(4, 1fr)"],
    [style*="grid-template-columns: 2fr 1fr 1.5fr 1fr"] {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 24px !important;
    }

    /* Neutralize common inline min-width values that cause horizontal scrolling */
    [style*="min-width: 650px"] {
        min-width: 0 !important;
        left: 0 !important;
    }
    [style*="min-width: 500px"],
    [style*="min-width: 340px"],
    [style*="min-width: 320px"],
    [style*="min-width: 300px"],
    [style*="min-width: 220px"] {
        min-width: 0 !important;
    }

    /* Soften large fixed-height media blocks for phones */
    img[style*="height: 560px"],
    img[style*="height: 500px"] {
        height: auto !important;
        max-height: 340px !important;
    }
    [style*="height: 560px"][style*="overflow: hidden"],
    [style*="height: 500px"][style*="overflow: hidden"] {
        height: auto !important;
    }

    /* Normalize oversized inline headings/numbers on narrow viewports */
    h1[style*="font-size: 56px"],
    h1[style*="font-size: 48px"],
    h1[style*="font-size: 40px"],
    h1[style*="font-size: 3.5rem"] {
        font-size: clamp(2rem, 8vw, 2.6rem) !important;
        line-height: 1.2 !important;
    }
    h2[style*="font-size: 40px"],
    h2[style*="font-size: 36px"] {
        font-size: clamp(1.5rem, 6vw, 2.1rem) !important;
        line-height: 1.25 !important;
    }
    [style*="font-size: 52px"] {
        font-size: clamp(2rem, 8vw, 2.8rem) !important;
    }
}

@media (max-width: 768px) {
    /* Keep newsletter functional on mobile */
    .newsletter-band form.newsletter-form {
        display: flex !important;
        flex-direction: column;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .newsletter-band form.newsletter-form input[type="email"],
    .newsletter-band form.newsletter-form button {
        width: 100% !important;
    }
    .newsletter-band .subscribe-mobile-trigger {
        display: none !important;
    }
}

/* =========================================================================
   BRAND LOGO LOCKUPS (DESKTOP SAFE + MOBILE RESPONSIVE)
   ========================================================================= */
.brand-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.navbar-logo .brand-logo-compact,
.drawer-logo .brand-logo-compact {
    height: 40px;
    width: auto;
    max-width: none;
}

footer .footer-brand .logo {
    display: block;
    max-width: 100%;
}

footer .footer-brand .logo .brand-logo-footer,
.footer-logo .brand-logo-footer {
    height: 40px;
    width: auto;
    max-width: min(100%, 340px);
}

@media (max-width: 1024px) {
    .navbar-logo .brand-logo-compact,
    .drawer-logo .brand-logo-compact {
        height: 36px;
    }

    footer .footer-brand .logo .brand-logo-footer,
    .footer-logo .brand-logo-footer {
        height: 36px;
        width: auto;
        max-width: min(100%, 300px);
    }
}

@media (max-width: 768px) {
    .navbar-logo .brand-logo-compact,
    .drawer-logo .brand-logo-compact {
        height: 32px;
    }

    footer .footer-brand .logo .brand-logo-footer,
    .footer-logo .brand-logo-footer {
        height: 32px;
        width: auto;
        max-width: min(100%, 260px);
    }
}

/* =========================================================================
   HOMEPAGE CREATIVE REDESIGN (INDEX ONLY)
   ========================================================================= */
.home-hero {
    position: relative;
    background-color: var(--primary-navy);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 640px;
    padding-top: 128px;
    padding-bottom: 72px;
    overflow: hidden;
}

.home-hero .hero-unified-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 14, 28, 0.94) 0%,
        rgba(10, 22, 40, 0.88) 54%,
        rgba(0, 151, 167, 0.34) 100%
    ) !important;
}

.home-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 42px;
}

.home-hero-copy {
    max-width: 620px;
}

.home-hero-eyebrow {
    margin-bottom: 20px;
    display: inline-block;
}

.home-hero-title {
    color: #FFFFFF !important;
    font-size: clamp(2.4rem, 4.6vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 8px 28px rgba(3, 10, 20, 0.45);
}

.home-hero-title span {
    color: #8ef2f7;
}

.home-hero-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 600px;
}

.home-hero-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.home-hero-points li {
    color: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.97rem;
}

.home-hero-points i {
    color: var(--brand-teal);
    font-size: 18px;
}

.home-hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px;
}

.home-hero-cta-primary {
    min-height: 52px;
    padding: 14px 28px;
}

.home-hero-cta-secondary {
    min-height: 52px;
    padding: 14px 28px;
    border-width: 2px;
}

.home-hero-rotator {
    color: rgba(148, 163, 184, 0.98);
    font-size: 0.95rem;
    font-weight: 500;
}

.home-hero-assurance {
    color: rgba(191, 219, 254, 0.82);
    font-size: 0.84rem;
    margin-bottom: 12px;
}

.home-hero-rotator #typewriter-text {
    color: var(--brand-teal);
    font-weight: 700;
    transition: opacity 0.45s ease;
}

.home-topology-shell {
    position: relative;
    border-radius: 22px;
    border: 1px solid rgba(154, 188, 228, 0.24);
    background: linear-gradient(145deg, rgba(8, 20, 37, 0.9), rgba(10, 34, 61, 0.68));
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    overflow: hidden;
    padding: 16px 16px 14px;
    display: grid;
    gap: 14px;
}

.home-topology-shell::before {
    content: "";
    position: absolute;
    inset: -10% -15%;
    background: radial-gradient(circle at 70% 35%, rgba(14, 138, 138, 0.18), transparent 52%);
    pointer-events: none;
}

.home-topology-shell::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 110px;
    background: linear-gradient(0deg, rgba(3, 9, 18, 0.74), rgba(3, 9, 18, 0));
    pointer-events: none;
}

.home-topology-svg {
    width: 100%;
    height: auto;
    display: block;
}

.topology-path {
    fill: none;
    stroke: url(#topologyLine);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-dasharray: 10 14;
    opacity: 0.58;
    animation: homePathFlow 18s linear infinite;
    transition: opacity 0.24s ease;
}

.topology-path.path-b { animation-delay: -4s; opacity: 0.44; }
.topology-path.path-c { animation-delay: -9s; opacity: 0.36; }
.topology-path.path-d { animation-delay: -13s; opacity: 0.3; }

.topology-link {
    stroke: rgba(156, 224, 238, 0.74);
    stroke-width: 1.25;
    stroke-dasharray: 6 8;
    animation: homeLinkPulse 7s ease-in-out infinite;
    transition: opacity 0.24s ease;
}

.topology-track.is-dimmed {
    opacity: 0.12 !important;
}

.topology-node {
    fill: #5fdde8;
    stroke: rgba(220, 252, 255, 0.9);
    stroke-width: 1;
    transform-origin: center;
    animation: homeNodePulse 3.5s ease-in-out infinite;
    transition: fill 0.2s ease, stroke 0.2s ease, r 0.2s ease;
}

.topology-node.n2 { animation-delay: 0.2s; }
.topology-node.n4 { animation-delay: 0.6s; }
.topology-node.n6 { animation-delay: 0.95s; }
.topology-node.n7 { animation-delay: 1.2s; }

.topology-hotspot {
    cursor: pointer;
    outline: none;
}

.topology-hotspot.is-active .topology-node {
    fill: #8ef6f6;
    stroke: #ffffff;
    stroke-width: 1.2;
}

.topology-hotspot.is-dimmed {
    opacity: 0.2;
}

.topology-hotspot:focus-visible .topology-node {
    stroke: #ffffff;
    stroke-width: 1.5;
}

.topology-glow {
    fill: url(#nodeGlow);
    opacity: 0.34;
    animation: homeGlow 4.2s ease-in-out infinite;
}

.topology-label {
    fill: rgba(232, 249, 252, 0.92);
    font-size: 11px;
    letter-spacing: 0.05em;
    font-weight: 600;
    pointer-events: none;
}

.topology-node-panel {
    position: absolute;
    right: 16px;
    top: 18px;
    width: min(46%, 320px);
    border-radius: 14px;
    border: 1px solid rgba(145, 184, 226, 0.26);
    background: rgba(7, 22, 41, 0.84);
    backdrop-filter: blur(8px);
    padding: 14px 14px 12px;
    color: #dbeafe;
    box-shadow: 0 12px 28px rgba(2, 10, 22, 0.4);
}

.topology-node-kicker {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(167, 215, 244, 0.9);
    margin-bottom: 6px;
    font-weight: 700;
}

.topology-node-panel h3 {
    color: #ffffff;
    font-size: 19px;
    margin-bottom: 7px;
}

.topology-node-panel p {
    color: rgba(220, 236, 255, 0.9);
    font-size: 13px;
    line-height: 1.55;
    margin: 0 0 10px;
}

.topology-node-panel ul {
    display: grid;
    gap: 4px;
    margin: 0 0 10px;
    padding: 0;
}

.topology-node-panel li {
    position: relative;
    padding-left: 12px;
    color: rgba(213, 232, 255, 0.92);
    font-size: 12px;
    line-height: 1.45;
}

.topology-node-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: #6be7e7;
}

.topology-node-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.topology-node-meta span {
    color: rgba(177, 236, 236, 0.92);
    font-size: 12px;
    font-family: var(--font-mono);
}

.topology-node-meta a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.topology-node-meta a:hover {
    background: rgba(255, 255, 255, 0.15);
}

.home-topology-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 2px;
}

.home-topology-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topology-filter-chip {
    border: 1px solid rgba(112, 201, 214, 0.36);
    color: #c9ebf5;
    background: rgba(8, 21, 37, 0.72);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.topology-filter-chip:hover,
.topology-filter-chip.is-active {
    border-color: rgba(111, 231, 231, 0.72);
    background: rgba(14, 138, 138, 0.25);
    color: #f2fcff;
}

.home-topology-timeline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(8, 21, 37, 0.58);
    border: 1px solid rgba(112, 201, 214, 0.24);
    border-radius: 999px;
    padding: 4px;
}

.topology-phase {
    border: 0;
    border-radius: 999px;
    padding: 6px 10px;
    background: transparent;
    color: rgba(217, 239, 252, 0.76);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.topology-phase:hover,
.topology-phase.is-active {
    background: rgba(21, 86, 168, 0.45);
    color: #ffffff;
}

.home-topology-mobile-cards {
    display: none;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
}

.home-topology-mobile-card {
    border: 1px solid rgba(112, 201, 214, 0.36);
    background: rgba(8, 21, 37, 0.72);
    color: #d8eef9;
    border-radius: 999px;
    padding: 8px 14px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
    scroll-snap-align: start;
}

.home-topology-mobile-card.is-active {
    border-color: rgba(111, 231, 231, 0.72);
    background: rgba(14, 138, 138, 0.25);
    color: #ffffff;
}

.home-command-section {
    background: linear-gradient(135deg, #081423 0%, #0D2137 100%);
}

.home-command-section .eyebrow,
.home-command-section .home-command-title,
.home-command-section .home-command-lead {
    color: #FFFFFF;
}

.home-command-section .home-command-lead {
    color: rgba(223, 237, 255, 0.83);
    max-width: 780px;
    margin: 0 auto;
}

.home-command-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 26px;
    align-items: stretch;
}

.home-command-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    align-self: stretch;
    align-content: stretch;
    height: 100%;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(0, 1fr);
}

.home-command-card {
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(13, 29, 49, 0.84);
    color: #dbeafe;
    border-radius: 14px;
    min-height: 0;
    height: 100%;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: border-color 0.26s ease, background 0.26s ease, box-shadow 0.26s ease, color 0.26s ease;
    text-align: left;
}

.home-command-card i {
    font-size: 24px;
    color: #57d8e1;
}

.home-command-card span {
    font-size: 0.89rem;
    font-weight: 600;
    line-height: 1.3;
}

.home-command-card:hover {
    border-color: rgba(0, 194, 203, 0.58);
    background: rgba(8, 28, 48, 0.95);
    box-shadow: 0 10px 24px rgba(0, 194, 203, 0.14);
}

.home-command-card:focus-visible {
    outline: 2px solid rgba(103, 232, 249, 0.95);
    outline-offset: 2px;
    border-color: rgba(103, 232, 249, 0.95);
}

.home-command-card.is-active {
    border-color: rgba(0, 194, 203, 0.9);
    background: linear-gradient(145deg, rgba(0, 194, 203, 0.24), rgba(8, 29, 49, 0.96));
    box-shadow: 0 12px 28px rgba(0, 194, 203, 0.12);
}

.home-command-detail {
    border-radius: 16px;
    border: 1px solid rgba(0, 194, 203, 0.36);
    background: rgba(7, 20, 40, 0.86);
    padding: 28px;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    align-content: start;
    height: 100%;
    min-height: 392px;
    transition: opacity 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-command-detail.is-updating {
    opacity: 0.88;
}

.home-command-kicker {
    color: #7be6ee;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home-command-detail h3 {
    color: #FFFFFF;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 14px;
}

.home-command-detail p {
    color: rgba(226, 238, 255, 0.86);
    margin-bottom: 16px;
    line-height: 1.7;
}

.home-command-detail ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
    align-self: start;
}

.home-command-detail li {
    color: #cde9f2;
    position: relative;
    padding-left: 18px;
    font-size: 0.95rem;
}

.home-command-detail li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-teal);
    position: absolute;
    left: 0;
    top: 10px;
}

.home-command-actions {
    display: grid;
    gap: 12px;
    width: min(100%, 320px);
    margin-top: auto;
    padding-top: 20px;
    align-self: end;
}

.home-command-actions .btn {
    width: 100%;
    justify-content: center;
}

.home-delivery-section {
    background: radial-gradient(circle at 50% 0%, #f8fafc 0%, #ffffff 100%);
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.delivery-spine-visual {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 194, 203, 0.1) 15%, 
        rgba(0, 194, 203, 0.4) 50%, 
        rgba(0, 194, 203, 0.1) 85%, 
        transparent 100%
    );
    transform: translateY(-50%);
    z-index: 0;
}

.home-delivery-title {
    color: var(--primary-navy);
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.home-delivery-lead {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto;
}

.home-delivery-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.delivery-phase-card {
    display: flex !important;
    flex-direction: column !important;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 35px 28px;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
}

.delivery-phase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 194, 203, 0.2), transparent 40%, transparent 60%, rgba(13, 29, 49, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: source-out; /* Simpler composite */
    mask-composite: subtract; /* Simpler composite */
    pointer-events: none;
}

.delivery-phase-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 194, 203, 0.2);
    box-shadow: 0 20px 40px -10px rgba(13, 29, 49, 0.12), 0 0 20px rgba(0, 194, 203, 0.05);
}

.delivery-phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delivery-phase-number {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-teal);
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.delivery-phase-icon {
    font-size: 28px;
    color: var(--primary-navy);
    background: linear-gradient(135deg, var(--primary-navy), #1e3a5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.delivery-phase-card:hover .delivery-phase-icon {
    transform: scale(1.1) rotate(-5deg);
    -webkit-text-fill-color: var(--brand-teal);
}

.delivery-phase-content h4 {
    color: var(--primary-navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.delivery-phase-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Connection lines between cards on desktop */
@media (min-width: 1025px) {
    .delivery-phase-card:not(:last-child)::before {
        content: "";
        position: absolute;
        top: 50%;
        right: -30px;
        width: 30px;
        height: 1px;
        background: rgba(0, 194, 203, 0.2);
        z-index: -1;
    }
}

@media (max-width: 1024px) {
    .home-delivery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .delivery-spine-visual {
        display: none;
    }
}

@media (max-width: 640px) {
    .home-delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .home-delivery-section {
        padding: 60px 0;
    }
}

.home-prime-cta {
    background: linear-gradient(125deg, #071428 0%, #0a1f34 55%, #0f3046 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.home-prime-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 18%, rgba(0, 194, 203, 0.16), transparent 45%),
                radial-gradient(circle at 84% 78%, rgba(0, 151, 167, 0.12), transparent 42%);
    pointer-events: none;
}

.home-prime-cta .container {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.home-prime-cta .eyebrow {
    display: inline-block;
    margin-bottom: 16px;
}

.home-prime-cta h2 {
    color: #FFFFFF;
    margin-bottom: 18px;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.home-prime-cta p {
    color: rgba(204, 222, 240, 0.88);
    font-size: 1.08rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto 30px;
}

.home-prime-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.home-prime-cta-note {
    color: rgba(166, 189, 212, 0.9);
    font-size: 0.88rem;
    margin: 16px 0 0;
}

/* =========================================================================
   PHASE 2 COMPONENTS (SERVICES + SOLUTIONS)
   ========================================================================= */
.playbook-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 32px;
}

.playbook-subtitle {
    color: var(--text-muted);
    margin-top: 10px;
}

.playbook-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(21, 86, 168, 0.16);
    background: #f5f9ff;
    margin: 0 auto 24px;
}

.playbook-tab {
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #35506f;
    background: transparent;
    cursor: pointer;
}

.playbook-tab:hover,
.playbook-tab.is-active {
    background: rgba(21, 86, 168, 0.12);
    color: var(--brand-navy);
}

.playbook-panel {
    display: none;
}

.playbook-panel.is-active {
    display: block;
}

.playbook-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.playbook-card {
    border-radius: 14px;
    border: 1px solid rgba(11, 31, 59, 0.08);
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 10px 26px rgba(11, 31, 59, 0.06);
}

.playbook-card h4 {
    color: var(--brand-navy);
    font-size: 18px;
    margin-bottom: 10px;
}

.playbook-list {
    display: grid;
    gap: 7px;
}

.playbook-list li {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.55;
    padding-left: 14px;
    position: relative;
}

.playbook-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.48rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-teal);
}

.value-evidence-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 28px;
}

.value-evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.value-evidence-card {
    border-radius: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.value-evidence-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #9ad2ff;
    margin-bottom: 10px;
}

.value-evidence-value {
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.1;
}

.value-evidence-metric {
    color: rgba(219, 234, 254, 0.94);
    margin-bottom: 10px;
    line-height: 1.45;
}

.value-evidence-note {
    color: rgba(190, 214, 238, 0.86);
    font-size: 12px;
    line-height: 1.45;
}

.service-conversion-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-conversion-card {
    border-radius: 14px;
    border: 1px solid rgba(11, 31, 59, 0.12);
    background: linear-gradient(150deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 10px 28px rgba(11, 31, 59, 0.06);
    padding: 22px;
}

.service-conversion-card h3 {
    color: var(--brand-navy);
    font-size: 21px;
    margin-bottom: 10px;
}

.service-conversion-card p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.challenge-signals-section {
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
    border-top: 1px solid rgba(21, 86, 168, 0.1);
    border-bottom: 1px solid rgba(21, 86, 168, 0.1);
}

.challenge-signals-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}

.challenge-signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.challenge-signal-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid rgba(11, 31, 59, 0.1);
    padding: 18px;
    color: var(--text-muted);
    line-height: 1.55;
    font-size: 14px;
    box-shadow: 0 8px 22px rgba(11, 31, 59, 0.05);
}

.kpi-baseline-note {
    text-align: center;
    margin-top: 16px;
    color: rgba(190, 214, 238, 0.84);
    font-size: 12px;
}

.drawer-submenu .submenu-category {
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-submenu .submenu-category::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand-teal);
    flex-shrink: 0;
}

.submenu-summary {
    font-size: 12px;
    color: #8ea5c2;
    margin: 2px 0 8px 16px;
}

@keyframes homePathFlow {
    from { stroke-dashoffset: 0; }
    to { stroke-dashoffset: -240; }
}

@keyframes homeNodePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.32); opacity: 1; }
}

@keyframes homeGlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.46; }
}

@keyframes homeLinkPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.95; }
}

@media (max-width: 1200px) {
    .home-hero-grid {
        gap: 30px;
    }

    .home-command-layout {
        align-items: start;
    }

    .home-command-grid {
        height: auto;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: minmax(128px, auto);
    }
}

@media (max-width: 1024px) {
    .home-hero {
        min-height: 580px;
        padding-top: 120px;
        padding-bottom: 56px;
    }

    .home-hero-grid,
    .home-command-layout {
        grid-template-columns: 1fr;
    }

    .home-topology-shell {
        max-width: 760px;
        margin: 0 auto;
    }

    .topology-node-panel {
        position: static;
        width: 100%;
    }

    .home-topology-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .home-topology-timeline {
        width: 100%;
        justify-content: space-between;
    }

    .home-command-grid {
        height: auto;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: none;
        grid-auto-rows: minmax(124px, auto);
    }

    .home-command-detail {
        height: auto;
    }

    .home-delivery-brief {
        grid-template-columns: 1fr;
    }

    .home-delivery-brief-media,
    .home-delivery-brief-image {
        min-height: 260px;
    }

    .home-delivery-brief-copy {
        padding: 30px 28px 32px;
    }

    .playbook-grid,
    .service-conversion-grid {
        grid-template-columns: 1fr;
    }

    .value-evidence-grid,
    .challenge-signal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-hero {
        min-height: 520px;
        padding-top: 108px;
        padding-bottom: 46px;
    }

    .home-hero-title {
        font-size: clamp(2rem, 9vw, 2.7rem);
    }

    .home-hero-lead {
        font-size: 1rem;
    }

    .home-hero-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .home-topology-shell {
        padding: 12px 12px 10px;
        gap: 10px;
    }

    .topology-label {
        display: none;
    }

    .topology-node-panel {
        padding: 12px;
    }

    .topology-node-panel h3 {
        font-size: 17px;
    }

    .home-topology-controls {
        gap: 8px;
    }

    .home-topology-chips {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .home-topology-mobile-cards {
        display: flex;
    }

    .home-command-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: minmax(116px, auto);
    }

    .home-command-detail {
        padding: 22px;
    }

    .home-command-detail h3 {
        font-size: 24px;
    }

    .value-evidence-grid,
    .challenge-signal-grid {
        grid-template-columns: 1fr;
    }

    .playbook-tabs {
        width: 100%;
        border-radius: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .topology-path,
    .topology-link,
    .topology-node,
    .topology-glow {
        animation: none !important;
    }

    .home-command-card,
    .home-prime-cta .btn {
        transition: none !important;
    }

    .home-command-detail {
        transition: none !important;
    }
}

/* =========================================================================
   PHASE 2 RECOVERY OVERRIDES
   ========================================================================= */
.nav-container {
    position: relative;
}

.dropdown-wrapper.mega-menu-wrapper {
    position: static;
}

.dropdown-wrapper.mega-menu-wrapper .mega-menu-grid {
    top: calc(100% + 18px);
}

.mega-menu-intro {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 10px;
}

.mega-menu-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 6px;
    min-height: 92px;
    white-space: normal;
}

.mega-link-label {
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.mega-link-meta {
    color: #5f7085;
    font-size: 12px;
    line-height: 1.5;
    display: block;
    white-space: normal;
    overflow-wrap: anywhere;
    text-wrap: pretty;
}

.mega-menu-grid[data-column-count="4"] .mega-menu-columns {
    gap: 16px;
}

.mega-menu-grid[data-column-count="4"] .mega-menu-intro {
    font-size: 11px;
}

.mega-menu-grid[data-column-count="4"] .mega-link-label {
    font-size: 13px;
}

.mega-menu-grid[data-column-count="4"] .mega-link-meta {
    font-size: 11px;
    line-height: 1.45;
}

.drawer-submenu-link {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.drawer-submenu-link.is-current {
    background: rgba(0, 194, 203, 0.08);
}

.drawer-submenu-link.is-current .drawer-link-title {
    color: #ffffff;
}

.drawer-submenu-link.is-current .drawer-link-meta {
    color: #d5e6f7;
}

.drawer-link-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

.drawer-link-meta {
    color: #8ea5c2;
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 430px) {
    .drawer-nav {
        padding: 4px 0;
    }

    .drawer-nav-link,
    .drawer-toggle {
        padding: 14px 20px;
        font-size: 15px;
    }

    .drawer-submenu .submenu-category {
        padding: 8px 20px 2px 20px;
        font-size: 9px;
        letter-spacing: 0.14em;
        margin-top: 6px;
    }

    .submenu-summary {
        margin: 2px 0 6px 16px;
        font-size: 11px;
        line-height: 1.35;
    }

    .drawer-submenu .drawer-submenu-link {
        padding: 10px 20px 10px 34px;
        min-height: auto;
        align-items: flex-start;
        gap: 3px;
    }

    .drawer-link-title {
        font-size: 13px;
        line-height: 1.35;
        text-wrap: balance;
    }

    .drawer-link-meta {
        font-size: 11px;
        line-height: 1.4;
    }

    .drawer-cta {
        padding: 18px 20px 28px;
    }
}

.home-topology-experience {
    display: grid;
    gap: 18px;
}

.home-topology-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
}

.home-topology-shell {
    min-height: 100%;
    padding: 20px;
}

.topology-node-panel {
    position: static;
    width: 100%;
    min-height: 100%;
    border-radius: 18px;
    border: 1px solid rgba(145, 184, 226, 0.22);
    background: linear-gradient(180deg, rgba(7, 22, 41, 0.92), rgba(10, 28, 50, 0.88));
    padding: 22px 22px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.topology-node-panel h3 {
    font-size: 30px;
    line-height: 1.05;
    margin-bottom: 12px;
}

.topology-node-panel p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.topology-node-panel ul {
    gap: 8px;
}

.topology-node-panel li {
    font-size: 13px;
    line-height: 1.5;
}

.topology-node-meta {
    margin-top: auto;
    align-items: flex-start;
    flex-direction: column;
}

.topology-node-meta span {
    font-size: 13px;
}

.topology-node-meta a {
    padding: 10px 16px;
    font-size: 13px;
}

.home-topology-controls {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    padding: 0;
}

.home-topology-timeline {
    padding: 6px;
}

.topology-phase {
    padding: 8px 14px;
}

.topology-board-head {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.topology-board-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(134, 235, 242, 0.92);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.topology-board-lead {
    max-width: 440px;
    color: rgba(214, 232, 248, 0.82);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.topology-board-meter {
    display: grid;
    gap: 6px;
    min-width: 132px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(114, 193, 221, 0.24);
    background: linear-gradient(180deg, rgba(9, 24, 42, 0.9), rgba(10, 31, 53, 0.66));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.topology-board-meter-label {
    color: rgba(174, 218, 239, 0.74);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.topology-board-meter strong {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.1;
}

.topology-board {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: auto;
}

.topology-board-column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 250px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(114, 193, 221, 0.16);
    background: linear-gradient(180deg, rgba(9, 24, 42, 0.76), rgba(8, 29, 49, 0.48));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: opacity 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.topology-board-phase {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
}

.topology-board-phase-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(113, 229, 236, 0.32);
    background: rgba(11, 35, 60, 0.88);
    color: #7ee8ef;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.topology-board-phase-label {
    color: rgba(227, 240, 255, 0.94);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.topology-stage-card {
    width: 100%;
    border: 1px solid rgba(145, 184, 226, 0.2);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(10, 28, 49, 0.92), rgba(10, 31, 55, 0.72));
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #dbeafe;
    text-align: left;
    box-shadow: 0 12px 24px rgba(2, 10, 22, 0.24);
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.topology-stage-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.topology-stage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(111, 231, 231, 0.18);
    background: linear-gradient(180deg, rgba(16, 48, 79, 0.9), rgba(10, 31, 56, 0.82));
    color: #79e7e7;
    font-size: 20px;
    flex: 0 0 auto;
}

.topology-stage-badge {
    color: rgba(174, 218, 239, 0.74);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topology-stage-title {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.15;
}

.topology-stage-copy {
    color: rgba(214, 232, 248, 0.82);
    font-size: 11px;
    line-height: 1.55;
}

.topology-stage-card:hover {
    border-color: rgba(111, 231, 231, 0.54);
    background: linear-gradient(180deg, rgba(10, 32, 57, 0.96), rgba(10, 37, 64, 0.82));
    box-shadow: 0 16px 28px rgba(8, 26, 46, 0.36);
}

.topology-stage-card:focus-visible {
    outline: 2px solid rgba(127, 243, 243, 0.86);
    outline-offset: 3px;
}

.topology-stage-card.is-active {
    border-color: rgba(111, 231, 231, 0.82);
    background: linear-gradient(180deg, rgba(13, 58, 87, 0.96), rgba(10, 38, 66, 0.88));
    box-shadow: 0 18px 34px rgba(8, 38, 64, 0.4);
}

.topology-board-signal {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(145, 184, 226, 0.14);
    color: rgba(182, 215, 236, 0.76);
    font-size: 10px;
    line-height: 1.55;
}

.topology-board-column.topology-track.is-dimmed {
    opacity: 0.48 !important;
}

.topology-stage-card.topology-hotspot.is-dimmed {
    opacity: 0.54 !important;
}

.home-services-cta {
    background: #ffffff;
    padding-top: 88px;
    padding-bottom: 88px;
}

.home-services-cta-inner {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 32px;
    overflow: hidden;
    border: 1px solid #b9cdfd;
    border-radius: 10px;
    background: linear-gradient(180deg, #eef3ff 0%, #f8faff 100%);
    box-shadow: 0 18px 44px rgba(28, 68, 149, 0.08);
}

.home-services-cta-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
    min-height: 180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.home-services-cta-orb {
    position: absolute;
    border-radius: 999px;
    background: rgba(184, 205, 252, 0.52);
    pointer-events: none;
}

.home-services-cta-orb-left {
    width: 160px;
    height: 160px;
    left: -40px;
    bottom: -52px;
}

.home-services-cta-orb-right {
    width: 118px;
    height: 118px;
    top: -24px;
    right: -18px;
}

.home-services-cta-inner h2 {
    color: #1a2338;
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 20ch;
    text-wrap: balance;
}

.home-services-cta-inner p {
    color: #5f6679;
    margin: 0;
    max-width: 700px;
    font-size: 1.125rem;
    line-height: 1.75;
    text-wrap: pretty;
}

.home-services-cta-button {
    border-width: 2px;
    border-color: #2e69f6;
    background: #ffffff;
    color: #1d5df0;
    padding: 15px 36px;
    border-radius: 9px;
    box-shadow: none;
    font-weight: 700;
}

.home-services-cta-button:hover,
.home-services-cta-button:focus-visible {
    background: #2e69f6;
    color: #ffffff;
}

.enterprise-cta {
    background: #ffffff;
    padding-top: 88px;
    padding-bottom: 88px;
}

.enterprise-cta-inner {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    padding: 40px 32px;
    overflow: hidden;
    border: 1px solid #b9cdfd;
    border-radius: 14px;
    background: linear-gradient(180deg, #eef3ff 0%, #f8faff 100%);
    box-shadow: 0 18px 44px rgba(28, 68, 149, 0.08);
}

.enterprise-cta-copy {
    position: relative;
    z-index: 1;
    max-width: 820px;
    min-height: 180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.enterprise-cta-orb {
    position: absolute;
    border-radius: 999px;
    background: rgba(184, 205, 252, 0.52);
    pointer-events: none;
}

.enterprise-cta-orb-left {
    width: 160px;
    height: 160px;
    left: -40px;
    bottom: -52px;
}

.enterprise-cta-orb-right {
    width: 118px;
    height: 118px;
    top: -24px;
    right: -18px;
}

.enterprise-cta-copy h2 {
    color: #1a2338;
    margin: 0;
    font-size: clamp(2.5rem, 4vw, 4.25rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 12ch;
    text-wrap: balance;
}

.enterprise-cta-copy p {
    color: #5f6679;
    margin: 0;
    max-width: 760px;
    font-size: 1.125rem;
    line-height: 1.75;
    text-wrap: pretty;
}

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

.enterprise-cta-primary,
.enterprise-cta-primary:visited {
    min-width: 258px;
    padding: 16px 32px;
    border-radius: 10px;
    background: #1e9be9;
    border: 2px solid #1e9be9;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: none;
}

.enterprise-cta-primary:hover,
.enterprise-cta-primary:focus-visible {
    background: #117fc8;
    border-color: #117fc8;
    color: #ffffff;
}

.enterprise-cta-secondary,
.enterprise-cta-secondary:visited {
    min-width: 258px;
    padding: 16px 32px;
    border-radius: 10px;
    background: #ffffff;
    border: 2px solid #1ed7ec;
    color: #0f8fd1;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: none;
}

.enterprise-cta-secondary:hover,
.enterprise-cta-secondary:focus-visible {
    background: #1ed7ec;
    border-color: #1ed7ec;
    color: #07243b;
}

@media (max-width: 767px) {
    .home-services-cta {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .home-services-cta-inner {
        padding: 36px 22px;
    }

    .home-services-cta-copy {
        min-height: auto;
        gap: 20px;
    }

    .home-services-cta-inner p {
        font-size: 1rem;
    }

    .home-services-cta-orb-left {
        width: 128px;
        height: 128px;
        left: -52px;
        bottom: -68px;
    }

    .home-services-cta-orb-right {
        width: 96px;
        height: 96px;
        top: -28px;
        right: -28px;
    }

    .enterprise-cta {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .enterprise-cta-inner {
        padding: 36px 22px;
    }

    .enterprise-cta-copy {
        min-height: auto;
        gap: 20px;
    }

    .enterprise-cta-copy h2 {
        font-size: clamp(2rem, 10vw, 3rem);
        max-width: 10ch;
    }

    .enterprise-cta-copy p {
        font-size: 1rem;
    }

    .enterprise-cta-primary,
    .enterprise-cta-secondary {
        min-width: min(100%, 280px);
    }

    .enterprise-cta-orb-left {
        width: 128px;
        height: 128px;
        left: -52px;
        bottom: -68px;
    }

    .enterprise-cta-orb-right {
        width: 96px;
        height: 96px;
        top: -28px;
        right: -28px;
    }
}

.service-section-heading {
    max-width: 860px;
    margin: 0 auto;
}

.service-section-lead {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.service-capability-section {
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.service-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.service-capability-card {
    border-radius: 18px;
    border: 1px solid rgba(11, 31, 59, 0.1);
    background: #ffffff;
    padding: 24px;
    box-shadow: 0 14px 32px rgba(11, 31, 59, 0.06);
}

.service-capability-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 138, 138, 0.1);
    color: var(--brand-teal);
    font-size: 28px;
    margin-bottom: 16px;
}

.service-capability-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand-blue);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.service-capability-card h3 {
    color: var(--brand-navy);
    font-size: 20px;
    margin-bottom: 10px;
}

.service-capability-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.service-playbook-section {
    background: #ffffff;
}

.service-phase-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 28px;
}

.service-phase-tab {
    border: 1px solid rgba(21, 86, 168, 0.18);
    background: #f4f8ff;
    color: #35506f;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.service-phase-tab.is-active,
.service-phase-tab:hover {
    background: var(--brand-navy);
    color: #ffffff;
    border-color: var(--brand-navy);
}

.service-playbook-shell {
    border-radius: 24px;
    border: 1px solid rgba(11, 31, 59, 0.1);
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    padding: 26px;
    box-shadow: 0 18px 38px rgba(11, 31, 59, 0.08);
}

.service-phase-panel {
    display: none;
}

.service-phase-panel.is-active {
    display: block;
}

.service-phase-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 22px;
}

.service-phase-badge {
    min-width: 82px;
    height: 40px;
    border-radius: 999px;
    background: rgba(21, 86, 168, 0.1);
    color: var(--brand-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-phase-hero h3 {
    color: var(--brand-navy);
    font-size: 26px;
    margin-bottom: 8px;
}

.service-phase-hero p {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.service-phase-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.service-phase-card {
    border-radius: 16px;
    border: 1px solid rgba(11, 31, 59, 0.1);
    background: #ffffff;
    padding: 20px;
}

.service-phase-card h4 {
    color: var(--brand-navy);
    font-size: 18px;
    margin-bottom: 10px;
}

.service-phase-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.service-phase-list li {
    position: relative;
    padding-left: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

.service-phase-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-teal);
}

.service-acceptance-strip {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(11, 31, 59, 0.1);
}

.service-acceptance-strip > span {
    display: block;
    margin-bottom: 12px;
    color: var(--brand-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-pill-row,
.service-roadmap-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.service-pill,
.service-roadmap-chip {
    border-radius: 999px;
    background: rgba(21, 86, 168, 0.08);
    color: var(--brand-navy);
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 600;
}

.service-metrics-section {
    background: linear-gradient(135deg, #091c33 0%, #0f2744 100%);
}

.service-metrics-section .section-title,
.service-metrics-section .service-section-lead,
.service-metrics-section .eyebrow {
    color: #ffffff;
}

.service-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-metric-card,
.solution-kpi-card {
    border-radius: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-metric-role {
    color: #93c5fd;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.service-metric-value,
.solution-kpi-value {
    color: #ffffff;
    font-family: var(--font-mono);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.service-metric-label,
.solution-kpi-label {
    color: rgba(223, 237, 255, 0.92);
    line-height: 1.55;
    margin-bottom: 10px;
}

.service-metric-note,
.solution-kpi-note {
    color: rgba(190, 214, 238, 0.84);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.service-delivery-section {
    background: #f7fbff;
}

.service-deliverable-grid,
.service-post-grid,
.solution-challenge-grid,
.solution-scenario-grid,
.solution-related-grid {
    display: grid;
    gap: 18px;
}

.service-deliverable-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.service-deliverable-card,
.service-post-card,
.solution-challenge-card,
.solution-scenario-card,
.solution-related-card {
    border-radius: 18px;
    border: 1px solid rgba(11, 31, 59, 0.1);
    background: #ffffff;
    padding: 22px;
    box-shadow: 0 14px 32px rgba(11, 31, 59, 0.06);
}

.service-deliverable-window,
.solution-scenario-tag {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.service-deliverable-title,
.service-post-card h3,
.solution-scenario-card h3,
.solution-architecture-card h3,
.solution-journey-card h3,
.solution-related-card h3 {
    color: var(--brand-navy);
    margin-bottom: 10px;
}

.service-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-roadmap-card .btn {
    margin-top: 18px;
}

.solution-challenge-section {
    background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

.solution-challenge-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-challenge-card {
    color: var(--text-muted);
    line-height: 1.7;
}

.solution-delivery-section {
    background: #ffffff;
}

.solution-architecture-grid,
.solution-journey-grid {
    display: grid;
    gap: 18px;
}

.solution-architecture-grid.system-flow,
.solution-journey-grid.system-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-architecture-grid.decision-stack,
.solution-journey-grid.decision-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-architecture-grid.business-journey,
.solution-journey-grid.business-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.solution-architecture-card,
.solution-journey-card {
    border-radius: 18px;
    border: 1px solid rgba(11, 31, 59, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    padding: 22px;
    box-shadow: 0 14px 32px rgba(11, 31, 59, 0.06);
}

.solution-architecture-step,
.solution-journey-number {
    color: #cfd9e8;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 14px;
}

.solution-architecture-note {
    margin: 16px 0 38px;
    color: var(--text-muted);
    text-align: center;
}

.solution-journey-copy,
.solution-scenario-before,
.solution-scenario-after,
.solution-related-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.solution-journey-deliverable {
    margin: 12px 0 0;
    color: var(--brand-blue);
    font-size: 13px;
    font-weight: 700;
}

.solution-kpi-section {
    background: linear-gradient(135deg, #091c33 0%, #0f2744 100%);
}

.solution-kpi-section .section-title,
.solution-kpi-section .service-section-lead,
.solution-kpi-section .eyebrow {
    color: #ffffff;
}

.solution-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.solution-scenario-section {
    background: #f7fbff;
}

.solution-scenario-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-related-section {
    background: linear-gradient(135deg, #081423 0%, #10253c 100%);
}

.solution-related-section .section-title,
.solution-related-section .service-section-lead,
.solution-related-section .eyebrow,
.solution-related-footer p {
    color: #ffffff;
}

.solution-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.solution-related-card {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
}

.solution-related-card h3,
.solution-related-card span {
    color: #ffffff;
}

.solution-related-card p {
    color: rgba(210, 226, 244, 0.84);
}

.solution-related-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .home-topology-main,
    .service-capability-grid,
    .service-deliverable-grid,
    .solution-kpi-grid,
    .solution-related-grid,
    .solution-scenario-grid,
    .solution-challenge-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .topology-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: auto;
    }

    .topology-board::before {
        display: none;
    }

    .topology-board-column {
        min-height: 240px;
    }

    .topology-board-column:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 1024px) {
    .home-topology-main,
    .service-phase-grid,
    .service-post-grid,
    .solution-architecture-grid.system-flow,
    .solution-journey-grid.system-flow,
    .solution-architecture-grid.decision-stack,
    .solution-journey-grid.decision-stack,
    .solution-architecture-grid.business-journey,
    .solution-journey-grid.business-journey {
        grid-template-columns: 1fr;
    }

    .home-topology-controls {
        flex-direction: column;
    }

    .home-topology-timeline {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .home-topology-shell {
        padding: 14px;
    }

    .topology-board-head {
        flex-direction: column;
        align-items: stretch;
    }

    .topology-board {
        grid-template-columns: 1fr;
    }

    .topology-board-column {
        min-height: auto;
    }

    .topology-board-column::after {
        display: none;
    }

    .topology-node-panel {
        padding: 18px;
    }

    .topology-node-panel h3 {
        font-size: 24px;
    }

    .service-capability-grid,
    .service-metric-grid,
    .service-deliverable-grid,
    .service-post-grid,
    .solution-challenge-grid,
    .solution-scenario-grid,
    .solution-kpi-grid,
    .solution-related-grid {
        grid-template-columns: 1fr;
    }

    .service-phase-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .solution-related-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================================
   HOMEPAGE HERO EDITORIAL REFRESH
   ========================================================================= */
.home-hero {
    position: relative;
    min-height: 0;
    padding-top: 136px;
    padding-bottom: 88px;
    background: linear-gradient(140deg, #eef4fb 0%, #f8fbff 50%, #def3f1 100%);
    overflow: hidden;
    isolation: isolate;
}

.home-hero::before,
.home-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.home-hero::before {
    top: -180px;
    right: -140px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 32, 58, 0.16) 0%, rgba(10, 32, 58, 0.03) 58%, transparent 72%);
}

.home-hero::after {
    left: -120px;
    bottom: -180px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 203, 0.18) 0%, rgba(0, 194, 203, 0.05) 54%, transparent 72%);
}

.home-hero .hero-unified-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.1)),
        linear-gradient(rgba(17, 65, 120, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 65, 120, 0.035) 1px, transparent 1px) !important;
    background-size: auto, 28px 28px, 28px 28px;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(540px, 0.96fr);
    align-items: start;
    gap: 52px;
}

.home-hero-copy {
    max-width: 670px;
    padding-top: 22px;
}

.home-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(17, 65, 120, 0.12);
    background: rgba(255, 255, 255, 0.68);
    color: var(--brand-navy);
    box-shadow: 0 14px 28px rgba(12, 37, 70, 0.06);
}

.home-hero-heading-stack {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

.home-hero-title {
    margin: 0;
    max-width: 10ch;
    color: var(--primary-navy) !important;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5vw, 5.15rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    text-shadow: none;
}

.home-hero-title span {
    background: linear-gradient(120deg, #00a8b0 0%, #59cfd5 48%, #174f86 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home-hero-brief {
    max-width: 430px;
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px solid rgba(17, 65, 120, 0.12);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 44px rgba(12, 37, 70, 0.08);
    backdrop-filter: blur(18px);
}

.home-hero-brief-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #0b7c87;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-hero-brief p {
    margin: 0;
    color: #39546f;
    font-size: 0.94rem;
    line-height: 1.65;
}

.home-hero-lead {
    max-width: 620px;
    margin-bottom: 26px;
    color: #35506f;
    font-size: 1.05rem;
    line-height: 1.85;
}

.home-hero-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}

.home-hero-points li {
    min-height: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(17, 65, 120, 0.1);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 34px rgba(12, 37, 70, 0.06);
    color: #183a5a;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.55;
}

.home-hero-points li:last-child {
    grid-column: 1 / -1;
}

.home-hero-points i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    border-radius: 999px;
    background: rgba(0, 194, 203, 0.12);
    color: #0097a7;
    font-size: 14px;
}

.home-hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.home-hero-cta-primary {
    min-height: 54px;
    padding: 14px 28px;
    box-shadow: 0 18px 34px rgba(240, 112, 43, 0.24);
}

.home-hero-cta-secondary {
    min-height: 54px;
    padding: 14px 28px;
    border-width: 1px;
    border-color: rgba(21, 86, 168, 0.2);
    background: rgba(255, 255, 255, 0.66);
    color: var(--brand-navy);
}

.home-hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.86);
    border-color: rgba(21, 86, 168, 0.34);
    color: var(--brand-navy);
}

.home-hero-subrail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    max-width: 620px;
    padding: 14px 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(10, 24, 48, 0.96), rgba(18, 49, 85, 0.94));
    box-shadow: 0 28px 46px rgba(12, 37, 70, 0.2);
}

.home-hero-assurance {
    margin: 0;
    padding-right: 12px;
    border-right: 1px solid rgba(157, 190, 226, 0.24);
    color: rgba(225, 236, 248, 0.92);
    font-size: 0.84rem;
}

.home-hero-rotator {
    color: rgba(186, 205, 226, 0.94);
    font-size: 0.92rem;
    font-weight: 500;
}

.home-hero-rotator #typewriter-text {
    color: #8be3e7;
    font-weight: 700;
    transition: opacity 0.45s ease;
}

.home-topology-experience {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 32px;
    border: 1px solid rgba(17, 65, 120, 0.12);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 36px 72px rgba(12, 37, 70, 0.12);
    backdrop-filter: blur(22px);
}

.home-topology-experience::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.home-topology-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

.home-topology-shell {
    position: relative;
    min-height: 100%;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(17, 65, 120, 0.1);
    background: linear-gradient(180deg, rgba(248, 252, 255, 0.94), rgba(239, 248, 252, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 20px 40px rgba(16, 47, 88, 0.08);
    overflow: hidden;
}

.home-topology-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(17, 65, 120, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 65, 120, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 12% 14%, rgba(0, 194, 203, 0.16), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(21, 86, 168, 0.12), transparent 28%);
    background-size: 24px 24px, 24px 24px, auto, auto;
    opacity: 0.9;
    pointer-events: none;
}

.home-topology-shell::after {
    display: none;
}

.topology-board-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}

.topology-board-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #0a7480;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.topology-board-lead {
    max-width: 32ch;
    margin: 0;
    color: #4d667f;
    font-size: 14px;
    line-height: 1.65;
}

.topology-board-meter {
    display: grid;
    gap: 8px;
    min-width: 192px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(135deg, #0d2340 0%, #163c68 100%);
    box-shadow: 0 16px 34px rgba(9, 31, 57, 0.18);
}

.topology-board-meter-label {
    color: rgba(169, 212, 234, 0.72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.topology-board-meter strong {
    max-width: 12ch;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.1;
}

.topology-board {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.topology-board-column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 248px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(17, 65, 120, 0.09);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 247, 252, 0.92));
    box-shadow: 0 16px 30px rgba(18, 47, 82, 0.06);
    transition: opacity 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.topology-board-column:nth-child(1) {
    background: linear-gradient(180deg, rgba(241, 251, 251, 0.98), rgba(232, 246, 249, 0.92));
}

.topology-board-column:nth-child(2) {
    background: linear-gradient(180deg, rgba(245, 249, 255, 0.98), rgba(236, 244, 252, 0.92));
}

.topology-board-column:nth-child(3) {
    background: linear-gradient(180deg, rgba(249, 252, 255, 0.98), rgba(239, 246, 252, 0.92));
}

.topology-board-column:nth-child(4) {
    background: linear-gradient(180deg, rgba(241, 249, 255, 0.98), rgba(233, 244, 249, 0.92));
}

.topology-board-phase {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: auto;
}

.topology-board-phase-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(0, 194, 203, 0.3);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 18px rgba(0, 194, 203, 0.12);
    color: #0a7480;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.topology-board-phase-label {
    color: #35506f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.topology-stage-card {
    width: 100%;
    padding: 16px;
    border: 1px solid rgba(17, 65, 120, 0.1);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(11, 31, 59, 0.02), rgba(11, 31, 59, 0.04));
    color: #0f2745;
    text-align: left;
    box-shadow: none;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.topology-stage-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.topology-stage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, #0d2340, #174f86);
    color: #9df0f3;
    font-size: 20px;
    box-shadow: 0 14px 24px rgba(11, 31, 59, 0.15);
    flex: 0 0 auto;
}

.topology-stage-badge {
    color: #6b8097;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topology-stage-title {
    color: #0f2745;
    font-size: 20px;
    line-height: 1.15;
}

.topology-stage-copy {
    color: #5a7088;
    font-size: 12px;
    line-height: 1.58;
}

.topology-stage-card:hover {
    border-color: rgba(21, 86, 168, 0.22);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 255, 0.98));
    box-shadow: 0 14px 26px rgba(18, 47, 82, 0.08);
}

.topology-stage-card.is-active {
    border-color: rgba(0, 194, 203, 0.62);
    background: linear-gradient(145deg, #0d2340 0%, #174f86 75%, #0e93a4 100%);
    box-shadow: 0 24px 36px rgba(13, 35, 64, 0.24);
}

.topology-stage-card.is-active .topology-stage-icon {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
    color: #9df0f3;
}

.topology-stage-card.is-active .topology-stage-badge,
.topology-stage-card.is-active .topology-stage-copy {
    color: rgba(212, 236, 248, 0.8);
}

.topology-stage-card.is-active .topology-stage-title {
    color: #ffffff;
}

.topology-board-signal {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(17, 65, 120, 0.08);
    color: #6c8097;
    font-size: 11px;
    line-height: 1.55;
}

.topology-board-column.topology-track.is-dimmed {
    opacity: 0.56 !important;
    filter: saturate(0.82);
}

.topology-stage-card.topology-hotspot.is-dimmed {
    opacity: 0.62 !important;
}

.topology-node-panel {
    position: relative;
    width: 100%;
    min-height: 0;
    align-self: start;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(17, 65, 120, 0.08);
    background: linear-gradient(155deg, #0a1830 0%, #10294a 48%, #0f415f 100%);
    box-shadow: 0 30px 56px rgba(12, 37, 70, 0.24);
    overflow: hidden;
}

.topology-node-panel::before {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 203, 0.22), transparent 70%);
    pointer-events: none;
}

.topology-node-panel > * {
    position: relative;
    z-index: 1;
}

.topology-node-kicker {
    color: #9feaed;
    display: inline-block;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.topology-node-panel h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.02;
}

.topology-node-panel p {
    margin: 0 0 16px;
    color: rgba(222, 236, 251, 0.9);
    font-size: 14px;
    line-height: 1.75;
}

.topology-node-panel ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.topology-node-panel li {
    position: relative;
    padding-left: 16px;
    color: rgba(229, 240, 252, 0.92);
    font-size: 13px;
    line-height: 1.52;
}

.topology-node-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #68e0e7;
}

.topology-node-meta {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.topology-node-meta span {
    color: #8de6ea;
    font-size: 13px;
    font-family: var(--font-mono);
    letter-spacing: 0.02em;
}

.topology-node-meta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid #f0702b;
    background: #f0702b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 16px 26px rgba(240, 112, 43, 0.24);
}

.topology-node-meta a:hover {
    background: #cf5c1d;
    border-color: #cf5c1d;
}

.home-topology-controls {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 4px;
}

.home-topology-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topology-filter-chip {
    border: 1px solid rgba(17, 65, 120, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #35506f;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
    box-shadow: 0 8px 16px rgba(12, 37, 70, 0.04);
}

.topology-filter-chip:hover,
.topology-filter-chip.is-active {
    border-color: rgba(0, 194, 203, 0.36);
    background: rgba(0, 194, 203, 0.12);
    color: #0f2745;
}

.home-topology-timeline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border-radius: 999px;
    border: 1px solid rgba(17, 65, 120, 0.1);
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 10px 18px rgba(12, 37, 70, 0.05);
}

.topology-phase {
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    background: transparent;
    color: #5e748c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.topology-phase:hover,
.topology-phase.is-active {
    background: #0d2340;
    color: #ffffff;
}

.home-topology-mobile-cards {
    display: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.home-topology-mobile-card {
    border: 1px solid rgba(17, 65, 120, 0.12);
    background: rgba(255, 255, 255, 0.78);
    color: #163657;
    border-radius: 999px;
    padding: 9px 14px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
}

.home-topology-mobile-card.is-active {
    border-color: rgba(0, 194, 203, 0.38);
    background: rgba(0, 194, 203, 0.14);
    color: #0f2745;
}

.proof-strip {
    position: relative;
    z-index: 2;
    margin-top: -34px;
    padding: 0 0 34px;
    background: transparent;
    border: 0;
}

.proof-strip-grid {
    gap: 14px;
    padding: 20px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0d2340 0%, #13365e 100%);
    box-shadow: 0 28px 48px rgba(12, 37, 70, 0.18);
}

.proof-metric {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
}

.proof-metric-value {
    color: #ffffff;
}

.proof-metric-label {
    color: rgba(214, 232, 248, 0.82);
}

@media (max-width: 1200px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-hero-copy {
        max-width: none;
        padding-top: 0;
    }

    .home-topology-main {
        grid-template-columns: 1fr;
    }

    .home-topology-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .home-topology-timeline {
        width: fit-content;
        align-self: center;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .home-hero {
        padding-top: 124px;
        padding-bottom: 62px;
    }

    .home-hero-title {
        max-width: 11ch;
    }

    .home-hero-points {
        grid-template-columns: 1fr;
    }

    .home-hero-points li:last-child {
        grid-column: auto;
    }

    .home-hero-subrail {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-hero-assurance {
        padding-right: 0;
        padding-bottom: 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(157, 190, 226, 0.24);
    }

    .home-topology-experience {
        padding: 20px;
        border-radius: 28px;
    }

    .home-topology-main {
        grid-template-columns: 1fr;
    }

    .home-topology-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .home-topology-timeline {
        width: 100%;
        justify-content: space-between;
    }

    .proof-strip {
        margin-top: 0;
        padding-top: 10px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding-top: 108px;
        padding-bottom: 44px;
    }

    .home-hero-title {
        max-width: none;
        font-size: clamp(2.55rem, 11vw, 3.45rem);
    }

    .home-hero-brief {
        padding: 16px;
    }

    .home-hero-lead {
        font-size: 1rem;
        line-height: 1.72;
    }

    .home-hero-points {
        gap: 12px;
    }

    .home-hero-points li {
        padding: 14px 16px;
    }

    .home-hero-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .home-hero-subrail {
        padding: 14px 16px;
    }

    .home-topology-experience {
        padding: 14px;
        border-radius: 22px;
    }

    .home-topology-shell {
        padding: 16px;
    }

    .topology-board-head {
        grid-template-columns: 1fr;
    }

    .topology-board-meter {
        min-width: 0;
    }

    .topology-board {
        grid-template-columns: 1fr;
    }

    .topology-node-panel {
        padding: 20px 18px;
    }

    .topology-node-panel h3 {
        font-size: 26px;
    }

    .home-topology-chips {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .home-topology-mobile-cards {
        display: flex;
    }

    .home-topology-timeline {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .proof-strip-grid {
        padding: 16px;
        border-radius: 20px;
    }

    .proof-metric-value {
        font-size: 24px;
    }
}

/* =========================================================================
   HOMEPAGE COMMAND DECK RESET
   ========================================================================= */
.home-hero {
    position: relative;
    min-height: 720px;
    padding-top: 132px;
    padding-bottom: 96px;
    background-color: #06111f;
    background-image:
        linear-gradient(110deg, rgba(3, 9, 18, 0.9) 0%, rgba(5, 14, 27, 0.82) 40%, rgba(5, 18, 36, 0.58) 100%),
        url('../img/home-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.home-hero::before,
.home-hero::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.home-hero::before {
    inset: 0;
    background:
        radial-gradient(circle at 18% 32%, rgba(0, 194, 203, 0.18), transparent 34%),
        radial-gradient(circle at 82% 14%, rgba(240, 112, 43, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(5, 12, 22, 0.12), rgba(5, 12, 22, 0.42));
}

.home-hero::after {
    right: -100px;
    bottom: 80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 203, 0.14), transparent 68%);
    filter: blur(10px);
}

.home-hero .hero-unified-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(rgba(146, 185, 224, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(146, 185, 224, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(4, 10, 20, 0.18), rgba(4, 10, 20, 0.08) 38%, rgba(4, 10, 20, 0.24) 100%) !important;
    background-size: 32px 32px, 32px 32px, auto;
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(700px, 1.16fr);
    gap: 34px;
    align-items: stretch;
}

.home-hero-copy {
    position: relative;
    max-width: none;
    padding: 46px 42px 38px;
    border-radius: 30px;
    border: 1px solid rgba(145, 184, 226, 0.18);
    background: linear-gradient(165deg, rgba(7, 20, 38, 0.82), rgba(7, 22, 43, 0.58));
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.home-hero-copy::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 1px;
    background: linear-gradient(180deg, rgba(0, 194, 203, 0.46), rgba(0, 194, 203, 0));
    opacity: 0.6;
}

.home-hero-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #8ce7ec;
}

.home-hero-heading-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 24px;
}

.home-hero-title {
    margin: 0;
    max-width: 8ch;
    color: #ffffff !important;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 5.3vw, 5.45rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-shadow: 0 18px 44px rgba(2, 8, 16, 0.28);
}

.home-hero-title span {
    background: linear-gradient(120deg, #79f1f2 0%, #2ed7e7 54%, #c4feff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home-hero-brief {
    align-self: start;
    max-width: 340px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(111, 231, 231, 0.22);
    background: linear-gradient(180deg, rgba(8, 28, 48, 0.88), rgba(8, 30, 54, 0.62));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 18px 30px rgba(2, 10, 22, 0.18);
}

.home-hero-brief-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #86e8ee;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-hero-brief p {
    margin: 0;
    color: rgba(214, 232, 248, 0.84);
    font-size: 0.94rem;
    line-height: 1.65;
}

.home-hero-lead {
    max-width: 60ch;
    margin-bottom: 24px;
    color: rgba(226, 238, 255, 0.88);
    font-size: 1.02rem;
    line-height: 1.82;
}

.home-hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
}

.home-hero-points li {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    color: rgba(233, 242, 255, 0.92);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.58;
}

.home-hero-points li:last-child {
    grid-column: auto;
}

.home-hero-points i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    border-radius: 999px;
    background: rgba(0, 194, 203, 0.12);
    color: #7ae7ed;
    font-size: 14px;
    flex: 0 0 auto;
}

.home-hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 18px;
}

.home-hero-cta-primary {
    min-height: 54px;
    padding: 14px 28px;
    box-shadow: 0 16px 34px rgba(240, 112, 43, 0.22);
}

.home-hero-cta-secondary {
    min-height: 54px;
    padding: 14px 28px;
    border-width: 1px;
    border-color: rgba(145, 184, 226, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #e3f3ff;
}

.home-hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(145, 184, 226, 0.26);
    color: #ffffff;
}

.home-hero-subrail {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    max-width: none;
    padding: 14px 18px;
    border-radius: 20px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: rgba(6, 18, 34, 0.84);
}

.home-hero-assurance {
    margin: 0;
    padding-right: 12px;
    border-right: 1px solid rgba(157, 190, 226, 0.18);
    color: rgba(225, 236, 248, 0.9);
    font-size: 0.84rem;
}

.home-hero-rotator {
    color: rgba(186, 205, 226, 0.94);
    font-size: 0.92rem;
    font-weight: 500;
}

.home-hero-rotator #typewriter-text {
    color: #8be3e7;
    font-weight: 700;
}

.home-topology-experience {
    position: relative;
    display: grid;
    gap: 18px;
    padding: 24px;
    border-radius: 32px;
    border: 1px solid rgba(145, 184, 226, 0.16);
    background: linear-gradient(165deg, rgba(7, 18, 35, 0.94), rgba(8, 25, 46, 0.88));
    box-shadow: 0 32px 80px rgba(1, 6, 14, 0.38);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.home-topology-experience::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(0, 194, 203, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.home-topology-main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 20px;
    align-items: stretch;
}

.home-topology-shell {
    position: relative;
    min-height: 100%;
    padding: 20px;
    border-radius: 26px;
    border: 1px solid rgba(145, 184, 226, 0.08);
    background: linear-gradient(180deg, rgba(9, 24, 42, 0.76), rgba(8, 26, 48, 0.62));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.home-topology-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(146, 185, 224, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(146, 185, 224, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 12% 14%, rgba(0, 194, 203, 0.12), transparent 28%);
    background-size: 26px 26px, 26px 26px, auto;
    pointer-events: none;
}

.home-topology-shell::after {
    display: none;
}

.topology-board-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    margin-bottom: 18px;
}

.topology-board-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #86e8ee;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.topology-board-lead {
    max-width: 34ch;
    margin: 0;
    color: rgba(206, 228, 244, 0.82);
    font-size: 14px;
    line-height: 1.65;
}

.topology-board-meter {
    display: grid;
    gap: 6px;
    min-width: 164px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(111, 231, 231, 0.18);
    background: linear-gradient(135deg, rgba(13, 35, 64, 0.92), rgba(24, 77, 134, 0.86));
    box-shadow: 0 16px 28px rgba(5, 16, 30, 0.24);
}

.topology-board-meter-label {
    color: rgba(173, 221, 242, 0.7);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.topology-board-meter strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.1;
}

.topology-board {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.topology-board-column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 228px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(145, 184, 226, 0.1);
    background: linear-gradient(180deg, rgba(8, 21, 37, 0.72), rgba(10, 28, 49, 0.48));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
    transition: opacity 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.topology-board-column:nth-child(1),
.topology-board-column:nth-child(2),
.topology-board-column:nth-child(3),
.topology-board-column:nth-child(4) {
    background: linear-gradient(180deg, rgba(8, 21, 37, 0.78), rgba(10, 28, 49, 0.54));
}

.topology-board-phase {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topology-board-phase-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(113, 229, 236, 0.28);
    background: rgba(8, 21, 37, 0.92);
    color: #83e8ef;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.topology-board-phase-label {
    color: rgba(231, 241, 252, 0.92);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.topology-stage-card {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(145, 184, 226, 0.16);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(10, 28, 49, 0.92), rgba(10, 31, 55, 0.72));
    color: #dbeafe;
    text-align: left;
    box-shadow: 0 12px 22px rgba(2, 10, 22, 0.18);
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.topology-stage-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.topology-stage-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(111, 231, 231, 0.14);
    background: linear-gradient(180deg, rgba(16, 48, 79, 0.9), rgba(10, 31, 56, 0.82));
    color: #79e7e7;
    font-size: 20px;
    flex: 0 0 auto;
}

.topology-stage-badge {
    color: rgba(174, 218, 239, 0.74);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.topology-stage-title {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.15;
}

.topology-stage-copy {
    color: rgba(214, 232, 248, 0.8);
    font-size: 11px;
    line-height: 1.55;
}

.topology-stage-card:hover {
    border-color: rgba(111, 231, 231, 0.42);
    background: linear-gradient(180deg, rgba(10, 32, 57, 0.96), rgba(10, 37, 64, 0.82));
    box-shadow: 0 16px 28px rgba(8, 26, 46, 0.26);
}

.topology-stage-card.is-active {
    border-color: rgba(111, 231, 231, 0.78);
    background: linear-gradient(155deg, rgba(19, 72, 111, 0.96), rgba(21, 86, 168, 0.86) 62%, rgba(15, 186, 204, 0.92) 100%);
    box-shadow: 0 20px 34px rgba(8, 38, 64, 0.38);
}

.topology-board-signal {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(145, 184, 226, 0.12);
    color: rgba(182, 215, 236, 0.72);
    font-size: 10px;
    line-height: 1.55;
}

.topology-board-column.topology-track.is-dimmed {
    opacity: 0.48 !important;
}

.topology-stage-card.topology-hotspot.is-dimmed {
    opacity: 0.54 !important;
}

.topology-node-panel {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 24px 24px 22px;
    border-radius: 26px;
    border: 1px solid rgba(111, 231, 231, 0.16);
    background: linear-gradient(165deg, rgba(9, 24, 42, 0.96), rgba(16, 50, 87, 0.94));
    box-shadow: 0 24px 48px rgba(2, 10, 22, 0.28);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.topology-node-panel::before {
    content: "";
    position: absolute;
    right: -64px;
    bottom: -64px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 194, 203, 0.2), transparent 68%);
    pointer-events: none;
}

.topology-node-panel > * {
    position: relative;
    z-index: 1;
}

.topology-node-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #9feaed;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.topology-node-panel h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.02;
}

.topology-node-panel p {
    margin: 0 0 16px;
    color: rgba(222, 236, 251, 0.9);
    font-size: 14px;
    line-height: 1.75;
}

.topology-node-panel ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.topology-node-panel li {
    position: relative;
    padding-left: 16px;
    color: rgba(229, 240, 252, 0.92);
    font-size: 13px;
    line-height: 1.52;
}

.topology-node-panel li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #68e0e7;
}

.topology-node-meta {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: auto;
}

.topology-node-meta span {
    color: #8de6ea;
    font-size: 13px;
    font-family: var(--font-mono);
}

.topology-node-meta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid #f0702b;
    background: #f0702b;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 16px 26px rgba(240, 112, 43, 0.22);
}

.topology-node-meta a:hover {
    background: #cf5c1d;
    border-color: #cf5c1d;
}

.home-topology-controls {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 4px;
}

.home-topology-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.topology-filter-chip {
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #d6ebf7;
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.topology-filter-chip:hover,
.topology-filter-chip.is-active {
    border-color: rgba(111, 231, 231, 0.42);
    background: rgba(0, 194, 203, 0.16);
    color: #ffffff;
}

.home-topology-timeline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px;
    border-radius: 999px;
    border: 1px solid rgba(145, 184, 226, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.topology-phase {
    border: 0;
    border-radius: 999px;
    padding: 8px 12px;
    background: transparent;
    color: rgba(217, 239, 252, 0.76);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.topology-phase:hover,
.topology-phase.is-active {
    background: rgba(21, 86, 168, 0.72);
    color: #ffffff;
}

.home-topology-mobile-cards {
    display: none;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.home-topology-mobile-card {
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #d8eef9;
    border-radius: 999px;
    padding: 9px 14px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 600;
}

.home-topology-mobile-card.is-active {
    border-color: rgba(111, 231, 231, 0.42);
    background: rgba(0, 194, 203, 0.16);
    color: #ffffff;
}

.proof-strip {
    position: relative;
    z-index: 2;
    margin-top: -42px;
    padding: 0 0 18px;
    background: transparent;
    border: 0;
}

.proof-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(7, 18, 35, 0.96), rgba(14, 49, 84, 0.94));
    box-shadow: 0 26px 46px rgba(2, 10, 22, 0.2);
}

.proof-metric {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-metric-value {
    color: #ffffff;
}

.proof-metric-label {
    color: rgba(214, 232, 248, 0.82);
}

@media (max-width: 1280px) {
    .home-hero-grid {
        grid-template-columns: minmax(0, 0.88fr) minmax(620px, 1.12fr);
    }

    .home-hero-heading-stack {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-hero-copy {
        padding: 38px 34px 32px;
    }

    .home-topology-main {
        grid-template-columns: 1fr;
    }

    .home-topology-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .home-topology-timeline {
        width: fit-content;
        align-self: center;
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .home-hero {
        min-height: 0;
        padding-top: 120px;
        padding-bottom: 64px;
        background-position: center;
    }

    .home-hero-copy {
        padding: 34px 28px 28px;
        border-radius: 24px;
    }

    .home-hero-heading-stack {
        grid-template-columns: 1fr;
    }

    .home-hero-title {
        max-width: 9ch;
    }

    .home-hero-subrail {
        grid-template-columns: 1fr;
    }

    .home-hero-assurance {
        padding-right: 0;
        padding-bottom: 10px;
        border-right: 0;
        border-bottom: 1px solid rgba(157, 190, 226, 0.18);
    }

    .home-topology-experience {
        padding: 20px;
        border-radius: 26px;
    }

    .home-topology-main {
        grid-template-columns: 1fr;
    }

    .home-topology-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .home-topology-timeline {
        width: 100%;
        justify-content: space-between;
    }

    .proof-strip {
        margin-top: 0;
        padding-top: 12px;
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding-top: 108px;
        padding-bottom: 48px;
    }

    .home-hero-copy {
        padding: 28px 22px 22px;
    }

    .home-hero-title {
        max-width: none;
        font-size: clamp(2.7rem, 11vw, 3.8rem);
    }

    .home-hero-lead {
        font-size: 0.98rem;
    }

    .home-hero-points li {
        font-size: 0.92rem;
    }

    .home-hero-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .home-topology-experience {
        padding: 14px;
        border-radius: 22px;
    }

    .home-topology-shell {
        padding: 16px;
        border-radius: 20px;
    }

    .topology-board-head {
        grid-template-columns: 1fr;
    }

    .topology-board-meter {
        min-width: 0;
    }

    .topology-board {
        grid-template-columns: 1fr;
    }

    .topology-board-column {
        min-height: auto;
    }

    .topology-node-panel {
        padding: 20px 18px 18px;
        border-radius: 20px;
    }

    .topology-node-panel h3 {
        font-size: 26px;
    }

    .home-topology-chips {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .home-topology-mobile-cards {
        display: flex;
    }

    .home-topology-timeline {
        justify-content: flex-start;
        overflow-x: auto;
    }

    .proof-strip-grid {
        padding: 16px;
        border-radius: 18px;
    }
}

/* =========================================================================
   SOLUTION AI AUTOMATION PAGE
   ========================================================================= */
.ai-automation-hero {
    min-height: 0;
    padding: 148px 0 110px;
    background-position: center;
    overflow: hidden;
}

.ai-automation-hero-overlay {
    background:
        linear-gradient(92deg, rgba(2, 10, 24, 0.94) 0%, rgba(5, 18, 38, 0.86) 44%, rgba(5, 20, 42, 0.76) 100%),
        radial-gradient(circle at 82% 18%, rgba(0, 194, 203, 0.16), transparent 22%);
}

.ai-automation-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 32px;
    align-items: stretch;
}

.ai-automation-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
    border-radius: 34px;
    border: 1px solid rgba(146, 185, 224, 0.16);
    background: linear-gradient(160deg, rgba(5, 18, 37, 0.9), rgba(9, 31, 56, 0.76));
    box-shadow: 0 32px 72px rgba(2, 10, 22, 0.34);
    backdrop-filter: blur(14px);
}

.ai-automation-hero-eyebrow {
    margin-bottom: 18px;
    color: #91ebf0;
    text-align: left;
}

.ai-automation-hero-title {
    max-width: 8ch;
    margin: 0 0 18px;
    color: #ffffff;
    text-align: left;
    line-height: 0.92;
}

.ai-automation-hero-desc {
    max-width: 38ch;
    margin: 0;
    color: rgba(224, 236, 250, 0.88);
    text-align: left;
    font-size: 1.08rem;
    line-height: 1.85;
}

.ai-automation-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.ai-automation-hero-secondary {
    border: 1px solid rgba(111, 231, 231, 0.28);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    padding: 15px 26px;
}

.ai-automation-hero-secondary:hover {
    border-color: rgba(111, 231, 231, 0.52);
    color: #ffffff;
    background: rgba(0, 194, 203, 0.12);
}

.ai-platform-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-automation-hero-pills {
    margin-top: 20px;
}

.ai-platform-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(111, 231, 231, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #cfe7f7;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.ai-automation-hero-note {
    margin-top: 22px;
    padding: 18px 20px;
    border-radius: 22px;
    border: 1px solid rgba(111, 231, 231, 0.14);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.ai-automation-hero-note-label {
    display: inline-block;
    margin-bottom: 8px;
    color: #8ce8ed;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ai-automation-hero-note p {
    margin: 0;
    color: rgba(220, 236, 249, 0.84);
    font-size: 14px;
    line-height: 1.7;
}

.ai-automation-hero-board {
    display: flex;
}

.ai-automation-stack-shell {
    position: relative;
    width: 100%;
    padding: 26px;
    border-radius: 34px;
    border: 1px solid rgba(145, 184, 226, 0.16);
    background: linear-gradient(165deg, rgba(7, 18, 35, 0.94), rgba(8, 25, 46, 0.9));
    box-shadow: 0 36px 78px rgba(1, 6, 14, 0.34);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.ai-automation-stack-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(0, 194, 203, 0.14), transparent 26%),
        linear-gradient(rgba(146, 185, 224, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(146, 185, 224, 0.04) 1px, transparent 1px);
    background-size: auto, 28px 28px, 28px 28px;
    pointer-events: none;
}

.ai-automation-stack-shell > * {
    position: relative;
    z-index: 1;
}

.ai-automation-stack-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: start;
    margin-bottom: 18px;
}

.ai-automation-stack-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #8feaf0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.ai-automation-stack-lead {
    max-width: 36ch;
    margin: 0;
    color: rgba(206, 228, 244, 0.82);
    font-size: 14px;
    line-height: 1.68;
}

.ai-automation-stack-meter {
    display: grid;
    gap: 6px;
    min-width: 178px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(111, 231, 231, 0.18);
    background: linear-gradient(135deg, rgba(13, 35, 64, 0.92), rgba(24, 77, 134, 0.86));
    box-shadow: 0 16px 28px rgba(5, 16, 30, 0.24);
}

.ai-automation-stack-meter-label {
    color: rgba(173, 221, 242, 0.7);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ai-automation-stack-meter strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.1;
}

.ai-automation-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ai-automation-stack-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 188px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: linear-gradient(180deg, rgba(10, 28, 49, 0.9), rgba(10, 31, 55, 0.72));
    box-shadow: 0 12px 24px rgba(2, 10, 22, 0.16);
}

.ai-automation-stack-card--primary {
    border-color: rgba(111, 231, 231, 0.52);
    background: linear-gradient(155deg, rgba(19, 72, 111, 0.96), rgba(21, 86, 168, 0.86) 62%, rgba(15, 186, 204, 0.92) 100%);
    box-shadow: 0 18px 32px rgba(8, 38, 64, 0.3);
}

.ai-automation-stack-card--accent {
    border-color: rgba(248, 177, 92, 0.22);
    background: linear-gradient(160deg, rgba(21, 25, 54, 0.94), rgba(40, 31, 77, 0.9));
}

.ai-automation-stack-card-label {
    color: rgba(174, 218, 239, 0.8);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ai-automation-stack-card strong {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.1;
}

.ai-automation-stack-card p {
    margin: 0;
    color: rgba(214, 232, 248, 0.82);
    font-size: 13px;
    line-height: 1.7;
}

.ai-automation-stack-chiprow {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.ai-automation-stack-chiprow span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #d6ebf7;
    font-size: 11px;
    font-weight: 700;
}

.ai-automation-stack-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.ai-automation-stack-footer span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(214, 232, 248, 0.86);
    font-size: 12px;
    font-weight: 600;
}

.ai-automation-principles {
    padding: 100px 0;
    background: linear-gradient(180deg, #f4f9fc 0%, #edf6fb 100%);
}

.ai-automation-principles-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
    gap: 48px;
    align-items: center;
}

.ai-automation-section-subtitle {
    color: var(--brand-green);
    font-weight: 700;
    letter-spacing: 1px;
}

.ai-automation-section-title {
    margin-bottom: 20px;
    color: var(--primary-navy);
    font-size: 2.3rem;
}

.ai-automation-section-body {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.06rem;
    line-height: 1.86;
}

.ai-automation-section-body--secondary {
    margin-bottom: 30px;
}

.ai-automation-principle-callout {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 20px 22px;
    border-radius: 22px;
    border: 1px solid rgba(13, 39, 68, 0.08);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08);
}

.ai-automation-principle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(21, 86, 168, 0.1);
    color: var(--brand-blue);
    font-size: 24px;
}

.ai-automation-principles-stage {
    min-height: 100%;
}

.ai-automation-principles-shell {
    position: relative;
    min-height: 560px;
    padding: 26px;
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(4, 16, 30, 0.76), rgba(5, 20, 42, 0.66)),
        url('../img/themed/ai_hero.png') center/cover;
    border: 1px solid rgba(13, 39, 68, 0.08);
    box-shadow: 0 28px 58px rgba(10, 22, 40, 0.16);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ai-automation-principles-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 84% 18%, rgba(0, 194, 203, 0.22), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.ai-automation-principles-shell > * {
    position: relative;
    z-index: 1;
}

.ai-automation-principles-card {
    max-width: 92%;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(13, 39, 68, 0.08);
    box-shadow: 0 18px 36px rgba(10, 22, 40, 0.16);
}

.ai-automation-principles-card--contrast {
    align-self: flex-end;
    background: linear-gradient(165deg, rgba(10, 24, 42, 0.96), rgba(16, 50, 87, 0.94));
    border-color: rgba(145, 184, 226, 0.14);
}

.ai-automation-principles-card-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--brand-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ai-automation-principles-card--contrast .ai-automation-principles-card-kicker {
    color: #8feaf0;
}

.ai-automation-principles-card strong {
    display: block;
    color: var(--primary-navy);
    font-size: 22px;
    line-height: 1.25;
}

.ai-automation-principles-card--contrast strong {
    color: #ffffff;
}

.ai-automation-principles-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}

.ai-automation-principles-list li {
    position: relative;
    padding-left: 16px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.ai-automation-principles-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--brand-teal);
}

.ai-automation-principles-card--contrast .ai-automation-principles-list li {
    color: rgba(226, 236, 248, 0.86);
}

.ai-automation-principles-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ai-automation-principles-strip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(145, 184, 226, 0.16);
    background: rgba(255, 255, 255, 0.08);
    color: #ecf7ff;
    font-size: 12px;
    font-weight: 700;
}

.ai-automation-overview {
    padding: 100px 0;
    background: #ffffff;
}

.ai-automation-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 40px;
    align-items: start;
}

.ai-automation-overview-eyebrow {
    color: var(--brand-teal);
}

.ai-automation-overview-body {
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.85;
}

.ai-overview-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.ai-overview-list li {
    position: relative;
    padding-left: 18px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

.ai-overview-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand-teal);
}

.ai-automation-overview-signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.ai-automation-overview-signal {
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(13, 39, 68, 0.08);
    background: linear-gradient(160deg, #ffffff 0%, #f5fbfe 100%);
    box-shadow: 0 16px 34px rgba(10, 22, 40, 0.06);
}

.ai-automation-overview-signal span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-teal);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ai-automation-overview-signal strong {
    color: var(--primary-navy);
    font-size: 15px;
    line-height: 1.35;
}

.ai-tool-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 18px;
    align-items: stretch;
}

.ai-tool-showcase-panel {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 24px;
    border: 1px solid rgba(10, 22, 40, 0.08);
    background: linear-gradient(160deg, #ffffff 0%, #f5fbfe 100%);
    box-shadow: 0 18px 40px rgba(10, 22, 40, 0.08);
    padding: 24px;
}

.ai-tool-showcase-panel--external {
    background: linear-gradient(160deg, #0a1628 0%, #123150 100%);
    border-color: rgba(255, 255, 255, 0.08);
}

.ai-tool-showcase-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--brand-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ai-tool-showcase-panel--external .ai-tool-showcase-kicker {
    color: #8de6ea;
}

.ai-tool-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.ai-tool-grid--external {
    margin-bottom: 14px;
}

.ai-tool-card {
    position: relative;
    overflow: hidden;
    min-height: 104px;
    border-radius: 18px;
    border: 1px solid rgba(10, 22, 40, 0.08);
    background: #ffffff;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.ai-tool-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, rgba(0, 194, 203, 0.9), rgba(21, 86, 168, 0.8));
    opacity: 0.65;
}

.ai-tool-card strong {
    color: var(--primary-navy);
    font-size: 15px;
    line-height: 1.25;
}

.ai-tool-card span:last-child {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.45;
}

.ai-tool-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 194, 203, 0.1);
    color: var(--brand-navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ai-tool-card--sap .ai-tool-mark {
    background: rgba(21, 86, 168, 0.1);
    color: #0b57a1;
}

.ai-tool-card--openai .ai-tool-mark {
    background: rgba(16, 185, 129, 0.12);
    color: #0f766e;
}

.ai-tool-card--anthropic .ai-tool-mark {
    background: rgba(180, 83, 9, 0.12);
    color: #9a3412;
}

.ai-tool-card--google .ai-tool-mark {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.ai-tool-card--cursor .ai-tool-mark {
    background: rgba(99, 102, 241, 0.12);
    color: #3730a3;
}

.ai-tool-showcase-panel--external .ai-tool-card {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
}

.ai-tool-showcase-panel--external .ai-tool-card::before {
    background: linear-gradient(90deg, rgba(141, 230, 234, 0.9), rgba(248, 177, 92, 0.76));
}

.ai-tool-showcase-panel--external .ai-tool-card strong {
    color: #ffffff;
}

.ai-tool-showcase-panel--external .ai-tool-card span:last-child {
    color: rgba(214, 232, 248, 0.76);
}

.ai-tool-disclaimer {
    margin: auto 0 0;
    color: rgba(214, 232, 248, 0.82);
    font-size: 12px;
    line-height: 1.6;
}

.ai-automation-capabilities {
    padding: 96px 0;
    background: linear-gradient(180deg, #eef6fb 0%, #f7fafc 100%);
}

.ai-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}

.ai-capability-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(13, 39, 68, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(10, 22, 40, 0.06);
}

.ai-capability-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(90deg, var(--brand-teal), #1d4ed8);
}

.ai-capability-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.ai-capability-index {
    color: #d6e7f8;
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.ai-capability-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(0, 194, 203, 0.1);
    color: var(--brand-blue);
    font-size: 22px;
}

.ai-capability-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.ai-capability-meta span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 194, 203, 0.08);
    color: var(--brand-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.ai-automation-outcomes {
    padding: 88px 0;
    background: linear-gradient(180deg, #071427 0%, #0a1c34 100%);
}

.ai-automation-outcomes-shell {
    padding: 42px;
    border-radius: 34px;
    border: 1px solid rgba(111, 231, 231, 0.14);
    background: linear-gradient(165deg, rgba(7, 18, 35, 0.96), rgba(8, 25, 46, 0.9));
    box-shadow: 0 32px 70px rgba(1, 6, 14, 0.3);
}

.ai-automation-outcomes-head {
    max-width: 780px;
    margin: 0 auto 34px;
}

.ai-automation-outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.ai-outcome-card {
    padding: 34px 22px;
    border-radius: 22px;
    border: 1px solid rgba(0, 194, 203, 0.2);
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.ai-outcome-value {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.ai-outcome-value span {
    color: var(--brand-teal);
}

.ai-outcome-label {
    margin-top: 16px;
    color: #00c2cb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ai-automation-outcomes-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}

.ai-automation-outcomes-note {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(145, 184, 226, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(214, 232, 248, 0.84);
    font-size: 13px;
    line-height: 1.7;
}

.ai-automation-method {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbfd 0%, #eef6fb 100%);
}

.ai-method-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    text-align: left;
}

.ai-method-card {
    position: relative;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(13, 39, 68, 0.08);
    background: #ffffff;
    box-shadow: 0 18px 36px rgba(10, 22, 40, 0.06);
}

.ai-method-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(90deg, rgba(0, 194, 203, 0.82), rgba(21, 86, 168, 0.74));
}

.ai-method-index {
    margin: 0 0 16px;
    color: #d9e7f6;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.ai-automation-usecases {
    padding: 100px 0;
    background: #ffffff;
}

.ai-usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}

.ai-usecase-card {
    position: relative;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(13, 39, 68, 0.08);
    background: linear-gradient(160deg, #ffffff 0%, #f6fbfe 100%);
    box-shadow: 0 18px 36px rgba(10, 22, 40, 0.06);
}

.ai-usecase-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand-teal);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ai-usecase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-usecase-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(21, 86, 168, 0.08);
    color: var(--brand-blue);
    font-size: 11px;
    font-weight: 700;
}

.ai-automation-related {
    padding: 100px 0;
    background:
        radial-gradient(circle at top right, rgba(0, 194, 203, 0.16), transparent 28%),
        linear-gradient(180deg, #071427 0%, #0a0f1e 100%);
}

.ai-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    text-align: left;
}

.ai-related-link {
    text-decoration: none;
}

.ai-related-card {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 36px rgba(2, 10, 22, 0.14);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.ai-related-card:hover {
    transform: translateY(-4px);
    border-color: rgba(111, 231, 231, 0.24);
    background: rgba(255, 255, 255, 0.07);
}

.ai-related-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #8de6ea;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.ai-related-copy {
    margin: 0 0 18px;
    color: rgba(214, 232, 248, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

.ai-automation-cta {
    padding: 100px 0;
    background: linear-gradient(180deg, #eef5fb 0%, #f8fbfd 100%);
    border-top: 1px solid var(--border-color);
}

.ai-automation-cta-shell {
    padding: 48px 44px;
    border-radius: 32px;
    border: 1px solid rgba(13, 39, 68, 0.08);
    background: #ffffff;
    box-shadow: 0 24px 52px rgba(10, 22, 40, 0.08);
}

.ai-automation-cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.ai-automation-cta-secondary {
    border: 2px solid var(--brand-teal);
    color: var(--brand-teal);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 999px;
}

@media (max-width: 1200px) {
    .ai-automation-hero-grid,
    .ai-automation-principles-grid,
    .ai-automation-overview-grid,
    .ai-tool-showcase {
        grid-template-columns: 1fr;
    }

    .ai-method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .ai-automation-hero {
        padding: 132px 0 84px;
    }

    .ai-automation-hero-copy,
    .ai-automation-stack-shell {
        padding: 28px;
        border-radius: 28px;
    }

    .ai-automation-stack-head {
        grid-template-columns: 1fr;
    }

    .ai-automation-overview-signals,
    .ai-automation-outcomes-grid,
    .ai-automation-outcomes-notes {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ai-tool-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .ai-automation-hero {
        padding: 112px 0 64px;
    }

    .ai-automation-hero-copy,
    .ai-automation-stack-shell,
    .ai-automation-principles-shell,
    .ai-automation-outcomes-shell,
    .ai-automation-cta-shell {
        padding: 22px;
        border-radius: 24px;
    }

    .ai-automation-hero-title {
        max-width: none;
    }

    .ai-automation-hero-actions .btn,
    .ai-automation-cta-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .ai-automation-stack-grid,
    .ai-tool-grid,
    .ai-automation-overview-signals,
    .ai-automation-outcomes-grid,
    .ai-automation-outcomes-notes,
    .ai-method-grid {
        grid-template-columns: 1fr;
    }

    .ai-automation-principles-card,
    .ai-automation-principles-card--contrast {
        max-width: 100%;
    }

    .ai-capability-card,
    .ai-method-card,
    .ai-usecase-card,
    .ai-related-card {
        padding: 24px;
    }

    .ai-tool-card {
        min-height: 0;
    }

    .ai-outcome-value {
        font-size: 44px;
    }
}

/* =========================================================================
   BTP CAPABILITY CARD ALIGNMENT
   ========================================================================= */
.btp-capability-grid {
    align-items: stretch;
}

.btp-capability-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.btp-capability-kicker {
    min-height: 2.9em;
}

.btp-capability-kicker--ghost {
    visibility: hidden;
}

.btp-capability-title {
    min-height: 2.6em;
    display: flex;
    align-items: flex-end;
}

.btp-capability-link {
    margin-top: auto;
}

@media (max-width: 768px) {
    .btp-capability-kicker,
    .btp-capability-title {
        min-height: 0;
    }
}

/* =========================================================================
   HOMEPAGE HERO VNEXT
   ========================================================================= */
.home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 0.94fr);
    gap: 48px;
    align-items: center;
}

.home-hero-copy {
    max-width: 680px;
    padding-top: 0;
    background: none;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    min-height: 0;
}

.home-hero-copy::before {
    display: none;
}

.home-hero-eyebrow {
    margin-bottom: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: #08d1de;
}

.home-hero-heading-stack {
    gap: 0;
    margin-bottom: 26px;
}

.home-hero-title {
    max-width: 10ch;
    color: #ffffff !important;
    font-size: clamp(3.35rem, 5.25vw, 5.5rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
}

.home-hero-title span {
    background: linear-gradient(120deg, #7df0f1 0%, #28d6e7 54%, #c2fbff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.home-hero-brief {
    display: none;
}

.home-hero-lead {
    max-width: 38ch;
    margin-bottom: 24px;
    color: rgba(226, 238, 255, 0.9);
    font-size: 1.02rem;
    line-height: 1.74;
}

.home-hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 26px;
}

.home-hero-points li {
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    color: rgba(239, 246, 255, 0.96);
    font-size: 0.95rem;
    line-height: 1.6;
    gap: 12px;
}

.home-hero-points li:last-child {
    grid-column: auto;
}

.home-hero-points i {
    width: auto;
    height: auto;
    margin-top: 4px;
    border-radius: 0;
    background: none;
    color: #00d0de;
    font-size: 1rem;
}

.home-hero-cta-row {
    margin-bottom: 18px;
}

.home-hero-cta-row .btn {
    min-height: 54px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.home-hero-cta-primary {
    border: 1px solid rgba(255, 191, 152, 0.38);
    background: linear-gradient(135deg, #ff8c43 0%, var(--cta-orange) 56%, #c95722 100%);
    color: #ffffff !important;
    box-shadow: 0 18px 42px rgba(228, 106, 46, 0.3);
}

.home-hero-cta-primary:hover {
    background: linear-gradient(135deg, #ff9a55 0%, #eb7134 56%, #cf5b26 100%);
    box-shadow: 0 22px 48px rgba(228, 106, 46, 0.34);
}

.home-hero-cta-secondary {
    border: 1px solid rgba(164, 191, 226, 0.28);
    background: linear-gradient(180deg, rgba(7, 24, 45, 0.94), rgba(10, 31, 56, 0.88));
    color: #f3f7ff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 36px rgba(3, 11, 23, 0.28);
}

.home-hero-cta-secondary:hover {
    border-color: rgba(110, 225, 233, 0.62);
    background: linear-gradient(135deg, rgba(12, 46, 82, 0.96), rgba(14, 138, 138, 0.34));
    color: #ffffff !important;
    box-shadow: 0 20px 42px rgba(4, 18, 34, 0.34);
}

.home-hero-subrail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: none;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
}

.home-hero-assurance {
    padding-right: 0;
    border-right: 0;
    color: rgba(225, 236, 248, 0.9);
    font-size: 0.95rem;
}

.home-hero-rotator {
    color: rgba(186, 205, 226, 0.94);
    font-size: 0.95rem;
    font-weight: 500;
}

.home-hero-rotator #typewriter-text {
    color: #00d0de;
    font-weight: 700;
}

.home-hero-signal-panel {
    min-width: 0;
}

.hero-signal-frame {
    position: relative;
    padding: 18px;
    border-radius: 28px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: linear-gradient(180deg, rgba(8, 23, 43, 0.74), rgba(8, 29, 50, 0.52));
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(10px);
}

.hero-signal-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.hero-signal-canvas {
    position: relative;
    min-height: 360px;
    border-radius: 24px;
    border: 1px solid rgba(145, 184, 226, 0.1);
    background:
        linear-gradient(rgba(111, 198, 226, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 198, 226, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(4, 17, 32, 0.18), rgba(4, 17, 32, 0.06));
    background-size: 30px 30px, 30px 30px, auto;
    overflow: hidden;
}

.hero-signal-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-signal-path {
    fill: none;
    stroke: rgba(71, 213, 235, 0.42);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 7 11;
}

.hero-signal-path--soft {
    stroke: rgba(71, 213, 235, 0.18);
}

.hero-signal-node {
    position: absolute;
    left: var(--x);
    top: var(--y);
    display: grid;
    gap: 10px;
    justify-items: center;
    transform: translate(-50%, -50%);
    min-width: max-content;
    background: transparent;
    border: 0;
    color: #e8f7ff;
    cursor: pointer;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hero-signal-node:hover,
.hero-signal-node:focus-visible,
.hero-signal-node.is-active {
    transform: translate(-50%, -50%) scale(1.03);
}

.hero-signal-node:focus-visible {
    outline: none;
}

.hero-signal-node-dot {
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, #6fedf0, #22cadc);
    box-shadow: 0 0 0 6px rgba(34, 202, 220, 0.12);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.hero-signal-node.is-active .hero-signal-node-dot {
    transform: scale(1.16);
    box-shadow: 0 0 0 10px rgba(34, 202, 220, 0.18);
}

.hero-signal-node-label {
    color: rgba(230, 245, 255, 0.92);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    white-space: nowrap;
    text-shadow: 0 8px 22px rgba(1, 8, 18, 0.42);
}

.hero-signal-example {
    position: absolute;
    right: 18px;
    bottom: 16px;
    width: min(220px, calc(100% - 36px));
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(145, 184, 226, 0.12);
    background: linear-gradient(180deg, rgba(7, 20, 38, 0.94), rgba(6, 19, 36, 0.9));
    box-shadow: 0 18px 36px rgba(1, 8, 18, 0.28);
}

.hero-signal-example-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #8ce7ec;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-signal-example h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.15rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.hero-signal-example p {
    margin: 0 0 12px;
    color: rgba(220, 234, 248, 0.84);
    font-size: 0.88rem;
    line-height: 1.56;
}

.hero-signal-example a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(145, 184, 226, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #eef7ff;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.hero-signal-example a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(110, 231, 231, 0.26);
}

.hero-signal-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.hero-signal-tags span {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: rgba(8, 24, 42, 0.72);
    color: rgba(230, 245, 255, 0.92);
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .home-hero-copy {
        max-width: none;
    }
}

@media (max-width: 1024px) {
    .home-hero-title {
        max-width: 11ch;
    }

    .hero-signal-example {
        width: min(240px, calc(100% - 36px));
    }
}

@media (max-width: 768px) {
    .home-hero-title {
        max-width: none;
        font-size: clamp(2.7rem, 11vw, 3.7rem);
    }

    .home-hero-lead,
    .home-hero-assurance,
    .home-hero-rotator {
        font-size: 0.98rem;
    }

    .home-hero-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-signal-frame {
        padding: 14px;
        border-radius: 24px;
    }

    .hero-signal-canvas {
        min-height: 300px;
    }

    .hero-signal-node-label {
        font-size: 11px;
    }

    .hero-signal-example {
        right: 12px;
        bottom: 12px;
    }
}

@media (max-width: 560px) {
    .hero-signal-canvas {
        min-height: 260px;
    }

    .hero-signal-node-label {
        font-size: 10px;
    }

    .hero-signal-example {
        position: static;
        width: 100%;
        margin: 14px 12px 0;
    }

    .hero-signal-tags {
        justify-content: stretch;
    }

    .hero-signal-tags span {
        flex: 1 1 100%;
        text-align: center;
    }
}

.home-hero-example-lab {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 100%;
    padding: 24px;
    border-radius: 32px;
    border: 1px solid rgba(145, 184, 226, 0.16);
    background:
        linear-gradient(180deg, rgba(6, 19, 36, 0.96), rgba(8, 28, 50, 0.9)),
        radial-gradient(circle at 82% 16%, rgba(0, 194, 203, 0.12), transparent 26%);
    box-shadow: 0 34px 84px rgba(1, 6, 14, 0.42);
    overflow: hidden;
    backdrop-filter: blur(14px);
}

.home-hero-example-lab::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(146, 185, 224, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(146, 185, 224, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 92%);
    pointer-events: none;
}

.home-hero-example-lab > * {
    position: relative;
    z-index: 1;
}

.home-hero-example-head {
    display: grid;
    gap: 10px;
}

.home-hero-example-kicker,
.hero-example-label,
.hero-sidecard-label,
.hero-example-badge {
    display: inline-block;
    color: #8ce7ec;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-hero-example-intro {
    display: grid;
    gap: 6px;
    max-width: 32ch;
}

.home-hero-example-intro h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.7rem, 2.4vw, 2.35rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.home-hero-example-intro p {
    margin: 0;
    color: rgba(220, 234, 248, 0.8);
    font-size: 0.9rem;
    line-height: 1.55;
}

.home-hero-example-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-example-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 9px 14px;
    border: 1px solid rgba(145, 184, 226, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(226, 238, 255, 0.86);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.hero-example-chip:hover,
.hero-example-chip:focus-visible,
.hero-example-chip.is-active {
    background: rgba(18, 89, 131, 0.62);
    border-color: rgba(110, 231, 231, 0.28);
    color: #ffffff;
}

.hero-example-chip:focus-visible {
    outline: 2px solid rgba(110, 231, 231, 0.24);
    outline-offset: 2px;
}

.home-hero-example-panel {
    display: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
    gap: 18px;
    align-items: stretch;
}

.home-hero-example-panel.is-active {
    display: grid;
}

.hero-example-screen,
.hero-example-copy {
    min-width: 0;
}

.hero-example-screen {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 26px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: linear-gradient(160deg, rgba(8, 22, 40, 0.9), rgba(8, 24, 42, 0.72));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-example-windowbar {
    display: flex;
    gap: 8px;
}

.hero-example-windowbar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(173, 221, 242, 0.22);
}

.hero-example-windowbar span:nth-child(1) {
    background: rgba(228, 106, 46, 0.82);
}

.hero-example-windowbar span:nth-child(2) {
    background: rgba(249, 192, 78, 0.82);
}

.hero-example-windowbar span:nth-child(3) {
    background: rgba(110, 231, 231, 0.82);
}

.hero-example-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(196, 221, 245, 0.74);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-example-screen-title {
    display: block;
    color: #ffffff;
    font-size: 1.3rem;
    line-height: 1.08;
}

.hero-btp-layout,
.hero-s4-layout,
.hero-joule-layout {
    display: grid;
    gap: 14px;
    min-height: 248px;
}

.hero-btp-layout {
    grid-template-columns: minmax(0, 1.05fr) 170px;
}

.hero-btp-primary {
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(110, 231, 231, 0.16);
    background: linear-gradient(155deg, rgba(18, 65, 112, 0.8), rgba(13, 146, 144, 0.56));
}

.hero-btp-route {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-btp-route span,
.hero-joule-actions span {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(241, 248, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
}

.hero-btp-sidecards,
.hero-s4-checks {
    display: grid;
    gap: 12px;
}

.hero-sidecard {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(145, 184, 226, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.hero-sidecard--accent {
    border-color: rgba(110, 231, 231, 0.26);
    box-shadow: inset 2px 0 0 rgba(110, 231, 231, 0.76);
}

.hero-sidecard strong {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.45;
}

.hero-s4-layout {
    grid-template-columns: minmax(0, 1fr) 180px;
}

.hero-s4-timeline {
    display: grid;
    gap: 12px;
}

.hero-s4-step {
    position: relative;
    padding: 16px 18px 16px 48px;
    border-radius: 18px;
    border: 1px solid rgba(145, 184, 226, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(231, 241, 252, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-s4-step::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    transform: translateY(-50%);
    border: 2px solid rgba(145, 184, 226, 0.28);
}

.hero-s4-step.is-done::before {
    background: rgba(110, 231, 231, 0.88);
    border-color: rgba(110, 231, 231, 0.88);
}

.hero-s4-step.is-live {
    border-color: rgba(228, 106, 46, 0.24);
    background: linear-gradient(135deg, rgba(71, 35, 14, 0.68), rgba(26, 32, 50, 0.4));
}

.hero-s4-step.is-live::before {
    background: rgba(228, 106, 46, 0.88);
    border-color: rgba(228, 106, 46, 0.88);
}

.hero-joule-layout {
    align-content: start;
}

.hero-joule-bubble {
    max-width: 88%;
    padding: 14px 16px;
    border-radius: 18px;
    color: rgba(231, 241, 252, 0.92);
    font-size: 0.94rem;
    line-height: 1.65;
}

.hero-joule-bubble--user {
    justify-self: end;
    background: rgba(18, 89, 131, 0.64);
    border: 1px solid rgba(110, 231, 231, 0.18);
}

.hero-joule-bubble--assistant {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(145, 184, 226, 0.12);
}

.hero-joule-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.hero-example-copy {
    display: grid;
    align-content: center;
    gap: 14px;
    padding: 10px 6px;
}

.hero-example-copy h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.75rem, 2.3vw, 2.25rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-example-copy p {
    margin: 0;
    color: rgba(220, 234, 248, 0.84);
    font-size: 0.96rem;
    line-height: 1.72;
}

.hero-example-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-example-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(227, 239, 248, 0.88);
    font-size: 0.8rem;
    font-weight: 500;
}

.hero-example-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(145, 184, 226, 0.18);
    background: rgba(255, 255, 255, 0.05);
    color: #eef7ff;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.hero-example-link:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(110, 231, 231, 0.28);
    transform: translateY(-1px);
}

.home-hero-example-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.home-hero-example-proof {
    display: grid;
    gap: 4px;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid rgba(228, 106, 46, 0.18);
    background: linear-gradient(135deg, rgba(45, 21, 9, 0.84), rgba(76, 34, 12, 0.66));
}

.home-hero-example-proof strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.1;
}

.home-hero-example-proof span,
.home-hero-example-note {
    color: rgba(220, 234, 248, 0.78);
    font-size: 0.83rem;
    line-height: 1.55;
}

.home-hero-example-note {
    max-width: 36ch;
}

@media (max-width: 1280px) {
    .home-hero-example-panel {
        grid-template-columns: 1fr;
    }

    .hero-example-copy {
        padding: 0;
    }
}

@media (max-width: 1024px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-copy,
    .home-hero-example-lab {
        min-height: 0;
    }
}

@media (max-width: 768px) {
    .home-hero-example-lab {
        padding: 20px;
        border-radius: 26px;
    }

    .hero-example-screen {
        padding: 16px;
        border-radius: 22px;
    }

    .hero-btp-layout,
    .hero-s4-layout {
        grid-template-columns: 1fr;
    }

    .hero-btp-layout,
    .hero-s4-layout,
    .hero-joule-layout {
        min-height: 0;
    }

    .home-hero-example-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-example-link {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .home-hero-example-intro h2 {
        font-size: 1.48rem;
    }

    .home-hero-example-tabs {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-example-chip {
        justify-content: center;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-example-copy h3 {
        font-size: 1.52rem;
    }

    .hero-example-tags {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-example-link {
        justify-content: center;
    }
}

/* =========================================================================
   HOMEPAGE HERO REFRAME
   ========================================================================= */
.home-hero {
    min-height: 0;
    padding-top: 120px;
    padding-bottom: 44px;
}

.home-hero-grid {
    grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
    gap: clamp(24px, 2.8vw, 38px);
    align-items: stretch;
}

.home-hero-copy {
    display: grid;
    align-content: center;
    max-width: none;
    min-height: 448px;
    padding: 12px 8px 8px 0;
}

.home-hero-heading-stack {
    margin-bottom: 20px;
}

.home-hero-title {
    max-width: 9.2ch;
    font-size: clamp(2.95rem, 4.7vw, 4.95rem);
    line-height: 0.92;
    letter-spacing: -0.058em;
}

.home-hero-lead {
    max-width: none;
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.58;
}

.home-hero-points {
    max-width: none;
    gap: 8px;
    margin-bottom: 18px;
}

.home-hero-points li {
    align-items: flex-start;
    font-size: 0.92rem;
    line-height: 1.45;
}

.home-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.home-hero-cta-row .btn {
    min-height: 50px;
    padding: 13px 24px;
}

.home-hero-subrail {
    gap: 8px;
    max-width: none;
}

.home-hero-assurance,
.home-hero-rotator {
    max-width: none;
    font-size: 0.9rem;
    line-height: 1.5;
}

.home-hero-workbench {
    min-width: 0;
    display: flex;
}

.hero-workbench-shell {
    position: relative;
    display: grid;
    align-content: start;
    grid-template-rows: auto auto 1fr auto;
    gap: 14px;
    flex: 1;
    min-height: 448px;
    padding: 18px 18px 16px;
    border-radius: 30px;
    border: 1px solid rgba(145, 184, 226, 0.16);
    background:
        radial-gradient(circle at 82% 18%, rgba(228, 106, 46, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(7, 22, 40, 0.88), rgba(7, 26, 46, 0.66));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.hero-workbench-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(111, 198, 226, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(111, 198, 226, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 100%);
    pointer-events: none;
}

.hero-workbench-shell > * {
    position: relative;
    z-index: 1;
}

.hero-workbench-head {
    display: grid;
    gap: 6px;
    max-width: none;
}

.hero-workbench-kicker {
    color: #7feef2;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-workbench-head p {
    margin: 0;
    color: rgba(226, 238, 255, 0.88);
    max-width: 28ch;
    font-size: 0.9rem;
    line-height: 1.4;
}

.hero-tower-signals {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.hero-tower-signal {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: linear-gradient(180deg, rgba(10, 28, 49, 0.74), rgba(8, 23, 43, 0.54));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-tower-signal strong {
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-tower-signal span {
    color: rgba(197, 214, 232, 0.84);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero-workbench-stage {
    position: relative;
    min-height: 320px;
    border-radius: 24px;
    border: 1px solid rgba(145, 184, 226, 0.12);
    background:
        radial-gradient(circle at 50% 50%, rgba(13, 39, 68, 0.84), rgba(7, 18, 34, 0.9) 68%),
        linear-gradient(180deg, rgba(7, 19, 36, 0.96), rgba(7, 19, 36, 0.8));
    overflow: hidden;
}

.hero-workbench-stage::before,
.hero-workbench-stage::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-workbench-stage::before {
    inset: 26px 58px 48px;
    border: 1px dashed rgba(110, 231, 231, 0.18);
}

.hero-workbench-stage::after {
    inset: 62px 88px 78px;
    border: 1px solid rgba(110, 231, 231, 0.08);
}

.hero-workbench-stage--tower {
    display: grid;
    place-items: center;
    min-height: 314px;
    padding: 22px;
}

.hero-workbench-stage--tower::before {
    inset: 26px 42px 40px;
}

.hero-workbench-stage--tower::after {
    inset: 70px 110px 76px;
}

.hero-tower-anchor {
    position: absolute;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(126, 239, 242, 0.16);
    background: rgba(7, 20, 38, 0.82);
    color: #9cedf2;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-tower-anchor::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, rgba(126, 239, 242, 0.08), rgba(126, 239, 242, 0.34), transparent);
}

.hero-tower-anchor--s4 {
    left: 24px;
    top: 28px;
}

.hero-tower-anchor--s4::after {
    right: -34px;
    transform: rotate(14deg);
    transform-origin: left center;
}

.hero-tower-anchor--btp {
    right: 24px;
    top: 28px;
}

.hero-tower-anchor--btp::after {
    left: -34px;
    transform: rotate(-14deg);
    transform-origin: right center;
}

.hero-tower-anchor--run {
    right: 34px;
    bottom: 28px;
}

.hero-tower-anchor--run::after {
    left: -34px;
    width: 34px;
    transform: rotate(10deg);
    transform-origin: right center;
}

.hero-tower-board {
    position: relative;
    width: min(368px, calc(100% - 136px));
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(145, 184, 226, 0.16);
    background:
        radial-gradient(circle at 70% 18%, rgba(228, 106, 46, 0.16), transparent 28%),
        linear-gradient(165deg, rgba(14, 49, 90, 0.96), rgba(9, 27, 52, 0.92));
    box-shadow: 0 22px 48px rgba(1, 8, 18, 0.34);
}

.hero-tower-board::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.hero-tower-board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-tower-board-kicker {
    color: #9cedf2;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-tower-board-status {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 140, 67, 0.28), rgba(228, 106, 46, 0.2));
    border: 1px solid rgba(255, 171, 125, 0.34);
    color: #ffe2d0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-tower-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.hero-tower-timeline span {
    position: relative;
    padding-top: 18px;
    color: rgba(201, 216, 233, 0.74);
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-align: center;
    text-transform: uppercase;
}

.hero-tower-timeline span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transform: translateX(-50%);
    border: 2px solid rgba(145, 184, 226, 0.28);
    background: rgba(9, 23, 43, 0.9);
}

.hero-tower-timeline span::after {
    content: "";
    position: absolute;
    top: 4px;
    left: calc(50% + 10px);
    width: calc(100% - 20px);
    height: 1px;
    background: rgba(145, 184, 226, 0.18);
}

.hero-tower-timeline span:last-child::after {
    display: none;
}

.hero-tower-timeline .is-active {
    color: rgba(239, 246, 255, 0.96);
}

.hero-tower-timeline .is-active::before {
    border-color: rgba(126, 239, 242, 0.9);
    background: rgba(126, 239, 242, 0.92);
    box-shadow: 0 0 0 5px rgba(126, 239, 242, 0.12);
}

.hero-tower-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero-tower-metric {
    display: grid;
    gap: 6px;
    padding: 14px 12px;
    border-radius: 16px;
    border: 1px solid rgba(145, 184, 226, 0.12);
    background: rgba(5, 17, 32, 0.28);
}

.hero-tower-metric span {
    color: rgba(197, 214, 232, 0.78);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.35;
    text-transform: uppercase;
}

.hero-tower-metric strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-workbench-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(238px, calc(100% - 92px));
    padding: 18px 20px;
    border-radius: 24px;
    border: 1px solid rgba(145, 184, 226, 0.16);
    background: linear-gradient(165deg, rgba(14, 49, 90, 0.92), rgba(9, 27, 52, 0.92));
    box-shadow: 0 22px 48px rgba(1, 8, 18, 0.34);
    text-align: center;
}

.hero-workbench-core-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #8ce7ec;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-workbench-core strong {
    display: block;
    color: #ffffff;
    font-size: 1.28rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.hero-workbench-core p {
    margin: 10px 0 0;
    color: rgba(222, 235, 248, 0.82);
    font-size: 0.8rem;
    line-height: 1.48;
}

.hero-workbench-card {
    position: absolute;
    width: min(188px, calc(50% - 24px));
    padding: 14px 14px 13px;
    border-radius: 20px;
    border: 1px solid rgba(145, 184, 226, 0.12);
    background: linear-gradient(180deg, rgba(7, 20, 38, 0.92), rgba(9, 27, 46, 0.74));
    box-shadow: 0 18px 34px rgba(1, 8, 18, 0.26);
}

.hero-workbench-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, rgba(110, 231, 231, 0.06), rgba(110, 231, 231, 0.42), transparent);
    transform-origin: center;
}

.hero-workbench-card--s4 {
    top: 20px;
    left: 18px;
}

.hero-workbench-card--s4::after {
    right: -38px;
    transform: rotate(20deg);
}

.hero-workbench-card--btp {
    top: 36px;
    right: 18px;
}

.hero-workbench-card--btp::after {
    left: -38px;
    transform: rotate(-20deg);
}

.hero-workbench-card--joule {
    left: 50%;
    right: auto;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(204px, calc(100% - 96px));
}

.hero-workbench-card--joule::after {
    display: none;
}

.hero-workbench-card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    margin-bottom: 10px;
    border-radius: 999px;
    border: 1px solid rgba(126, 239, 242, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #8ce7ec;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-workbench-card h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 0.98rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.hero-workbench-card p {
    margin: 0;
    color: rgba(220, 234, 248, 0.82);
    font-size: 0.79rem;
    line-height: 1.45;
}

.hero-workbench-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
}

.hero-workbench-foot span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: rgba(8, 24, 42, 0.74);
    color: rgba(230, 245, 255, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
}

.home-hero-proofband-wrap {
    position: relative;
    z-index: 1;
    margin-top: 18px;
}

.home-hero-proofband {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.home-hero-proofmetric {
    padding: 16px 14px;
    border-radius: 18px;
    border: 1px solid rgba(145, 184, 226, 0.14);
    background: linear-gradient(180deg, rgba(8, 23, 43, 0.72), rgba(8, 29, 50, 0.52));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
}

.home-hero-proofmetric-value {
    color: #ffffff;
    font-size: clamp(1.8rem, 2.7vw, 2.45rem);
    font-weight: 800;
    line-height: 1;
}

.home-hero-proofmetric-label {
    margin-top: 8px;
    color: rgba(198, 216, 235, 0.82);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.45;
}

@media (max-width: 1200px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-copy {
        min-height: 0;
        padding-right: 0;
    }

    .home-hero-workbench {
        max-width: 720px;
    }

    .home-hero-lead,
    .home-hero-points,
    .home-hero-assurance,
    .home-hero-rotator {
        max-width: 42rem;
    }

    .home-hero-proofband {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    .home-hero {
        padding-top: 114px;
    }

    .home-hero-title {
        max-width: 10ch;
    }

    .hero-workbench-shell {
        min-height: 440px;
    }

    .hero-tower-board {
        width: min(400px, calc(100% - 96px));
    }
}

@media (max-width: 768px) {
    .home-hero {
        padding-top: 102px;
        padding-bottom: 32px;
    }

    .home-hero-title {
        max-width: none;
        font-size: clamp(2.45rem, 11vw, 3.55rem);
    }

    .home-hero-lead,
    .home-hero-points,
    .home-hero-assurance,
    .home-hero-rotator {
        max-width: none;
    }

    .home-hero-cta-row .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-workbench-shell {
        min-height: 0;
        padding: 18px;
        border-radius: 26px;
    }

    .hero-workbench-head {
        max-width: none;
    }

    .hero-workbench-head p {
        font-size: 0.92rem;
    }

    .hero-tower-signals {
        gap: 8px;
    }

    .hero-tower-signal {
        padding: 10px 10px 9px;
    }

    .hero-tower-signal strong {
        font-size: 0.9rem;
    }

    .hero-tower-signal span {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
    }

    .hero-workbench-stage {
        display: grid;
        gap: 12px;
        min-height: 0;
        padding: 16px;
    }

    .hero-workbench-stage::before,
    .hero-workbench-stage::after,
    .hero-workbench-card::after {
        display: none;
    }

    .hero-tower-anchor {
        display: none;
    }

    .hero-tower-board {
        width: 100%;
        padding: 16px;
    }

    .hero-tower-board-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-tower-timeline {
        gap: 6px;
    }

    .hero-tower-timeline span {
        font-size: 0.64rem;
        letter-spacing: 0.1em;
    }

    .hero-tower-metrics {
        gap: 8px;
    }

    .hero-workbench-foot span {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
    }

    .home-hero-proofband {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }
}

@media (max-width: 560px) {
    .home-hero-proofband {
        grid-template-columns: 1fr;
    }

    .hero-workbench-foot span {
        flex-basis: 100%;
    }
}

/* =========================================================================
   COMPANY ALLIANCE PARTNERS
   ========================================================================= */
.company-alliance-section {
    background-color: var(--gray-light);
    padding: 80px 0;
    border-top: 1px solid rgba(203, 213, 225, 0.9);
    border-bottom: 1px solid rgba(203, 213, 225, 0.9);
}

.company-alliance-eyebrow {
    color: var(--brand-teal);
}

.company-alliance-title {
    color: var(--primary-navy);
    font-size: 28px;
    margin-top: 12px;
    margin-bottom: 14px;
}

.company-alliance-intro {
    max-width: 760px;
    margin: 0 auto 36px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.company-alliance-groups {
    display: grid;
    gap: 28px;
}

.company-alliance-group {
    display: grid;
    gap: 16px;
}

.company-alliance-group-label {
    color: var(--text-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.company-alliance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 220px));
    justify-content: center;
    gap: 18px;
}

.company-alliance-grid--single {
    grid-template-columns: minmax(0, 220px);
}

.company-alliance-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 96px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.company-alliance-card:hover {
    transform: translateY(-2px);
    border-color: rgba(14, 138, 138, 0.24);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.08);
}

.company-alliance-logo {
    width: min(160px, 100%);
    height: 42px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.92;
    transition: filter var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

.company-alliance-card:hover .company-alliance-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.02);
}

@media (max-width: 900px) {
    .company-alliance-grid {
        grid-template-columns: repeat(2, minmax(0, 220px));
    }

    .company-alliance-grid--single {
        grid-template-columns: minmax(0, 220px);
    }
}

@media (max-width: 560px) {
    .company-alliance-section {
        padding: 64px 0;
    }

    .company-alliance-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-alliance-card {
        min-height: 88px;
    }
}

/* =========================================================================
   COMPANY PROFILE DETAIL
   ========================================================================= */
.company-profile-section {
    background:
        radial-gradient(circle at top left, rgba(0, 194, 203, 0.08), transparent 42%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border-top: 1px solid rgba(203, 213, 225, 0.7);
    border-bottom: 1px solid rgba(203, 213, 225, 0.8);
}

.company-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 42px;
    align-items: start;
}

.company-profile-copy .eyebrow {
    color: var(--brand-teal);
}

.company-profile-copy h2 {
    margin: 12px 0 18px;
    font-size: clamp(2rem, 3.6vw, 2.85rem);
    line-height: 1.08;
    color: var(--primary-navy);
}

.company-profile-copy > p {
    margin: 0 0 22px;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.02rem;
}

.company-profile-points {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    gap: 14px;
}

.company-profile-points li {
    position: relative;
    padding-left: 22px;
    color: var(--text-main);
    line-height: 1.7;
}

.company-profile-points li::before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand-teal);
    box-shadow: 0 0 0 6px rgba(0, 194, 203, 0.12);
}

.company-profile-callout {
    margin-bottom: 26px;
    padding: 20px 22px;
    border-radius: 18px;
    border: 1px solid rgba(14, 138, 138, 0.18);
    background: rgba(255, 255, 255, 0.78);
    color: var(--primary-navy);
    line-height: 1.75;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.company-profile-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.company-profile-card {
    padding: 24px 22px;
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 250, 255, 0.95) 100%);
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.company-profile-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--brand-teal);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.company-profile-card h3 {
    margin: 0 0 12px;
    color: var(--primary-navy);
    font-size: 1.16rem;
    line-height: 1.35;
}

.company-profile-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.96rem;
}

/* =========================================================================
   STRATEGIC ALLIANCE PARTNERS PAGE
   ========================================================================= */
.alliance-architecture-section {
    background:
        radial-gradient(circle at top left, rgba(0, 194, 203, 0.09), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.alliance-architecture-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
}

.alliance-architecture-copy .eyebrow {
    color: var(--brand-teal);
}

.alliance-architecture-copy h2 {
    margin: 12px 0 18px;
    color: var(--primary-navy);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.06;
}

.alliance-architecture-copy p {
    margin: 0 0 22px;
    color: var(--text-muted);
    line-height: 1.85;
}

.alliance-architecture-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.alliance-architecture-points li {
    position: relative;
    padding-left: 24px;
    color: var(--text-main);
    line-height: 1.75;
}

.alliance-architecture-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--brand-teal);
    box-shadow: 0 0 0 7px rgba(0, 194, 203, 0.14);
}

.alliance-architecture-shell {
    position: relative;
}

.alliance-network-board {
    position: relative;
    min-height: 560px;
    border-radius: 30px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid rgba(65, 130, 246, 0.18);
    background:
        linear-gradient(180deg, rgba(7, 22, 45, 0.98) 0%, rgba(5, 15, 33, 0.99) 100%);
    box-shadow: 0 34px 80px rgba(2, 12, 27, 0.22);
}

.alliance-network-board::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(48, 95, 168, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(48, 95, 168, 0.14) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18));
}

.alliance-network-board::after {
    content: "";
    position: absolute;
    inset: 14% 22%;
    border-radius: 999px;
    border: 1px dashed rgba(87, 195, 255, 0.22);
    box-shadow:
        0 0 0 48px rgba(8, 40, 90, 0.12),
        0 0 0 96px rgba(8, 40, 90, 0.08);
}

.alliance-network-node,
.alliance-network-hub {
    position: absolute;
    z-index: 2;
    border-radius: 24px;
    border: 1px solid rgba(88, 168, 255, 0.18);
    background: rgba(6, 22, 48, 0.9);
    box-shadow: 0 22px 48px rgba(0, 8, 20, 0.38);
    backdrop-filter: blur(12px);
}

.alliance-network-node {
    width: min(100%, 225px);
    padding: 18px 18px 16px;
}

.alliance-network-node--sap {
    top: 28px;
    left: 22px;
}

.alliance-network-node--cloud {
    top: 42px;
    right: 22px;
}

.alliance-network-node--ai {
    right: 58px;
    bottom: 98px;
}

.alliance-network-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 11px;
    border-radius: 999px;
    background: rgba(54, 122, 255, 0.16);
    color: #8de7ff;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.alliance-network-node strong {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 1.26rem;
    line-height: 1.2;
}

.alliance-network-node p {
    margin: 0;
    color: rgba(226, 237, 255, 0.76);
    font-size: 0.94rem;
    line-height: 1.7;
}

.alliance-network-hub {
    top: 50%;
    left: 50%;
    width: min(100%, 340px);
    padding: 26px 28px;
    transform: translate(-50%, -50%);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(18, 62, 124, 0.96) 0%, rgba(7, 31, 72, 0.98) 100%);
}

.alliance-network-hub h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 1.9rem;
    line-height: 1.06;
}

.alliance-network-hub p {
    margin: 0;
    color: rgba(230, 240, 255, 0.8);
    line-height: 1.75;
}

.alliance-network-tags {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 30px;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.alliance-network-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(114, 168, 255, 0.18);
    background: rgba(8, 26, 53, 0.82);
    color: rgba(235, 244, 255, 0.88);
    font-size: 0.9rem;
    font-weight: 600;
}

.alliance-application-section {
    background:
        radial-gradient(circle at top center, rgba(0, 194, 203, 0.13), transparent 30%),
        linear-gradient(180deg, #091729 0%, #061120 100%);
}

.alliance-application-intro {
    max-width: 760px;
    margin: 16px auto 0;
    color: rgba(221, 232, 247, 0.82);
    line-height: 1.8;
}

.alliance-application-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.alliance-application-card {
    padding: 26px 24px;
    border-radius: 24px;
    border: 1px solid rgba(89, 165, 255, 0.14);
    background: rgba(8, 24, 48, 0.76);
    box-shadow: 0 22px 50px rgba(0, 6, 18, 0.28);
}

.alliance-application-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #8de7ff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.alliance-application-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.35;
}

.alliance-application-card p {
    margin: 0;
    color: rgba(221, 232, 247, 0.8);
    line-height: 1.75;
}

@media (max-width: 1100px) {
    .company-profile-grid,
    .alliance-architecture-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-profile-cards,
    .alliance-application-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .alliance-network-board {
        min-height: auto;
        display: grid;
        gap: 18px;
    }

    .alliance-network-board::after {
        inset: 20% 16%;
    }

    .alliance-network-node,
    .alliance-network-hub,
    .alliance-network-tags {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        transform: none;
    }

    .alliance-network-hub {
        order: -1;
    }

    .alliance-network-tags {
        padding-top: 6px;
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .company-profile-section,
    .alliance-architecture-section,
    .company-alliance-section,
    .alliance-application-section {
        padding: 56px 0;
    }

    .company-profile-cards,
    .alliance-application-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-profile-copy h2,
    .alliance-architecture-copy h2 {
        font-size: 1.78rem;
        line-height: 1.1;
    }

    .company-profile-copy > p,
    .alliance-architecture-copy p,
    .company-alliance-intro,
    .alliance-application-intro {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .company-profile-points,
    .alliance-architecture-points {
        gap: 12px;
    }

    .company-profile-points li,
    .alliance-architecture-points li {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .company-profile-callout {
        padding: 18px 16px;
        border-radius: 16px;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .company-profile-card,
    .alliance-application-card {
        padding: 20px 18px;
        border-radius: 20px;
    }

    .company-profile-card h3,
    .alliance-application-card h3 {
        font-size: 1.08rem;
    }

    .company-profile-card p,
    .alliance-application-card p {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .alliance-network-board {
        padding: 20px;
        border-radius: 24px;
        gap: 14px;
    }

    .alliance-network-hub {
        padding: 20px 18px;
    }

    .alliance-network-hub h3 {
        font-size: 1.55rem;
    }

    .alliance-network-node {
        padding: 16px;
        border-radius: 20px;
    }

    .alliance-network-node strong {
        font-size: 1.12rem;
    }

    .alliance-network-node p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .alliance-network-tags {
        gap: 10px;
    }

    .alliance-network-tags span {
        min-height: 40px;
        padding: 8px 14px;
        font-size: 0.84rem;
    }

    .cta-panel .hero-actions {
        display: grid;
        gap: 12px;
    }

    .cta-panel .hero-actions .btn {
        width: 100%;
    }
}
