/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   
   1. ROOT VARIABLES & GLOBAL SETTINGS
   2. RESET & BASE STYLES
   3. TYPOGRAPHY
   4. NAVIGATION
   5. HERO SECTION
   6. MARQUEE
   7. SECTION LAYOUTS
   8. BUTTONS
   9. SOURCING SECTION & BENTO GRID
   10. PHILOSOPHY SECTION
   11. PROCESS SECTION & ACCORDION
   12. FORMS
   13. CONTACT SECTION
   14. CTA SECTION
   15. FOOTER
   16. INVESTOR PAGE (Bento Layout)
   17. TALENT DATABASE PAGE
   18. UTILITY CLASSES
   19. RESPONSIVE BREAKPOINTS (Organized by component)
   
   ========================================================================== */




/* ==========================================================================
   1. ROOT VARIABLES & GLOBAL SETTINGS
   ========================================================================== */

:root {
    /* ----------------------------------------
       Color Palette - Primary
       ---------------------------------------- */
    --c-black: #000000;
    --c-white: #ffffff;
    --c-cream: #ffffff;
    --c-ivory: #ffffff;
    
    /* Grayscale */
    --c-gray-95: #f2f2f2;
    --c-gray-90: #e6e6e6;
    --c-gray-80: #cccccc;
    --c-gray-50: #808080;
    --c-gray-20: #333333;
    --c-gray-10: #1a1a1a;
    
    /* Backward compatibility */
    --c-charcoal: #000000;
    --c-accent: #ffffff;
    
    /* Alpha colors - Black */
    --c-char-80: rgba(0, 0, 0, 0.80);
    --c-char-60: rgba(0, 0, 0, 0.60);
    --c-char-40: rgba(0, 0, 0, 0.40);
    --c-char-12: rgba(0, 0, 0, 0.12);
    --c-char-06: rgba(0, 0, 0, 0.06);
    
    /* Alpha colors - White */
    --c-white-70: rgba(255, 255, 255, 0.70);
    --c-white-40: rgba(255, 255, 255, 0.40);
    --c-white-12: rgba(255, 255, 255, 0.12);
    --c-white-06: rgba(255, 255, 255, 0.06);
    
    /* ----------------------------------------
       Typography
       ---------------------------------------- */
    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'DM Sans', system-ui, -apple-system, sans-serif;
    --font-mono: 'DM Mono', monospace;
    
    /* ----------------------------------------
       Spacing & Layout
       ---------------------------------------- */
    --sp-section: 9rem;
    --sp-section-sm: 5.5rem;
    --r-card: 0px;
    --r-pill: 9999px;
    --max-w: 1380px;
}




/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--c-white);
    color: var(--c-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: -0.2px;
}

/* Ensure off-white background for all pages */
body,
main {
    background: var(--c-ivory);
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
}




/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

/* Font Families */
.u-display {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.u-serif {
    font-family: var(--font-serif);
}

.u-mono {
    font-family: var(--font-mono);
}

/* Eyebrow Text */
.u-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--c-gray-50);
    display: block;
    margin-bottom: 1.3rem;
    font-weight: 700;
}

.u-eyebrow-lt {
    color: rgba(255, 255, 255, 0.5);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
}

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




/* ==========================================================================
   4. NAVIGATION - MOBILE FIRST (UPDATED)
   ========================================================================== */

#nav {
    display: block;
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    width: calc(100% - 3rem);
    max-width: 1200px;
}

.nav-pill {
    display: flex;
    align-items: center;
    height: 56px;
    padding: 0 1rem;
    border-radius: var(--r-pill);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

/* Default mobile styles - hide links and CTA */
.nav-links,
.nav-cta {
    display: none;
}

.nav-logo {
    margin: 0 auto;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--c-black);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: -0.015em;
    text-decoration: none;
    flex-shrink: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-logo svg {
    stroke: var(--c-black);
    stroke-width: 2;
    transition: stroke 0.3s ease;
}

/* Desktop styles */
@media (min-width: 768px) {
    .nav-pill {
        justify-content: space-between;
        padding: 0 0.6rem 0 1.8rem;
    }

    .nav-links,
    .nav-cta {
        display: flex;
    }

    .nav-logo {
        margin: 0;
        justify-content: flex-start;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .nav-links a {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--c-black);
        padding: 0.45rem 1rem;
        border-radius: var(--r-pill);
        transition: all 0.2s ease;
        text-decoration: none;
    }

    .nav-links a:hover {
        background: var(--c-black);
        color: var(--c-white);
    }

    .nav-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.55rem 1.4rem;
        border-radius: var(--r-pill);
        background: var(--c-black);
        color: var(--c-white);
        font-family: var(--font-sans);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
        flex-shrink: 0;
        border: 2px solid var(--c-black);
    }

    .nav-cta:hover {
        background: var(--c-white);
        color: var(--c-black);
    }
}

/* Scrolled state */
.nav-pill.scrolled {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
}

.nav-pill.scrolled .nav-logo,
.nav-pill.scrolled .nav-links a {
    color: var(--c-white);
}

.nav-pill.scrolled .nav-logo svg {
    stroke: var(--c-white);
}



/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */

#hero {
    position: relative;
    min-height: 100svh;
    width: 100%;
    overflow: hidden;
    background: var(--c-black);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.65) 100%
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 6rem 2rem 5rem;
    color: var(--c-white);
}

/* Tablet and up */
@media (min-width: 768px) {
    .hero-content {
        padding: 0 3rem 7rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: flex-end;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Tablet and up */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Mobile */
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--r-pill);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.hero-badge-text {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-white);
    animation: pulse-hero 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-hero {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.1); }
}

/* Hero Text */
.hero-title {
    font-size: clamp(3.2rem, 10vw, 6.5rem);
    color: var(--c-white);
    margin-bottom: 1.5rem;
}

.hero-title-italic {
    font-weight: 400;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Fade Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.fade-up {
    animation: slideUp 0.95s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.d-100 { animation-delay: 0.1s; }
.d-220 { animation-delay: 0.25s; }
.d-380 { animation-delay: 0.4s; }




/* ==========================================================================
   6. MARQUEE
   ========================================================================== */

.marquee-container {
    background: var(--c-ivory);
    padding: 1.35rem 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--c-char-06);
}

.marquee-mask-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5rem;
    background: linear-gradient(to right, var(--c-ivory), transparent);
    z-index: 2;
    pointer-events: none;
}

.marquee-mask-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5rem;
    background: linear-gradient(to left, var(--c-ivory), transparent);
    z-index: 2;
    pointer-events: none;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 45s linear infinite;
    will-change: transform;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 2.75rem;
    padding: 0 1.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-icon {
    height: 1.05rem;
    filter: grayscale(1);
    opacity: 0.45;
    margin-right: 0.5rem;
}

.marquee-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    color: var(--c-char-40);
    display: flex;
    align-items: center;
}

.marquee-separator {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    letter-spacing: 0.2rem;
    color: var(--c-char-12);
    margin-left: 0.5rem;
}




/* ==========================================================================
   7. SECTION LAYOUTS
   ========================================================================== */

.sp {
    padding: var(--sp-section) 2rem;
}

/* Mobile */
@media (max-width: 640px) {
    .sp {
        padding: var(--sp-section-sm) 1.5rem;
    }
}

/* Tablet and up */
@media (min-width: 768px) {
    .sp {
        padding: var(--sp-section) 3rem;
    }
}

.sw {
    max-width: var(--max-w);
    margin: 0 auto;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.95s ease, transform 0.95s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* Section backgrounds - alternating */
section:nth-child(odd) {
    background: var(--c-white);
}

section:nth-child(even) {
    background: var(--c-cream);
}




/* ==========================================================================
   8. BUTTONS
   ========================================================================== */

/* Base Button Styles */
.btn-white,
.btn-ghost-white,
.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2.2rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--c-black);
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

/* Button Variations */
.btn-white {
    background: var(--c-black);
    color: var(--c-white);
    border: 2px solid var(--c-black);
}

.btn-white:hover {
    background: var(--c-white);
    color: var(--c-black);
}

.btn-white:active {
    transform: translateY(2px);
}

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

.btn-ghost-white:hover {
    background: var(--c-white);
    color: var(--c-black);
}

.btn-dark {
    background: var(--c-black);
    color: var(--c-white);
}

.btn-dark:hover {
    background: var(--c-white);
    color: var(--c-black);
    transform: translateY(-2px);
}

/* Blob Animations */
.btn-white__blob-container,
.btn-ghost-white__blob-container,
.btn-dark__blob-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.btn-white__blobs,
.btn-ghost-white__blobs,
.btn-dark__blobs {
    position: absolute;
    inset: 0;
}

.btn-white__blob,
.btn-ghost-white__blob,
.btn-dark__blob {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--c-black);
    opacity: 0;
    animation: blobFloat 0.7s ease-in-out;
}

.btn-white__blob { background: var(--c-white); }
.btn-ghost-white__blob { background: var(--c-black); }
.btn-dark__blob { background: var(--c-white); }

@keyframes blobFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-60px) scale(0);
    }
}

/* Blob positioning on hover - consolidated */
.btn-white:hover .btn-white__blob:nth-child(1),
.btn-ghost-white:hover .btn-ghost-white__blob:nth-child(1),
.btn-dark:hover .btn-dark__blob:nth-child(1) {
    animation-delay: 0.05s;
    left: 25%;
    top: 50%;
}

.btn-white:hover .btn-white__blob:nth-child(2),
.btn-ghost-white:hover .btn-ghost-white__blob:nth-child(2),
.btn-dark:hover .btn-dark__blob:nth-child(2) {
    animation-delay: 0.1s;
    left: 50%;
    top: 50%;
}

.btn-white:hover .btn-white__blob:nth-child(3),
.btn-ghost-white:hover .btn-ghost-white__blob:nth-child(3),
.btn-dark:hover .btn-dark__blob:nth-child(3) {
    animation-delay: 0.15s;
    left: 75%;
    top: 50%;
}

.btn-white:hover .btn-white__blob:nth-child(4),
.btn-ghost-white:hover .btn-ghost-white__blob:nth-child(4),
.btn-dark:hover .btn-dark__blob:nth-child(4) {
    animation-delay: 0.2s;
    left: 35%;
    top: 50%;
}




/* ==========================================================================
   9. SOURCING SECTION & BENTO GRID
   ========================================================================== */

.sourcing-section {
    background: var(--c-ivory);
}

.sourcing-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3.5rem;
    gap: 2rem;
}

.sourcing-title {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
}

.section-subtitle {
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--c-char-80);
    line-height: 1.8;
}

.sourcing-subtitle {
    max-width: 380px;
}

/* Bento Grid */
.bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
}

/* Tablet and up */
@media (min-width: 640px) {
    .bento {
        grid-template-columns: repeat(12, 1fr);
        gap: 1.5rem;
    }

    .bm { grid-column: span 8; }
    .bs { grid-column: span 4; }
    .bt { grid-column: span 4; }
    .bw { grid-column: span 8; }
}

.bc {
    background: var(--c-white);
    border: 2px solid var(--c-black);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    min-height: 200px;
    padding: 1.6rem 1.6rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.bc.bm,
.bc.bw {
    background: var(--c-black);
    color: var(--c-white);
}

.bc.bw p {
    color: rgba(255, 255, 255, 0.50);
}

/* Tablet and up */
@media (min-width: 640px) {
    .bc {
        min-height: 220px;
        padding: 1.8rem 1.8rem 2.2rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .bc {
        min-height: 180px;
        padding: 1.4rem 1.4rem 1.8rem;
    }
}

.bc:hover {
    transform: translateY(-6px);
    box-shadow: 8px 8px 0 var(--c-black);
}

/* Card variations */
.sourcing-card-dark,
.sourcing-card-light,
.sourcing-card-dark-wide {
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.sourcing-card-dark,
.sourcing-card-dark-wide {
    background: var(--c-charcoal);
}

/* Card Art */
.card-art {
    width: 100%;
    margin-bottom: 0.6rem;
    border-radius: 8px;
    overflow: hidden;
    pointer-events: none;
}

.card-img,
.card-img-multiply {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 6 / 2.5;
    opacity: 1;
    border-radius: 8px;
}

.card-img-multiply {
    border-radius: 12px;
    mix-blend-mode: multiply;
}

/* Card Content */
.card-content,
.card-content-wide {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.card-content-wide {
    gap: 2rem;
    align-items: flex-start;
}

/* Card Titles */
.card-title-accent {
    font-size: 1.9rem;
    color: var(--c-accent);
    margin-bottom: 0.9rem;
}

.card-title-accent-sm {
    font-size: 1.55rem;
    color: var(--c-accent);
    margin-bottom: 0.6rem;
}

.card-title-sm {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
}

.card-title-white {
    font-size: 1.72rem;
    color: var(--c-white);
    margin-bottom: 0.6rem;
}

/* Card Text */
.card-text-light {
    color: rgba(255, 255, 255, 0.50);
    line-height: 1.84;
    font-weight: 300;
    margin-bottom: 0;
}

.card-text-char {
    color: var(--c-char-80);
    line-height: 1.82;
    font-weight: 300;
    margin-bottom: 0.8rem;
}

/* Card Tags */
.card-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.44rem;
    max-width: 340px;
}

.card-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-mono);
    font-size: 0.59rem;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.card-tag-dot {
    width: 4px;
    height: 4px;
    background: var(--c-ivory);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Card Footer */
.card-footer-border {
    border-top: 1px solid var(--c-char-12);
    padding-top: 0.8rem;
    margin-top: 0;
}

.card-footer-text {
    font-family: var(--font-mono);
    font-size: 0.59rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--c-char-40);
}




/* ==========================================================================
   10. PHILOSOPHY SECTION
   ========================================================================== */

#phil-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

/* Tablet and up */
@media (min-width: 900px) {
    #phil-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

/* Chart Card */
.chart-card-glass {
    background: var(--c-cream);
    border: 2px solid var(--c-black);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.chart-card-glass:hover {
    box-shadow: 8px 8px 0 var(--c-black);
    transform: translateY(-4px);
}

.chart-eyebrow {
    margin-bottom: 0.8rem;
}

.chart-title {
    font-size: 1.35rem;
    color: var(--c-charcoal);
    margin-bottom: 2rem;
}

.chart-container {
    position: relative;
    width: 100%;
    height: 280px;
    margin-bottom: 1.5rem;
}

/* SVG Chart */
.growth-chart-svg {
    width: 100%;
    height: 100%;
    display: block;
    --dash-offset: 600;
}

.growth-chart-svg #growth-line {
    stroke-dashoffset: var(--dash-offset);
    transition: none;
}

/* Chart Grid Lines */
.chart-gridline {
    stroke: rgba(17, 18, 16, 0.06);
    stroke-width: 0.8;
}

.chart-gridline-light {
    stroke: rgba(17, 18, 16, 0.04);
    stroke-width: 0.6;
}

.chart-axis {
    stroke: rgba(17, 18, 16, 0.14);
    stroke-width: 1;
}

.chart-line {
    stroke: rgba(17, 18, 16, 0.85);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Chart Dots */
.chart-dot {
    fill: rgba(17, 18, 16, 0.35);
}

/* Chart Animations */
@keyframes drawLine {
    from { stroke-dashoffset: 600; }
    to   { stroke-dashoffset: 0; }
}

.growth-chart-svg:hover #growth-line {
    animation: drawLine 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes chartDotPop {
    0% {
        r: 1.5;
        fill: rgba(0, 0, 0, 0.2);
        opacity: 0.3;
    }
    50% {
        r: 6.5;
        fill: rgba(0, 0, 0, 0.7);
    }
    100% {
        r: 5;
        fill: rgba(0, 0, 0, 0.9);
        opacity: 1;
    }
}

.growth-chart-svg:hover .chart-dot {
    animation: chartDotPop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Dot animation delays */
.growth-chart-svg:hover .chart-dot:nth-of-type(1) { animation-delay: 0.08s; }
.growth-chart-svg:hover .chart-dot:nth-of-type(2) { animation-delay: 0.12s; }
.growth-chart-svg:hover .chart-dot:nth-of-type(3) { animation-delay: 0.16s; }
.growth-chart-svg:hover .chart-dot:nth-of-type(4) { animation-delay: 0.20s; }
.growth-chart-svg:hover .chart-dot:nth-of-type(5) { animation-delay: 0.24s; }
.growth-chart-svg:hover .chart-dot:nth-of-type(6) { animation-delay: 0.28s; }
.growth-chart-svg:hover .chart-dot:nth-of-type(7) { animation-delay: 0.32s; }
.growth-chart-svg:hover .chart-dot:nth-of-type(8) { animation-delay: 0.36s; }
.growth-chart-svg:hover .chart-dot:nth-of-type(9) { animation-delay: 0.40s; }

/* Chart Labels */
.chart-labels {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 0.25rem;
    margin-top: 1rem;
    text-align: center;
}

.chart-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--c-char-40);
    letter-spacing: 0.05em;
}

.chart-label-dash {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--c-char-40);
    letter-spacing: 0.05em;
    opacity: 0;
}

.chart-caption {
    color: var(--c-char-40);
    margin-top: 1.5rem;
    font-weight: 300;
    text-align: center;
}

/* Philosophy Text Panel */
.philosophy-text-panel {
    max-width: 500px;
}

.philosophy-title {
    font-size: clamp(2.1rem, 4vw, 3.1rem);
    margin-bottom: 1.75rem;
}

.philosophy-description {
    font-size: 0.97rem;
    font-weight: 300;
    color: var(--c-char-80);
    line-height: 1.90;
    margin-bottom: 2.5rem;
}

.philosophy-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.philosophy-value-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.philosophy-value-dot-outer {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--c-char-12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.philosophy-value-dot-inner {
    width: 6px;
    height: 6px;
    background: var(--c-charcoal);
    border-radius: 50%;
}

.philosophy-value-title {
    font-size: 1.08rem;
    font-weight: 400;
    margin-bottom: 0.28rem;
}

.philosophy-value-text {
    color: var(--c-char-80);
    font-weight: 300;
    line-height: 1.74;
}

.philosophy-cta {
    margin-top: 2rem;
}




/* ==========================================================================
   11. PROCESS SECTION & ACCORDION
   ========================================================================== */

.process-section {
    background: var(--c-ivory);
}

.process-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.process-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4.5rem;
    gap: 2rem;
}

.process-title {
    font-size: clamp(2.1rem, 4vw, 3rem);
}

.process-subtitle {
    max-width: 280px;
    color: var(--c-char-40);
    line-height: 1.78;
    text-align: right;
}

/* Accordion */
.acc-item {
    border-top: 2px solid var(--c-black);
    position: relative;
    overflow: hidden;
}

.acc-item:last-child {
    border-bottom: 2px solid var(--c-black);
}

.acc-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 0;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: all 0.3s ease;
}

.acc-summary:hover {
    background: var(--c-cream);
}

.acc-summary::-webkit-details-marker,
.acc-summary::marker {
    display: none;
}

.acc-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.acc-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--c-gray-50);
    letter-spacing: 0.15em;
    min-width: 3rem;
    font-weight: 700;
}

.acc-title {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 500;
    color: var(--c-black);
    line-height: 1.25;
}

.acc-body {
    padding: 0 0 2.5rem 5rem;
    color: var(--c-char-80);
    font-weight: 400;
    line-height: 1.9;
    font-size: 1.1rem;
    max-width: 650px;
}

.acc-icon {
    width: 40px;
    height: 40px;
    border: 2px solid var(--c-black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

details[open] .acc-icon {
    background: var(--c-black);
    transform: rotate(45deg);
}

details[open] .acc-icon svg {
    stroke: var(--c-white);
}

.kinetic-canvas {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    pointer-events: none;
    opacity: 0.1;
    transition: opacity 0.6s ease;
    display: none;
}

details[open] .kinetic-canvas {
    opacity: 0.15;
}

/* Mobile Accordion */
@media (max-width: 640px) {
    .acc-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }

    .acc-body {
        padding: 0 0 2rem 0;
    }
}




/* ==========================================================================
   12. FORMS
   ========================================================================== */

.form-field,
.form-textarea {
    border: 1px solid var(--c-gray-80);
    background: var(--c-cream);
    width: 100%;
    padding: 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--c-black);
    outline: none;
    transition: all 0.3s ease;
}

.form-field {
    border-bottom: 2px solid var(--c-black);
    background: transparent;
    padding: 0.9rem 0;
}

.form-field:focus {
    border-color: var(--c-black);
}

.form-textarea {
    border: 2px solid var(--c-black);
    resize: none;
}

.form-textarea:focus {
    background: var(--c-white);
    box-shadow: 4px 4px 0 var(--c-black);
}

.form-field::placeholder,
.form-textarea::placeholder {
    color: var(--c-gray-50);
}

/* Form select wrapper */
.form-select-wrapper {
    position: relative;
}

.form-select-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.3;
}

/* Form honeypot */
.form-honeypot {
    display: none;
}

/* Form footer */
.form-footer {
    padding-top: 1rem;
    border-top: 1px solid var(--c-char-06);
}




/* ==========================================================================
   13. CONTACT SECTION
   ========================================================================== */

#contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Tablet and up */
@media (min-width: 900px) {
    #contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

#contact-grid > div {
    border: 2px solid var(--c-black);
    padding: 3rem;
}

/* Employer Contact */
.contact-employer {
    background: var(--c-ivory);
    border: 1px solid var(--c-char-06);
    border-radius: var(--r-card);
    padding: 3rem 2.5rem;
}

.contact-employer-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 0.65rem;
}

.contact-employer-description {
    color: var(--c-char-80);
    font-weight: 300;
    line-height: 1.78;
    margin-bottom: 2.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Talent Contact */
.contact-talent {
    background: var(--c-charcoal);
    border-radius: var(--r-card);
    padding: 3rem 2.5rem;
    color: var(--c-accent);
    display: flex;
    flex-direction: column;
}

.contact-talent-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--c-accent);
    margin-bottom: 0.65rem;
}

.contact-talent-description {
    color: rgba(255, 255, 255, 0.48);
    font-weight: 300;
    line-height: 1.78;
    margin-bottom: 2rem;
}

.contact-talent-roles {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.contact-talent-role {
    padding: 1.1rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: border-color 0.2s;
}

.contact-talent-role span:first-child {
    color: var(--c-accent);
}

.contact-talent-status {
    font-family: var(--font-mono);
    font-size: 0.57rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

.contact-talent-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-talent-footer-text {
    color: rgba(255, 255, 255, 0.32);
    font-weight: 300;
    margin-bottom: 1.2rem;
}




/* ==========================================================================
   14. CTA SECTION - COMPLETELY REDONE
   ========================================================================== */

.cta-section {
    padding: clamp(5rem, 8vw, 6rem) 2rem;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-top: 1px solid var(--c-char-06);
    min-height: 400px;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Dark overlay for better text readability */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.cta-section .cta-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.cta-section .cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.cta-section .cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-section .cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-weight: 300;
    max-width: 500px;
}

.cta-section .cta-button-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-section .cta-button-modern {
    display: inline-flex;
    align-items: center;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 2px solid #ffffff;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.cta-section .cta-button-modern:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-3px);
}

.cta-section .cta-button-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-section .cta-button-content svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 900px) {
    .cta-section .cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .cta-section .cta-headline {
        text-align: center;
    }
    
    .cta-section .cta-description {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    
    .cta-section .cta-button-wrapper {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .cta-section {
        padding: 4rem 1.5rem;
        min-height: 350px;
    }
    
    .cta-section .cta-headline {
        font-size: 2rem;
    }
    
    .cta-section .cta-description {
        font-size: 1rem;
    }
    
    .cta-section .cta-button-modern {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 1.25rem;
    }
    
    .cta-section .cta-headline {
        font-size: 1.8rem;
    }
}


 /* ==========================================================================
   15. FOOTER - COMPLETELY REWRITTEN (matches talent_database.html)
   ========================================================================== */

.site-footer {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 4rem 0 2rem !important;
    margin-top: 4rem !important;
    border-top: 3px solid #000000 !important;
    width: 100% !important;
}

.site-footer .container {
    max-width: 1380px !important;
    margin: 0 auto !important;
    padding: 0 2.5rem !important;
}

/* Footer grid - 5 columns on desktop */
.footer-grid {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr !important;
    gap: 2rem !important;
    margin-bottom: 2.5rem !important;
    align-items: start !important;
}

/* Tablet landscape - 4 columns */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr !important;
        gap: 2rem !important;
    }
}

/* Tablet portrait - 2 columns */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
}

/* Mobile - 1 column */
@media (max-width: 640px) {
    .site-footer {
        padding: 3rem 0 2rem !important;
    }
    
    .site-footer .container {
        padding: 0 1.5rem !important;
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

.footer-logo {
    font-family: 'Instrument Serif', Georgia, serif !important;
    font-size: 1.3rem !important;
    color: #ffffff !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    text-decoration: none !important;
    margin-bottom: 1rem !important;
}

.footer-logo svg {
    stroke: rgba(255, 255, 255, 0.7) !important;
}

.footer-tagline {
    line-height: 1.6 !important;
    max-width: 220px !important;
    font-weight: 300 !important;
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-heading {
    font-family: 'DM Mono', monospace !important;
    font-size: 0.6rem !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-bottom: 1.25rem !important;
    font-weight: 700 !important;
}

.footer-links ul {
    list-style: none !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-links li {
    margin: 0 !important;
    padding: 0 !important;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 0.7rem !important;
    line-height: 1.5 !important;
    display: inline-block !important;
    transition: all 0.2s ease !important;
}

.footer-links a:hover {
    color: #ffffff !important;
    transform: translateX(4px) !important;
}

/* Footer bottom */
.footer-bottom {
    padding: 1.5rem 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
}

.footer-bottom p {
    font-size: 0.7rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
}

.footer-legal {
    display: flex !important;
    gap: 1.5rem !important;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    font-size: 0.7rem !important;
    transition: all 0.2s ease !important;
}

.footer-legal a:hover {
    color: #ffffff !important;
    transform: translateX(2px) !important;
}

/* Disclaimer */
.footer-disclaimer {
    margin-top: 2rem !important;
    padding-top: 2rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.footer-disclaimer p {
    font-size: 0.7rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 0.5rem !important;
}

.footer-disclaimer a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4) !important;
}

.footer-disclaimer a:hover {
    color: #ffffff !important;
    border-bottom: 1px solid #ffffff !important;
}

/* Remove any conflicting footer styles from other sections */
footer,
.footer-grid,
.footer-bottom,
.footer-disclaimer {
    /* Reset any potential conflicts */
}

/* Fix mobile visibility - ensure bottom text shows */
@media (max-width: 640px) {
    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        padding: 1.5rem 0 !important;
    }
    
    .footer-bottom p {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
        font-size: 0.7rem !important;
        color: rgba(255, 255, 255, 0.6) !important;
    }
    
    .footer-legal {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
    
    .footer-legal a {
        display: inline-block !important;
        font-size: 0.7rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }
    
    .footer-disclaimer {
        display: block !important;
        width: 100% !important;
        margin-top: 2rem !important;
        padding-top: 2rem !important;
    }
    
    .footer-disclaimer p {
        display: block !important;
        width: 100% !important;
        font-size: 0.7rem !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.6) !important;
        margin-bottom: 0.5rem !important;
    }
    
    .footer-disclaimer a {
        display: inline !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .footer-bottom {
        padding: 1.25rem 0 !important;
    }
    
    .footer-legal {
        gap: 1rem !important;
    }
    
    .footer-disclaimer p {
        font-size: 0.65rem !important;
    }
}


/* ==========================================================================
   16. INVESTOR PAGE (Bento Layout)
   ========================================================================== */

/* Main container */
.investor-page-main {
    background: var(--c-ivory);
    min-height: 100vh;
    padding: 2rem 0 5rem 0;
}

.investor-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Back button (shared with talent database) */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: var(--c-charcoal);
    color: var(--c-accent);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--r-pill);
    cursor: pointer;
    transition: all 0.22s;
    text-decoration: none;
    margin-bottom: 3rem;
}

.back-button:hover {
    background: #1e2220;
    transform: translateY(-2px);
}

/* Investor Relations Bento Section */
.investor-section-bento {
    margin-bottom: 6rem;
}

.investor-header-bento {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.investor-title-bento {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--c-charcoal);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

.investor-description-bento {
    font-size: 1.1rem;
    color: var(--c-char-80);
    font-weight: 300;
    line-height: 1.8;
}

/* Investor Bento Grid */
.investor-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Investor Bento Cards */
.investor-bento-card {
    background: white;
    border: 1px solid var(--c-char-12);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.investor-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--c-char-40);
}

/* Position-specific hover effects */
.investor-bento-grid.expand-bottom-left .bento-bl {
    transform: scale(1.05) translateX(2.5%);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.investor-bento-grid.expand-bottom-left .bento-br {
    transform: scale(0.98);
}

.investor-bento-grid.expand-bottom-right .bento-br {
    transform: scale(1.05) translateX(-2.5%);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.investor-bento-grid.expand-bottom-right .bento-bl {
    transform: scale(0.98);
}

/* Investor Card Elements */
.investor-bento-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-char-06);
    border: 1px solid var(--c-char-12);
    border-radius: 1.25rem;
    color: var(--c-charcoal);
}

.investor-bento-content {
    flex: 1;
}

.investor-bento-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--c-charcoal);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.investor-bento-text {
    font-size: 1rem;
    color: var(--c-char-80);
    line-height: 1.8;
}

/* Metrics Bento Section */
.metrics-section-bento {
    margin-bottom: 6rem;
}

.metrics-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.metric-bento-card {
    background: white;
    border: 1px solid var(--c-char-12);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.metric-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--c-char-40);
}

/* Position-specific hover effects for metrics */
.metrics-bento-grid.expand-bottom-left .metric-bl {
    transform: scale(1.05) translateX(5%);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.metrics-bento-grid.expand-bottom-left .metric-bm,
.metrics-bento-grid.expand-bottom-left .metric-br {
    transform: scale(0.98);
}

.metrics-bento-grid.expand-bottom-right .metric-br {
    transform: scale(1.05) translateX(-5%);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.metrics-bento-grid.expand-bottom-right .metric-bm,
.metrics-bento-grid.expand-bottom-right .metric-bl {
    transform: scale(0.98);
}

/* Metric Card Elements */
.metric-bento-number {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--c-charcoal);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
}

.metric-bento-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--c-charcoal);
    margin-bottom: 0.75rem;
}

.metric-bento-text {
    font-size: 0.9rem;
    color: var(--c-char-60);
    line-height: 1.6;
}

/* Press Releases Bento Section */
.press-section-bento {
    margin-bottom: 6rem;
}

.press-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.press-bento-card {
    background: white;
    border: 1px solid var(--c-char-12);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.press-bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--c-char-40);
}

/* Position-specific hover effects for press */
.press-bento-grid.expand-bottom-left .press-bottom-left {
    transform: scale(1.05) translateX(5%);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.press-bento-grid.expand-bottom-left .press-bottom-right {
    transform: scale(0.98);
}

.press-bento-grid.expand-bottom-right .press-bottom-right {
    transform: scale(1.05) translateX(-5%);
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.press-bento-grid.expand-bottom-right .press-bottom-left {
    transform: scale(0.98);
}

/* Press Card Elements */
.press-bento-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--c-charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.press-bento-date {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--c-char-40);
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
}

.press-bento-excerpt {
    font-size: 1rem;
    color: var(--c-char-80);
    line-height: 1.8;
}

/* Press Contact */
.press-contact-bento {
    background: var(--c-charcoal);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

.press-contact-label-bento {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.press-contact-text-bento {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}




/* ==========================================================================
   17. TALENT DATABASE PAGE
   ========================================================================== */

.talent-database-main {
    background: var(--c-ivory);
    padding: 5rem 0;
}

.talent-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Talent Header */
.talent-header {
    margin-bottom: 3.5rem;
}

.talent-header-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--c-charcoal);
    margin-bottom: 1rem;
}

.talent-header-description {
    font-size: 1.1rem;
    color: var(--c-char-80);
    font-weight: 300;
    line-height: 1.84;
    max-width: 700px;
}

/* Talent Sections */
.talent-section {
    margin-bottom: 3.5rem;
}

.talent-section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--c-charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.talent-section-text {
    font-size: 1rem;
    color: var(--c-char-80);
    font-weight: 400;
    line-height: 1.84;
    margin-bottom: 1.5rem;
}

.talent-section-list {
    margin: 1.5rem 0 1.5rem 1.5rem;
    list-style: disc;
}

.talent-section-list li {
    font-size: 1rem;
    color: var(--c-char-80);
    font-weight: 400;
    line-height: 1.84;
    margin-bottom: 0.75rem;
}

/* Talent Highlight */
.talent-highlight {
    background: var(--c-warm);
    border-left: 4px solid var(--c-charcoal);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.talent-highlight p {
    margin: 0;
    font-style: italic;
    color: var(--c-char-80);
}

/* Talent Subsection */
.talent-subsection-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--c-charcoal);
    font-weight: 400;
    margin: 2rem 0 1rem 0;
}

/* Mobile Talent */
@media (max-width: 640px) {
    .talent-content {
        padding: 0 1.25rem;
    }
    
    .talent-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .talent-section-text,
    .talent-section-list li {
        font-size: 0.95rem;
    }
}




/* ==========================================================================
   18. UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* Email CTA */
#email-cta {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 6vw, 3.5rem);
    font-weight: 500;
    color: var(--c-black);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    display: inline-block;
    border-bottom: 3px solid var(--c-black);
    padding-bottom: 0.4rem;
}

#email-cta:hover {
    opacity: 0.6;
    transform: translateX(4px);
}

/* Remove old animation classes */
.scroll-animate,
.slide-in-fwd-top,
.slide-out-bck-top {
    animation: none;
    opacity: 1;
}




/* ==========================================================================
   19. RESPONSIVE BREAKPOINTS (Mobile First)
   
   Breakpoint Guide:
   - 480px and below: Mobile Small
   - 481px - 640px: Mobile Medium
   - 641px - 767px: Mobile Large
   - 768px - 899px: Tablet Portrait
   - 900px - 1023px: Tablet Landscape
   - 1024px - 1199px: Desktop
   - 1200px and above: Desktop Large
   ========================================================================== */

/* Mobile Small (480px and below) */
@media (max-width: 480px) {
    .bc {
        min-height: 180px;
        padding: 1.4rem 1.4rem 1.8rem;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-section .cta-button-modern {
        width: 100%;
        justify-content: center;
    }
    
    .investor-content {
        padding: 0 1rem;
    }
    
    .investor-bento-card,
    .metric-bento-card,
    .press-bento-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
    
    .investor-bento-icon {
        width: 48px;
        height: 48px;
    }
    
    .investor-bento-title {
        font-size: 1.3rem;
    }
    
    .metric-bento-number {
        font-size: 2.8rem;
    }
    
    .press-bento-title {
        font-size: 1.2rem;
    }
    
    .back-button {
        margin-bottom: 2rem;
    }
}

/* Mobile Medium (481px - 640px) */
@media (min-width: 481px) and (max-width: 640px) {
    .sp {
        padding: var(--sp-section-sm) 1.5rem;
    }
    
    .bc {
        min-height: 200px;
        padding: 1.6rem;
    }
    
    .acc-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.2rem;
    }
    
    .acc-body {
        padding: 0 0 2rem 0;
    }
    
    footer,
    .site-footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .hero-content {
        padding: 4rem 1.5rem 3rem;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Large (641px - 767px) */
@media (min-width: 641px) and (max-width: 767px) {
    .sp {
        padding: var(--sp-section-sm) 2rem;
    }
    
    .hero-content {
        padding: 4rem 2rem 3rem;
    }
}

/* Tablet Portrait (768px - 899px) */
@media (min-width: 768px) and (max-width: 899px) {
    #nav {
        display: block;
    }
    
    .hero-content {
        padding: 0 2rem 6rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .sp {
        padding: var(--sp-section) 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2rem;
    }
    
    .investor-bento-grid,
    .press-bento-grid {
        gap: 1.25rem;
    }
    
    .metrics-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investor-bento-card,
    .metric-bento-card,
    .press-bento-card {
        padding: 2rem;
    }
    
    .investor-bento-icon {
        width: 56px;
        height: 56px;
    }
    
    .investor-bento-title {
        font-size: 1.4rem;
    }
}

/* Tablet Landscape (900px - 1023px) */
@media (min-width: 900px) and (max-width: 1023px) {
    #phil-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    #contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .investor-bento-grid,
    .press-bento-grid {
        max-width: 900px;
    }
    
    .metrics-bento-grid {
        max-width: 900px;
    }
}

/* Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .investor-bento-grid,
    .press-bento-grid,
    .metrics-bento-grid {
        max-width: 1000px;
    }
}

/* Desktop Large (1200px and above) */
@media (min-width: 1200px) {
    /* Keep existing desktop styles */
}

/* Print Styles */
@media print {
    .nav-pill,
    .hero-overlay,
    .marquee-container,
    .btn-white,
    .btn-ghost-white,
    .btn-dark,
    footer {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}


/* RECENTLY UPDATED CSS */


/* 
    20. GROWTH METRICS PAGE (To be implemented in future updates)
     - Placeholder for future styles related to the Growth Metrics page, including charts, tables, and interactive elements.
     - Will include responsive design considerations and accessibility features.
*/

/* ==========================================================================
   GROWTH METRICS PAGE — STANDALONE CSS
   ==========================================================================
   
   This CSS file provides styling for the Growth Metrics & Analytics page.
   It follows the design system established in style.css with black/white
   brutalism aesthetic, 2px borders, and clean typography.
   
   TABLE OF CONTENTS:
   
   1. ROOT VARIABLES & GLOBAL SETTINGS
   2. RESET & BASE STYLES
   3. TYPOGRAPHY
   4. NAVIGATION
   5. HERO SECTION (Metrics Page)
   6. BACK BUTTON
   7. CHART SECTIONS
   8. CHART CARDS
   9. CHART HEADERS & LEGENDS
   10. STATS GRID
   11. FOOTER
   12. RESPONSIVE BREAKPOINTS
   
   ========================================================================== */




/* ==========================================================================
   5. HERO SECTION (Metrics Page)
   ========================================================================== */

.metrics-hero {
    background: var(--c-charcoal);
    color: var(--c-white);
    padding: 6rem 2.5rem 4rem;
    margin-bottom: 0;
    position: relative;
}

.metrics-hero h1 {
    color: var(--c-white);
    margin-bottom: 1.5rem;
}

.metrics-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 620px;
    font-weight: 300;
}




/* ==========================================================================
   6. BACK BUTTON
   ========================================================================== */

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 2rem;
    font-family: var(--font-sans);
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 1);
    transform: translateX(-2px);
}

.back-button svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.back-button:hover svg {
    transform: translateX(-2px);
}

.back-button:active {
    transform: translateX(0);
}




/* ==========================================================================
   7. CHART SECTIONS
   ========================================================================== */

.chart-section {
    padding: clamp(4rem, 8vw, 6rem) 2.5rem;
    background: var(--c-ivory);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Alternate backgrounds */
.chart-section:nth-child(odd) {
    background: var(--c-ivory);
}

.chart-section:nth-child(even) {
    background: var(--c-white);
}

/* First chart section after hero */
.chart-section:first-of-type {
    background: var(--c-white);
}




/* ==========================================================================
   8. CHART CARDS
   ========================================================================== */

.chart-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--c-white);
    border: 2px solid var(--c-black);
    border-radius: var(--r-card);
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Alternate card backgrounds */
.chart-section:nth-child(even) .chart-card {
    background: var(--c-ivory);
}

.chart-section:nth-child(odd) .chart-card {
    background: var(--c-white);
}

.chart-card:hover {
    box-shadow: 8px 8px 0 var(--c-black);
    transform: translateY(-2px);
}

.chart-card:active {
    transform: none;
    box-shadow: none;
}




/* ==========================================================================
   9. CHART HEADERS & LEGENDS
   ========================================================================== */

.chart-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--c-black);
}

.chart-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
    color: var(--c-charcoal);
}

.chart-header p {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.6;
    font-weight: 300;
}

.chart-container {
    position: relative;
    width: 100%;
    height: clamp(380px, 65vh, 600px);
    margin-bottom: 1.5rem;
}

canvas {
    width: 100% !important;
    height: 100% !important;
}

.chart-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.legend-item:hover .legend-dot {
    transform: scale(1.2);
}

.legend-dot.primary {
    background: #000000;
}

.legend-dot.secondary {
    background: #666666;
}

.legend-dot.accent {
    background: #333333;
}




/* ==========================================================================
   10. STATS GRID
   ========================================================================== */

.stats-section {
    padding: clamp(4rem, 8vw, 6rem) 2.5rem;
    background: var(--c-charcoal);
    color: var(--c-white);
}

.stats-section h2 {
    color: var(--c-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.stat-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--r-card);
    text-align: center;
    transition: all 0.3s ease;
    color: var(--c-white);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.stat-card h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: 0.3rem;
    font-family: var(--font-sans);
}

.stat-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
}

.stat-card .stat-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
    font-weight: 700;
}




/* ==========================================================================
   11. FOOTER
   ========================================================================== */

footer {
    background: var(--c-charcoal);
    color: var(--c-white);
    padding: 4.5rem 2.5rem 3rem;
}

footer a {
    color: var(--c-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-grid h5 {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-grid a {
    font-size: 0.85rem;
    font-weight: 400;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a:hover {
    color: var(--c-white);
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
}




/* ==========================================================================
   12. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .metrics-hero {
        padding: 4rem 2rem 3rem;
    }

    .metrics-hero h1 {
        margin-bottom: 1.2rem;
    }

    .back-button {
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .chart-section {
        padding: 3rem 1.5rem;
    }

    .chart-card {
        padding: 1.5rem;
    }

    .chart-header {
        margin-bottom: 2rem;
        padding-bottom: 1.25rem;
    }

    .chart-container {
        height: 380px;
        margin-bottom: 1.25rem;
    }

    .chart-legend {
        gap: 1rem;
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .legend-item {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-card h4 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .metrics-hero {
        padding: 3.5rem 1.5rem 2.5rem;
    }

    .metrics-hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 1rem;
    }

    .metrics-hero p {
        font-size: 1rem;
    }

    .back-button {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
        margin-bottom: 1.25rem;
    }

    .back-button svg {
        width: 12px;
        height: 12px;
    }

    .chart-section {
        padding: 2.5rem 1.25rem;
        border-bottom: none;
    }

    .chart-section:last-of-type {
        padding-bottom: 2.5rem;
    }

    .chart-card {
        padding: 1.25rem;
        border-radius: 6px;
    }

    .chart-card:hover {
        box-shadow: none;
        transform: none;
    }

    .chart-header {
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .chart-header h2 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
        margin-bottom: 0.6rem;
    }

    .chart-header p {
        font-size: 0.9rem;
    }

    .chart-container {
        height: 300px;
        margin-bottom: 1rem;
    }

    .chart-legend {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .legend-item {
        font-size: 0.8rem;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .stat-card {
        padding: 1rem;
        border-radius: 6px;
    }

    .stat-card:hover {
        transform: none;
    }

    .stat-card h4 {
        font-size: 1.5rem;
    }

    .stat-card p {
        font-size: 0.8rem;
    }

    .stat-card .stat-label {
        font-size: 0.6rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .footer-legal-links {
        width: 100%;
        flex-wrap: wrap;
    }
}

/* Small mobile (360px and below) */
@media (max-width: 360px) {
    .metrics-hero {
        padding: 3rem 1rem 2rem;
    }

    .chart-section {
        padding: 2rem 1rem;
    }

    .chart-container {
        height: 280px;
    }

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

    .footer-grid {
        gap: 1.25rem;
    }
}




/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Hide on mobile */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .hide-desktop {
        display: none;
    }
}



/* NEW ITEM */
/* ==========================================================================
   MOBILE NAVIGATION ENHANCEMENTS
   ========================================================================== */

/* Ensure navigation is visible on all devices */
#nav {
    display: block !important;
}

/* Extra small devices */
@media (max-width: 480px) {
    .nav-logo {
        font-size: 0.95rem !important;
        gap: 0.4rem !important;
    }
    
    .nav-logo svg {
        width: 16px !important;
        height: 16px !important;
    }
}

/* Ensure desktop styles are preserved */
@media (min-width: 768px) {
    #nav {
        display: block !important;
    }
}