/* 
========================================================================
   COPPER GIANT — EXACT ILLUSTRATOR REPLICA STYLES
   Color Scheme: Deep Obsidian & Illustrator Red (#FF002C)
========================================================================
*/

/* 1. DESIGN SYSTEM VARIABLES */
:root {
    /* Colors from Illustrator Mockup */
    --bg-void: #000000;         /* True black background */
    --bg-deep: #111111;         /* Deep grey background for sections */
    --bg-card: #181818;         /* Medium grey card/panel background */
    --bg-card-subtle: #242424;  /* Lighter grey for highlighting */
    --bg-glass: rgba(20, 20, 20, 0.4); /* Glassmorphism background */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.05);
    
    /* Illustrator Primary Red */
    --copper-primary: #FF002C;  
    --copper-primary-hover: #D60024;
    --copper-glow: rgba(255, 0, 44, 0.25);
    
    /* Typography Colors */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --text-tertiary: rgba(255, 255, 255, 0.35);
    
    /* Layout Tokens */
    --radius-pill: 9999px;
    --radius-card: 0px;         /* Illustrator layout uses sharp square cards/layouts */
    --radius-inner: 0px;
    
    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.4s ease-out;
    --ease-cinematic: cubic-bezier(0.19, 1, 0.22, 1);
}

/* 2. BASE RESET & SCROLL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-void);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-void);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-void);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border: 2px solid var(--bg-void);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--copper-primary);
}

/* 3. TYPOGRAPHY SYSTEM */
.font-mono {
    font-family: 'JetBrains Mono', monospace;
}

h1, h2, h3, h4 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.text-display-giant {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
}

.text-h2 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
}

.text-h3 {
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 600;
}

@media (min-width: 768px) {
    .text-display-giant {
        font-size: 4.5rem;
    }
    .text-h2 {
        font-size: 2.75rem;
    }
}

.paragraph-lead {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* 4. BUTTONS & UI */
.btn-rect {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--border-subtle);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
}

/* Micro-interaction: sliding arrow on hover */
.btn-rect::after {
    content: '→';
    margin-left: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    transition: transform var(--transition-fast);
    display: inline-block;
}

.btn-rect:hover::after {
    transform: translateX(4px);
}

.btn-rect:hover {
    background: var(--text-primary);
    color: var(--bg-void);
    border-color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-rect-primary {
    border-color: var(--copper-primary);
    color: #ffffff;
    background: transparent; /* Elegant outline style by default */
}

.btn-rect-primary:hover {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    color: #ffffff;
    box-shadow: 0 0 20px var(--copper-glow);
}

/* 5. HEADER, NAV & SUBNAV */
.top-header-group {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
}

/* Default gradient background */
.top-header-group::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0) 100%);
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

/* Hover solid dark background with backdrop blur */
.top-header-group::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

/* Active hover state on desktop or scrolled state */
body.header-hovered .top-header-group::before,
.top-header-group.scrolled::before {
    opacity: 0;
}

body.header-hovered .top-header-group::after,
.top-header-group.scrolled::after {
    opacity: 1;
}

/* Page Backdrop Overlay */
.page-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 98; /* behind the header but above other content */
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

body.header-hovered .page-backdrop {
    opacity: 1;
}

.ticker-bar {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 24px;
    font-size: 0.7rem;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    z-index: 101;
    position: relative;
}

.ticker-stocks {
    display: flex;
    gap: 24px;
}

.ticker-stocks span strong {
    color: #ffffff;
}


.nav-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    height: 60px;
    position: relative;
    z-index: 100;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo img {
    height: 30px;
    width: auto;
}

.nav-links-left {
    display: none;
    gap: 8px;
    align-items: center;
    height: 100%;
}

.nav-links-right {
    display: none;
    gap: 20px;
    align-items: center;
    height: 100%;
}

@media (min-width: 992px) {
    .nav-links-left {
        display: flex;
    }
    .nav-links-right {
        display: flex;
    }
}

.nav-link {
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: opacity var(--transition-fast);
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px 0 24px; /* Extra left padding for the dot */
    position: relative;
    opacity: 0.75;
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    left: 10px; /* Positioned in the left padding */
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 5px;
    height: 5px;
    background-color: var(--copper-primary);
    border-radius: 50%;
    opacity: 0;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    pointer-events: none;
}

.nav-link:hover::before, .nav-link.active::before {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* Solid and Outline Buttons in Header */
.nav-btn-solid {
    background: var(--copper-primary);
    color: white;
    padding: 8px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid var(--copper-primary);
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.nav-btn-solid:hover {
    background: var(--copper-primary-hover);
    border-color: var(--copper-primary-hover);
}

.nav-btn-outline {
    background: transparent;
    color: white;
    padding: 8px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 1px solid var(--copper-primary);
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.nav-btn-outline:hover, .nav-btn-outline.active {
    background: var(--copper-primary);
    color: white;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
}


/* 6. HERO SECTION / VIDEO HERO */
.hero-video-section {
    position: relative;
    width: 100%;
    background: #000000;
    border-bottom: 1px solid var(--border-subtle);
    display: block;
    margin: 0;
    padding: 0;
}

.hero-video-wrapper {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 2520 / 972; /* 90% of original height (1080 * 0.9 = 972) */
    overflow: hidden;
    background: #000000;
    position: relative; /* Crucial so that the overlay centers relative to the video frame */
}

.hero-video-wrapper.hero-half-height {
    aspect-ratio: 2520 / 320; /* Much thinner height (less than a third of original 972) */
}

/* Adjust font sizes and vertical positioning inside half-height hero to keep it clean and readable */
.hero-half-height .hero-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem) !important;
    line-height: 1.15 !important;
}

.hero-half-height .hero-text-container {
    padding-top: 40px; /* Offset the absolute navigation menu */
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Wrapper matches video aspect ratio exactly, so no cropping occurs */
    display: block;
}

.hero-video-bg.ken-burns {
    animation: kenburns-effect 24s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes kenburns-effect {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.08) translate(-0.5%, -0.5%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Darker overlay for contrast without text-shadow */
    display: flex;
    justify-content: center; /* Center the container horizontally on the screen */
    align-items: center;     /* Center vertically */
    z-index: 2;
    pointer-events: none;
    padding: 24px;
}

.hero-text-container {
    width: 100%;
    max-width: 1200px; /* Aligns with the 1200px grid of the site */
    padding: 0 40px;   /* Consistent layout padding */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Left aligns items in the container */
    text-align: left;        /* Left aligns text */
    gap: 8px;
}

.hero-text-container .hero-title {
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: none;
    margin: 0;
}

.hero-text-container .hero-eyebrow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--copper-primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0;
}

.hero-video-section .hero-subtitle {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 3.0rem; /* Slightly smaller for a lighter feel */
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
    text-align: left;  /* Shield from generic sub-page subtitle overrides */
    max-width: none;   /* Shield from generic sub-page subtitle overrides */
}



/* Responsive adjustments for the left-aligned text & arrow layout */
@media (max-width: 992px) {
    .hero-text-container {
        padding: 0 24px;
    }

    .hero-video-section .hero-subtitle {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {

    .hero-video-section .hero-subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {

    .hero-video-section .hero-subtitle {
        font-size: 1.3rem;
        line-height: 1.15;
    }
}


.slider-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .slider-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slider-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 40px 30px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slider-panel-number {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    margin-bottom: 24px;
}

.slider-panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.slider-panel-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 7. NEWS HUB SECTION */
.news-hub-section {
    background: var(--bg-deep);
    padding: 45px 24px 20px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.news-hub-header {
    max-width: 1200px;
    margin: 0 auto 20px auto;
    text-align: center;
}

.news-hub-title {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.news-hub-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.news-hub-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0 20px 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.news-hub-grid::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .news-hub-card {
        flex: 0 0 calc(33.333% - 16px);
        scroll-snap-align: start;
    }
}

.news-hub-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 40px 30px;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
    transition: all 0.5s var(--ease-cinematic);
}

.news-hub-card:hover {
    background: var(--bg-card-subtle);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
}

/* Button style inside news cards: less wide and left-aligned */
.news-hub-card .btn-rect {
    align-self: flex-start;
    padding: 10px 22px;
}

/* Card Brand Lockup (From the News Release image style) */
.card-brand-lockup {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 16px;
    width: 100%;
}

.card-brand-title-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.card-brand-arrow {
    width: 1.8rem;
    height: 1.8rem;
    object-fit: contain;
    margin-top: 2px;
    flex-shrink: 0; /* Prevent arrow from shrinking */
}

.card-news-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0;
}

.card-brand-line {
    height: 4px;
    background-color: var(--copper-primary); /* #FF002C */
    margin: 12px 0 8px 0;
    width: 100%;
}

.card-brand-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-card-body {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.news-arrows-container {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.news-arrow-btn {
    background: transparent;
    border: 2px solid var(--copper-primary); /* Thick red border */
    color: #ffffff;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.news-arrow-btn svg {
    transition: transform var(--transition-fast);
}

.news-arrow-btn:hover {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    color: #ffffff;
    box-shadow: 0 0 15px var(--copper-glow);
}

/* Micro-interaction: slide arrow slightly on hover */
.news-arrow-btn:first-child:hover svg {
    transform: translateX(-3px);
}

.news-arrow-btn:last-child:hover svg {
    transform: translateX(3px);
}

/* 7.5. MOCOA 360° INTERACTIVE VIEW SECTION */
.mocoa-360-section {
    position: relative;
    max-width: 1200px;
    margin: 10px auto 20px auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.mocoa-360-header {
    max-width: 1200px;
    margin: 0 auto 0 auto;
    text-align: center;
}

.mocoa-360-title {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.mocoa-360-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

/* Container for the 3D model canvas */
.mocoa-360-container {
    position: relative;
    width: 100%;
    height: 680px;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
    overflow: hidden;
    box-sizing: border-box;
}

.mocoa-360-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.mocoa-360-overlay-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.mocoa-360-overlay-middle {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 30px 30px 50px 30px;
    height: 100%;
    box-sizing: border-box;
}

.mocoa-360-left-panel {
    width: 291px;
    background: transparent;
    padding: 0;
    border: none;
    pointer-events: auto;
}

.mocoa-360-right-panel {
    width: 250px;
    background: transparent;
    padding: 0;
    border: none;
    pointer-events: auto;
}

.recurso-panel-img {
    width: 100%;
    height: auto;
    display: block;
}

.recurso-bottom-img {
    width: 100%;
    max-width: 963px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Bottom Metrics Bar */
.mocoa-360-bottom-bar {
    width: 100%;
    background: #0d0d0d;
    border: 1px solid var(--border-subtle);
    padding: 8px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.mocoa-360-center-panel {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mocoa-360-center-panel .icon-360-img {
    width: 68px;
    height: auto;
    margin-bottom: 6px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mocoa-360-center-panel:hover .icon-360-img {
    transform: scale(1.08);
    filter: drop-shadow(0 2px 8px rgba(255, 85, 34, 0.5));
}

.mocoa-360-btn-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-align: center;
    margin-top: 4px;
    line-height: 1.3;
    transition: color 0.3s;
}

.mocoa-360-center-panel:hover .mocoa-360-btn-text {
    color: white;
}

/* Responsive Overrides for Mocoa 360 Section */
@media (max-width: 1024px) {
    .mocoa-360-container {
        height: 600px;
    }
    .mocoa-360-overlay-middle {
        padding: 20px 20px 40px 20px;
        align-items: flex-end;
    }
    .mocoa-360-left-panel {
        width: 260px;
    }
    .mocoa-360-right-panel {
        width: 220px;
    }
    .mocoa-360-bottom-bar {
        padding: 16px 20px;
    }
}

@media (max-width: 767px) {
    .mocoa-360-section {
        padding: 0 16px;
        margin: 40px auto 20px auto;
    }
    .mocoa-360-container {
        height: 450px;
        border-bottom: 1px solid var(--border-subtle);
    }
    .mocoa-360-overlay-container {
        position: relative;
        height: auto;
    }
    .mocoa-360-overlay-middle {
        flex-direction: column;
        gap: 20px;
        padding: 24px 0;
    }
    .mocoa-360-left-panel {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        background: transparent;
        border: none;
        box-sizing: border-box;
        padding: 0;
    }
    .mocoa-360-right-panel {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        background: transparent;
        border: none;
        box-sizing: border-box;
        padding: 0;
    }
    .mocoa-360-bottom-bar {
        padding: 16px;
        margin-top: 0;
    }
    .mocoa-360-center-panel {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 20px auto 10px auto;
        width: fit-content;
    }
    .mocoa-360-center-panel:hover {
        transform: translateY(-2px);
    }
    .mocoa-360-center-panel:active {
        transform: translateY(0);
    }
}


/* 8. THE MOCOA PORPHYRY SECTION */
.mocoa-porphyry-section {
    background: var(--bg-void);
    padding: 100px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.mocoa-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

@media (min-width: 992px) {
    .mocoa-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
}

.mocoa-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mocoa-title {
    font-size: 2rem;
    margin-bottom: 8px;
}

.mocoa-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

.mocoa-badges-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
}

@media (min-width: 576px) {
    .mocoa-badges-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.badge-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.badge-circle {
    width: 84px;
    height: 84px;
    border-radius: var(--radius-pill);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    padding: 6px;
}

.badge-circle span:first-child {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.badge-circle span:last-child {
    font-size: 0.45rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 2px;
}


.badge-circle.red {
    background: #FF002C;
    color: white;
}

.badge-circle.orange {
    background: #FF9500;
    color: white;
}

.badge-circle.gold {
    background: #FFCC00;
    color: black;
}

.badge-circle.teal {
    background: #4CD964;
    color: white;
}

.badge-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.badge-lbl {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

@media (max-width: 480px) {
    .badge-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}


/* 9. DOUBLE SPLIT SECTIONS (2x2 GRID) */
.split-section {
    background: var(--bg-deep);
    padding: 20px 24px 80px 24px;
    border-bottom: 1px solid var(--border-subtle);
}

.split-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .split-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split-card.span-full {
        grid-column: span 2;
    }
    .split-card.span-full.split-coreshack-card::before {
        background-size: 580px auto;
        background-position: center bottom;
    }
}

.split-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 30px 30px 44px 30px;
    min-height: 460px;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
    transition: all 0.5s var(--ease-cinematic);
}

.split-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85);
}

/* Card Backgrounds applied to ::before for hover zoom effect */
.split-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-image: var(--card-bg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.split-card:hover::before {
    transform: scale(1.08);
}

.split-card.geology-card::before {
    background-image: url('mocoa-deposit-bg.jpg');
}

.split-card.video-portal-new::before {
    background-image: url('ROAD-to-MOCOA.jpg');
    background-position: center 38%;
}

.split-card.meet-the-team-card::before {
    background-image: url('meet the team.jpg');
}

.split-card.copper-giant-way-card::before {
    background-image: url('The copper giant way.jpg');
}

.split-card.making-of-giant-card::before {
    background-image: url('Themaking.jpg');
}

.split-card.split-coreshack-card::before {
    background-image: url('nucleos-CG.png');
    background-size: 85% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
}

/* Vignette overlay for all background image cards for text legibility and border conservation */
.split-card.geology-card::after,
.split-card.video-portal-new::after,
.split-card.meet-the-team-card::after,
.split-card.copper-giant-way-card::after,
.split-card.making-of-giant-card::after,
.split-card.split-coreshack-card::after {
    content: '';
    position: absolute;
    inset: 0; /* Extended overlay fully to the card edges since there are no borders */
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    pointer-events: none;
}

.video-card-header {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.video-card-header .card-title-main {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.video-card-header .card-subtitle-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 0.95;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-card-action {
    position: relative;
    z-index: 2;
    background: #FF002C;
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border-radius: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 12px rgba(255, 0, 44, 0.3);
    outline: none;
}

.btn-card-action:hover {
    background: #e60027;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(255, 0, 44, 0.5);
}

.btn-card-action:active {
    transform: scale(0.98);
}

/* 10. FOOTER WITH COLUMNS & GRAPHICS */
.site-footer {
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #333333;
}

.footer-top-columns {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 10px 24px; /* Reduced bottom padding to bring the graphic closer */
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 576px) {
    .footer-top-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-top-columns {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 12px;
}

.footer-logo-svg {
    height: 36px;
    width: auto;
    display: block;
}

.footer-logo-svg .st0 {
    fill: #ff0016; /* Red logo accent and registration symbol */
}

.footer-logo-svg .st1 {
    fill: #000000; /* Black logo text */
}

.footer-about-text {
    color: #555555;
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 16px 0;
}

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

.footer-social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-social-btn:hover {
    background: #ff0016;
    transform: translateY(-3px);
}

.footer-social-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-column-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #000000;
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, #ff0016 40px, transparent 40px, transparent 44px, #ff0016 44px);
    margin-top: 10px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.footer-links-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
}

.footer-links-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: #111111;
}

.footer-links-list a {
    color: #333333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: #ff0016;
}

.footer-news-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-news-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-news-title-link {
    color: #111111;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.footer-news-title-link:hover {
    color: #ff0016;
}

.footer-news-date {
    color: #ff0016;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    position: relative;
    padding-left: 20px;
    color: #333333;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 7px;
    height: 7px;
    background: #ff0016;
}

.footer-contact-item a {
    color: #333333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: #ff0016;
}

.footer-newsletter-form {
    display: flex;
    margin-top: 20px;
    border-radius: var(--radius-card);
    overflow: hidden;
    max-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.footer-newsletter-form input {
    flex: 1;
    border: 1px solid #dddddd;
    border-right: none;
    padding: 10px 14px;
    font-size: 0.85rem;
    background: #fcfcfc;
    outline: none;
    color: #333333;
}

.footer-newsletter-form button {
    background: #ff0016;
    border: none;
    padding: 0;
    width: 44px;
    height: 38px;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-newsletter-form button:hover {
    background: #e60027;
}

.footer-newsletter-form button svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.footer-mocoa-graphic-wrap {
    width: 100%;
    background: #ffffff;
    padding: 0 24px; /* Removed top padding to bring graphic closer to columns */
    box-sizing: border-box;
    overflow: hidden;
}

.footer-mocoa-graphic {
    width: 100%;
    max-width: 1140px; /* Reduced max-width slightly so the text sits safely inside column boundaries and isn't cut off */
    display: block;
    height: auto;
    margin: 0 auto;
}

.footer-bottom-bar {
    background: #000000;
    padding: 24px;
    border-top: none;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom-copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #888888;
}

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

.footer-bottom-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: #888888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* 11. VIDEO OVERLAY MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-out;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content-video {
    width: 90%;
    max-width: 860px;
    aspect-ratio: 16/9;
    background: #000;
    border: 1px solid var(--border-subtle);
    position: relative;
}

.modal-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-close-btn {
    position: fixed;
    top: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1010;
}

.modal-close-btn:hover {
    background: white;
    color: black;
    transform: rotate(90deg);
}

/* 12. MOBILE MENU OVERLAY */
.mobile-menu-overlay {
    position: fixed;
    top: 96px;
    left: 0;
    width: 100%;
    height: calc(100vh - 96px);
    background: #000000;
    z-index: 99;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease-out;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.35rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
}

.mobile-link:hover, .mobile-link.active {
    color: var(--text-primary);
}

/* 13. MOBILE RESPONSIVE SLIDERS & ALIGNMENTS */
@media (max-width: 767px) {
    /* Horizontal scroll for team cards on mobile */
    .slider-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 0 20px 0;
        scrollbar-width: none;
    }
    .slider-container::-webkit-scrollbar {
        display: none;
    }
    .slider-panel {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-height: 280px;
    }

    /* Horizontal scroll for news cards on mobile */
    .news-hub-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 10px 0 20px 0;
        scrollbar-width: none;
    }
    .news-hub-grid::-webkit-scrollbar {
        display: none;
    }
    .news-hub-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-height: 420px;
    }
}


/* 15. SIMPLE DROPDOWN NAVIGATION */
.nav-item-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 8px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.dropdown-menu a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    padding: 10px 20px;
    text-decoration: none;
    transition: color 0.15s ease, background-color 0.15s ease, padding-left 0.15s ease;
    display: block;
    box-sizing: border-box;
}

.dropdown-menu a:hover {
    color: #ffffff;
    background: rgba(184, 115, 51, 0.12);
    padding-left: 24px;
}



/* ==========================================================================
   PORTED STYLES FROM ROOT FOR SUB-PAGES
   ========================================================================== */

/* --- Ported Section: Lines 126 to 516 --- */
/* Segmented Tabs (Apple style) */
.segmented-control {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 4px;
    border-radius: var(--radius-card);
    position: relative;
    margin-bottom: 2.5rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-card);
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.tab-btn.active {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Horizontal Carousels with Snap */
.carousel-wrapper {
    position: relative;
    width: 100%;
}

.gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 10px 0 24px 0;
    scrollbar-width: none; /* Firefox */
}

.gallery-carousel::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.carousel-item {
    scroll-snap-align: start;
    flex: 0 0 100%;
    width: 100%;
}

@media (min-width: 768px) {
    .carousel-item {
        flex: 0 0 calc(50% - 12px);
        width: calc(50% - 12px);
    }
}

@media (min-width: 1024px) {
    .carousel-item {
        flex: 0 0 calc(33.333% - 16px);
        width: calc(33.333% - 16px);
    }
}

/* Carousel Control Arrows */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid var(--border-glass);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    z-index: 10;
    transition: all 0.3s var(--ease-cinematic);
    opacity: 0;
    pointer-events: none;
}

.carousel-wrapper:hover .carousel-nav-btn {
    opacity: 1;
    pointer-events: auto;
}

.carousel-nav-btn:hover {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 15px var(--copper-glow);
}

.carousel-nav-btn.prev {
    left: -24px;
}

.carousel-nav-btn.next {
    right: -24px;
}

@media (max-width: 1024px) {
    .carousel-nav-btn {
        display: none; /* Hide arrows on touch devices in favor of direct swiping */
    }
}

/* Scroll Progress Indicators */
.carousel-progress-container {
    width: 100%;
    max-width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    margin: 20px auto 0 auto;
    position: relative;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    background: var(--copper-primary);
    width: 0%;
    border-radius: 0;
    transition: width 0.1s ease-out;
}

/* ============================================
   CORPORATE CALENDAR — PREMIUM TIMELINE
   ============================================ */

/* Timeline Container */
.events-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Vertical timeline line on mobile */
.events-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 0, 44, 0.4) 10%,
        rgba(255, 0, 44, 0.15) 60%,
        rgba(255, 255, 255, 0.04) 90%,
        transparent 100%
    );
    pointer-events: none;
    display: block;
}

@media (min-width: 768px) {
    .events-timeline::before {
        left: 51px;
    }
}

/* Mobile vertical event card */
.event-card {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 28px 28px 28px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s var(--ease-cinematic);
    cursor: default;
}

.event-card:last-child {
    border-bottom: none;
}

/* Mobile vertical dot */
.event-card::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s var(--ease-cinematic);
    z-index: 2;
    display: block;
}

@media (min-width: 768px) {
    .event-card::before {
        left: 48px;
    }
}

.event-card:hover::before {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    box-shadow: 0 0 10px rgba(255, 0, 44, 0.6), 0 0 20px rgba(255, 0, 44, 0.3);
}

.event-card.event-past {
    opacity: 0.45;
    filter: grayscale(0.3);
}

.event-card.event-past::before {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.05);
}

.event-card.event-next {
    background: rgba(255, 0, 44, 0.02);
    border-radius: 0;
}

.event-card.event-next::before {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    box-shadow: 0 0 8px rgba(255, 0, 44, 0.5), 0 0 16px rgba(255, 0, 44, 0.2);
    width: 10px;
    height: 10px;
    left: 30px;
}

@media (min-width: 768px) {
    .event-card.event-next::before {
        left: 46px;
    }
}

.event-card:hover:not(.event-past) {
    background: rgba(255, 255, 255, 0.015);
}

/* TABLET & DESKTOP — RESPONSIVE HORIZONTAL TIMELINE */
@media (min-width: 768px) {
    .events-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding-top: 48px;
    }

    /* Horizontal connecting line across the top of cards */
    .events-timeline::before {
        content: '';
        position: absolute;
        left: 20px;
        right: 20px;
        top: 16px;
        bottom: auto;
        width: auto;
        height: 1px;
        background: linear-gradient(
            to right,
            rgba(255, 0, 44, 0.4) 0%,
            rgba(255, 0, 44, 0.15) 50%,
            rgba(255, 255, 255, 0.04) 100%
        );
        display: block;
    }

    /* Override mobile timeline card formatting into premium modular card */
    .event-card {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: stretch;
        grid-template-columns: none;
        padding: 32px;
        background: rgba(10, 10, 10, 0.45);
        backdrop-filter: blur(24px);
        border: 1px solid var(--border-glass);
        border-radius: var(--radius-card);
        min-height: 380px;
        gap: 20px;
        border-bottom: 1px solid var(--border-glass);
        opacity: 1;
        filter: none;
    }

    .event-card:last-child {
        border-bottom: 1px solid var(--border-glass);
    }

    /* Position the timeline dot centered horizontally exactly on the timeline line */
    .event-card::before {
        left: 50%;
        top: -36px;
        transform: translateX(-50%);
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
    }

    .event-card:hover::before {
        background: var(--copper-primary);
        border-color: var(--copper-primary);
        box-shadow: 0 0 10px rgba(255, 0, 44, 0.6), 0 0 20px rgba(255, 0, 44, 0.3);
    }

    .event-card.event-past {
        opacity: 0.55;
        filter: grayscale(0.2);
    }

    .event-card.event-past::before {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.05);
    }

    .event-card.event-next {
        background: rgba(255, 0, 44, 0.02);
        border-color: rgba(255, 0, 44, 0.25);
        box-shadow: 0 0 20px rgba(255, 0, 44, 0.05);
    }

    .event-card.event-next::before {
        background: var(--copper-primary);
        border-color: var(--copper-primary);
        box-shadow: 0 0 8px rgba(255, 0, 44, 0.5), 0 0 16px rgba(255, 0, 44, 0.2);
        width: 11px;
        height: 11px;
        left: 50%;
        top: -37px;
    }

    /* Hover state for the whole card */
    .event-card:hover:not(.event-past) {
        background: rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 0, 44, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 0, 44, 0.1);
    }

    .event-card .date-badge {
        align-self: flex-start;
        margin-bottom: 8px;
    }

    .event-card .btn-outline {
        width: 100%;
        margin-top: auto;
        text-align: center;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .events-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Date Badge Style */
.date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    transition: all 0.4s var(--ease-cinematic);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .date-badge {
        width: 104px;
        height: 80px;
    }
}

.event-card:hover:not(.event-past) .date-badge {
    background: rgba(255, 0, 44, 0.06);
    border-color: rgba(255, 0, 44, 0.25);
    box-shadow: 0 0 16px rgba(255, 0, 44, 0.1);
}

.event-card.event-next .date-badge {
    background: rgba(255, 0, 44, 0.08);
    border-color: rgba(255, 0, 44, 0.3);
}

.date-badge-month {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--copper-primary);
    font-family: var(--font-mono);
}

.date-badge-day {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    font-family: var(--font-mono);
}

.date-badge-year {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-tertiary);
    font-family: var(--font-mono);
    letter-spacing: 0.08em;
    margin-top: 2px;
}

/* Days-remaining countdown chip */
.days-remaining {
    font-size: 0.6rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--copper-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
    opacity: 0.8;
}

/* Event Details Style */
.event-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.event-type-pill {
    align-self: flex-start;
    padding: 3px 10px;
    background: rgba(255, 0, 44, 0.08);
    color: var(--copper-primary);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 0, 44, 0.2);
    display: inline-block;
}

.event-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    border-radius: 100px;
}

.event-status-badge.status-upcoming {
    background: rgba(34, 197, 94, 0.08);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.event-status-badge.status-next {
    background: rgba(255, 0, 44, 0.1);
    color: var(--copper-primary);
    border: 1px solid rgba(255, 0, 44, 0.3);
}

.event-status-badge.status-past {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.event-status-badge .status-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.event-status-badge.status-upcoming .status-dot,
.event-status-badge.status-next .status-dot {
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* Filter Buttons Style — Premium pills */
.filter-btn {
    padding: 9px 22px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s var(--ease-cinematic);
    outline: none;
    font-family: var(--font-mono);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--copper-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease-cinematic);
    z-index: 0;
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn:hover {
    color: white;
    border-color: rgba(255, 0, 44, 0.35);
    background: rgba(255, 0, 44, 0.06);
    transform: translateY(-1px);
}

.filter-btn.active {
    color: white;
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    box-shadow: 0 4px 20px rgba(255, 0, 44, 0.35);
}

/* ============================================
   BTN OUTLINE — Request Meeting Button
   ============================================ */
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: var(--font-mono);
    color: white;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: all 0.3s var(--ease-cinematic);
    outline: none;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--copper-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-cinematic);
    z-index: 0;
}

.btn-outline > * {
    position: relative;
    z-index: 1;
}

.btn-outline:hover {
    border-color: var(--copper-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 0, 44, 0.3);
    transform: translateY(-2px);
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-outline:active {
    transform: translateY(0px);
}

.event-card.event-past .btn-outline {
    opacity: 0.4;
    pointer-events: none;
}

/* Newsletter Subscription Form Style */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
}

.form-input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-card);
    padding: 14px;
    color: white;
    outline: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--copper-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(255, 0, 44, 0.1);
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 5px;
}

.form-checkbox {
    margin-top: 4px;
    cursor: pointer;
    accent-color: var(--copper-primary);
    width: 16px;
    height: 16px;
}

.form-checkbox-label {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    line-height: 1.5;
    cursor: pointer;
}

.form-submit-btn {
    padding: 16px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: var(--radius-card);
    margin-top: 10px;
    transition: all 0.3s ease;
}


/* TYPOGRAPHY COMPONENTS */
.text-display-giant {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.text-h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.text-h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.text-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--copper-primary);
}

/* Section Header Group matching Home page design */
.section-header-group {
    max-width: 1200px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.section-header-group .section-title {
    font-family: 'Figtree', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.section-header-group .section-subtitle {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.section-header-group.left-align {
    text-align: left;
    margin-left: 0;
}


/* Base Section backgrounds and dynamic alternation */
section {
    background-color: var(--bg-void);
}
section:nth-of-type(even) {
    background-color: var(--bg-deep);
}


/* LAYOUT UTILS */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding-top: 40px;
    padding-bottom: 40px;
    scroll-margin-top: 110px;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 24px;
        padding-bottom: 24px;
    }
}


/* Universal scroll offset for all anchor sections (main nav ~96px + buffer) */
section[id] {
    scroll-margin-top: 110px;
}



/* --- Ported Section: Lines 608 to 1063 --- */
/* 2. Sub Nav (Apple Style) */
.sub-nav {
    position: sticky;
    top: 96px; /* Below main nav (ticker 36px + header 60px) */
    margin-top: 96px; /* Offset fixed header space so it does not overlap content */
    z-index: 90;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 1px solid var(--border-glass);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-nav h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.sub-nav-links {
    display: flex;
    gap: 24px;
    align-items: center; /* Perfect vertical alignment */
}

.sub-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.sub-nav-links a:hover { color: white; }
.sub-nav-links a.active {
    color: var(--copper-primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 85, 34, 0.2);
}

.btn-copper {
    background: var(--copper-primary);
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-card);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-copper:hover {
    background: white;
    color: black;
    transform: scale(1.02);
}

.sub-nav-links a.btn-copper {
    font-weight: 800;
    font-size: 0.8rem;
    color: white;
}

.sub-nav-links a.btn-copper:hover {
    color: black;
    background: white;
}

/* 3. Immersive Hero */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1518182170546-076616fd46ea?q=80&w=2940&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.05); /* Will be animated down on load */
    animation: heroZoomOut 20s infinite alternate linear;
}

@keyframes heroZoomOut {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.8) 0%,
        rgba(0,0,0,0.4) 40%,
        rgba(0,0,0,0.8) 80%,
        var(--bg-void) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 30px auto;
    max-width: 600px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    border-top: 1px solid var(--border-glass);
    padding-top: 40px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-val {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.hero-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper-primary);
    margin-top: 5px;
}

/* 4. Photographic Bento Grid (Apple Style Features) */
.photo-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.photo-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: var(--bg-deep);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    /* Subtle glass border */
    box-shadow: inset 0 0 0 1px var(--border-subtle);
}

.photo-card.large { grid-column: span 8; }
.photo-card.medium { grid-column: span 4; }
.photo-card.full { grid-column: span 12; min-height: 600px; }

/* Responsive adjustments for Photographic Bento Grid */
@media (max-width: 992px) {
    .photo-bento {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    .photo-card {
        min-height: 400px;
    }
    .photo-card.large,
    .photo-card.medium,
    .photo-card.full {
        grid-column: span 1 !important;
    }
    .photo-card-content {
        padding: 30px;
    }
    .photo-card h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .photo-card {
        min-height: 350px;
    }
    .photo-card-content {
        padding: 24px;
    }
    .photo-card h3 {
        font-size: 1.5rem;
    }
    .photo-card p {
        font-size: 0.95rem;
    }
}

.photo-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s var(--ease-cinematic);
    z-index: 1;
}

.photo-card-img.img-contain {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center 20%;
}

/* Add a gradient overlay from bottom to make text legible */
.photo-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

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

.news-card {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.news-card:hover {
    box-shadow: 0 10px 40px rgba(255, 68, 68, 0.15), inset 0 0 0 1px rgba(255, 68, 68, 0.4);
    transform: translateY(-5px);
}

.photo-card-content {
    position: relative;
    z-index: 3;
    padding: 40px;
}

/* Glass Panel style for specific cards */
.photo-card.glass-panel .photo-card-content {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid var(--border-glass);
    padding: 30px 40px;
}

.photo-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.photo-card p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 400px;
}

.card-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    margin-top: 20px;
    color: white;
    transition: all 0.3s ease;
}

.photo-card:hover .card-link-icon {
    background: white;
    color: black;
    transform: translateX(5px);
}

/* Interactive Hotspots CSS */
.hotspot-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.hotspot-wrapper {
    position: relative;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hotspot-pin {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--copper-primary);
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hotspot-pin::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid var(--copper-primary);
    animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hotspot-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid var(--copper-primary);
    border-radius: var(--radius-card);
    padding: 15px 20px;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    z-index: 11;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    text-align: left;
}

.hotspot-pin:hover .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.hotspot-tooltip h4 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    font-family: var(--font-mono);
}

.hotspot-tooltip p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0 0 8px 0;
}

.hotspot-tooltip .highlight {
    color: var(--copper-primary);
    font-weight: 600;
}

/* 5. Data Section (Drilling) */
.data-section {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-glass);
    position: relative;
}

/* Subtle topographical background pattern */
.topo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 400 400"><path d="M 0,200 Q 100,100 200,200 T 400,200" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>');
    opacity: 0.5;
    z-index: 0;
}

.drill-table {
    width: 100%;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.drill-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-glass);
    align-items: center;
    transition: background 0.3s ease;
}

.drill-row:hover {
    background: rgba(255,255,255,0.02);
    padding-left: 20px;
}

.drill-id {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: white;
}

.drill-result {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--copper-primary);
}

.drill-length {
    text-align: right;
    color: var(--text-secondary);
}

/* Utility */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-cinematic), transform 1s var(--ease-cinematic);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}



/* --- Ported Section: Lines 1142 to 1188 --- */
/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #ffffff;
    color: var(--copper-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    color: var(--copper-primary-hover);
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 0, 44, 0.15), 0 8px 30px rgba(0, 0, 0, 0.45);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translate(2px, -2px);
}



/* --- Ported Section: Lines 1333 to 2667 --- */
/* Get Updates Modal Popup Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid var(--copper-primary);
    border-radius: var(--radius-card);
    padding: 50px 40px;
    max-width: 520px;
    width: 90%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 100px rgba(255, 85, 34, 0.1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: white;
    color: black;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 35px;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

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

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.input-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--copper-primary);
}

.input-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-card);
    padding: 14px 20px;
    color: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--copper-primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(255, 85, 34, 0.15);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 10px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input:checked {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
}

.checkbox-label input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
}

.checkbox-label:hover input {
    border-color: var(--copper-primary);
}

.btn-submit-modal {
    background: var(--copper-primary);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 16px;
    border: none;
    border-radius: var(--radius-card);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 10px;
}

.btn-submit-modal:hover {
    background: white;
    color: black;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 85, 34, 0.25);
}

/* Success State in Modal */
.modal-success-state {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.modal-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid #2ecc71;
    color: #2ecc71;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    animation: successScale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successScale {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 580px) {
    .modal-content {
        padding: 40px 25px;
    }
}

/* ==========================================================================
   Team Section & Interactivity
   ========================================================================== */

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.team-card {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    background: rgba(10, 10, 10, 0.3);
    border: 1px solid var(--border-glass);
    aspect-ratio: 2 / 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 85, 34, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 85, 34, 0.12);
}

.team-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.team-card:hover .team-card-img {
    transform: scale(1.04);
}

.team-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 85, 34, 0.15) 0%, rgba(5, 5, 5, 0.95) 100%),
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
    border: 1px solid rgba(255, 85, 34, 0.15);
    z-index: 1;
    overflow: hidden;
}

.team-card-placeholder span {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, var(--copper-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-mono);
    opacity: 0.85;
    letter-spacing: -0.05em;
    filter: drop-shadow(0 0 20px rgba(255, 85, 34, 0.3));
    transition: all 0.5s var(--ease-cinematic);
}

.team-card:hover .team-card-placeholder span {
    opacity: 1;
    transform: scale(1.08);
    filter: drop-shadow(0 0 30px rgba(255, 85, 34, 0.6));
}

/* Card vignette overlay */
.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.team-card-info {
    position: relative;
    z-index: 3;
    padding: 24px;
}

.team-card-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
}

.team-card-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
}

.view-bio-btn {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--copper-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    transition: color 0.3s;
}

.team-card:hover .view-bio-btn {
    color: white;
}

/* Team Modal Specifics */
.team-modal-content {
    max-width: 900px;
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 500px;
    background: rgba(10, 10, 10, 0.92) !important;
    border: 1px solid var(--border-glass) !important;
}

.team-modal-photo-container {
    width: 40%;
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 100%;
    border-right: 1px solid var(--border-glass);
}

.team-modal-placeholder {
    display: none;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(255, 85, 34, 0.2) 0%, rgba(5, 5, 5, 0.98) 100%),
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 24px 24px, 24px 24px;
}

.team-modal-placeholder span {
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 30%, var(--copper-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-mono);
    opacity: 0.9;
    filter: drop-shadow(0 0 35px rgba(255, 85, 34, 0.45));
}

.team-modal-text-container {
    width: 60%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 600px;
    overflow-y: auto;
}

.team-modal-text-container h3 {
    font-size: 2.2rem;
    margin: 0 0 20px 0;
    font-weight: 700;
    color: white;
    letter-spacing: -0.02em;
}

.team-modal-text-container p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }
    
    .team-modal-content {
        flex-direction: column !important;
        min-height: auto;
        max-height: 85vh;
    }
    
    .team-modal-photo-container {
        width: 100% !important;
        height: 250px !important;
        border-right: none;
        border-bottom: 1px solid var(--border-glass);
    }
    
    .team-modal-text-container {
        width: 100% !important;
        padding: 30px !important;
        max-height: none;
    }
    
    .team-modal-text-container h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
}

/* ESG Initiatives List */
.esg-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.esg-list-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.esg-list-item .checkmark {
    color: var(--copper-primary);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1;
}

/* Coreshack Grid & Cards (Standard Grid) */
.coreshack-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    align-items: start;
}

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

@media (min-width: 1024px) {
    .coreshack-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.coreshack-card {
    position: relative;
    width: 100%;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s var(--ease-cinematic);
}

.coreshack-card:hover {
    transform: scale(1.03) translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.coreshack-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s var(--ease-cinematic);
}

.coreshack-card:hover img {
    transform: scale(1.06);
}

/* Project Maps Bento Grid & Cards (Masonry Columns Layout) */
.maps-grid {
    column-count: 1;
    column-gap: 24px;
    width: 100%;
}

@media (min-width: 768px) {
    .maps-grid {
        column-count: 2;
    }
}

@media (min-width: 1024px) {
    .maps-grid {
        column-count: 3;
    }
}

.map-card {
    position: relative;
    width: 100%;
    height: auto;
    display: inline-block;
    margin-bottom: 24px;
    break-inside: avoid;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.5s var(--ease-cinematic);
}

.map-card:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.map-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s var(--ease-cinematic);
}

.map-card:hover img {
    transform: scale(1.04);
}

/* Overlays & Titles for Bento / Grid Cards */
.map-card-overlay, .coreshack-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 100%);
    opacity: 0.85;
    transition: opacity 0.4s var(--ease-cinematic);
    display: flex;
    align-items: end;
    padding: 20px;
    pointer-events: none;
}

.map-card:hover .map-card-overlay, .coreshack-card:hover .coreshack-card-overlay {
    opacity: 0.95;
}

.map-card-title, .coreshack-card-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0;
    transition: transform 0.4s var(--ease-cinematic);
}

.map-card:hover .map-card-title, .coreshack-card:hover .coreshack-card-title {
    transform: translateY(-2px);
}

/* Gallery Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.filter-pill {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.4s var(--ease-cinematic);
    outline: none;
}

.filter-pill:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.filter-pill.active {
    color: #ffffff;
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    box-shadow: 0 0 15px var(--copper-glow);
}

/* Gallery Photo Grid & Cards */
.photos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
    align-items: start;
    transition: all 0.5s var(--ease-cinematic);
}

@media (min-width: 640px) {
    .photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .photos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photos-grid .photo-card {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background: rgba(10, 10, 10, 0.45);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.5s var(--ease-cinematic);
}

.photos-grid .photo-card.hidden {
    display: none;
}

.photos-grid .photo-card.fade-out {
    opacity: 0;
    transform: scale(0.9);
}

.photos-grid .photo-card.fade-in {
    animation: fadeInUp 0.5s var(--ease-cinematic) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.photos-grid .photo-card:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.photos-grid .photo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-cinematic);
}

.photos-grid .photo-card:hover img {
    transform: scale(1.06);
}

.photos-grid .photo-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.photos-grid .photo-card:hover .photo-card-overlay {
    opacity: 1;
}

.photos-grid .photo-card-caption {
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

/* Load More Button style */
.load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-card);
    cursor: pointer;
    transition: all 0.3s var(--ease-cinematic);
}

.btn-load-more:hover {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    box-shadow: 0 0 20px var(--copper-glow);
    transform: translateY(-2px);
}

.btn-load-more:active {
    transform: translateY(0);
}

/* TAILWIND UTILITY COMPATIBILITY LAYER */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-col { flex-direction: column; }
.w-3\.5 { width: 14px; }
.h-3\.5 { height: 14px; }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-white { color: #ffffff; }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-copper-500 { color: var(--copper-primary); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }

.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }

.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-5 { margin-bottom: 20px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-12 { margin-top: 48px; }
.ml-1 { margin-left: 4px; }

.p-4 { padding: 16px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }
.px-3 { padding-left: 12px; padding-right: 12px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.py-1 { padding-top: 4px; padding-bottom: 4px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-16 { padding-top: 48px; padding-bottom: 48px; }
.pt-0 { padding-top: 0; }
.pt-5 { padding-top: 20px; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.h-10 { height: 40px; }
.h-12 { height: 48px; }
.h-16 { height: 64px; }
.h-2 { height: 8px; }
.h-8 { height: 32px; }
.w-10 { width: 40px; }
.w-12 { width: 48px; }
.w-16 { width: 64px; }
.w-2 { width: 8px; }
.w-8 { width: 32px; }

.relative { position: relative; }
.absolute { position: absolute; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.scroll-mt-28 { scroll-margin-top: 130px; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.object-cover { object-fit: cover; }
.cursor-pointer { cursor: pointer; }
.rounded-full { border-radius: 9999px; }

/* Colors */
.bg-giant-slate {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
}
.bg-giant-slate\/50 {
    background: rgba(10, 10, 10, 0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
}
.bg-giant-gray {
    background: rgba(20, 20, 20, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
}
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-copper-500 { background-color: var(--copper-primary); }
.bg-copper-500\/20 { background-color: rgba(255, 0, 44, 0.2); }
.bg-blue-500\/20 { background-color: rgba(59, 130, 246, 0.2); }
.bg-green-500\/20 { background-color: rgba(34, 197, 94, 0.2); }

.border-b { border-bottom: 1px solid var(--border-glass); }
.border-t { border-top: 1px solid var(--border-glass); }
.border-white\/10 { border-color: var(--border-glass); }
.border-white\/5 { border-color: var(--border-subtle); }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-copper-500 { border-color: var(--copper-primary); }

.text-white { color: #ffffff; }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/60 { color: var(--text-secondary); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/40 { color: var(--text-tertiary); }
.text-copper-500 { color: var(--copper-primary); }
.text-copper-500\/70 { color: rgba(255, 0, 44, 0.7); }
.text-copper-500\/60 { color: rgba(255, 0, 44, 0.6); }
.text-blue-400 { color: #60a5fa; }
.text-green-400 { color: #4ade80; }

/* Font size */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.leading-relaxed { line-height: 1.625; }

/* Transitions & Hovers */
.transition-all { transition: all 0.3s var(--ease-cinematic); }
.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-transform { transition: transform 0.3s var(--ease-cinematic); }
.duration-500 { transition-duration: 500ms; }
.group { position: relative; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:scale-\[1\.03\] { transform: scale(1.03); }
.group:hover .group-hover\:bg-black\/30 { background-color: rgba(0, 0, 0, 0.3); }
.opacity-0 { opacity: 0; }

@media (min-width: 640px) {
    .sm\:px-6 { padding-left: 24px; padding-right: 24px; }
}

/* Media Queries for Grids and Layouts */
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:p-8 { padding: 32px; }
    .md\:py-24 { padding-top: 72px; padding-bottom: 72px; }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:px-8 { padding-left: 32px; padding-right: 32px; }
}

.max-w-md {
    max-width: 28rem;
}
.max-w-lg {
    max-width: 32rem;
}
.max-w-xl {
    max-width: 36rem;
}
.max-w-2xl {
    max-width: 42rem;
}
.max-w-3xl {
    max-width: 48rem;
}
.max-w-4xl {
    max-width: 56rem;
}
.max-w-5xl {
    max-width: 64rem;
}
.max-w-6xl {
    max-width: 72rem;
}
.max-w-7xl {
    max-width: 80rem;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.z-10 { z-index: 10; }
.animate-spin {
    animation: spin-anim 1s linear infinite;
}
@keyframes spin-anim {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Lightbox & Video Modal Styles */
#gallery-video-modal .video-modal-content {
    position: relative;
    max-width: 900px;
    width: 90%;
    aspect-ratio: 16/9;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#gallery-video-modal.active .video-modal-content {
    transform: scale(1);
}

#gallery-lightbox-modal .lightbox-content {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid var(--copper-primary);
    border-radius: var(--radius-card);
    padding: 30px 20px 20px 20px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 100px rgba(255, 85, 34, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#gallery-lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-img {
    max-height: 70vh;
    max-width: 100%;
    object-fit: contain;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.lightbox-caption {
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
    letter-spacing: -0.01em;
}

.lightbox-nav-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
    width: 100%;
}

.lightbox-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    transform: scale(1.05);
}

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

@media (min-width: 768px) {
    .lightbox-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin-top: -20px; /* Offset for caption */
    }
    
    .lightbox-prev {
        left: -64px;
    }
    
    .lightbox-next {
        right: -64px;
    }
    
    .lightbox-nav-container {
        position: static;
        margin-top: 0;
    }
}

/* Gallery Video Grid & Cards */
.videos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    margin-top: 24px;
    align-items: start;
    transition: all 0.5s var(--ease-cinematic);
}

@media (min-width: 640px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    position: relative;
    width: 100%;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.5s var(--ease-cinematic);
}

.video-card.hidden {
    display: none;
}

.video-card.fade-out {
    opacity: 0;
    transform: scale(0.9);
}

.video-card.fade-in {
    animation: fadeInUp 0.5s var(--ease-cinematic) forwards;
}

.video-card:hover {
    transform: scale(1.02) translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.video-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.5s var(--ease-cinematic);
}

.video-card:hover img {
    transform: scale(1.06);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 100%);
    opacity: 0.85;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-card:hover .video-card-overlay {
    opacity: 0.95;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.video-card .play-btn {
    width: 56px;
    height: 56px;
    background: var(--copper-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px var(--copper-glow);
    transition: transform 0.3s var(--ease-cinematic), background 0.3s ease;
}

.video-card:hover .play-btn {
    transform: scale(1.15);
    background: #ff2a44; /* Slightly brighter red/copper on hover */
}

.video-card-caption {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    max-width: 90%;
}

/* Capital Structure Grid Layout */
.cap-structure-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
}

@media (min-width: 768px) {
    .cap-structure-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* Interactive Donut Chart Styling */
.donut-chart {
    display: block;
    max-width: 100%;
}

.donut-segment {
    fill: none;
    transition: stroke-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.3s ease, filter 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    cursor: pointer;
}

.donut-segment:hover {
    stroke-width: 30px;
    filter: drop-shadow(0 0 12px var(--copper-glow));
}

.donut-chart:hover .donut-segment:not(:hover) {
    opacity: 0.4;
}

.legend-row {
    transition: all 0.3s ease;
    border-radius: var(--radius-card);
    border: 1px solid transparent;
}

.legend-row:hover, .legend-row.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Corporate Calendar Pagination Styles */
#events-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.page-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.page-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
}

.page-btn:active:not(:disabled) {
    transform: translateY(0);
}

.page-btn.active {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    color: white;
    box-shadow: 0 0 15px var(--copper-glow);
}

.page-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.page-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ESG & Community Grid Layout for The Copper Giant Way */
.esg-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

.esg-card {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    border-radius: var(--radius-card);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.esg-card:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(20, 20, 20, 0.6);
    border-color: rgba(255, 68, 68, 0.35);
    box-shadow: 0 15px 35px rgba(255, 68, 68, 0.1), inset 0 0 0 1px rgba(255, 68, 68, 0.2);
}

.esg-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 68, 68, 0.12); /* Red tinted icon background */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.esg-icon-box svg {
    transition: stroke 0.3s ease, transform 0.3s ease;
}

.esg-card:hover .esg-icon-box {
    background: var(--copper-primary);
    transform: scale(1.08);
}

.esg-card:hover .esg-icon-box svg {
    stroke: #ffffff;
}

.esg-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.esg-card-title {
    font-family: 'Figtree', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.esg-card-desc {
    font-family: 'Inter', sans-serif;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   APPLE-STYLE REDESIGN COMPONENTS FOR MOCOA PAGE
   ========================================================================== */

/* Bento Metric Grid & Card Styles */
.bento-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 3rem;
}

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

@media (max-width: 640px) {
    .bento-metric-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.bento-metric-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-cinematic);
    border-radius: var(--radius-card);
}

.bento-metric-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 44, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 0, 44, 0.1);
    background: rgba(25, 25, 25, 0.6);
}

.bento-metric-card .metric-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 44, 0.08);
    border: 1px solid rgba(255, 0, 44, 0.2);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--copper-primary);
    transition: all 0.3s ease;
}

.bento-metric-card:hover .metric-icon {
    background: var(--copper-primary);
    color: #ffffff;
    box-shadow: 0 0 12px var(--copper-glow);
}

.bento-metric-card .metric-value {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bento-metric-card .metric-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Accordion Details & Summary Styles */
.resource-notes-accordion {
    background: rgba(20, 20, 20, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    transition: all 0.4s var(--ease-cinematic);
}

.resource-notes-accordion[open] .accordion-arrow {
    transform: rotate(180deg);
}

.resource-notes-accordion summary::-webkit-details-marker {
    display: none;
}

.resource-notes-accordion summary {
    outline: none;
}

.resource-notes-accordion:hover {
    background: rgba(25, 25, 25, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Methodology Grid & Cards */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.methodology-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s var(--ease-cinematic);
    border-radius: var(--radius-card);
}

.methodology-card:hover {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(25, 25, 25, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.methodology-card .card-icon-wrapper {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-card);
    color: var(--copper-primary);
    transition: all 0.3s ease;
}

.methodology-card:hover .card-icon-wrapper {
    background: var(--copper-primary);
    color: white;
    border-color: var(--copper-primary);
    box-shadow: 0 0 15px var(--copper-glow);
}

/* Geology Tab Switcher Content styling */
.geology-tab-content {
    transition: opacity 0.4s ease;
}

/* Mailchimp form validation custom styles */
.indicates-required {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-align: right;
    margin-top: -10px;
    margin-bottom: 5px;
}
.asterisk {
    color: var(--copper-primary);
}
div.mce_inline_error {
    background: rgba(255, 85, 34, 0.1) !important;
    border: 1px solid var(--copper-primary) !important;
    color: #ff8866 !important;
    font-size: 0.75rem !important;
    font-weight: 500 !important;
    margin: 6px 0 0 0 !important;
    padding: 8px 12px !important;
    border-radius: var(--radius-card) !important;
}
input.mce_inline_error {
    border-color: var(--copper-primary) !important;
}
div.response {
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 12px;
    margin: 15px 0 0 0;
    border-radius: var(--radius-card);
    display: none;
}
#mce-success-response {
    color: #2ece71 !important;
    background: rgba(46, 204, 113, 0.1) !important;
    border: 1px solid rgba(46, 204, 113, 0.3) !important;
}
#mce-error-response {
    color: var(--copper-primary) !important;
    background: rgba(255, 85, 34, 0.1) !important;
    border: 1px solid var(--copper-primary) !important;
}

/* Custom compact overrides for updates modal to avoid screen overflow */
#updates-modal .modal-content {
    padding: 24px 30px;
    max-width: 440px;
    border-bottom: 2px solid var(--copper-primary);
}
#updates-modal .modal-header {
    margin-bottom: 16px;
}
#updates-modal .modal-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}
#updates-modal .modal-header p {
    font-size: 0.82rem;
    line-height: 1.4;
}
#updates-modal .modal-form {
    gap: 10px;
}
#updates-modal .input-group {
    gap: 4px;
}
#updates-modal .input-group label {
    font-size: 0.7rem;
}
#updates-modal .input-field {
    padding: 10px 14px;
    font-size: 0.88rem;
    border-radius: 6px;
}
#updates-modal .checkbox-group {
    gap: 8px;
    margin: 6px 0;
}
#updates-modal .checkbox-label {
    font-size: 0.8rem;
    gap: 8px;
}
#updates-modal .checkbox-label input {
    width: 15px;
    height: 15px;
}
#updates-modal .checkbox-label input:checked::after {
    font-size: 0.65rem;
}
#updates-modal .btn-submit-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 0.85rem;
    margin-top: 4px;
    border-radius: 6px;
}
#updates-modal .btn-submit-modal svg {
    transition: transform 0.3s ease;
}
#updates-modal .btn-submit-modal:hover svg {
    transform: translate(3px, -3px);
}
#updates-modal .indicates-required {
    font-size: 0.68rem;
    margin-top: -6px;
    margin-bottom: 2px;
}
#updates-modal div.mce_inline_error {
    font-size: 0.7rem !important;
    padding: 6px 10px !important;
    margin-top: 4px !important;
}

@media (max-width: 480px) {
    #updates-modal .modal-content {
        padding: 20px 20px;
        width: 92%;
    }
    #updates-modal .form-row {
        flex-direction: column;
        gap: 10px !important;
    }
}

/* ==========================================================================
   INVESTORS PAGE Overhaul & Refinement Styles
   ========================================================================== */

/* Hero Section Refinements */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 10;
    pointer-events: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* Metrics Bento Grid */
.metrics-banner-refined {
    background: #030303;
    border-bottom: 1px solid var(--border-glass);
    padding: 60px 0;
}

.metrics-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .metrics-bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.metric-bento-card {
    background: rgba(15, 15, 15, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    padding: 30px 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 20px;
}

.metric-bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 85, 34, 0.3);
    background: rgba(20, 20, 20, 0.6);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 85, 34, 0.05);
}

.metric-bento-icon {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(255, 85, 34, 0.1);
    border: 1px solid rgba(255, 85, 34, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.metric-bento-card:hover .metric-bento-icon {
    background: var(--copper-primary);
    color: white;
    box-shadow: 0 0 15px var(--copper-glow);
}

.metric-bento-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.metric-bento-val {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.metric-bento-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

/* Strategy/Exploration Cards */
.strategy-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .strategy-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .strategy-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.strategy-bento-card {
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    padding: 28px 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.strategy-bento-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 85, 34, 0.25);
    background: rgba(18, 18, 18, 0.55);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.strategy-card-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper-primary);
    transition: all 0.3s ease;
}

.strategy-bento-card:hover .strategy-card-icon-box {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    color: white;
    box-shadow: 0 0 12px var(--copper-glow);
}

/* Live Ticker Stock Cards */
.stock-ticker-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .stock-ticker-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.text-decoration-none,
.text-decoration-none * {
    text-decoration: none !important;
    text-decoration-line: none !important;
}

.stock-ticker-card {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    padding: 35px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
}

.stock-ticker-card * {
    text-decoration: none !important;
    text-decoration-line: none !important;
}

.stock-ticker-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 85, 34, 0.3);
    background: rgba(20, 20, 20, 0.55);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 85, 34, 0.08);
}

.stock-ticker-card svg.lucide-trending-up {
    transition: transform 0.3s ease;
}

.stock-ticker-card:hover svg.lucide-trending-up {
    transform: scale(1.15) translate(2px, -2px);
}

.stock-pulse-container {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stock-pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #2ece71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ece71;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(46, 204, 113, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.stock-pulse-lbl {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2ece71;
}

/* Donut Chart Dashboard refinements */
.donut-segment {
    transition: stroke-width 0.3s ease, stroke 0.3s ease;
    cursor: pointer;
}

.donut-segment.focused {
    stroke-width: 32px;
}

.legend-row {
    transition: all 0.3s ease;
}

.legend-row:hover, .legend-row.active {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 85, 34, 0.25) !important;
    transform: translateX(4px);
    box-shadow: inset 3px 0 0 var(--copper-primary);
}

/* Animated Progress Bars */
.shareholder-bar-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    margin-top: 6px;
}

.shareholder-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255,85,34,0.7), var(--copper-primary));
    box-shadow: 0 0 8px rgba(255,85,34,0.3);
    width: 0; /* Animated via JS on load */
    transition: width 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

/* event-card overrides removed — handled by main timeline styles */

.event-type-pill {
    background: rgba(255, 85, 34, 0.1);
    color: var(--copper-primary);
    border: 1px solid rgba(255, 85, 34, 0.2);
    padding: 4px 10px;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-family: var(--font-mono);
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 8px;
}

/* Premium Download Cards */
.doc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.doc-card-refined {
    background: rgba(12, 12, 12, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-card);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.doc-card-refined * {
    text-decoration: none !important;
    text-decoration-line: none !important;
}

.doc-card-refined:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 85, 34, 0.3);
    background: rgba(20, 20, 20, 0.55);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.doc-info-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.doc-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--copper-primary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.doc-card-refined:hover .doc-icon-wrap {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    color: white;
    box-shadow: 0 0 12px var(--copper-glow);
}

.doc-details h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    transition: color 0.3s ease;
}

.doc-card-refined:hover .doc-details h4 {
    color: var(--copper-primary);
}

.doc-details p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin: 4px 0 0 0;
}

.doc-size-badge {
    display: inline-block;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: var(--text-tertiary);
    font-size: 0.65rem;
    font-family: var(--font-mono);
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 6px;
}

.doc-action-arrow {
    color: var(--text-tertiary);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.doc-card-refined:hover .doc-action-arrow {
    color: var(--copper-primary);
    transform: translateY(3px);
}

/* --- Corporate Presentation PDF Modal --- */
.modal-content-pdf {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid var(--copper-primary);
    border-radius: var(--radius-card);
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 100px rgba(255, 85, 34, 0.15);
}

.modal-overlay.active .modal-content-pdf {
    transform: scale(1) translateY(0);
}

.modal-close-pdf {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1010;
    transition: all 0.3s ease;
}

.modal-close-pdf:hover {
    background: white;
    color: black;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .modal-close-pdf {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
}

/* Instagram Pop-up Feed Grid */
.insta-post-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.insta-post-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.insta-post-card:hover img {
    transform: scale(1.06);
}
.insta-post-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    text-align: center;
}
.insta-post-card:hover .insta-post-overlay {
    opacity: 1;
}
.insta-post-desc {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.insta-post-stats {
    display: flex;
    gap: 16px;
    color: var(--copper-primary);
    font-size: 0.85rem;
    font-family: var(--font-mono);
    font-weight: 600;
}

/* Playlist Sidebar and Items */
.playlist-sidebar::-webkit-scrollbar {
    width: 6px;
}
.playlist-sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.playlist-sidebar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}
.playlist-sidebar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}
.playlist-item {
    transition: all 0.2s ease;
}
.playlist-item:hover {
    background: rgba(255, 255, 255, 0.04) !important;
}
.playlist-item.active {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--copper-primary) !important;
}

/* ---------------------------------------------------------
   News Room (Blog Integration) Styles
   --------------------------------------------------------- */
.year-filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 24px;
    font-size: 0.8rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.year-filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.15);
}

.year-filter-btn.active {
    background: var(--copper-primary);
    border-color: var(--copper-primary);
    color: white;
}

.news-grid-two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .news-grid-two-col {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.news-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--copper-primary);
    padding: 36px;
    border-radius: var(--radius-card);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 85, 34, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.news-card:hover::before {
    opacity: 1;
}

.news-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-family: var(--font-sans);
    margin-bottom: 16px;
}

.news-card-date svg {
    color: var(--copper-primary);
    opacity: 0.8;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.news-card-title a {
    color: white;
    text-decoration: none;
    transition: color 0.25s ease;
}

.news-card-title a:hover {
    color: var(--copper-primary);
}

.news-card-summary {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 28px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-links {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.news-read-more {
    color: var(--copper-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.news-read-more:hover {
    gap: 12px;
    color: white;
}

.news-source-link {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.news-source-link:hover {
    color: var(--copper-primary);
}

/* Fix header overlapping and ticker-bar overflow on mobile/tablet viewports */
@media (max-width: 992px) {
    .ticker-bar {
        justify-content: flex-start !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding: 0 16px !important;
    }
    .ticker-bar::-webkit-scrollbar {
        display: none !important;
    }
    .ticker-stocks {
        display: flex !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        gap: 32px !important;
    }
    .ticker-stocks span {
        flex-shrink: 0 !important;
    }

    /* Prevent hero container from shrinking to unusable heights on narrow screens */
    .hero-video-section:not(#overview) .hero-video-wrapper {
        aspect-ratio: auto !important;
        height: 380px !important;
    }
    .hero-video-section#overview .hero-video-wrapper {
        aspect-ratio: auto !important;
        height: 220px !important;
    }
    
    /* Ensure hero content starts below the fixed navigation and ticker bar (96px height) */
    .hero-video-overlay {
        padding-top: 110px !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }
    
    /* Adjust text alignments for readability */
    .hero-text-container {
        padding-top: 0 !important;
        text-align: left !important;
        align-items: flex-start !important;
    }
}


