/**
 * NAU Nano Core Facility - Design System
 * --------------------------------------
 * Implements strict adherence to NAU Brand Guidelines.
 * Architecture: Mobile-First, Utility-Enhanced Component pattern.
 */
/**
 * Global Design Tokens (CSS Variables)
 * Centralizes all color, spacing, and typography to ensure consistency.
 * Theme updates should be applied here to cascade globally.
 */
:root {
    /* Official NAU Colors */
    --nau-blue: #002454;
    --nau-blue-dark: #001838;
    --nau-blue-light: #003a85;
    --nau-gold: #FAC01A;
    --nau-gold-dark: #dbb400;
    --nau-gold-light: #fdd054;
    --nau-green: #007a33;
    --nau-red: #bb0000;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --black: #000000;

    /* Thematic Variables */
    --bg-body: var(--white);
    --text-main: var(--nau-blue);
    --text-muted: var(--gray-600);
    --border-light: var(--gray-300);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Typography */
    --font-display: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    /* UI Elements - SOFTER EDGES */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    /* For pill shapes */

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 25px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.12);

    /* Transitions - APPLE/GOOGLE FEEL */
    --trans-fast: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
    --trans-med: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --trans-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    --trans-bouncy: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Sticky offsets */
    --site-header-height: 84px;
}

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

html {
    scroll-behavior: smooth;
    /* Native smooth scroll for anchor links */
    font-size: 16px;
    /* Base 1rem = 16px. Ensure user preference is respected. */
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    color: var(--text-main);
    /* MODERN FLUID BACKGROUND */
    background-color: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, rgba(0, 36, 84, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 36, 84, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(250, 192, 26, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(0, 36, 84, 0.03) 0px, transparent 50%);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

@media (max-width: 1024px) {
    /* Avoid costly parallax-like repainting on mobile browsers */
    body {
        background-attachment: scroll;
    }
}

::selection {
    background: var(--nau-gold);
    color: var(--nau-blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
    max-width: 70ch;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--trans-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/**
 * Utility Classes
 * --------------------------------------
 * Functional class primitives for overriding component styles or handling layout micro-adjustments.
 * Use these sparingly to maintain clean HTML.
 */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

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

.text-right {
    text-align: right;
}

.text-gold {
    color: var(--nau-gold);
}

.text-blue {
    color: var(--nau-blue);
}

.text-white {
    color: #fff;
}

.bg-blue {
    background-color: var(--nau-blue);
    color: #fff;
}

.bg-gold {
    background-color: var(--nau-gold);
    color: var(--nau-blue);
}

.bg-dark {
    background-color: var(--black);
    color: #fff;
}

.bg-gray {
    background-color: var(--gray-100);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.d-flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

.gap-lg {
    gap: var(--space-lg);
}

.gap-xl {
    gap: var(--space-xl);
}

.grid {
    display: grid;
}

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

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

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

@media (max-width: 768px) {

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }
}

.section-padding {
    padding: var(--space-4xl) 0;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.hidden {
    display: none;
}

/**
 * Component Layer: Buttons & Interactives
 * --------------------------------------
 * Reusable UI components. Buttons use the 'btn' base class with modifiers (e.g., .btn-primary)
 * for variant control.
 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--trans-med);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--radius-full);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--nau-gold);
    color: var(--nau-blue);
    border-color: var(--nau-gold);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--nau-blue);
    border-color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--nau-blue);
}

.btn-secondary {
    background-color: var(--nau-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--nau-blue-light);
}

.section-header {
    border-bottom: 1px solid var(--gray-300);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: var(--space-sm);
}

.section-header h2 {
    margin-bottom: 0;
    color: var(--nau-blue);
    font-size: 2.2rem;
    font-weight: 700;
}

.section-header .see-all {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--nau-blue);
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-header .see-all:hover {
    color: var(--nau-gold);
    text-decoration: underline;
}

/**
 * Contact Gateway Page
 * --------------------------------------
 * Styles for the interactive category selection grid.
 */
.gateway-card {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gateway-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--nau-blue);
}

.gateway-card.selected {
    border-color: var(--nau-gold);
    background-color: #fdfdfd;
    box-shadow: 0 0 0 2px var(--nau-gold);
}

.gateway-card i {
    font-size: 2.5rem;
    /* ~text-4xl */
    color: var(--nau-blue);
    margin-bottom: var(--space-md);
    transition: color 0.3s;
}

.gateway-card:hover i,
.gateway-card.selected i {
    color: var(--nau-gold);
}

.gateway-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-800);
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
}

.gateway-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Dynamic Form Container */
#formContainer {
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--nau-gold);
    overflow: hidden;
    margin-top: var(--space-2xl);
    scroll-margin-top: 100px;
    /* For smooth scrolling offset */
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.required::after {
    content: " *";
    color: var(--nau-red);
}

/**
 * Form & Layout Utility Classes
 * Extracted from Contact_Us.html inline styles
 */
.page-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper {
    margin-top: 40px;
    padding: 40px;
}

.form-header-line {
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 30px;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-300);
    border-radius: 4px;
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* New Utilities */
.pt-20 {
    padding-top: 20px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.col-span-2 {
    grid-column: span 2;
}

/* Card Styles */
.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--trans-med), box-shadow var(--trans-med);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.card-img-top {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    background-color: var(--gray-200);
}

.card-img-top img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--trans-slow);
}

.card:hover .card-img-top img {
    transform: scale(1.05);
}

.card-body {
    padding: var(--space-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-meta {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
    color: var(--nau-blue);
    font-weight: 700;
}

.card-text {
    color: var(--gray-700);
    font-size: 0.95rem;
    margin-bottom: var(--space-md);
}

/**
 * Navigation Component (SiteHeader)
 * --------------------------------------
 * Sticky header implementation with glassmorphism backdrop.
 * Handles extensive state changes via '.scrolled' class.
 */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    /* Premium White Glass */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    /* box-shadow provided separation, but now we add a gradient border */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
}

/* Aesthetic Gradient Outline */
.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--nau-blue) 35%,
            var(--nau-gold) 50%,
            var(--nau-blue) 65%,
            transparent 100%);
    opacity: 0.8;
    z-index: 1001;
}


.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    /* More opaque on scroll */
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.main-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.brand-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    gap: 16px;
    min-width: 0;
}

.header-logo {
    height: 44px;
    width: auto;
    /* FILTER REMOVED: Displays original logo colors */
    transition: height 0.3s ease;
}

.site-header.scrolled .header-logo {
    height: 40px;
}

.brand-divider {
    display: block;
    height: 32px;
    width: 1px;
    background-color: var(--gray-300);
    /* Darker divider for contrast */
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.brand-text .dept {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--nau-blue);
    /* Dark Text */
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dept1 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--nau-blue);
    /* Dark Text 
    text-transform: uppercase;*/
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand-text .dept-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.2px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--nau-blue);
    /* Dark Text */
    text-decoration: none;
    position: relative;
    padding: 5px 0;
    transition: color 0.2s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--nau-gold);
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--nau-gold);
}

/* Header Buttons */
.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 50px;
    /* Pill Shape */
    letter-spacing: 0.3px;
}

.btn-gold {
    background-color: var(--nau-gold);
    color: var(--nau-blue);
    font-weight: 700;
    border: none;
    transition: all 0.2s ease;
}

.btn-gold:hover {
    background-color: var(--nau-blue);
    /* Blue hover for nice contrast */
    color: var(--nau-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    border: none;
    background: none;
    color: var(--nau-blue);
    cursor: pointer;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 14px;
        background: var(--nau-blue);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        z-index: 1100;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-menu .nav-link {
        display: block;
        color: #ffffff;
        padding: 10px 8px;
        border-radius: 8px;
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--nau-gold);
        background: rgba(255, 255, 255, 0.08);
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        border: 1px solid var(--gray-300);
    }

    .brand-divider {
        display: block;
        height: 24px;
        /* Slightly smaller on mobile to fit better */
        margin: 0 8px;
        /* Tighter spacing */
    }

    .brand-text .dept {
        font-size: 0.9rem;
    }

    .dept1 {
        font-size: 0.9rem;
        letter-spacing: 0.2px;
    }

    .nav-menu .btn-gold {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .brand-logo {
        gap: 10px;
    }

    .header-logo {
        height: 36px;
    }

    .brand-divider {
        display: none;
    }

    .dept1 {
        font-size: 0.8rem;
    }
}

/**
 * Hero Slider
 * --------------------------------------
 * Full-screen immersive slider.
 * Uses absolute positioning for stacking context and opacity transitions for performance.
 */
.hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background-color: var(--black);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 36, 84, 0.9) 0%, rgba(0, 36, 84, 0.3) 60%, rgba(0, 36, 84, 0.1) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: var(--space-4xl);
    z-index: 2;
}

.slide-content .container {
    position: relative;
}

.slide-tag {
    background-color: var(--nau-gold);
    color: var(--nau-blue);
    display: inline-block;
    padding: 6px 16px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    border-radius: var(--radius-full);
}

.slide-tag span {
    display: block;
}

.slide-title {
    color: var(--white);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-desc {
    color: var(--gray-200);
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
}

.slide.active .slide-desc {
    opacity: 1;
    transform: translateY(0);
}

.slide.active .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.slider-controls {
    position: absolute;
    bottom: var(--space-lg);
    right: var(--space-lg);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
}

.slider-btn:hover {
    background: var(--nau-gold);
    color: var(--nau-blue);
    border-color: var(--nau-gold);
}

/**
 * Quick Actions Bar
 * --------------------------------------
 * High-priority user entry points. Flex/Grid hybrid layout for responsive adaptation.
 */
.quick-actions {
    background-color: var(--nau-blue);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.action-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
    border-radius: var(--radius-md);
}

.action-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.action-icon {
    width: 42px;
    height: 42px;
    margin-bottom: var(--space-sm);
    fill: var(--nau-gold);
}

.action-text {
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 1.05rem;
}

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

/* * ==========================================
 * ABOUT / MISSION SECTION 
 * ========================================== 
 */
.about-section {
    background-color: var(--white);
    padding: var(--space-3xl) 0;
}

/**
 * Carousel / Equipment Section
 * --------------------------------------
 * Horizontal scrolling container with snap points.
 * Uses CSS Scroll Snap API for native-like touch interaction.
 */
.carousel-section {
    padding: var(--space-3xl) 0;
    background-color: var(--gray-50);
}

.carousel-wrapper {
    position: relative;
    padding: 0 10px;
}

.card-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0 40px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.card-wrapper::-webkit-scrollbar {
    display: none;
}

.equipment-card {
    background: var(--white);
    min-width: 300px;
    max-width: 300px;
    height: 500px;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    scroll-snap-align: center;
    transition: all var(--trans-med);
    position: relative;
    border: 1px solid var(--border-light);
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--nau-gold);
}

/* Tags & Badges */
.tag {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--nau-blue);
    background-color: var(--nau-gold);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    display: inline-block;
    letter-spacing: 0.3px;
}

.tag.blue {
    background-color: var(--nau-blue);
    color: var(--white);
}

.tag.grey {
    background-color: var(--gray-600);
    color: var(--white);
}

.tag.green {
    background-color: var(--nau-green);
    color: var(--white);
}

.tag.red {
    background-color: var(--nau-red);
    color: var(--white);
}

.tag.status-tag {
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 0.2px;
}

.tag.status-tag.available {
    background-color: var(--nau-green);
    color: var(--white);
}

/* About pages: show a clean green "Available" text label (no extra pill/dot duplication) */
.product-page .tag.status-tag.available {
    background: transparent;
    color: #22c55e;
    padding: 0;
    border-radius: 0;
    font-weight: 700;
}

.tag.status-tag.unavailable {
    background-color: var(--nau-red);
    color: var(--white);
}

.tag.status-tag.expected {
    background-color: #ea580c;
    color: #ffffff;
}

.status-warning {
    margin-top: 16px;
    padding: 12px 16px;
    background: #fef3c7;
    color: #7c2d12;
    border: 1px solid #fde68a;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.status-badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
}

.status-badge.available {
    background-color: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.status-badge.limited {
    background-color: #fef9c3;
    color: #854d0e;
    border-color: #fde047;
}

.status-badge.maintenance {
    background-color: #fee2e2;
    color: #991b1b;
    border-color: #fecaca;
}

/* Card Elements */
.image-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
}

.equipment-img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 500;
    font-size: 12px;
    text-align: center;
    border: 1px solid var(--gray-300);
}

.specs {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.4;
    margin-bottom: 12px;
}

.specs .small {
    color: var(--gray-600);
    font-size: 13px;
    display: block;
    margin-top: 2px;
    font-weight: 400;
}

.action-row {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.action-btn {
    font-family: var(--font-display);
    border: none;
    padding: 10px 0;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.book-btn {
    background-color: var(--nau-blue);
    color: var(--white);
}

.book-btn:hover {
    background-color: var(--nau-blue-light);
}

.about-btn {
    background-color: transparent;
    color: var(--nau-blue);
    border: 1px solid var(--gray-300);
}

.about-btn:hover {
    background-color: var(--gray-100);
}

.book-btn.disabled {
    background-color: var(--gray-200);
    color: var(--gray-500);
    cursor: default;
    pointer-events: none;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 22px;
    color: var(--nau-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.nav-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.left {
    left: -15px;
}

.nav-btn.right {
    right: -15px;
}

/**
 * Dashboard & Metrics Visualization
 * --------------------------------------
 * Statistical overview section.
 * Implements a parallax-like background effect via 'background-attachment: fixed'.
 */
.stats-section {
    background-color: var(--white);
    padding: var(--space-3xl) 0;
    background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.97);
    z-index: 1;
}

.dashboard-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-lg);
}

@media (max-width: 900px) {
    .dashboard-container {
        grid-template-columns: 1fr;
    }
}

.metrics-panel {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--nau-blue);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.metric-box {
    text-align: center;
    padding: var(--space-md);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: transform var(--trans-fast);
}

.metric-box:hover {
    transform: translateY(-3px);
    border-color: var(--nau-gold);
}

.metric-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--nau-blue);
    line-height: 1;
}

.metric-label {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin: 6px 0;
}

.metric-sub {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-family: var(--font-body);
}

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

.upcoming-matches-panel {
    background: var(--white);
    color: var(--black);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.matches-header {
    background: var(--nau-blue);
    padding: var(--space-md);
    font-family: var(--font-display);
    font-weight: 600;
    text-align: left;
    font-size: 1.1rem;
    color: var(--white);
}

.match-list {
    padding: 0;
}

.match-item {
    padding: var(--space-md);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.match-date {
    background: var(--gray-100);
    color: var(--nau-blue);
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius: 8px;
    padding: 5px;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.match-date .day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
}

.match-date .month {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
}

.match-info {
    flex-grow: 1;
}

.match-title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2px;
    color: var(--nau-blue);
}

.match-meta {
    font-size: 0.8rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 5px;
}

/**
 * News & Multimedia
 * --------------------------------------
 */
/* News Section - Transparent */
.news-section {
    background-color: transparent;
    padding: var(--space-4xl) 0;
    margin: var(--space-xl) 0;
}

/* --- NANO NEWS FIXES START --- */
.featured-story {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--gray-200);
    transition: transform var(--trans-med), box-shadow var(--trans-med);
}

.featured-story:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.featured-img {
    flex: 1.5;
    min-height: 350px;
    position: relative;
    background-color: var(--gray-200);
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.featured-content {
    flex: 1;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.featured-tag {
    display: inline-block;
    background: var(--nau-gold);
    color: var(--nau-blue);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--nau-blue);
    margin-bottom: var(--space-md);
    line-height: 1.2;
    font-weight: 700;
}

.featured-excerpt {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .featured-story {
        flex-direction: column;
    }

    .featured-img {
        min-height: 250px;
        flex: auto;
        height: 250px;
    }
}

/* --- NANO NEWS FIXES END --- */

/* Glass Card Utility */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 36, 84, 0.05);
}

.about-section {
    padding: var(--space-4xl) 0;
    background: transparent;
    /* Let body flow through */
    position: relative;
}

/* Partner Grid */
.partner-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.partner-card:hover {
    border-color: var(--nau-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    width: auto;
    max-width: 85%;
    height: 50px;
    /* Fixed height for perfect alignment */
    object-fit: contain;
    margin-bottom: 24px;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.roster-section {
    background-color: var(--nau-blue);
    padding: var(--space-4xl) 0;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1532619675605-1ede6c2ed2b0?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.roster-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 36, 84, 0.9);
    z-index: 1;
}

.roster-section .section-header h2 {
    color: var(--white);
}

.roster-section .section-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.roster-section .section-header .see-all {
    color: var(--nau-gold);
}

.player-card {
    background: transparent;
    position: relative;
    cursor: pointer;
    perspective: 1000px;
}

.player-inner {
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    border-radius: var(--radius-md);
}

.player-card:hover .player-inner {
    transform: translateY(-8px);
}

.player-img-container {
    height: 320px;
    background: linear-gradient(to bottom, #f0f0f0, #d9d9d9);
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.player-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s;
}

.player-card:hover .player-img {
    transform: scale(1.03);
}

.player-info {
    padding: var(--space-md);
    background: var(--white);
    position: relative;
    z-index: 2;
}

.player-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-500);
    background: rgba(255, 255, 255, 0.8);
    padding: 2px 8px;
    border-radius: 4px;
}

.player-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--nau-blue);
    line-height: 1.2;
    margin-bottom: 4px;
    font-weight: 700;
}

.player-position {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 400;
}

.multimedia-section {
    background: var(--black);
    padding: 0;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.media-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    min-height: 550px;
    position: relative;
    z-index: 2;
}

.main-video-stage {
    position: relative;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    z-index: 2;
    pointer-events: none;
}

.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
    pointer-events: auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.play-btn-large:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.play-btn-large svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    margin-left: 4px;
}

.play-btn-large:hover svg {
    fill: var(--nau-blue);
}

.playlist-sidebar {
    background: rgba(17, 24, 39, 0.95);
    padding: var(--space-lg);
    overflow-y: auto;
    max-height: 600px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.playlist-title {
    color: var(--white);
    border-bottom: 1px solid var(--gray-700);
    padding-bottom: var(--space-md);
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    font-weight: 500;
}

.playlist-item {
    display: flex;
    gap: 15px;
    margin-bottom: var(--space-md);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.playlist-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.playlist-thumb {
    width: 100px;
    height: 60px;
    background: var(--gray-800);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    overflow: hidden;
}

.playlist-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.playlist-info h4 {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.3;
    font-family: var(--font-body);
    font-weight: 600;
}

.playlist-info span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

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

    .main-video-stage {
        min-height: 300px;
    }

    .playlist-sidebar {
        max-height: 400px;
    }
}

/**
 * Footer
 * --------------------------------------
 */
.site-footer {
    background-color: var(--nau-blue);
    color: var(--white);
    padding-top: var(--space-4xl);
    position: relative;
    border-top: 5px solid var(--nau-gold);
    /* University Branding Accent */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand img {
    width: 250px;
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.footer-col h4 {
    color: var(--nau-gold);
    font-size: 1.05rem;
    /* Clean university type */
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    /* Subtler divider */
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-links a:hover {
    color: var(--nau-gold);
    /* Gold hover for standard */
    transform: translateX(4px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.25);
    padding: var(--space-lg) 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: var(--space-lg);
}

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid transparent;
    /* Smoother border transition */
}

.social-icon:hover {
    background: var(--nau-gold);
    color: var(--nau-blue);
    border-color: var(--nau-gold);
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/**
 * Contact & Forms
 * --------------------------------------
 */
.page-header {
    background-color: var(--nau-blue);
    padding: var(--space-3xl) 0 var(--space-xl);
    color: var(--white);
    text-align: center;
}

.contact-grid {
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.form-container {
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
    color: var(--nau-blue);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--nau-gold);
    box-shadow: 0 0 0 3px rgba(250, 192, 26, 0.2);
}

.info-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 24px;
    height: 24px;
    fill: var(--nau-gold);
    margin-bottom: var(--space-sm);
}

/**
 * Utility Classes
 * --------------------------------------
 */
.about-text-col {
    flex: 1;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--nau-gold);
    margin-bottom: 20px;
}

.about-title {
    font-size: 2.5rem;
    color: var(--nau-blue);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.lead-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

.about-desc {
    color: var(--gray-600);
    line-height: 1.7;
}

.about-image-col {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.about-image-col::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
    pointer-events: none;
    z-index: 1;
    background:
        linear-gradient(160deg, rgba(255, 214, 92, 0.7) 0%, rgba(255, 190, 52, 0.58) 55%, rgba(176, 98, 0, 0.4) 100%);
    mix-blend-mode: multiply;
}

.about-image-col.fab-preview::after {
    display: none;
}

.about-image-col.investment-preview::after {
    display: none;
}



.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: block;
    position: relative;
    z-index: 0;
}

.fab-status-card {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 207, 94, 0.65);
    box-shadow: var(--shadow-lg);
    background:
        linear-gradient(150deg, #fff7df 0%, #ffe6a0 52%, #ffd074 100%);
    padding: 24px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fab-status-card::before,
.fab-status-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.fab-status-card::before {
    width: 180px;
    height: 180px;
    right: -42px;
    top: -54px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0) 72%);
}

.fab-status-card::after {
    width: 220px;
    height: 220px;
    left: -76px;
    bottom: -118px;
    background: radial-gradient(circle, rgba(185, 103, 0, 0.15) 0%, rgba(185, 103, 0, 0) 70%);
}

.fab-chip {
    align-self: flex-start;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #703e00;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 177, 47, 0.55);
}

.fab-status-title {
    margin: 0;
    color: #5b3400;
    font-size: 1.35rem;
    line-height: 1.25;
}

.fab-wafer-art {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle at 50% 50%, rgba(138, 78, 0, 0.16) 0 2px, rgba(255, 255, 255, 0) 2px 10px),
        linear-gradient(135deg, #ffe9af 0%, #ffc75d 100%);
    border: 2px solid rgba(138, 78, 0, 0.3);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.fab-progress-list {
    display: grid;
    gap: 10px;
}

.fab-progress-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 5px 10px;
}

.fab-progress-label {
    color: #5f3800;
    font-size: 0.86rem;
    font-weight: 600;
}

.fab-progress-state {
    color: rgba(95, 56, 0, 0.78);
    font-size: 0.78rem;
    font-weight: 600;
}

.fab-progress-track {
    grid-column: 1 / -1;
    height: 6px;
    border-radius: 999px;
    background: rgba(95, 56, 0, 0.18);
    overflow: hidden;
}

.fab-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #a95d00 0%, #ffb022 100%);
}

.fab-progress-fill.facility {
    width: 72%;
}

.fab-progress-fill.procurement {
    width: 58%;
}

.fab-progress-fill.commissioning {
    width: 18%;
}

.fab-milestone {
    margin: 4px 0 0 0;
    color: #4f2c00;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.investment-visual {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 205, 0, 0.35);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(145deg, #002454 0%, #003b70 56%, #0b567b 100%);
    padding: 22px;
    position: relative;
    z-index: 0;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.investment-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 10%, rgba(255, 205, 0, 0.22) 0%, rgba(255, 205, 0, 0) 35%),
        radial-gradient(circle at 82% 82%, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 40%);
    pointer-events: none;
}

.investment-header {
    position: relative;
    z-index: 1;
}

.investment-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 205, 0, 0.45);
    color: #ffdc63;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.investment-title {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.2;
    color: #ffffff;
}

.investment-map {
    position: relative;
    z-index: 1;
    flex: 1;
    min-height: 190px;
    border-radius: 14px;
    border: 1px dashed rgba(255, 205, 0, 0.45);
    background: rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.map-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 205, 0, 0) 0%, rgba(255, 205, 0, 0.92) 50%, rgba(255, 205, 0, 0) 100%);
    transform-origin: left center;
}

.map-line-1 {
    width: 45%;
    top: 30%;
    left: 19%;
    transform: rotate(15deg);
}

.map-line-2 {
    width: 33%;
    top: 60%;
    left: 45%;
    transform: rotate(-16deg);
}

.map-line-3 {
    width: 30%;
    top: 52%;
    left: 20%;
    transform: rotate(18deg);
}

.map-node {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.74rem;
    line-height: 1;
    font-weight: 600;
    color: #ffffff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.node-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffcf3f;
    box-shadow: 0 0 0 3px rgba(255, 207, 63, 0.25);
    flex-shrink: 0;
}

.node-nau {
    top: 15%;
    left: 8%;
}

.node-phx {
    top: 37%;
    left: 52%;
}

.node-partner {
    top: 67%;
    left: 59%;
}

.node-workforce {
    top: 67%;
    left: 8%;
}

.investment-note {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    line-height: 1.35;
}

.catalog-visual {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 36, 84, 0.12);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(160deg, #f8fbff 0%, #eaf2fb 100%);
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.catalog-chip {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #7a4d00;
    background: rgba(255, 205, 0, 0.25);
    border: 1px solid rgba(255, 205, 0, 0.45);
}

.catalog-title {
    margin: 0;
    color: var(--nau-blue);
    font-size: 1.06rem;
    line-height: 1.2;
    text-align: right;
}

.catalog-grid {
    flex: 1;
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.catalog-tile {
    position: relative;
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    min-height: 0;
    border: 1px solid rgba(0, 36, 84, 0.16);
    box-shadow: 0 4px 12px rgba(0, 36, 84, 0.12);
}

.catalog-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catalog-tile::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 45%;
    background: linear-gradient(180deg, rgba(0, 36, 84, 0) 0%, rgba(0, 36, 84, 0.75) 100%);
}

.catalog-tile figcaption {
    position: absolute;
    left: 8px;
    bottom: 7px;
    z-index: 1;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.stat-box {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--nau-gold);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.about-image-col.fab-preview .stat-box {
    background: rgba(255, 255, 255, 0.96);
}

.about-image-col.investment-preview .stat-box {
    background: rgba(255, 255, 255, 0.97);
}



.stat-number {
    font-weight: 700;
    color: var(--nau-blue);
    font-size: 2rem;
}

.stat-unit {
    font-size: 1rem;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .fab-status-card {
        padding: 20px;
    }

    .fab-status-title {
        font-size: 1.15rem;
    }

    .fab-wafer-art {
        width: 74px;
        height: 74px;
    }

    .about-image-col.fab-preview .stat-box {
        left: 12px;
        bottom: 12px;
    }

    .investment-visual {
        padding: 18px;
    }

    .investment-title {
        font-size: 1.12rem;
    }

    .investment-map {
        min-height: 165px;
    }

    .map-node {
        font-size: 0.66rem;
        padding: 5px 8px;
        gap: 6px;
    }

    .node-workforce {
        top: 72%;
        left: 7%;
    }

    .about-image-col.investment-preview .stat-box {
        left: 12px;
        bottom: 12px;
    }

    .catalog-visual {
        padding: 12px;
        gap: 10px;
    }

    .catalog-title {
        font-size: 0.94rem;
    }

    .catalog-grid {
        gap: 8px;
    }

    .catalog-tile figcaption {
        font-size: 0.62rem;
    }


}

/* ============================================
   LAB INTRO - Minimal Homepage Section
   ============================================ */
.lab-intro {
    padding: 80px 0;
    background: #f8fafc;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.intro-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image-wrapper:hover .intro-image {
    transform: scale(1.03);
}

.intro-content {
    padding: 20px 0;
}

.intro-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nau-blue);
    background: rgba(0, 36, 84, 0.08);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.intro-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--nau-blue);
    line-height: 1.2;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 30px;
}

.intro-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nau-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.intro-link i {
    transition: transform 0.3s ease;
}

.intro-link:hover {
    color: var(--nau-gold-dark);
}

.intro-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-title {
        font-size: 1.8rem;
    }

    .intro-image {
        height: 280px;
    }
}

/* ============================================
   EDUCATION PATHS SECTION - 3x3 Grid Layout
   ============================================ */
.education-paths-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

/* Section Header */
.edu-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 30px;
}

.edu-header-content {
    max-width: 600px;
}

.edu-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nau-gold-dark);
    margin-bottom: 12px;
}

.edu-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--nau-blue);
    margin-bottom: 12px;
    line-height: 1.2;
}

.edu-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Carousel Container */
.edu-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Navigation Buttons */
.edu-nav-btn {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--nau-blue);
    background: white;
    color: var(--nau-blue);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 36, 84, 0.15);
}

.edu-nav-btn svg {
    transition: transform 0.3s ease;
}

.edu-nav-btn:hover {
    background: var(--nau-blue);
    color: white;
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(0, 36, 84, 0.25);
}

.edu-nav-btn:hover svg {
    stroke: white;
}

.edu-nav-btn:active {
    transform: scale(0.95);
}

.edu-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.edu-nav-btn:disabled:hover {
    background: white;
    color: var(--nau-blue);
}

/* Cards Viewport */
.edu-cards-viewport {
    flex: 1;
    overflow: hidden;
    padding: 20px 0 40px 0;
    /* Add top/bottom padding for hover transform */
    margin: -20px 0 -40px 0;
    /* Compensate for padding */
}

/* Cards Track - Flexbox for sliding */
.edu-cards-grid {
    display: flex;
    gap: 0;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    /* Smooth subtle ease-out */
}

/* Individual Card */
.edu-card-wrapper {
    flex: 0 0 33.333%;
    padding: 0 12px;
    /* Gap simulated via padding */
    box-sizing: border-box;
}

.edu-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 380px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    height: 100%;
}

.edu-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 36, 84, 0.12), 0 1px 3px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 36, 84, 0.15);
}

.edu-card:hover .edu-card-link {
    background: rgba(0, 36, 84, 0.04);
    color: var(--nau-blue);
    padding-left: 8px;
}

.edu-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--nau-blue);
    margin-top: auto;
    width: fit-content;
    padding: 8px 12px 8px 0;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Removed old animation keyframes as we slide now */

/* Card Header with Semester/Duration */
.edu-card-header {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.edu-card-header.blue {
    background: linear-gradient(135deg, var(--nau-blue) 0%, #003366 100%);
    color: white;
}

.edu-card-header.gold {
    background: linear-gradient(135deg, var(--nau-gold) 0%, #d4a500 100%);
    color: var(--nau-blue);
}

.edu-semester {
    text-transform: uppercase;
    font-weight: 700;
}

.edu-duration {
    opacity: 0.9;
    font-weight: 500;
}

/* Card Body */
.edu-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.edu-card-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    width: fit-content;
}

.edu-card-tag.blue {
    background: rgba(0, 36, 84, 0.1);
    color: var(--nau-blue);
}

.edu-card-tag.gold {
    background: rgba(255, 184, 28, 0.2);
    color: var(--nau-gold-dark);
}

.edu-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--nau-blue);
    margin-bottom: 12px;
    line-height: 1.3;
}

.edu-card-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 15px;
}

.edu-card-topics {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex: 1;
}

.edu-card-topics li {
    position: relative;
    padding-left: 20px;
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-bottom: 8px;
}

.edu-card-topics li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--nau-gold);
    font-weight: 700;
}

.edu-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nau-blue);
    text-decoration: none;
    margin-top: auto;
    transition: all 0.3s ease;
}

.edu-card-link i,
.edu-card-link svg {
    transition: transform 0.3s ease;
}

.edu-card-link:hover {
    color: var(--nau-gold-dark);
}

.edu-card-link:hover i,
.edu-card-link:hover svg {
    transform: translateX(5px);
}

/* Pagination Dots */
.edu-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.edu-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 36, 84, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.edu-dot.active {
    background: var(--nau-blue);
    width: 30px;
    border-radius: 6px;
}

.edu-dot:hover:not(.active) {
    background: rgba(0, 36, 84, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .edu-card-wrapper {
        flex: 0 0 50%;
    }

    .edu-card {
        min-height: 360px;
    }

    .edu-section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .edu-card-wrapper {
        flex: 0 0 100%;
    }

    .edu-title {
        font-size: 1.8rem;
    }

    .edu-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .edu-card {
        min-height: auto;
    }
}

/* ============================================
   ABOUT SECTION V2 - Redesigned Layout
   ============================================ */
.about-section-v2 {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.about-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--nau-gold-dark);
    background: rgba(250, 192, 26, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.about-title-v2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--nau-blue);
    line-height: 1.15;
    margin-bottom: 20px;
}

.text-gold {
    color: var(--nau-gold-dark);
}

.about-tagline {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Stats Strip */
.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--nau-blue);
    border-radius: 16px;
    padding: 35px 40px;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(0, 36, 84, 0.2);
}

.stat-item {
    text-align: center;
    padding: 10px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-suffix {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.8;
    margin-left: 4px;
}

.stat-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Content Grid */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-mission {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-mission:last-of-type {
    margin-bottom: 30px;
}

.capabilities-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.capability-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.capability-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--nau-blue-light);
}

.capability-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.capability-icon.blue {
    background: rgba(0, 36, 84, 0.1);
    color: var(--nau-blue);
}

.capability-icon.gold {
    background: rgba(250, 192, 26, 0.15);
    color: var(--nau-gold-dark);
}

.capability-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.capability-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
}

.capability-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--nau-blue);
    margin: 0 0 3px 0;
}

.capability-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin: 0;
}

/* Image Section */
.about-image-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    /* height: 100%; Removed to allow natural height */
}

.about-image-v2 {
    width: 100%;
    height: auto;
    /* Changed from 100% */
    min-height: 300px;
    /* Reduced from 400px */
    max-height: 450px;
    /* Added max-height constraint */
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--nau-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-badge i {
    color: var(--nau-gold);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-v2 {
        min-height: 300px;
        height: 300px;
    }
}

@media (max-width: 600px) {
    .about-title-v2 {
        font-size: 2rem;
    }

    .stats-strip {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 15px 0;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ABOUT US PAGE - Specific Styles
   ============================================ */
.about-hero {
    position: relative;
    padding: 140px 0 100px;
    /* Increased padding for grander feel */
    background-color: var(--nau-blue);
    /* Darker overlay for better text contrast, using a high-quality lab image */
    background-image: linear-gradient(rgba(0, 15, 35, 0.85), rgba(0, 36, 84, 0.8)), url('../Images/15.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    color: white;
    text-align: center;
    overflow: hidden;
}

.about-hero .section-eyebrow {
    background: rgba(250, 192, 26, 0.15);
    color: var(--nau-gold);
    border: 1px solid rgba(250, 192, 26, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.about-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Pop off the background */
}

.about-hero-tagline {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    /* Brighter text than before */
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.about-stats-section {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.about-mission-section {
    padding: 80px 0;
    background: #f8fafc;
}

.about-mission-section .section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--nau-blue);
    margin-bottom: 25px;
}

.about-cta-section {
    padding: 80px 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, var(--nau-blue) 0%, #001a3d 100%);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: white;
    color: var(--nau-blue);
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px 0;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .cta-box {
        padding: 40px 25px;
    }
}

/* ========================================
   ABOUT US PAGE — NEW SECTIONS
   ======================================== */

/* --- Hero Animated Background Pattern --- */
/* --- Hero Animated Background Pattern --- */
.about-hero {
    position: relative;
    overflow: hidden;
    /* Adding subtle darkened background color as fallback */
    background-color: #001a3d;
}

.about-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Layered: Dark overlay gradient + Image */
    background-image:
        linear-gradient(to bottom, rgba(0, 26, 61, 0.85), rgba(0, 26, 61, 0.7)),
        url('../Images/21.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* ... (skipping unchanged styles) ... */

.access-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    width: 100%;
    text-align: center;
    /* Center alignment */
}

.access-features li {
    font-size: 0.88rem;
    color: var(--gray-700);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center list items */
    gap: 10px;
}

/* ... (rest of style) ... */

/* --- 8. Research Acknowledgements --- */
.about-acknowledgement-section {
    padding: 60px 0;
    /* Reduced padding from 80px */
    background: white;
}

.acknowledgement-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 30px 40px;
    /* Reduced padding from 50px */
    max-width: 900px;
    /* Wider to accommodate horizontal layout */
    margin: 0 auto;
}

.acknowledgement-content {
    /* Switching to a flexible row layout for "rectangle" look */
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.acknowledgement-header {
    flex: 0 0 35%;
    /* Left column width */
}

.acknowledgement-body {
    flex: 1;
    /* Right column takes remaining space */
}

.acknowledgement-icon {
    font-size: 2rem;
    color: var(--nau-gold);
    margin-bottom: 12px;
}

.acknowledgement-box h2 {
    font-size: 1.5rem;
    /* Slightly smaller */
    font-weight: 800;
    color: var(--nau-blue);
    margin-bottom: 8px;
    line-height: 1.2;
}

.acknowledgement-intro {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.5;
}

.acknowledgement-snippet {
    background: white;
    border: 2px dashed var(--nau-gold);
    border-radius: 12px;
    padding: 20px 24px;
    position: relative;
    margin-bottom: 10px;
    display: flex;
    /* Flex for text + button alignment if needed */
    flex-direction: column;
    align-items: flex-start;
}

.acknowledgement-snippet p {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--nau-blue);
    line-height: 1.6;
    margin-bottom: 12px;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--nau-blue);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--trans-fast);
    align-self: flex-end;
    /* Align button to right */
}

.btn-copy:hover {
    background: var(--nau-blue-light);
    transform: translateY(-1px);
}

.acknowledgement-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 0;
    text-align: right;
    /* Right align the note */
}

/* Responsive adjustment for Acknowledgement */
@media (max-width: 768px) {
    .acknowledgement-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .btn-copy {
        align-self: center;
    }

    .acknowledgement-note {
        text-align: center;
    }
}

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

/* --- 3. Shared-Use Facility Spotlight --- */
.about-shared-section {
    padding: 100px 0;
    background: white;
}

.about-shared-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-shared-text .section-eyebrow {
    display: inline-block;
    background: rgba(0, 36, 84, 0.08);
    color: var(--nau-blue);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-shared-text .section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--nau-blue);
    margin-bottom: 25px;
    line-height: 1.15;
}

.about-shared-desc {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 20px;
}

.shared-highlights {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 30px;
}

.shared-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.shared-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.shared-highlight-icon.blue {
    background: rgba(0, 36, 84, 0.1);
    color: var(--nau-blue);
}

.shared-highlight-icon.gold {
    background: rgba(250, 192, 26, 0.15);
    color: #c49100;
}

.shared-highlight-icon.green {
    background: rgba(0, 122, 51, 0.1);
    color: var(--nau-green);
}

.shared-highlight-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--nau-blue);
    margin-bottom: 4px;
}

.shared-highlight-item p {
    font-size: 0.92rem;
    color: var(--gray-600);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Image Stack — gallery-style with depth and borders */
.about-shared-image-col {
    position: relative;
    min-height: 480px;
}

.about-shared-image-stack {
    position: relative;
    width: 100%;
    height: 480px;
}


.about-shared-image-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    /* Gallery-style thick white border */
    border: 4px solid var(--nau-gold);
    /* Outer glow for depth separation */
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.07),
        0 10px 30px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

.about-shared-image-frame.primary-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 88%;
    height: 310px;
    z-index: 2;
    /* Stronger shadow for the front image */
    box-shadow:
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.about-shared-image-frame.secondary-frame {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 75%;
    height: 250px;
    z-index: 1;
    /* Slightly softer shadow for the back image */
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 12px 28px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.04);
}

/* Hover swap: hovered image comes to front, sibling goes back */
.about-shared-image-frame.primary-frame:hover {
    z-index: 3;
    transform: scale(1.03);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.06);
}

.about-shared-image-frame.secondary-frame:hover {
    z-index: 3;
    transform: scale(1.03);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.06);
}

/* When secondary is hovered, push primary back */
.about-shared-image-stack:has(.secondary-frame:hover) .primary-frame:not(:hover) {
    z-index: 1;
    transform: scale(0.97);
    filter: brightness(0.92);
}

/* When primary is hovered, push secondary back */
.about-shared-image-stack:has(.primary-frame:hover) .secondary-frame:not(:hover) {
    z-index: 1;
    transform: scale(0.97);
    filter: brightness(0.92);
}

.about-shared-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* --- 4. Strategic Vision --- */
.about-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--nau-blue) 0%, #001a3d 100%);
    color: white;
}

.about-vision-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
}

.section-eyebrow.light {
    background: rgba(250, 192, 26, 0.2);
    color: var(--nau-gold);
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-vision-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.about-vision-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto;
}

/* --- Vision Pipeline (Horizontal Process Flow) --- */
.vision-pipeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting track line between stage icons */
.pipeline-track {
    position: absolute;
    top: 28px;
    left: 16.66%;
    right: 16.66%;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(128, 179, 255, 0.6),
            rgba(250, 192, 26, 0.6),
            rgba(77, 219, 136, 0.6));
    z-index: 0;
}

.pipeline-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

/* Vertical dashed connector from icon to card */
.stage-icon::after {
    content: '';
    display: block;
    width: 2px;
    height: 28px;
    border-left: 2px dashed rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* Color-coded connectors per stage */
.pipeline-stage:nth-child(2) .stage-icon::after {
    border-left-color: rgba(128, 179, 255, 0.35);
}

.pipeline-stage:nth-child(3) .stage-icon::after {
    border-left-color: rgba(250, 192, 26, 0.35);
}

.pipeline-stage:nth-child(4) .stage-icon::after {
    border-left-color: rgba(77, 219, 136, 0.35);
}

/* Visible step number as a card badge */
.stage-number {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.10);
    line-height: 1;
    position: absolute;
    bottom: 16px;
    right: 20px;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Circle icon on the track */
.stage-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 58, 133, 0.6);
    border: 3px solid rgba(128, 179, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #80b3ff;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(128, 179, 255, 0.15);
    margin-bottom: 28px;
    overflow: visible;
}

.stage-icon.gold {
    background: rgba(250, 192, 26, 0.15);
    border-color: rgba(250, 192, 26, 0.5);
    color: var(--nau-gold);
    box-shadow: 0 0 20px rgba(250, 192, 26, 0.15);
}

.stage-icon.green {
    background: rgba(0, 122, 51, 0.15);
    border-color: rgba(77, 219, 136, 0.5);
    color: #4ddb88;
    box-shadow: 0 0 20px rgba(77, 219, 136, 0.15);
}

/* Card below the icon */
.stage-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 32px 24px 28px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--trans-med);
    flex: 1;
}

.pipeline-stage:nth-child(2) .stage-card {
    border-top: 3px solid rgba(128, 179, 255, 0.4);
}

.pipeline-stage:nth-child(3) .stage-card {
    border-top: 3px solid rgba(250, 192, 26, 0.4);
}

.pipeline-stage:nth-child(4) .stage-card {
    border-top: 3px solid rgba(77, 219, 136, 0.4);
}

.stage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.stage-card>p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin-bottom: 18px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.stage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.stage-tags span {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.3px;
}


/* --- 6. User Access Pathways --- */
.about-access-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.about-access-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.about-access-header .section-eyebrow {
    display: inline-block;
    background: rgba(0, 36, 84, 0.08);
    color: var(--nau-blue);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.about-access-subtitle {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 500px;
    margin: 0 auto;
}

.access-pathways-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.access-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: all var(--trans-med);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.access-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.access-card.featured {
    border-color: var(--nau-gold);
    box-shadow: 0 0 0 2px var(--nau-gold), var(--shadow-md);
}

.access-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nau-gold);
    color: var(--nau-blue);
    padding: 4px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.access-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
}

.access-card-icon.blue {
    background: rgba(0, 36, 84, 0.1);
    color: var(--nau-blue);
}

.access-card-icon.gold {
    background: rgba(250, 192, 26, 0.15);
    color: #c49100;
}

.access-card-icon.green {
    background: rgba(0, 122, 51, 0.1);
    color: var(--nau-green);
}

.access-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--nau-blue);
    margin-bottom: 12px;
}

.access-card>p {
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.access-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    width: 100%;
    text-align: left;
}

.access-features li {
    font-size: 0.88rem;
    color: var(--gray-700);
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 10px;
}

.access-features li:last-child {
    border-bottom: none;
}

.access-features li i {
    color: var(--nau-green);
    font-size: 0.85rem;
}

.btn-access {
    margin-top: auto;
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* --- 7. Impact / By The Numbers --- */
.about-impact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--nau-blue) 0%, #001a3d 100%);
    color: white;
}

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

.about-impact-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0;
}

.impact-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.impact-metric-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 36px 24px;
    text-align: center;
    transition: all var(--trans-med);
}

.impact-metric-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.impact-metric-icon {
    font-size: 1.6rem;
    color: var(--nau-gold);
    margin-bottom: 16px;
}

.impact-metric-value {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--nau-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.impact-metric-label {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.impact-metric-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- 8. Research Acknowledgements --- */
.about-acknowledgement-section {
    padding: 80px 0;
    background: white;
}

.acknowledgement-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.acknowledgement-content {
    text-align: center;
}

.acknowledgement-icon {
    font-size: 2rem;
    color: var(--nau-gold);
    margin-bottom: 16px;
}

.acknowledgement-box h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--nau-blue);
    margin-bottom: 12px;
}

.acknowledgement-box>.acknowledgement-content>p {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 550px;
    margin: 0 auto 24px auto;
}

.acknowledgement-snippet {
    background: white;
    border: 2px dashed var(--nau-gold);
    border-radius: 12px;
    padding: 24px 28px;
    position: relative;
    margin-bottom: 20px;
}

.acknowledgement-snippet p {
    font-style: italic;
    font-size: 1rem;
    color: var(--nau-blue);
    line-height: 1.7;
    margin-bottom: 0;
}

.btn-copy {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 8px 20px;
    background: var(--nau-blue);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--trans-fast);
}

.btn-copy:hover {
    background: var(--nau-blue-light);
    transform: translateY(-1px);
}

.acknowledgement-note {
    font-size: 0.88rem;
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 0;
}

/* --- About Us Responsive Overrides --- */
@media (max-width: 1024px) {
    .about-shared-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-shared-image-col {
        min-height: 380px;
    }

    .about-shared-image-stack {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-shared-image-frame.primary-frame {
        width: 75%;
        height: 260px;
    }

    .about-shared-image-frame.secondary-frame {
        width: 65%;
        height: 200px;
    }

    .vision-pipeline {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 480px;
        margin: 0 auto;
    }

    .pipeline-track {
        display: none;
    }

    .pipeline-stage {
        padding: 0;
    }

    .stage-icon {
        margin-bottom: 16px;
    }

    .stage-icon::after {
        display: none;
    }

    .stage-number {
        font-size: 4rem;
    }

    .access-pathways-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 420px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .about-shared-image-col {
        min-height: 320px;
    }

    .about-shared-image-stack {
        height: 320px;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-shared-image-frame.primary-frame {
        width: 80%;
        height: 230px;
    }

    .about-shared-image-frame.secondary-frame {
        width: 65%;
        height: 170px;
    }

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

    .acknowledgement-box {
        padding: 30px 20px;
    }

    .about-vision-section,
    .about-shared-section,
    .about-access-section,
    .about-impact-section {
        padding: 60px 0;
    }

    .about-mission-section {
        padding: 60px 0;
    }
}

.panel-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.panel-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--nau-blue);
    font-weight: 600;
}

.panel-date {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.card-border-blue {
    border-top: 4px solid var(--nau-blue);
}

.card-border-gold {
    border-top: 4px solid var(--nau-gold);
}

.mb-sm {
    margin-bottom: 12px;
}

.feature-list {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0;
}

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

.check-icon {
    width: 16px;
    height: 16px;
    fill: var(--nau-green);
}

.btn-outline-blue {
    color: var(--nau-blue);
    border-color: var(--nau-blue);
    margin-top: auto;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--nau-blue) 0%, var(--nau-blue-dark) 100%);
}

.tag-gold-bold {
    background: var(--nau-gold);
    color: var(--nau-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.text-white-display {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    max-width: 90%;
}

.glass-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.text-white-sm {
    color: white;
    margin-bottom: 10px;
}

.text-white-xs {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.btn-full-gold {
    background-color: var(--nau-gold);
    border-color: var(--nau-gold);
    color: var(--nau-blue);
    font-weight: 700;
    width: 100%;
    text-align: center;
}

.partners-box {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    margin-left: var(--space-xl);
}

.partners-title {
    color: var(--nau-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-gold {
    width: 20px;
    height: 20px;
    fill: var(--nau-gold);
}

.partners-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.partner-label {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    bottom: 20px;
}

.video-stage {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links-flex {
    display: flex;
    gap: 15px;
}

.footer-link-mute {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/**
 * Extractions (Part 2)
 * --------------------------------------
 */

.testimonial-card-gold {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 5px solid var(--nau-gold);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: var(--space-md);
}

.avatar-circle-blue {
    width: 50px;
    height: 50px;
    background: var(--nau-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-name {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--nau-blue);
}

.author-title {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.testimonial-card-blue {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 5px solid var(--nau-blue);
}

.avatar-circle-gold {
    width: 50px;
    height: 50px;
    background: var(--nau-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nau-blue);
    font-weight: bold;
}

.bg-blue-dark {
    background-color: var(--nau-blue-dark);
}

.text-gold-display {
    color: var(--nau-gold);
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.location-details {
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
}

.location-cta {
    font-weight: 700;
    margin-bottom: 15px;
}

.mb-10 {
    margin-bottom: 10px;
}

.btn-orange {
    background-color: #d45d00;
    border-color: #d45d00;
    color: white;
}

.location-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
    padding-top: 20px;
}

.map-container {
    width: 100%;
    height: 400px;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.footer-legal-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.footer-logo-white {
    filter: brightness(0) invert(1);
}

/**
 * Utilities (Contact Page)
 * --------------------------------------
 */

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-0 {
    margin-bottom: 0;
}

.font-bold {
    font-weight: 700;
}

.info-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
    color: var(--nau-blue);
}

.link-blue-underline {
    color: var(--nau-blue);
    text-decoration: underline;
}

.map-container-sm {
    margin-top: 30px;
}

.map-frame {
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* New Utilities (Refactor) */
.separator-top {
    border-top: 1px solid var(--gray-200);
    padding-top: 25px;
    margin-bottom: 25px;
}

.btn-outline-gray {
    color: var(--gray-600);
    border-color: var(--gray-300);
    background: transparent;
}

.btn-outline-gray:hover {
    color: var(--gray-800);
    border-color: var(--gray-400);
    background: var(--gray-50);
}


/* --------------------------------------
   EQUIPMENT CATALOG STYLES
   -------------------------------------- */

/* 1. Sticky Filter Bar */
.filter-section {
    position: sticky;
    top: var(--site-header-height);
    /* Sync with measured sticky header height from JS */
    z-index: 900;
    margin-top: -30px;
    padding-bottom: 20px;
}

.filter-bar {
    background: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* FIX: Keeps search and buttons close together */
    justify-content: flex-start;
    gap: 20px;
}

/* 2. Search Input - Fixed Width */
.search-wrapper {
    position: relative;
    width: 300px;
    /* Fixed width prevents squishing */
    flex-shrink: 0;
}

.search-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    border-radius: 50px;
    border: 1px solid var(--gray-300);
    background: var(--gray-50);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.search-input:focus {
    outline: none;
    border-color: var(--nau-gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(250, 192, 26, 0.2);
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* 3. Filter Buttons (Pills) */
.filter-groups {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

    justify-content: flex-start;
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--gray-300);
    color: var(--gray-600);
    padding: 6px 18px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* 1. ALL & METROLOGY -> GOLD */
.filter-btn[data-filter="all"]:hover,
.filter-btn[data-filter="all"].active,
.filter-btn[data-filter="metrology"]:hover,
.filter-btn[data-filter="metrology"].active {
    background-color: var(--nau-gold);
    color: var(--nau-blue);
    border-color: var(--nau-gold);
}

/* 2. LITHOGRAPHY -> GREEN */
.filter-btn[data-filter="lithography"]:hover,
.filter-btn[data-filter="lithography"].active {
    background-color: var(--nau-green);
    color: var(--white);
    border-color: var(--nau-green);
}

/* 3. DEPOSITION -> BLUE */
.filter-btn[data-filter="deposition"]:hover,
.filter-btn[data-filter="deposition"].active {
    background-color: var(--nau-blue);
    color: var(--white);
    border-color: var(--nau-blue);
}

/* 4. ETCHING -> RED */
.filter-btn[data-filter="etching"]:hover,
.filter-btn[data-filter="etching"].active {
    background-color: var(--nau-red);
    color: var(--white);
    border-color: var(--nau-red);
}

/* 5. PACKAGING -> TEAL (New Distinct Color) */
.filter-btn[data-filter="packaging"]:hover,
.filter-btn[data-filter="packaging"].active {
    background-color: #0d9488;
    /* Teal */
    color: var(--white);
    border-color: #0d9488;
}

/* 6. FABRICATION -> DARK GREY (New Distinct Color) */
.filter-btn[data-filter="fabrication"]:hover,
.filter-btn[data-filter="fabrication"].active {
    background-color: var(--gray-800);
    color: var(--white);
    border-color: var(--gray-800);
}

.filter-btn:hover {
    border-color: var(--nau-blue);
    color: var(--nau-blue);
}

.filter-btn.active {
    background: var(--nau-blue);
    color: var(--white);
    border-color: var(--nau-blue);
    box-shadow: 0 4px 10px rgba(0, 36, 84, 0.2);
}

/* 4. Equipment Card Tweaks */
/* Ensures images in the catalog look uniform */
.eq-image-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    background: var(--gray-50);
    border-radius: 50%;
    width: 180px;
    align-self: center;
}

.eq-image-container img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}

/* Status Badges */
.status-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.status-badge.available {
    background: #dcfce7;
    color: #166534;
}

.status-badge.maintenance {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.limited {
    background: #fef9c3;
    color: #854d0e;
}

/* 5. CAROUSEL WRAPPER (This replaces the Grid/Pagination styles) */
.catalog-wrapper {
    position: relative;
    padding: 0 50px;
    /* Adds space for the arrows */
}

.catalog-wrapper .card-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0 40px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hides scrollbar for clean look */
}

/* Hide scrollbar on Chrome/Safari */
.catalog-wrapper .card-wrapper::-webkit-scrollbar {
    display: none;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .search-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .filter-groups {
        overflow-x: auto;
        padding-bottom: 5px;
        flex-wrap: nowrap;
        /* Allows scrolling buttons sideways */
    }

    .catalog-wrapper {
        padding: 0;
        /* Arrows disappear on mobile, so remove padding */
    }
}

/* --------------------------------------
   PAGE HEADER TWEAKS (CENTERED)
   -------------------------------------- */

.page-header .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* This centers the items horizontally */
    text-align: center;
    /* This centers the text itself */
    width: 100%;
}

.page-header h1 {
    margin-bottom: 10px !important;
    line-height: 1.1;
}

.page-header p {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    opacity: 0.9;
    max-width: 800px;
}


/* --------------------------------------
   EQUIPMENT CATALOG VIEW CONTROLS & ANIMATIONS
   -------------------------------------- */

/* 1. View Toggle Buttons (Grid vs List) */
.view-controls {
    display: flex;
    gap: 5px;
    margin-left: auto;
    /* Pushes controls to the far right of the filter bar */
    padding-left: 20px;
    border-left: 1px solid var(--gray-300);
}

.view-btn {
    background: transparent;
    border: none;
    color: var(--gray-500);
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 4px;
}

.view-btn.active,
.view-btn:hover {
    color: var(--nau-blue);
    background: var(--gray-100);
}

/* 2. List View Layout Overrides
   These styles apply only when the 'list-view' class is added to the container via JS.
*/
.card-wrapper.list-view {
    display: flex;
    flex-direction: column;
    /* Stacks items vertically instead of horizontally */
    gap: 10px;
    overflow-x: hidden;
    /* Disables horizontal scroll */
    padding: 0;
}

.card-wrapper.list-view .equipment-card {
    width: 100%;
    min-width: 100%;
    height: auto;
    flex-direction: row;
    /* Align card content horizontally */
    align-items: center;
    padding: 15px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Internal Card Adjustments for List View */
.card-wrapper.list-view .equipment-card .d-flex.flex-col {
    flex-direction: row !important;
    /* Force row layout for inner content */
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.card-wrapper.list-view .image-container {
    width: 60px;
    height: 60px;
    margin: 0;
    flex-shrink: 0;
    /* Prevents image from shrinking */
}

.card-wrapper.list-view .card-title {
    font-size: 1.1rem;
    margin: 0;
    min-width: 200px;
    /* Ensures consistent alignment for text */
}

.card-wrapper.list-view .specs {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    flex-grow: 1;
    /* Pushes action buttons to the far right */
}

.card-wrapper.list-view .action-row {
    margin: 0;
    gap: 10px;
    min-width: 160px;
}

/* Hide tags in list view to reduce clutter */
.card-wrapper.list-view .tag {
    display: none;
}

/* 3. Status Indicator & Animation 
   Adds a pulsing dot next to the status text.
*/
.status-badge {
    position: relative;
    padding-left: 18px;
    /* Creates space for the indicator dot */
}

.status-badge::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
    /* Inherits text color (Green/Red) */
}

/* Pulse Animation Definition */
.status-badge.available::before {
    box-shadow: 0 0 0 0 rgba(22, 101, 52, 0.7);
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        transform: translateY(-50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(22, 101, 52, 0.7);
    }

    70% {
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 0 6px rgba(22, 101, 52, 0);
    }

    100% {
        transform: translateY(-50%) scale(0.95);
        box-shadow: 0 0 0 0 rgba(22, 101, 52, 0);
    }
}

/* --------------------------------------
    LIST VIEW LAYOUT 
   -------------------------------------- */

/* 1. The Container */
.card-wrapper.list-view {
    display: flex;
    flex-direction: column;
    padding: 0;
    gap: 0;
}

/* 2. The Card -> Turns into a 3-Column Grid */
.card-wrapper.list-view .equipment-card {
    display: grid;
    /* Col 1: Image | Col 2: Title (Stretch) | Col 3: Right Side (Auto) */
    grid-template-columns: 80px 1fr auto;
    grid-template-areas: "image title info";
    gap: 20px;
    align-items: center;

    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
    box-shadow: none;
}

/* 3. Disable the old Flexbox structure inside the card */
.card-wrapper.list-view .equipment-card .d-flex.flex-col {
    display: contents !important;
    /* This "unwraps" the divs so Grid works */
}

/* --- COLUMN 1: IMAGE --- */
.card-wrapper.list-view .image-container {
    grid-area: image;
    width: 80px !important;
    height: 80px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-wrapper.list-view .equipment-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    /* Keeps aspect ratio perfectly */
}

/* --- COLUMN 2: TITLE --- */
/* We target the div containing the title/tags */
.card-wrapper.list-view .d-flex.flex-col>div:first-child {
    grid-area: title;
}

.card-wrapper.list-view .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
}

/* --- COLUMN 3: RIGHT SIDE (Room & Buttons) --- */
/* We target the div containing specs/buttons */
.card-wrapper.list-view .d-flex.flex-col>div:last-child {
    grid-area: info;
    display: flex;
    flex-direction: column;
    /* Stack Room on top of Buttons */
    align-items: flex-end;
    /* Align right */
    justify-content: center;
}

.card-wrapper.list-view .specs {
    margin: 0 0 8px 0 !important;
    text-align: right;
    font-size: 0.9rem;
}

.card-wrapper.list-view .action-row {
    margin: 0 !important;
    display: flex;
    gap: 10px;
}

/* Hide tags to keep it clean */
.card-wrapper.list-view .tag {
    display: none;
}

/* ==========================================================================
   PRODUCT / EQUIPMENT PAGE DESIGN (Updated Jan 2026)
   ========================================================================== */

/* 1. HERO SECTION */
.product-hero {
    background: linear-gradient(135deg, var(--nau-blue-dark) 0%, var(--nau-blue) 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

/* Pulsing Status Dot (Standalone) */
.status-indicator-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.status-dot.pulse {
    width: 12px;
    height: 12px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
}

.status-dot.pulse.unavailable {
    background-color: #ef4444;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: pulse-red 2s infinite;
}

.status-dot.pulse.expected {
    background-color: #ea580c;
    box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
    animation: pulse-amber 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes pulse-red {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes pulse-amber {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(234, 88, 12, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
    color: white;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-image-wrapper {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* 2. QUICK SPECS BAR */
.specs-bar {
    background: var(--nau-blue-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    color: white;
}

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

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-item:last-child {
    border-right: none;
}

.spec-item i {
    font-size: 1.8rem;
    color: var(--nau-gold);
}

.spec-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.spec-item .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

/* 3. LAYOUT & TYPOGRAPHY */
.layout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.section-heading {
    font-size: 1.8rem;
    color: var(--nau-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 10px;
}

.subsection-title {
    font-size: 1.4rem;
    color: var(--nau-blue);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-block p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* 4. CARDS & WIDGETS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--nau-gold);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.icon-box.blue {
    background: #e3f2fd;
    color: #1565c0;
}

.icon-box.gold {
    background: #fff8e1;
    color: #f57f17;
}

.icon-box.green {
    background: #e8f5e9;
    color: #2e7d32;
}

.icon-box.purple {
    background: #f3e5f5;
    color: #7b1fa2;
}

.feature-card h4 {
    margin: 0 0 10px 0;
    color: var(--nau-blue);
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--gray-600);
}

/* 5. TABLES */
/* Tech Specs Table */
.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.tech-specs-table th,
.tech-specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--gray-200);
    text-align: left;
}

.tech-specs-table th {
    width: 40%;
    color: var(--gray-600);
    font-weight: 600;
}

.tech-specs-table td {
    color: var(--nau-blue);
    font-weight: 700;
}

/* Comparison Table (Blue/Gold) */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

/* Headers */
.col-feature {
    background-color: var(--nau-blue);
    color: white;
    width: 30%;
}

.col-highlight {
    background-color: var(--nau-gold);
    color: var(--nau-blue);
    width: 35%;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.col-standard {
    background-color: var(--nau-blue);
    color: white;
    width: 35%;
}

/* Cells */
.comparison-table td {
    font-size: 0.95rem;
}

.highlight-cell {
    background-color: #fffbe6;
    color: var(--nau-blue);
    font-weight: 700;
    border-left: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
}

.standard-green {
    background-color: #f0fdf4;
    color: #15803d;
    font-weight: 600;
}

/* 6. SAMPLE GALLERY */
.sample-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.sample-card {
    text-align: center;
}

.sample-img-box {
    height: 120px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.sample-card:hover .sample-img-box {
    transform: scale(1.05);
}

.sample-card span {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 7. SIDEBAR WIDGETS */
.sidebar-widget {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--nau-blue);
    border-bottom: 1px solid var(--gray-300);
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-weight: 800;
}

/* Tool Manager Card (High Visibility) */
.manager-card {
    background: white;
    border: 1px solid var(--nau-gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

.widget-header-primary {
    background: var(--nau-blue);
    color: white;
    padding: 15px 25px;
    font-weight: 700;
    font-family: var(--font-display);
}

/* Support for newer HTML structure with manager-label */
.manager-label {
    display: block;
    background: var(--nau-blue);
    color: white;
    padding: 15px 25px;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: -1px -1px 0 -1px;
    border-radius: 12px 12px 0 0;
}

.manager-body {
    padding: 25px;
}

/* Apply padding to manager-profile when there's no manager-body wrapper */
.manager-card>.manager-profile {
    padding: 25px 25px 0 25px;
}

.manager-card>.contact-list {
    padding: 0 25px 25px 25px;
}

.manager-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.manager-avatar {
    width: 50px;
    height: 50px;
    background: var(--nau-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 36, 84, 0.2);
}

.manager-info h4 {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    color: var(--nau-blue);
    font-weight: 700;
}

.manager-info span {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
}

.manager-contact {
    font-size: 0.95rem;
    color: var(--gray-700);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Support for newer contact-list structure */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.contact-item i {
    color: var(--nau-gold);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Placeholder text styling */
.placeholder-text {
    color: var(--gray-400);
    font-style: italic;
    font-size: 0.9rem;
}

.contact-line i {
    width: 20px;
    color: var(--nau-gold);
    text-align: center;
}

.contact-link {
    color: var(--nau-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

/* Rates Table */
.rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed var(--gray-300);
}

.rate-row:last-child {
    border: none;
}

.rate-label {
    font-size: 0.95rem;
    color: var(--gray-700);
}

.rate-cost {
    font-weight: 700;
    color: var(--nau-blue);
    font-size: 1.1rem;
}

/* Docs */
.doc-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--gray-800);
    transition: all 0.2s;
}

.doc-link:hover {
    border-color: var(--nau-blue);
    transform: translateX(5px);
}

.doc-link i {
    font-size: 1.5rem;
    color: var(--nau-blue);
}

.doc-link small {
    display: block;
    color: var(--gray-500);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Mobile */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-badges {
        justify-content: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .spec-item {
        border-right: none;
    }

    .layout-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .sidebar-col {
        order: 2;
    }
}

/* 
   EQUIPMENT CATALOG STYLES (Grid & List)
 */

/* --- 1. Filter & Search Bar --- */
.filter-section {
    background: #fff;
}

.filter-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-right: 4px;
    align-self: center;
}

.location-filter {
    align-items: center;
}

.filter-btn {
    background: none;
    border: 1px solid transparent;
    font-size: 0.9rem;
    color: var(--gray-500);
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.filter-btn:hover {
    background: var(--gray-100);
    color: var(--nau-blue);
}

.filter-btn.active {
    background: var(--nau-blue);
    color: white;
    border-color: var(--nau-blue);
    box-shadow: 0 2px 4px rgba(0, 51, 102, 0.2);
}

/* View Switcher Buttons */
.view-switcher .btn {
    color: var(--gray-600);
    border-color: var(--gray-300);
    background: white;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-switcher .btn:hover,
.view-switcher .btn.active {
    background: var(--nau-blue);
    color: white;
    border-color: var(--nau-blue);
}

/* --- 2. The Container --- */
.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.list-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* --- 3. The Tech Card (Shared Styles) --- */
.tech-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    /* Default: Stack vertically */
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--nau-blue-light);
}

/* Header & Title */
.tech-card-header {
    padding: 15px 20px;
    background: #fff;
    border-bottom: 1px solid var(--gray-100);
}

.tech-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--nau-blue);
    margin: 0;
    line-height: 1.3;
}

/* Tags / Badges */
.badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.badge-blue {
    background: #e3f2fd;
    color: #0d47a1;
}

.badge-gold {
    background: #fff8e1;
    color: #f57f17;
}

.badge-purple {
    background: #f3e5f5;
    color: #7b1fa2;
}

.badge-green {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Status Dots (Reverted to Simple Circles) */
.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.available {
    background-color: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
}

.status-dot.available::after {
    content: "Available";
    color: #22c55e;
    font-weight: 600;
    font-size: 0.75rem;
}

.status-dot.unavailable {
    background-color: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
}

.status-dot.busy {
    background-color: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
    border-radius: 0;
    display: inline-flex;
    align-items: center;
}

.status-dot.unavailable::after,
.status-dot.busy::after {
    content: "Unavailable";
    color: #ef4444;
    font-weight: 600;
    font-size: 0.75rem;
}

.status-dot.maintenance {
    background-color: #f59e0b;
    box-shadow: 0 0 0 2px #fef3c7;
}

.status-dot.expected {
    background-color: #ea580c;
    box-shadow: 0 0 0 2px #ffedd5;
}

.status-text {
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 8px;
    color: var(--gray-700);
}

.status-text.expected {
    color: #c2410c;
    font-weight: 700;
}

/* Image Area */
.tech-img-box {
    width: 100%;
    height: 200px;
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.tech-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.tech-card:hover .tech-img-box img {
    transform: scale(1.05);
}

/* Card Body */
.tech-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tech-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.tech-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-info i {
    color: var(--nau-gold);
    width: 16px;
    text-align: center;
}

/* Buttons */
.tech-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-tech {
    text-align: center;
    padding: 8px 0;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-tech-outline {
    border: 1px solid var(--gray-300);
    color: var(--gray-700);
    background: transparent;
}

.btn-tech-outline:hover {
    border-color: var(--nau-blue);
    color: var(--nau-blue);
    background: #f0f7ff;
}

.btn-tech-fill {
    background: var(--nau-blue);
    color: white;
    border: 1px solid var(--nau-blue);
}

.btn-tech-fill:hover {
    background: var(--nau-gold);
    border-color: var(--nau-gold);
    color: var(--nau-blue);
}

.btn-tech.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn.disabled {
    background-color: var(--gray-500);
    border-color: var(--gray-500);
    cursor: not-allowed;
    pointer-events: none;
}

/* --- 4. LIST VIEW TRANSFORMATIONS --- */

.list-layout .tech-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 18px 22px;
    min-height: 140px;
}

.list-layout .tech-img-box {
    width: 190px;
    height: 120px;
    min-height: auto;
    border-radius: 14px;
    border: 1px solid var(--gray-200);
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
}

.list-layout .tech-img-box img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.list-layout .tech-card-header {
    border-bottom: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1.1;
}

.list-layout .tech-title {
    font-size: 1.2rem;
    margin: 0;
}

.list-layout .tech-card-header .d-flex {
    margin-bottom: 0;
    gap: 12px;
    flex-wrap: wrap;
}

.list-layout .tech-body {
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex: 1.4;
}

.list-layout .tech-info {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0;
    align-items: center;
    font-size: 0.95rem;
}

.list-layout .tech-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-left: auto;
}

.list-layout .btn-tech {
    padding: 8px 18px;
    font-size: 0.9rem;
    min-width: 96px;
}

/* --- MOBILE FIX (Stack vertically on phones) --- */
@media (max-width: 900px) {
    .list-layout .tech-card {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 18px;
        height: auto;
    }

    .list-layout .tech-img-box {
        width: 100%;
        height: 200px;
    }

    .list-layout .tech-card-header {
        width: 100%;
        padding: 0;
        flex-wrap: wrap;
    }

    .list-layout .tech-body {
        width: 100%;
        padding: 0;
        flex-direction: column;
        gap: 20px;
    }

    .list-layout .tech-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .list-layout .tech-actions {
        width: 100%;
        gap: 10px;
    }

    .list-layout .btn-tech {
        width: 100%;
    }
}

/**
 * Degree Programs Page Styles
 * --------------------------------------
 * Modern, university-standard design for NAU degree programs.
 * Extends the core design system from style.css
 */

/* ================================
   HERO SECTION
   ================================ */
.degree-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.degree-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.degree-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.degree-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(0, 36, 84, 0.95) 0%,
            rgba(0, 36, 84, 0.85) 60%,
            rgba(0, 58, 133, 0.75) 100%);
}

.degree-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0 60px;
}

.degree-hero-tag {
    display: inline-block;
    background: rgba(250, 192, 26, 0.15);
    border: 1px solid var(--nau-gold);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.degree-hero-tag span {
    color: var(--nau-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.degree-hero-title {
    color: white;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.1;
    max-width: 800px;
}

.degree-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 100%;
}

/* ================================
   SECTION INTRO
   ================================ */
.section-intro {
    text-align: left;
    max-width: 100%;
    margin: 0 0 var(--space-2xl) 0;
}

.section-intro h2 {
    color: var(--nau-blue);
    margin-bottom: var(--space-md);
}

.section-intro-text {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 100%;
}

.section-tag {
    display: inline-block;
    background: var(--nau-gold);
    color: var(--nau-blue);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

/* ================================
   PROGRAMS GRID (LEGACY - KEEP FOR REFERENCE OR FALLBACK)
   ================================ */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

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

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

/* ================================
   PROGRAM CARDS
   ================================ */
.program-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    transition: all var(--trans-med);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--nau-blue), var(--nau-blue-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans-med);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--nau-blue);
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card-highlight {
    background: linear-gradient(135deg, rgba(250, 192, 26, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-color: var(--nau-gold);
}

.program-card-highlight::before {
    background: linear-gradient(90deg, var(--nau-gold), var(--nau-gold-light));
}

.program-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--nau-blue), var(--nau-blue-light));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    transition: all var(--trans-med);
}

.program-card:hover .program-card-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(0, 36, 84, 0.3);
}

.program-card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke: white;
}

.program-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card-title {
    font-size: 1.3rem;
    color: var(--nau-blue);
    margin-bottom: 4px;
    font-weight: 700;
}

.program-card-degree {
    font-size: 0.85rem;
    color: var(--nau-gold-dark);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.program-card-desc {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.program-card-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-md);
}

.topic-tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--trans-fast);
}

.program-card:hover .topic-tag {
    background: rgba(0, 36, 84, 0.1);
    color: var(--nau-blue);
}

.program-card-careers {
    margin-bottom: var(--space-md);
    flex: 1;
}

.program-card-careers h4 {
    font-size: 0.9rem;
    color: var(--nau-blue);
    margin-bottom: 8px;
    font-weight: 600;
}

.program-card-careers ul {
    list-style: none;
    padding: 0;
}

.program-card-careers li {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 4px 0;
    padding-left: 16px;
    position: relative;
}

.program-card-careers li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--nau-gold);
    font-weight: 700;
}

.program-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--nau-blue);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    transition: all var(--trans-fast);
}

.program-card-link:hover {
    color: var(--nau-gold-dark);
    gap: 10px;
}

.program-card-link svg {
    transition: transform var(--trans-fast);
}

.program-card-link:hover svg {
    transform: translateX(4px);
}

/* ================================
   WORKFORCE SECTION
   ================================ */
.workforce-section {
    background: linear-gradient(135deg, var(--nau-blue) 0%, var(--nau-blue-dark) 100%);
    padding: var(--space-4xl) 0;
}

.workforce-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (max-width: 1024px) {
    .workforce-grid {
        grid-template-columns: 1fr;
    }
}

.workforce-content h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.workforce-content>p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.workforce-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.workforce-feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    background: rgba(255, 255, 255, 0.08);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--trans-fast);
}

.workforce-feature:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(5px);
}

.workforce-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(250, 192, 26, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workforce-feature-icon svg {
    color: var(--nau-gold);
    stroke: var(--nau-gold);
}

.workforce-feature h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
}

.workforce-feature p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.workforce-outcomes h4 {
    color: var(--nau-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.outcome-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.outcome-tag {
    background: rgba(250, 192, 26, 0.15);
    border: 1px solid var(--nau-gold);
    color: var(--nau-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.workforce-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.workforce-image img {
    width: 100%;
    height: auto;
    display: block;
}

.workforce-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(0, 36, 84, 0.9));
}

.workforce-image-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ================================
   METROLOGY SECTION
   ================================ */
.metrology-section {
    background: var(--gray-50);
}

.metrology-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (max-width: 1024px) {
    .metrology-grid {
        grid-template-columns: 1fr;
    }

    .metrology-image {
        order: 2;
    }
}

.metrology-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.metrology-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--trans-slow);
}

.metrology-image:hover img {
    transform: scale(1.03);
}

.metrology-content h2 {
    color: var(--nau-blue);
    margin-bottom: var(--space-md);
}

.metrology-content>p {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.metrology-skills {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.metrology-skill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}

.metrology-skill span {
    color: var(--gray-700);
    font-size: 0.95rem;
}

.metrology-note {
    background: rgba(0, 36, 84, 0.05);
    border-left: 3px solid var(--nau-blue);
    padding: var(--space-md);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    font-style: italic;
}

/* ================================
   CAMPUSES SECTION
   ================================ */
.campuses-section {
    background: white;
}

.campus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

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

.campus-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--trans-med);
}

.campus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.campus-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.campus-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--trans-slow);
}

.campus-card:hover .campus-card-image img {
    transform: scale(1.08);
}

.campus-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--nau-blue);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.campus-card-badge-gold {
    background: var(--nau-gold);
    color: var(--nau-blue);
}

.campus-card-body {
    padding: var(--space-lg);
}

.campus-card-body h3 {
    color: var(--nau-blue);
    margin-bottom: var(--space-sm);
}

.campus-card-body p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.campus-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.campus-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* ================================
   PREMIUM INDUSTRY SECTION
   ================================ */
.industry-section-premium {
    background: linear-gradient(135deg, #001530 0%, #002454 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.industry-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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='%23fac01a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.industry-section-premium .industry-grid {
    position: relative;
    z-index: 2;
}

.industry-section-premium .tag-gold-bold {
    background: rgba(250, 192, 26, 0.2);
    color: var(--nau-gold);
    border: 1px solid var(--nau-gold);
}

.industry-section-premium h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
}

.industry-section-premium .text-white-muted {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
}

.industry-section-premium .industry-opportunity {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(250, 192, 26, 0.3);
    backdrop-filter: blur(5px);
}

.industry-section-premium .industry-opportunity:hover {
    background: rgba(250, 192, 26, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--nau-gold);
}

.industry-section-premium .industry-opportunity span {
    color: var(--nau-gold);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.industry-section-premium .industry-opportunity svg {
    stroke: var(--nau-gold);
    filter: drop-shadow(0 0 5px rgba(250, 192, 26, 0.5));
}

/* ================================
   TECH DASHBOARD INDUSTRY SECTION
   ================================ */
.industry-dashboard {
    max-width: 1200px;
    margin: 0 auto;
}

.industry-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-2xl);
    gap: var(--space-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-lg);
}

@media (max-width: 768px) {
    .industry-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

.industry-intro {
    max-width: 700px;
}

.industry-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

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

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

/* Tech Card Styles for Industry Dashboard (Dark Theme) */
.industry-dashboard .tech-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--trans-med);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.industry-dashboard .tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--nau-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans-med);
}

.industry-dashboard .tech-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(250, 192, 26, 0.3);
}

.industry-dashboard .tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(250, 192, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--nau-gold);
}

.industry-dashboard .tech-card h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.industry-dashboard .tech-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Utility for Outline Button */
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 2px solid var(--nau-gold);
    border-radius: 50px;
    color: var(--nau-gold);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--trans-fast);
}

.btn-outline-gold:hover {
    background: var(--nau-gold);
    color: var(--nau-blue);
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.accreditation-note {
    display: flex;
    gap: var(--space-lg);
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.accreditation-note svg {
    flex-shrink: 0;
}

.accreditation-note h4 {
    color: var(--nau-blue);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.accreditation-note p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--nau-blue) 0%, var(--nau-blue-dark) 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-box h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ================================
   SCROLL REVEAL ANIMATIONS
   ================================ */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE ADJUSTMENTS
   ================================ */
@media (max-width: 768px) {
    .degree-hero-content {
        padding: 100px 0 60px;
    }

    .degree-hero-title {
        font-size: 2.2rem;
    }

    .degree-hero-subtitle {
        font-size: 1rem;
    }

    .accreditation-note {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .cta-box {
        padding: var(--space-xl);
    }
}

/* ================================
   PROGRAM ROWS (NEW ALTERNATING LAYOUT) 
   ================================ */
/* ================================
   PROGRAM ROWS (Refined Alternating Layout)
   ================================ */
.program-rows {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    /* Reduced from 4xl */
}

.program-row {
    display: flex;
    align-items: stretch;
    /* Ensure equal height stretch */
    gap: 0;
    /* Removed gap to bring image flush if desired, or small gap */
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    /* High-end subtle shadow */
    transition: all var(--trans-med);
    overflow: hidden;
    min-height: 280px;
    /* Compact height */
}

.program-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 36, 84, 0.12);
    border-color: rgba(0, 36, 84, 0.2);
}

/* Alternating Layout: Even rows image on right */
.program-row:nth-child(even) {
    flex-direction: row-reverse;
}

/* Image Side */
.program-row-image {
    flex: 0 0 35%;
    /* Fixed 35% width */
    position: relative;
    overflow: hidden;
}

.program-row-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.program-row:hover .program-row-image img {
    transform: scale(1.05);
}

/* Content Side */
.program-row-content {
    flex: 1;
    padding: var(--space-xl);
    /* Compact padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-row-header {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.program-row-title {
    font-size: 1.5rem;
    color: var(--nau-blue);
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
}

.program-row-degree {
    display: inline-block;
    background: rgba(250, 192, 26, 0.15);
    /* Gold tint */
    color: var(--nau-blue-dark);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-row-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
    max-width: 90%;
}

.program-row-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    margin-bottom: var(--space-lg);
}

.program-row-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-700);
    font-weight: 500;
}

.program-row-feature svg {
    color: var(--nau-gold);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.program-row-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--nau-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: auto;
    /* Push to bottom if content varies */
    transition: all var(--trans-fast);
    align-self: flex-start;
}

.program-row-link:hover {
    color: var(--nau-gold-dark);
    gap: 10px;
}

/* Responsive for Rows */
@media (max-width: 900px) {

    .program-row,
    .program-row:nth-child(even) {
        flex-direction: column;
        height: auto;
    }

    .program-row-image {
        width: 100%;
        height: 200px;
        /* Fixed height for mobile */
        flex: none;
    }

    .program-row-content {
        padding: var(--space-lg);
    }

    .program-row-title {
        font-size: 1.3rem;
    }

    .program-row-features {
        grid-template-columns: 1fr;
    }

    .program-row-desc {
        max-width: 100%;
    }
}

/* ================================
   PROGRAM GRID VARIANT (DP_2)
   ================================ */
.programs-grid-variant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: var(--space-xl);
    padding-bottom: var(--space-2xl);
}

.program-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--trans-med);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    /* Ensure reveal works */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

/* Override for revealed state to handle transform properly */
.program-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 36, 84, 0.12);
    border-color: rgba(0, 36, 84, 0.2);
}

.program-card-image {
    height: 220px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-card-image img {
    transform: scale(1.05);
}

.program-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6));
}

.program-card-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--nau-blue);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.program-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.program-card-title {
    color: var(--nau-blue);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.25;
}

.program-card-desc {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-card-features {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.program-card-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray-700);
    font-weight: 600;
    background: var(--gray-50);
    padding: 6px 10px;
    border-radius: 6px;
}

.program-card-features svg {
    color: var(--nau-gold);
    flex-shrink: 0;
}

.program-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--nau-blue);
    font-weight: 700;
    font-size: 0.95rem;
    transition: gap 0.2s ease, color 0.2s ease;
}

.program-card-link:hover {
    color: var(--nau-gold-dark);
    gap: 12px;
}

/* --------------------------------------
   APPLICATION LIST (Checklist Style) 
   -------------------------------------- */
.app-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.app-icon {
    font-size: 1.2rem;
    color: var(--nau-gold);
    /* Uses existing gold variable */
    margin-top: 3px;
    /* Visual alignment with the text title */
    flex-shrink: 0;
    /* Prevents icon from squishing on mobile */
}

.app-title {
    display: block;
    color: var(--nau-blue);
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.app-desc {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* --------------------------------------
   ACCESSORY / RELATED EQUIPMENT SECTION
   -------------------------------------- */
.accessories-section {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    margin-top: 40px;
}

.accessories-grid {
    display: grid;
    /* Adjusted min-width to 250px for better mobile fit */
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.acc-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}

.acc-card:hover {
    border-color: var(--nau-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* UNAVAILABLE STATE: Grayscale + Lower Opacity */
.acc-card.is-unavailable {
    background-color: var(--gray-50);
    opacity: 0.7;
    /* This ensures they look "disabled" but become clear on hover if needed */
    filter: grayscale(100%);
}

.acc-card.is-unavailable:hover {
    opacity: 1;
    filter: grayscale(0%);
    /* Optional: Colorize on hover */
}

.acc-img-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 4px;
}

.acc-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.acc-info {
    flex-grow: 1;
}

.acc-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--nau-blue);
    margin-bottom: 4px;
    line-height: 1.2;
}

.acc-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 6px;
    line-height: 1.3;
}

.acc-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.acc-status.available {
    color: var(--nau-green);
}

.acc-status.unavailable {
    color: var(--nau-red);
}

/* Status dots */
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot.green {
    background-color: var(--nau-green);
}

.dot.red {
    background-color: var(--nau-red);
}

/* Mobile Adjustment */
@media (max-width: 600px) {
    .accessories-grid {
        grid-template-columns: 1fr;
        /* Force single column on phones */
    }
}

/* ============================================
   HERO V2 - Immersive Cinematic Hero
   ============================================ */

/* --- Keyframe Animations --- */
@keyframes heroV2FadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroV2FadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroV2SlowZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

@keyframes heroV2PulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

@keyframes heroV2ScrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* --- Hero V2: Main Container --- */
.hero-v2 {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 650px;
    max-height: 1200px;
    overflow: hidden;
    background-color: var(--nau-blue-dark);
}

/* --- Hero V2: Background Image with Ken Burns --- */
.hero-v2__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-v2__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    animation: heroV2SlowZoom 25s ease-in-out infinite alternate;
    will-change: transform;
}

/* --- Hero V2: Multi-Layer Gradient Overlay --- */
.hero-v2__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background:
        linear-gradient(to top,
            rgba(0, 18, 42, 0.95) 0%,
            rgba(0, 24, 56, 0.7) 35%,
            rgba(0, 36, 84, 0.4) 60%,
            rgba(0, 36, 84, 0.2) 80%,
            rgba(0, 36, 84, 0.35) 100%),
        linear-gradient(to right,
            rgba(0, 18, 42, 0.6) 0%,
            rgba(0, 18, 42, 0.2) 50%,
            transparent 100%),
        radial-gradient(ellipse at 20% 50%,
            transparent 0%,
            rgba(0, 12, 30, 0.3) 100%);
}

/* --- Hero V2: CSS Grid Pattern Overlay (Tech Feel) --- */
.hero-v2__pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.04;
    pointer-events: none;
    background-image:
        linear-gradient(to bottom,
            transparent 0%,
            transparent calc(100% - 1px),
            rgba(250, 192, 26, 0.5) 100%),
        linear-gradient(to right,
            transparent 0%,
            transparent calc(100% - 1px),
            rgba(250, 192, 26, 0.5) 100%);
    background-size: 60px 60px;
}

/* --- Hero V2: Content Area --- */
.hero-v2__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 40px;
    z-index: 5;
}

.hero-v2__content .container {
    max-width: 1400px;
}

/* --- Hero V2: Badge Pill --- */
.hero-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(250, 192, 26, 0.12);
    border: 1px solid rgba(250, 192, 26, 0.3);
    color: var(--nau-gold);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    animation: heroV2FadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s forwards;
}

.hero-v2__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--nau-gold);
    animation: heroV2PulseDot 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* --- Hero V2: Title with Gold Gradient --- */
.hero-v2__title {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
    max-width: 800px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: heroV2FadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
}

.hero-v2__title-gold {
    background: linear-gradient(135deg, var(--nau-gold) 0%, var(--nau-gold-light) 50%, var(--nau-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- Hero V2: Description --- */
.hero-v2__desc {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 580px;
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: heroV2FadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s forwards;
}

/* --- Hero V2: CTA Buttons --- */
.hero-v2__ctas {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    opacity: 0;
    animation: heroV2FadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.8s forwards;
}

.hero-v2__cta-primary {
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 700;
}

.hero-v2__cta-outline {
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-width: 2px;
}

/* --- Hero V2: Scroll Indicator --- */
.hero-v2__scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 60px;
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: heroV2FadeIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1.2s forwards;
}

.hero-v2__scroll-text {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    writing-mode: vertical-lr;
}

.hero-v2__scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-v2__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--nau-gold);
    animation: heroV2ScrollLine 2.5s ease-in-out infinite;
}

/* ============================================
   HERO DIVIDER - Nano Circuit "iMPaCT"
   Living semiconductor-inspired transition
   ============================================ */

/* --- Divider Keyframes --- */
@keyframes hdNodeGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(250, 192, 26, 0.35), 0 0 12px rgba(250, 192, 26, 0.14);
        transform: translate(-50%, -50%) scale(0.95);
    }

    50% {
        box-shadow: 0 0 8px rgba(250, 192, 26, 0.55), 0 0 18px rgba(250, 192, 26, 0.22);
        transform: translate(-50%, -50%) scale(1.06);
    }
}

@keyframes hdIAppear {
    0% {
        opacity: 0;
        transform: translateX(-8px);
        text-shadow: 0 0 0 transparent;
    }

    40% {
        opacity: 0.5;
        transform: translateX(-2px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        text-shadow: 0 0 12px rgba(250, 192, 26, 0.3), 0 0 24px rgba(250, 192, 26, 0.1);
    }
}

@keyframes hdIGlow {

    0%,
    100% {
        text-shadow: 0 0 8px rgba(250, 192, 26, 0.15), 0 0 20px rgba(250, 192, 26, 0.06);
        opacity: 0.75;
    }

    50% {
        text-shadow: 0 0 14px rgba(250, 192, 26, 0.38), 0 0 28px rgba(250, 192, 26, 0.14);
        opacity: 1;
    }
}

@keyframes hdBrandReveal {
    0% {
        opacity: 0;
        transform: translateY(3px) scale(0.992);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hdPulseLTR {
    0% {
        left: -150px;
        opacity: 0;
    }

    5% {
        opacity: 0.85;
    }

    95% {
        opacity: 0.85;
    }

    100% {
        left: calc(100% + 150px);
        opacity: 0;
    }
}

@keyframes hdPulseRTL {
    0% {
        right: -150px;
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    95% {
        opacity: 0.7;
    }

    100% {
        right: calc(100% + 150px);
        opacity: 0;
    }
}

@keyframes hdParticleFloat {
    0% {
        transform: translateY(0) translateX(0) scale(0.9);
        opacity: 0;
    }

    22% {
        opacity: 0.34;
    }

    62% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-64px) translateX(10px) scale(0.55);
        opacity: 0;
    }
}

@keyframes hdFieldFlowH {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translateX(200%);
        opacity: 0;
    }
}

@keyframes hdFieldFlowV {
    0% {
        transform: translateY(-120%);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(200%);
        opacity: 0;
    }
}

@keyframes hdViaPulse {

    0%,
    100% {
        opacity: 0.35;
        transform: translate(-50%, -50%) scale(0.85);
        box-shadow: 0 0 3px rgba(250, 192, 26, 0.12);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.12);
        box-shadow: 0 0 7px rgba(250, 192, 26, 0.3), 0 0 14px rgba(250, 192, 26, 0.1);
    }
}

@keyframes hdWaferShimmer {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes hdTextBreath {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Signal flowing down the vertical branch */
@keyframes hdBranchSignalV {
    0% {
        background: linear-gradient(to bottom,
                rgba(250, 192, 26, 0.75) 0%,
                rgba(255, 230, 100, 0.45) 15%,
                rgba(250, 192, 26, 0.25) 40%,
                rgba(250, 192, 26, 0.4) 100%);
        box-shadow: 0 0 5px rgba(250, 192, 26, 0.15);
    }

    50% {
        background: linear-gradient(to bottom,
                rgba(250, 192, 26, 0.3) 0%,
                rgba(250, 192, 26, 0.25) 50%,
                rgba(255, 230, 100, 0.45) 85%,
                rgba(250, 192, 26, 0.75) 100%);
        box-shadow: 0 0 8px rgba(250, 192, 26, 0.28);
    }

    100% {
        background: linear-gradient(to bottom,
                rgba(250, 192, 26, 0.75) 0%,
                rgba(255, 230, 100, 0.45) 15%,
                rgba(250, 192, 26, 0.25) 40%,
                rgba(250, 192, 26, 0.4) 100%);
        box-shadow: 0 0 5px rgba(250, 192, 26, 0.15);
    }
}

/* Signal flowing across the horizontal arm */
@keyframes hdBranchSignalH {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 4px rgba(250, 192, 26, 0.12);
    }

    40% {
        opacity: 0.85;
        box-shadow: 0 0 8px rgba(250, 192, 26, 0.3);
    }

    100% {
        opacity: 0.5;
        box-shadow: 0 0 4px rgba(250, 192, 26, 0.12);
    }
}

/* --- Divider Container --- */
.hero-divider {
    --hd-foil-gradient: linear-gradient(92deg,
            #8a9bae 0%,
            #b8c6d4 12%,
            #fac01a 24%,
            #fdd054 36%,
            #d8dfe6 46%,
            #ffffff 50%,
            #dce3ea 54%,
            #fac01a 66%,
            #c4d0dc 78%,
            #9aabbc 90%,
            #8a9bae 100%);
    position: sticky;
    top: calc(var(--site-header-height) - 1px);
    z-index: 980;
    height: var(--site-header-height);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg,
            rgba(0, 18, 42, 0.98) 0%,
            rgba(0, 20, 48, 0.94) 25%,
            rgba(0, 24, 56, 0.82) 50%,
            rgba(0, 28, 64, 0.55) 72%,
            rgba(0, 32, 74, 0.22) 88%,
            transparent 100%);
    overflow: hidden;
    isolation: isolate;
    pointer-events: none;
    backdrop-filter: blur(4px) saturate(120%);
    -webkit-backdrop-filter: blur(4px) saturate(120%);
    box-shadow: 0 20px 60px -10px rgba(0, 12, 30, 0.4);
    transition: top 0.35s ease, background 0.45s ease;
}

/* --- Floating Nano Particles --- */
.hd-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.75;
}

.hd-particles span {
    position: absolute;
    bottom: 10%;
    width: 2px;
    height: 2px;
    border-radius: 50%;
    background: rgba(250, 192, 26, 0.7);
    box-shadow: 0 0 6px rgba(250, 192, 26, 0.3);
    opacity: 0;
    animation: hdParticleFloat linear infinite;
}

.hd-particles span:nth-child(1) {
    left: 5%;
    animation-duration: 12s;
    animation-delay: 0s;
    width: 2.2px;
    height: 2.2px;
}

.hd-particles span:nth-child(2) {
    left: 14%;
    animation-duration: 16s;
    animation-delay: 0.8s;
    width: 2.4px;
    height: 2.4px;
}

.hd-particles span:nth-child(3) {
    left: 24%;
    animation-duration: 14s;
    animation-delay: 2.1s;
    width: 2px;
    height: 2px;
}

.hd-particles span:nth-child(4) {
    left: 36%;
    animation-duration: 18s;
    animation-delay: 1.4s;
    width: 1.6px;
    height: 1.6px;
}

.hd-particles span:nth-child(5) {
    left: 48%;
    animation-duration: 13s;
    animation-delay: 3.2s;
    width: 2.2px;
    height: 2.2px;
}

.hd-particles span:nth-child(6) {
    left: 58%;
    animation-duration: 17s;
    animation-delay: 0.4s;
    width: 2.5px;
    height: 2.5px;
}

.hd-particles span:nth-child(7) {
    left: 69%;
    animation-duration: 15s;
    animation-delay: 2.8s;
    width: 2px;
    height: 2px;
}

.hd-particles span:nth-child(8) {
    left: 78%;
    animation-duration: 19s;
    animation-delay: 1.1s;
    width: 1.6px;
    height: 1.6px;
}

.hd-particles span:nth-child(9) {
    left: 88%;
    animation-duration: 13.5s;
    animation-delay: 3.6s;
    width: 2.2px;
    height: 2.2px;
}

.hd-particles span:nth-child(10) {
    left: 95%;
    animation-duration: 16.5s;
    animation-delay: 0.6s;
    width: 2px;
    height: 2px;
}

.hd-particles span:nth-child(11) {
    left: 42%;
    animation-duration: 20s;
    animation-delay: 4.5s;
    width: 1.6px;
    height: 1.6px;
}

.hd-particles span:nth-child(12) {
    left: 73%;
    animation-duration: 14.5s;
    animation-delay: 5s;
    width: 2.2px;
    height: 2.2px;
}

/* --- Background PCB Traces + Vias --- */
.hd-circuit-field {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hd-field-line {
    position: absolute;
    overflow: hidden;
    border-radius: 999px;
    opacity: 0.5;
}

.hd-field-line::after {
    content: '';
    position: absolute;
}

.hd-field-line--h {
    height: 1px;
    background: linear-gradient(to right,
            rgba(250, 192, 26, 0.01) 0%,
            rgba(250, 192, 26, 0.14) 20%,
            rgba(250, 192, 26, 0.28) 50%,
            rgba(250, 192, 26, 0.14) 80%,
            rgba(250, 192, 26, 0.01) 100%);
    box-shadow: 0 0 5px rgba(250, 192, 26, 0.12);
}

.hd-field-line--h::after {
    top: 0;
    left: 0;
    width: 22%;
    height: 100%;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(255, 247, 210, 0.5) 52%,
            transparent 100%);
    animation: hdFieldFlowH 12s linear infinite;
    animation-delay: var(--flow-delay, 0s);
}

.hd-field-line--v {
    width: 1px;
    background: linear-gradient(to bottom,
            rgba(250, 192, 26, 0.01) 0%,
            rgba(250, 192, 26, 0.14) 20%,
            rgba(250, 192, 26, 0.28) 50%,
            rgba(250, 192, 26, 0.14) 80%,
            rgba(250, 192, 26, 0.01) 100%);
    box-shadow: 0 0 5px rgba(250, 192, 26, 0.12);
}

.hd-field-line--v::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 22%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 247, 210, 0.5) 52%,
            transparent 100%);
    animation: hdFieldFlowV 12s linear infinite;
    animation-delay: var(--flow-delay, 0s);
}

.hd-field-line--h1 {
    top: 14%;
    left: 0;
    width: 27%;
    --flow-delay: 0.2s;
}

.hd-field-line--h2 {
    top: 28%;
    left: 6%;
    width: 22%;
    --flow-delay: 1.1s;
}

.hd-field-line--h3 {
    top: 76%;
    left: 0;
    width: 24%;
    --flow-delay: 2.4s;
}

.hd-field-line--h4 {
    top: 18%;
    right: 0;
    width: 27%;
    --flow-delay: 0.8s;
}

.hd-field-line--h5 {
    top: 32%;
    right: 8%;
    width: 20%;
    --flow-delay: 1.8s;
}

.hd-field-line--h6 {
    top: 72%;
    right: 0;
    width: 28%;
    --flow-delay: 2.9s;
}

.hd-field-line--v1 {
    left: 9%;
    top: 4%;
    height: 24%;
    --flow-delay: 0.5s;
}

.hd-field-line--v2 {
    left: 23%;
    top: 14%;
    height: 21%;
    --flow-delay: 1.5s;
}

.hd-field-line--v3 {
    left: 17%;
    top: 72%;
    height: 23%;
    --flow-delay: 2.5s;
}

.hd-field-line--v4 {
    right: 9%;
    top: 4%;
    height: 24%;
    --flow-delay: 0.9s;
}

.hd-field-line--v5 {
    right: 23%;
    top: 14%;
    height: 21%;
    --flow-delay: 1.9s;
}

.hd-field-line--v6 {
    right: 17%;
    top: 70%;
    height: 25%;
    --flow-delay: 2.7s;
}

.hd-field-via {
    position: absolute;
    width: 4.5px;
    height: 4.5px;
    border-radius: 50%;
    background: rgba(250, 192, 26, 0.45);
    border: 0.8px solid rgba(250, 192, 26, 0.3);
    transform: translate(-50%, -50%);
    animation: hdViaPulse 5s ease-in-out infinite;
    animation-delay: var(--via-delay, 0s);
}

.hd-field-via--1 {
    left: 9%;
    top: 14%;
    --via-delay: 0.2s;
}

.hd-field-via--2 {
    left: 23%;
    top: 28%;
    --via-delay: 0.9s;
}

.hd-field-via--3 {
    left: 17%;
    top: 76%;
    --via-delay: 1.9s;
}

.hd-field-via--4 {
    left: 3%;
    top: 14%;
    --via-delay: 2.7s;
}

.hd-field-via--5 {
    right: 9%;
    top: 18%;
    --via-delay: 0.4s;
}

.hd-field-via--6 {
    right: 23%;
    top: 32%;
    --via-delay: 1.1s;
}

.hd-field-via--7 {
    right: 17%;
    top: 72%;
    --via-delay: 2.1s;
}

.hd-field-via--8 {
    right: 3%;
    top: 72%;
    --via-delay: 2.9s;
}

.hd-field-via--9 {
    left: 27%;
    top: 14%;
    --via-delay: 1.5s;
}

.hd-field-via--10 {
    right: 27%;
    top: 18%;
    --via-delay: 1.7s;
}

.hd-field-via--11 {
    left: 23%;
    top: 35%;
    --via-delay: 2.3s;
}

.hd-field-via--12 {
    right: 23%;
    top: 35%;
    --via-delay: 2.6s;
}

/* --- Circuit Trace Layout --- */
.hd-circuit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2px, 0.5vw, 6px);
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 28px;
}

/* --- Trace Lines --- */
.hd-trace {
    flex: 1;
    min-width: 100px;
    height: 1.5px;
    position: relative;
    background: linear-gradient(to right,
            rgba(250, 192, 26, 0.02) 0%,
            rgba(250, 192, 26, 0.5) 100%);
    box-shadow: 0 0 6px rgba(250, 192, 26, 0.12);
}

.hd-trace--left {
    background: linear-gradient(to right,
            transparent 0%,
            rgba(250, 192, 26, 0.12) 12%,
            rgba(250, 192, 26, 0.35) 52%,
            rgba(250, 192, 26, 0.65) 100%);
    box-shadow: 0 0 8px rgba(250, 192, 26, 0.16);
}

.hd-trace--right {
    background: linear-gradient(to left,
            transparent 0%,
            rgba(250, 192, 26, 0.12) 12%,
            rgba(250, 192, 26, 0.35) 52%,
            rgba(250, 192, 26, 0.65) 100%);
    box-shadow: 0 0 8px rgba(250, 192, 26, 0.16);
}

/* --- Circuit Nodes (Via Holes) --- */
.hd-node {
    position: absolute;
    width: 4.5px;
    height: 4.5px;
    border-radius: 50%;
    background: rgba(250, 192, 26, 0.7);
    border: 0.8px solid rgba(250, 192, 26, 0.45);
    top: 50%;
    transform: translate(-50%, -50%);
    animation: hdNodeGlow 4.5s ease-in-out infinite;
    z-index: 2;
}

/* Node positioning - left trace */
.hd-trace--left .hd-node:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
    width: 3.2px;
    height: 3.2px;
}

.hd-trace--left .hd-node:nth-child(2) {
    left: 50%;
    animation-delay: 1.2s;
}

.hd-trace--left .hd-node:nth-child(3) {
    left: 82%;
    animation-delay: 0.6s;
    width: 5px;
    height: 5px;
    background: rgba(250, 192, 26, 0.7);
    border: 0.8px solid rgba(250, 192, 26, 0.45);
}

/* Node positioning - right trace */
.hd-trace--right .hd-node:nth-child(1) {
    left: 18%;
    animation-delay: 0.9s;
    width: 5px;
    height: 5px;
    background: rgba(250, 192, 26, 0.7);
    border: 0.8px solid rgba(250, 192, 26, 0.45);
}

.hd-trace--right .hd-node:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}

.hd-trace--right .hd-node:nth-child(3) {
    left: 85%;
    animation-delay: 1.5s;
    width: 3.2px;
    height: 3.2px;
}

/* Branch nodes - vertical drop trace (PCB via-to-trace routing) */
.hd-node--branch::after {
    content: '';
    position: absolute;
    top: calc(50% + 5px);
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 26px;
    background: linear-gradient(to bottom,
            rgba(250, 192, 26, 0.8) 0%,
            rgba(250, 192, 26, 0.55) 50%,
            rgba(250, 192, 26, 0.7) 100%);
    box-shadow: 0 0 8px rgba(250, 192, 26, 0.25);
    animation: hdBranchSignalV 3s ease-in-out infinite;
}

/* Branch 90-degree horizontal arm — forms L-shaped PCB route */
.hd-node--branch::before {
    content: '';
    position: absolute;
    top: calc(50% + 30px);
    left: 50%;
    width: 28px;
    height: 2px;
    border-radius: 1px;
    background: rgba(250, 192, 26, 0.6);
    box-shadow: 0 0 8px rgba(250, 192, 26, 0.22);
    animation: hdBranchSignalH 3s ease-in-out infinite;
}

/* Left trace — arm routes leftward (away from center brand) */
.hd-trace--left .hd-node--branch::after {
    animation-delay: 0.4s;
}

.hd-trace--left .hd-node--branch::before {
    transform: translateX(-100%);
    background: linear-gradient(to left,
            rgba(250, 192, 26, 0.7) 0%,
            rgba(250, 192, 26, 0.35) 60%,
            rgba(250, 192, 26, 0.15) 100%);
    animation-delay: 0.7s;
}

/* Right trace — arm routes rightward (away from center brand) */
.hd-trace--right .hd-node--branch::after {
    animation-delay: 0.9s;
}

.hd-trace--right .hd-node--branch::before {
    transform: none;
    background: linear-gradient(to right,
            rgba(250, 192, 26, 0.7) 0%,
            rgba(250, 192, 26, 0.35) 60%,
            rgba(250, 192, 26, 0.15) 100%);
    animation-delay: 1.2s;
}

/* --- Center Brand Text --- */
.hd-brand {
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 0 clamp(3px, 0.7vw, 9px);
    position: relative;
    user-select: none;
    flex-shrink: 0;
}

.hd-i {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
    line-height: 1;
    margin-right: 1px;
    color: rgba(218, 227, 238, 0.55);
    text-shadow: 0 0 8px rgba(250, 192, 26, 0.08);
    opacity: 0;
    transform: translateX(-8px);
    animation: hdIAppear 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards, hdIGlow 8s ease-in-out 1.2s infinite;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .hd-i {
        background: var(--hd-foil-gradient);
        background-size: 220% 100%;
        background-position: 0% center;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        animation: hdIAppear 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards,
            hdWaferShimmer 14s linear 1.2s infinite,
            hdIGlow 8s ease-in-out 1.2s infinite;
    }
}

/* --- Masked MPaCT Logo --- */
.hd-mpact-mask {
    width: clamp(90px, 14vw, 175px);
    aspect-ratio: 668 / 174;
    height: auto;
    /* Fallback logo rendering when mask support is unavailable */
    background: url('../MPaCT-mask.png') center / contain no-repeat;
    opacity: 0;
    transform: translateY(3px) scale(0.992);
    animation: hdBrandReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards;
    filter:
        drop-shadow(0 0 6px rgba(250, 192, 26, 0.15)) drop-shadow(0 0 16px rgba(250, 192, 26, 0.08));
}

/* Preferred rendering: gradient visible only inside letter shapes */
@supports ((-webkit-mask-image: linear-gradient(#000, #000)) or (mask-image: linear-gradient(#000, #000))) {
    .hd-mpact-mask {
        background: var(--hd-foil-gradient);
        background-size: 220% 100%;
        background-position: 0% center;
        animation: hdBrandReveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.14s forwards,
            hdWaferShimmer 14s linear 1.2s infinite;

        -webkit-mask-image: url('../MPaCT-mask.png');
        -webkit-mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-mode: alpha;

        mask-image: url('../MPaCT-mask.png');
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-mode: alpha;
    }
}

/* Breathing glow behind the brand */
.hd-brand::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    height: 280%;
    background: radial-gradient(ellipse at center,
            rgba(250, 192, 26, 0.09) 0%,
            rgba(250, 192, 26, 0.035) 30%,
            transparent 55%);
    pointer-events: none;
    animation: hdTextBreath 8s ease-in-out infinite;
    z-index: -1;
}

/* --- Energy Pulse Streaks --- */
.hd-pulse {
    position: absolute;
    top: 50%;
    height: 1px;
    width: 100px;
    z-index: 4;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.6;
}

.hd-pulse--ltr {
    left: -150px;
    transform: translateY(-50%);
    height: 1.5px;
    width: 110px;
    background: linear-gradient(to right, transparent, rgba(250, 192, 26, 0.4) 35%, rgba(255, 255, 255, 0.25) 50%, rgba(250, 192, 26, 0.4) 65%, transparent);
    box-shadow: 0 0 8px rgba(250, 192, 26, 0.15);
    animation: hdPulseLTR 7s ease-in-out infinite;
    animation-delay: 0.8s;
}

.hd-pulse--rtl {
    right: -150px;
    transform: translateY(-50%);
    height: 1.5px;
    width: 80px;
    background: linear-gradient(to left, transparent, rgba(180, 210, 240, 0.25), rgba(255, 255, 255, 0.18), rgba(180, 210, 240, 0.25), transparent);
    box-shadow: 0 0 6px rgba(180, 210, 240, 0.12);
    animation: hdPulseRTL 9s ease-in-out infinite;
    animation-delay: 3s;
}

/* ============================================
   HERO V2 + DIVIDER - Responsive
   ============================================ */
@media (max-width: 1024px) {
    .hero-v2__scroll-indicator {
        right: 24px;
    }

    .hero-v2__title {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .hero-v2 {
        height: 100vh;
        height: 100svh;
        min-height: 580px;
    }

    .hero-v2__content {
        padding-bottom: 40px;
        justify-content: flex-end;
        padding-top: 100px;
    }

    .hero-v2__badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .hero-v2__title {
        font-size: clamp(2rem, 7vw, 3rem);
        max-width: 100%;
        letter-spacing: -0.01em;
    }

    .hero-v2__desc {
        font-size: 1rem;
        max-width: 100%;
        line-height: 1.6;
    }

    .hero-v2__ctas {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-v2__cta-primary,
    .hero-v2__cta-outline {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }

    .hero-v2__scroll-indicator {
        display: none;
    }

    .hero-v2__pattern {
        background-size: 40px 40px;
    }

    /* Divider responsive */
    .hero-divider {
        top: calc(var(--site-header-height) - 1px);
        height: var(--site-header-height);
    }

    .hd-circuit-field {
        opacity: 0.45;
    }

    .hd-circuit {
        max-width: 100%;
        padding: 0 16px;
        gap: 4px;
    }

    .hd-trace {
        min-width: 52px;
    }

    .hd-node--branch::after,
    .hd-node--branch::before {
        display: none;
    }

    .hd-field-line--h2,
    .hd-field-line--h5,
    .hd-field-line--v2,
    .hd-field-line--v5,
    .hd-field-via--2,
    .hd-field-via--6,
    .hd-field-via--10,
    .hd-field-via--11 {
        display: none;
    }

    .hd-particles span:nth-child(n+9) {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-v2__content {
        padding-bottom: 30px;
    }

    .hero-v2__title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-v2__desc {
        font-size: 0.95rem;
    }

    /* Divider responsive */
    .hero-divider {
        top: calc(var(--site-header-height) - 1px);
        height: var(--site-header-height);
    }

    .hd-circuit-field {
        opacity: 0.4;
    }

    .hd-brand {
        padding: 0 4px;
    }

    .hd-circuit {
        gap: 2px;
    }

    .hd-trace {
        min-width: 30px;
    }

    .hd-i {
        font-size: clamp(1rem, 5vw, 1.4rem);
    }

    .hd-mpact-mask {
        width: clamp(70px, 26vw, 120px);
    }

    .hd-pulse--rtl {
        display: none;
    }

    .hd-field-line--h3,
    .hd-field-line--h6,
    .hd-field-line--v3,
    .hd-field-line--v6,
    .hd-field-via--3,
    .hd-field-via--7,
    .hd-field-via--8,
    .hd-field-via--12 {
        display: none;
    }

    .hd-particles span:nth-child(n+7) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    .hd-particles span,
    .hd-field-via,
    .hd-node,
    .hd-node--branch::after,
    .hd-node--branch::before,
    .hd-i,
    .hd-mpact-mask,
    .hd-brand::after,
    .hd-pulse--ltr,
    .hd-pulse--rtl {
        animation: none !important;
    }

    .hd-field-line--h::after,
    .hd-field-line--v::after {
        animation: none !important;
    }

    .hd-i,
    .hd-mpact-mask {
        opacity: 1;
        transform: none;
    }

    .hd-pulse {
        display: none;
    }

    .hd-particles span {
        opacity: 0.42;
    }
}
