/* ============================================================
   OCEMA — Next-Gen Logistics Command Console Redesign
   Aesthetic: 2027-2030 Holographic Depth & High-End Dark UI
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Variables & Design Tokens ---- */
:root {
    /* Color Palette - Premium Light Slate Glass Theme */
    --bg-deep:         #f8fafc;
    --bg-surface:      #ffffff;
    --bg-card:         rgba(255, 255, 255, 0.75);
    --bg-card-hover:   rgba(255, 255, 255, 0.95);
    --bg-input:        rgba(241, 245, 249, 0.9);
    
    /* Neon Accents - Tuned for Light Background Contrast */
    --neon-cyan:       #0284c7;
    --neon-cyan-glow:  rgba(2, 132, 199, 0.12);
    --neon-blue:       #2563eb;
    --neon-blue-glow:  rgba(37, 99, 235, 0.12);
    --neon-teal:       #0d9488;
    --neon-teal-glow:  rgba(13, 148, 136, 0.12);
    --neon-purple:     #7c3aed;
    --neon-purple-glow: rgba(124, 58, 237, 0.12);
    --neon-amber:      #b45309;
    --neon-amber-glow: rgba(180, 83, 9, 0.12);
    --neon-red:        #dc2626;
    
    /* Text Colors */
    --text-primary:    #0f172a;
    --text-secondary:  #475569;
    --text-muted:      #94a3b8;
    --text-glow:       0 0 8px rgba(2, 132, 199, 0.2);

    /* Borders & Dividers */
    --border-glow:     rgba(2, 132, 199, 0.15);
    --border-light:    rgba(15, 23, 42, 0.08);
    --border-active:   rgba(2, 132, 199, 0.35);

    /* Typography & Sizing */
    --font-head:       'Outfit', sans-serif;
    --font-body:       'Plus Jakarta Sans', sans-serif;
    --radius-lg:       16px;
    --radius-md:       12px;
    --radius-sm:       8px;
    --ease-out:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out:     cubic-bezier(0.7, 0, 0.84, 0);
    --header-h:        88px;
    
    /* Shadow effects */
    --shadow-hologram: 0 8px 30px 0 rgba(2, 132, 199, 0.04);
    --shadow-card:     0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
}

/* ---- Global Resets & Scrollbars ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--neon-cyan) var(--bg-deep);
}
body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    background-image: 
        radial-gradient(at 0% 0%, rgba(79, 172, 254, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(139, 92, 246, 0.1) 0px, transparent 50%);
    background-attachment: fixed;
}

/* Custom Webkit Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
    border: 2px solid var(--bg-deep);
    transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

/* Common Interactive/Dynamic Base Styles */
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

/* Grid, Flex, Helper utilities */
.text-right { text-align: right !important; }
.muted { color: var(--text-muted); }
.req { color: var(--neon-red); margin-left: 2px; }

/* ============================================================
   STICKY GLASS HEADER
   ============================================================ */
#siteHeader {
    position: sticky;
    top: 0;
    z-index: 200;
    height: var(--header-h);
    background: rgba(248, 250, 252, 0.7);
    backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.4s var(--ease-out);
}
#siteHeader.scrolled {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--border-glow);
    box-shadow: 0 4px 30px rgba(2, 132, 199, 0.03);
}
.header-inner {
    width: 100%;
    /* max-width: 1600px; */
    margin: 0 auto;
    padding: 0 4vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Dynamic Glowing Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
}
.logo-mark {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-out);
}
.logo-mark svg {
    filter: drop-shadow(0 0 8px var(--neon-cyan-glow));
}
.logo:hover .logo-mark {
    transform: rotate(15deg) scale(1.05);
}
.logo-text-group {
    display: flex;
    flex-direction: column;
}
.logo-name {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.03em;
}
.logo-tagline {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav Menu Items */
.top-nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.top-nav-link {
    font-family: var(--font-head);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-out);
}
.top-nav-link:hover {
    color: var(--neon-cyan);
    background: rgba(0, 242, 254, 0.05);
    border-color: rgba(0, 242, 254, 0.15);
}
.top-nav-link.active {
    color: var(--neon-cyan);
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

/* CTA Header button */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.btn-header-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.6rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    color: var(--bg-deep);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 99px;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
    transition: all 0.3s var(--ease-out);
}
.btn-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.45);
    filter: brightness(1.1);
}

/* Mobile Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}
.hamburger:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-glow);
}

/* ============================================================
   MOBILE NAVIGATION DRAWER
   ============================================================ */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 19, 0.6);
    backdrop-filter: blur(8px);
    z-index: 300;
}
.drawer-overlay.open { display: block; }

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--bg-surface);
    border-right: 1px solid var(--border-glow);
    box-shadow: var(--shadow-card);
    z-index: 400;
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-out);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
}
.drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    transition: all 0.3s;
}
.drawer-close:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--neon-cyan);
    border-color: var(--border-glow);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
}
.drawer-link {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    border: 1px solid transparent;
    transition: all 0.3s;
}
.drawer-link:hover,
.drawer-link.active {
    background: rgba(0, 242, 254, 0.08);
    color: var(--neon-cyan);
    border-color: rgba(0, 242, 254, 0.15);
}

/* ============================================================
   BENTO GRID HERO SECTION
   ============================================================ */
.bento-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5rem;
    margin-bottom: 3rem;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.bento-card:hover {
    border-color: var(--border-active);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 242, 254, 0.06), var(--shadow-card);
}

/* Dynamic Radial Mouse Glow effect */
.glow-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(0, 242, 254, 0.12), transparent 40%);
    z-index: 1;
    pointer-events: none;
}
.bento-card * {
    position: relative;
    z-index: 2;
}

/* Main Hero Bento Callout (takes 2 columns) */
.hero-main-card {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 3rem;
    /* background-image: linear-gradient(135deg, rgba(16, 21, 46, 0.6) 0%, rgba(12, 15, 36, 0.9) 100%); */
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 242, 254, 0.25);
    background: rgba(0, 242, 254, 0.05);
    padding: 0.4rem 1rem;
    border-radius: 99px;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.05);
}
.hero-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--neon-cyan);
}
.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-title-accent {
    background: linear-gradient(90deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 620px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Bento Stats Card */
.stat-number {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.35rem;
}

/* Urgent Alert Notice Bento Card (takes full 3 columns) */
.hero-notice-card {
    grid-column: span 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(245, 158, 11, 0.03);
    border-color: rgba(245, 158, 11, 0.15);
}
.hero-notice-card:hover {
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.05);
}
.notice-content-wrap {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.notice-icon-box {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: rgba(245, 158, 11, 0.08);
    color: var(--neon-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(245, 158, 11, 0.2);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.1);
}
.notice-text-box h4 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--neon-amber);
    margin-bottom: 0.25rem;
}
.notice-text-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================================
   LAYOUT ARCHITECTURE (2-COLUMN DASHBOARD GRID)
   ============================================================ */
.layout {
    width: 100%;
    /* max-width: 1600px; */
    margin: 0 auto;
    padding: 3rem 4vw;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

/* Sidebar Dashboard Navigation */
.sidebar {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
    /* max-height: calc(100vh - var(--header-h) - 4rem); */
    overflow-y: auto;
    padding-right: 0.5rem;
}
.sidebar-inner {
    padding: 0 1.25rem 0 0;
    border-right: 1px solid var(--border-light);
}
.sidebar-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    padding-left: 0.75rem;
}
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.sidebar-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid transparent;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sidebar-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s;
}
.sidebar-link:hover {
    background: rgba(0, 242, 254, 0.05);
    color: var(--neon-cyan);
    border-color: rgba(0, 242, 254, 0.05);
    transform: translateX(4px);
}
.sidebar-link:hover .sidebar-icon {
    opacity: 1;
    color: var(--neon-cyan);
}
.sidebar-link.active {
    background: rgba(0, 242, 254, 0.08);
    color: var(--neon-cyan);
    border-color: rgba(0, 242, 254, 0.15);
    font-weight: 700;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.05);
}
.sidebar-link.active .sidebar-icon {
    opacity: 1;
}

.sidebar-cta {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: radial-gradient(100% 100% at 0% 0%, rgba(0, 242, 254, 0.08) 0%, transparent 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glow);
}
.sidebar-cta p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}
.btn-sidebar-cta {
    display: block;
    text-align: center;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-out);
}
.btn-sidebar-cta:hover {
    background: var(--neon-cyan);
    color: var(--bg-deep);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

/* ============================================================
   MAIN CONTENT ARCHITECTURE & SECTIONS
   ============================================================ */
.main-content {
    min-width: 0;
}
.section {
    display: none;
    opacity: 0;
}
.section.active {
    display: block;
    animation: consoleSectionIn 0.6s var(--ease-out) forwards;
}

@keyframes consoleSectionIn {
    from { opacity: 0; transform: translateY(15px); filter: blur(5px); }
    to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Section headers */
.section-header {
    /* margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light); */
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 0.75rem;
}
.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    background: var(--neon-cyan);
}
.section-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 760px;
    margin-top: 0.5rem;
}

/* Typography elements */
h1 {
    font-family: var(--font-head);
    font-size: clamp(2.25rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.15;
}
h2 {
    font-family: var(--font-head);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}
h3 {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}
h4 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}
p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* ============================================================
   BUTTON COMPONENTS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--neon-blue) 100%);
    color: var(--bg-deep);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.2);
    transition: all 0.3s var(--ease-out);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.35);
    filter: brightness(1.05);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.8rem;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s var(--ease-out);
}
.btn-secondary:hover {
    background: rgba(0, 242, 254, 0.05);
    border-color: var(--border-glow);
    color: var(--neon-cyan);
    transform: translateY(-2px);
}
.btn-primary.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   ABOUT SECTION STYLE
   ============================================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}
.about-text > p:first-child {
    font-size: 1.15rem;
    color: var(--neon-cyan);
    font-weight: 500;
}
.about-highlight {
    margin-top: 2rem;
    border-left: 3px solid var(--neon-cyan);
    padding-left: 1.5rem;
    background: linear-gradient(90deg, rgba(0, 242, 254, 0.02) 0%, transparent 100%);
}
.about-highlight blockquote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.editorial-about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.editorial-stat-block {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: border-color 0.3s;
}
.editorial-stat-block:hover {
    border-color: var(--border-glow);
}
.asc-number {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--neon-cyan);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.asc-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.editorial-stat-block p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.editorial-chassis {
    padding: 3rem;
    background: radial-gradient(100% 100% at 0% 0%, rgba(79, 172, 254, 0.05) 0%, transparent 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

/* ============================================================
   MEMBERS FILTERABLE GRID
   ============================================================ */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    flex-wrap: wrap;
}
.search-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 0.5rem 1rem;
    min-width: 280px;
    transition: all 0.3s;
}
.search-box:focus-within {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}
.search-box input {
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    width: 100%;
}
.search-box svg {
    color: var(--text-muted);
}
.filter-tabs {
    display: flex;
    gap: 0.5rem;
}
.filter-tab {
    padding: 0.5rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.filter-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}
.filter-tab.active {
    background: rgba(0, 242, 254, 0.08);
    color: var(--neon-cyan);
    border-color: rgba(0, 242, 254, 0.15);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.member-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
}
.member-card:hover {
    border-color: var(--border-active);
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.05);
    transform: translateY(-3px);
}
.member-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    margin-bottom: 1.5rem;
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    transition: transform 0.3s var(--ease-out);
}
.member-card:hover .member-logo-area {
    transform: scale(1.03);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}
.member-logo-area img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s;
}
.member-card:hover .member-logo-area img {
    filter: grayscale(0%);
    opacity: 1;
}
.member-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.member-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
}
.member-visit {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s var(--ease-out);
}
.member-card:hover .member-visit {
    opacity: 1;
    transform: translateY(0);
}
.members-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0, 242, 254, 0.02);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.members-note svg {
    color: var(--neon-cyan);
    margin-top: 2px;
    flex-shrink: 0;
}

/* ============================================================
   INTERMODAL FLOW flowchart
   ============================================================ */
.flowchart-wrapper {
    margin: 3rem 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    overflow: hidden;
}
.flowchart-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
}
.flowchart-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
    z-index: 2;
}
.flowchart-step.active,
.flowchart-step:hover {
    background: rgba(0, 242, 254, 0.03);
    border-color: var(--border-glow);
}
.flowchart-step.active .flow-icon-wrap {
    background: rgba(0, 242, 254, 0.08);
    color: var(--neon-cyan);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15);
}
.flowchart-step.active h4 {
    color: var(--neon-cyan);
}
.flow-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}
.flow-connector {
    height: 2px;
    background: var(--border-light);
    flex-grow: 1;
    position: relative;
    max-width: 80px;
}
.flow-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--border-light);
}
.flow-connector.active {
    background: var(--neon-cyan);
}
.flow-connector.active::after {
    border-left-color: var(--neon-cyan);
}
.flowchart-detail-panel {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(15, 23, 42, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    display: none;
}
.flowchart-detail-panel.active {
    display: block;
    animation: consoleSectionIn 0.4s var(--ease-out);
}
.flowchart-detail-panel h4 {
    margin-bottom: 0.5rem;
    color: var(--neon-cyan);
}

/* ============================================================
   COMMITTEES GOVERNANCE PANELS
   ============================================================ */
.committees-primary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}
.committee-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.3s;
}
.committee-card:hover {
    border-color: var(--border-active);
}
.committee-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.committee-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
}
.committee-icon-blue {
    background: rgba(79, 172, 254, 0.05);
    color: var(--neon-blue);
    border-color: rgba(79, 172, 254, 0.15);
}
.committee-icon-teal {
    background: rgba(16, 185, 129, 0.05);
    color: var(--neon-teal);
    border-color: rgba(16, 185, 129, 0.15);
}
.committee-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
}
.committee-card h3 {
    margin-bottom: 1rem;
}
.committee-meta {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.committee-meta span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    background: rgba(255, 255, 255, 0.01);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-sm);
}

.wc-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.wc-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}
.working-committees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.wc-card {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--border-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s;
}
.wc-card:hover {
    border-color: var(--border-glow);
    background: rgba(0, 242, 254, 0.01);
}
.wc-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 242, 254, 0.03);
    color: var(--neon-cyan);
    border: 1px solid rgba(0, 242, 254, 0.15);
    flex-shrink: 0;
}
.wc-body h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.wc-body p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   CONSOLIDATED CHASSIS POOLS SECTION
   ============================================================ */
.ccm-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.ccm-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}
.ccm-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.benefit-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
}
.ccm-visual {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.ccm-stat-panel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.ccm-pool-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid transparent;
    transition: all 0.3s;
}
.ccm-pool-item:hover {
    background: rgba(0, 242, 254, 0.03);
    border-color: rgba(0, 242, 254, 0.1);
}
.pool-code {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--neon-cyan);
    min-width: 70px;
}
.pool-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
    flex-grow: 1;
    margin: 0 1rem;
}

/* ============================================================
   CARGO WEIGHT CALCULATOR & DATATABLE
   ============================================================ */
.cargo-weight-calculator {
    /* background: linear-gradient(135deg, rgba(16, 21, 46, 0.5) 0%, rgba(12, 15, 36, 0.8) 100%); */
    border: 1px solid var(--border-active);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-hologram);
}
.calc-header {
    margin-bottom: 2rem;
}
.calc-header h3 {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.calc-field label {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}
.select-wrapper {
    position: relative;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}
.select-wrapper select {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
}
.select-wrapper::after {
    content: '▼';
    font-size: 0.75rem;
    color: var(--text-muted);
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.range-slider-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.slider-value-display {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
}
.slider-value-display span:first-child {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: auto;
}
.calc-slider {
    width: 100%;
    height: 6px;
    background: var(--border-light);
    outline: none;
    border-radius: 99px;
    appearance: none;
}
.calc-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--neon-cyan);
    cursor: pointer;
    box-shadow: 0 0 10px var(--neon-cyan);
    transition: transform 0.1s;
}
.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

/* Calculator Result Panel */
.calc-result-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(15, 23, 42, 0.04);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.calc-status-gauge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.5rem;
    transition: all 0.3s;
}
.calc-status-gauge.safe {
    border-color: var(--neon-teal);
    color: var(--neon-teal);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}
.calc-status-gauge.overweight {
    border-color: var(--neon-red);
    color: var(--neon-red);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
}
.calc-result-text h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.calc-result-text p {
    font-size: 0.95rem;
    margin: 0;
}

/* Structured weight table */
.table-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    padding: 2rem;
    margin-bottom: 3rem;
}
.table-card-header {
    margin-bottom: 1.5rem;
}
.table-card-header h3 {
    font-size: 1.25rem;
}
.table-card-header p {
    font-size: 0.9rem;
    margin: 0;
}
.table-responsive {
    overflow-x: auto;
}
.data-table {
    width: 100%;
    border-collapse: collapse;
}
.data-table th {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    padding: 1rem;
    border-bottom: 2px solid var(--border-light);
    text-align: left;
}
.data-table td {
    padding: 1.1rem 1rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.data-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.01);
    color: var(--text-primary);
}
.container-type {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--neon-cyan);
}
.weight-value {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--text-primary);
}
.weight-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 99px;
    overflow: hidden;
    width: 100%;
    min-width: 80px;
}
.weight-fill {
    height: 100%;
    background: var(--neon-cyan);
    border-radius: 99px;
    width: var(--pct);
}

.info-callout {
    display: flex;
    gap: 1rem;
    background: rgba(0, 242, 254, 0.01);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin: 2.5rem 0;
}
.info-callout svg {
    color: var(--neon-cyan);
    flex-shrink: 0;
}
.info-callout p {
    font-size: 0.95rem;
    margin: 0;
}
.disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ============================================================
   CHASSIS PROVISIONING & FAQ
   ============================================================ */
.info-intro-card {
    border-left: 3px solid var(--neon-cyan);
    padding-left: 1.5rem;
    margin-bottom: 3rem;
}
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 99px;
}
.status-complete {
    background: rgba(16, 185, 129, 0.08);
    color: var(--neon-teal);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.pool-na {
    color: var(--text-muted);
}
.pool-code-sm {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--neon-cyan);
}

/* Download cards style */
.download-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin: 3rem 0;
}
.download-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(0, 242, 254, 0.05);
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 242, 254, 0.15);
    flex-shrink: 0;
}
.download-card-text h4 {
    margin-bottom: 0.25rem;
}
.download-card-text p {
    font-size: 0.9rem;
    margin: 0;
}
.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--neon-cyan);
    border-bottom: 2px solid var(--neon-cyan);
    padding-bottom: 0.25rem;
    transition: all 0.3s;
}
.btn-download:hover {
    color: var(--text-primary);
    border-color: var(--text-primary);
}

/* FAQ Accordion UI */
.faq-search-box {
    margin-bottom: 2.5rem;
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
}
.accordion-item.open {
    border-color: var(--border-active);
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.03);
}
.accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    color: var(--text-primary);
    text-align: left;
    transition: all 0.3s;
}
.accordion-trigger:hover {
    background: rgba(255, 255, 255, 0.01);
}
.accordion-item.open .accordion-trigger {
    border-bottom: 1px solid var(--border-light);
}
.accordion-q {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-primary);
}
.accordion-icon {
    color: var(--neon-cyan);
    transition: transform 0.3s;
}
.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out);
}
.accordion-body {
    padding: 2rem;
    background: rgba(6, 8, 19, 0.02);
}

/* ============================================================
   VGM & D&D STYLES (DOC GRID, DISPUTE WIZARD)
   ============================================================ */
.vgm-intro-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}
.vgm-intro-icon {
    color: var(--neon-cyan);
    flex-shrink: 0;
}
.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.doc-card {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: all 0.4s var(--ease-out);
}
.doc-card:hover {
    border-color: var(--border-active);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.05);
}
.doc-card-icon {
    color: var(--neon-cyan);
    flex-shrink: 0;
}
.doc-type {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 0.5rem;
}
.doc-card-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}
.doc-card-text p {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.tariff-link-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.05) 0%, transparent 100%);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    flex-wrap: wrap;
}
.tariff-link-text h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}
.tariff-link-text p {
    font-size: 0.95rem;
    margin: 0;
}

/* Detention & Demurrage Dispute Wizard */
.wizard-wrapper {
    margin: 3rem 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.wizard-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 3rem;
}
.wizard-steps::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    height: 2px;
    background: var(--border-light);
    z-index: 1;
}
.wizard-step-node {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.node-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 2px solid var(--border-light);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    transition: all 0.3s;
}
.wizard-step-node.active .node-circle {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}
.wizard-step-node.completed .node-circle {
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    color: var(--bg-deep);
}
.node-label {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-top: 0.75rem;
}
.wizard-step-node.active .node-label {
    color: var(--neon-cyan);
}
.wizard-content-box {
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    display: none;
}
.wizard-content-box.active {
    display: block;
    animation: consoleSectionIn 0.4s var(--ease-out);
}
.wizard-content-box h4 {
    color: var(--neon-cyan);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.wizard-controls {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* ============================================================
   OUTREACH & RELATED LINKS
   ============================================================ */
.links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.link-card {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s;
}
.link-card:hover {
    border-color: var(--border-active);
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.03);
}
.link-card-abbr {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--neon-cyan);
    min-width: 80px;
    flex-shrink: 0;
}
.link-card-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}
.link-card-text p {
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================================
   CONTACT PORTAL & INFO PANELS
   ============================================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}
.form-card h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}
.form-group {
    margin-bottom: 1.75rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-group label {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}
.form-control {
    width: 100%;
    padding: 0.9rem 1.25rem;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    outline: none;
    transition: all 0.3s;
}
.form-control:focus {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}
.form-control::placeholder {
    color: var(--text-muted);
}
.form-status {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    display: none;
}
.form-status.success {
    display: block;
    background: rgba(16, 185, 129, 0.08);
    color: var(--neon-teal);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    color: var(--neon-red);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.contact-info-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-light);
}
.contact-info-item:first-child {
    padding-top: 0;
}
.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.contact-info-icon {
    color: var(--neon-cyan);
    flex-shrink: 0;
}
.contact-info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}
.contact-info-text p {
    font-size: 0.95rem;
    margin: 0;
}
.contact-info-text a {
    color: var(--neon-cyan);
    font-weight: 700;
    text-decoration: underline;
}

.fmc-card {
    display: flex;
    gap: 1.25rem;
    background: rgba(245, 158, 11, 0.02);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem;
}
.fmc-card-icon {
    color: var(--neon-amber);
    flex-shrink: 0;
}
.fmc-card-text strong {
    display: block;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--neon-amber);
    margin-bottom: 0.35rem;
}
.fmc-card-text p {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   FOOTER SECTION
   ============================================================ */
footer {
    background: #f1f5f9;
    border-top: 1px solid var(--border-light);
    margin-top: 8rem;
    position: relative;
}
.footer-inner {
    width: 100%;
    /* max-width: 1600px; */
    margin: 0 auto;
    padding: 5rem 4vw 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid var(--border-light);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.footer-logo-name {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.75rem;
    color: var(--text-primary);
}
.footer-brand p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 320px;
    line-height: 1.6;
}
.footer-email {
    display: inline-block;
    color: var(--neon-cyan);
    font-weight: 700;
    margin-top: 1.5rem;
    text-decoration: underline;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.footer-col a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.footer-col a:hover {
    color: var(--neon-cyan);
    transform: translateX(4px);
}

.footer-bottom {
    width: 100%;
    /* max-width: 1600px; */
    margin: 0 auto;
    padding: 2.5rem 4vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}
.footer-back-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--neon-cyan);
    transition: all 0.3s;
}
.footer-back-top:hover {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE LAYOUTS - TABLET & MOBILE
   ============================================================ */
@media (max-width: 1200px) {
    .layout {
        grid-template-columns: 220px 1fr;
        gap: 2.5rem;
    }
    .bento-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-main-card {
        grid-column: span 2;
    }

    .hero-notice-card {
        grid-column: span 2;
    }
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .ccm-feature {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    :root {
        --header-h: 76px;
    }
    .layout {
        grid-template-columns: 1fr;
        padding: 2rem 4vw;
    }
    .sidebar {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .top-nav,
    .btn-header-cta {
        display: none;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .bento-hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-main-card,
    .hero-notice-card {
        grid-column: span 1;
    }
    .hero-main-card {
        padding: 2.5rem 1.5rem;
    }
    .hero-notice-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .flowchart-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    .flow-connector {
        display: none;
    }
    .working-committees-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}
