/* Zero Hour Group - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent accidental horizontal scroll on all devices */
html {
    overflow-x: hidden;
}

:root {
    --primary-dark: #000000;
    --secondary-dark: #111111;
    --accent-navy: #111111;
    --text-light: #ffffff;
    --text-muted: #c0c0c0;
    --accent-orange: #f07020;
    --accent-blue: #f07020;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
nav {
    background-color: var(--primary-dark);
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    overflow: visible;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

nav.nav--scrolled {
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

nav.nav--hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 0.15em;
    color: var(--text-light);
    text-decoration: none;
    display: inline-block;
    line-height: 0;
}

.nav-logo {
    height: 98px;
    width: auto;
    display: block;
    transform: translate(-16px, 4px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-orange);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-dark);
    min-width: 220px;
    border-radius: 0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    padding: 0;
    z-index: 1001;
    border-top: 1px solid #222;
}

/* Desktop only: show dropdown on hover */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

.dropdown-content a {
    display: block;
    padding: 0.85rem 1.25rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    border-bottom: 1px solid #1e1e1e;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    color: var(--accent-orange);
}

.dropdown-content p {
    padding: 0.75rem 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Mega dropdown (Companies Covered) */
.mega-menu {
    display: grid;
    grid-template-columns: 1fr 2fr;
    position: fixed;
    top: var(--nav-height, 114px);
    left: 0;
    width: 100%;
    background: #000;
    border-top: 1px solid #1c1c1c;
    padding: 3.5rem 5%;
    gap: 5rem;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

@media (min-width: 769px) {
    .mega-dropdown.mega-open .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.mega-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1.5rem;
}

.mega-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 340px;
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 3rem;
}

.mega-list li {
    break-inside: avoid;
}

.mega-list li a {
    display: block;
    padding: 0.45rem 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.mega-list li a::before {
    content: '+ ';
    color: rgba(255, 255, 255, 0.3);
    margin-right: 0.2rem;
}

.mega-list li a:hover {
    color: var(--accent-orange);
}

.mega-list li a:hover::before {
    color: var(--accent-orange);
}

@media (max-width: 768px) {
    .mega-menu {
        display: none !important;
    }
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
}

.hero-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 2rem;
}

.logo-placeholder {
    width: 300px;
    height: 300px;
    margin: 0 auto 2rem;
    background-color: var(--secondary-dark);
    border: 2px dashed var(--accent-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hero .tagline {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero .supporting-text {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #c86a2e;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

/* Main Content */
main {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Bio Page Styles */
.bio-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--accent-navy);
}

.bio-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.bio-header .role {
    font-size: 1.25rem;
    color: var(--accent-orange);
}

.bio-header .location {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.bio-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.bio-content p {
    margin-bottom: 1.5rem;
}

.bio-placeholder {
    background-color: var(--secondary-dark);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-orange);
    color: var(--text-muted);
    font-style: italic;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: var(--accent-blue);
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

/* Services Page Styles */
.services-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.services-list li {
    margin-bottom: 0.5rem;
}

.cta-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: var(--secondary-dark);
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--accent-orange);
}

.cta-box p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Team Page Styles */
.team-page {
    max-width: 1000px;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-member {
    background-color: var(--secondary-dark);
    padding: 2rem;
    border-radius: 8px;
    border-top: 3px solid var(--accent-orange);
}

.member-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.bio-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-orange);
    display: block;
    margin: 0 auto 1rem;
}

.member-photo {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.photo-placeholder {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background-color: var(--accent-navy);
    border-radius: 50%;
    border: 2px dashed var(--text-muted);
}

.member-info {
    flex: 1;
}

.team-member h2 {
    margin-bottom: 0.25rem;
}

.team-member h2 a {
    color: var(--accent-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-member h2 a:hover {
    color: #f0a060;
}

.team-member .role {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.team-member .bio {
    color: var(--text-muted);
    line-height: 1.7;
}

.team-member .bio a,
.bio-content a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-member .bio a:hover,
.bio-content a:hover {
    color: var(--accent-orange);
}

.team-member .placeholder-text {
    font-style: italic;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-dark);
    color: var(--text-muted);
    margin-top: auto;
}

footer a {
    color: var(--accent-orange);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.social-icons a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--accent-orange);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-logo {
        height: 54px;
        transform: translate(4px, 2px);
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--secondary-dark);
        padding: 1rem;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 1rem;
        display: none;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .logo-placeholder,
    .hero-logo {
        width: 200px;
        height: 200px;
        max-width: 200px;
    }
}


/* ============================================================
   HOMEPAGE STYLES
   Scoped to body.homepage — does not affect other pages
   ============================================================ */

body.homepage {
    background: #000;
}

/* Ensure content inside sections sits above any overlays */
.stats-container,
.hp-hero-glow,
.hp-hero-content,
.hero-video,
.section-inner,
.mission-overlay,
.mission-video,
.mission-inner,
.footer-inner,
.footer-bottom {
    position: relative;
    z-index: 1;
}

/* ---- Eyebrow Labels ---- */
.eyebrow {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.eyebrow::before {
    content: '• ';
    color: var(--accent-orange);
}

/* ---- Display Headlines ---- */
.display-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 11vw, 10rem);
    line-height: 0.92;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

/* ---- Scroll Fade-In ---- */
.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Nav (Homepage Override) ---- */
.homepage nav {
    position: fixed;
    width: 100%;
    background: var(--primary-dark);
    border-bottom: 1px solid #1a1a1a;
    box-shadow: none;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.35s ease;
}

.homepage nav.nav--scrolled {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
}

.homepage .nav-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    padding: 1.75rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    min-width: 140px;
}

.stat-number-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: #ffffff;
}

.stat-suffix {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--accent-orange);
}

.stat-label {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c0c0c0;
}

/* ---- Hero ---- */
.hp-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    padding: 5rem clamp(2rem, 8vw, 8rem) 5rem;
    background: #000;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
}

.hp-hero-glow {
    position: absolute;
    top: 20%;
    left: -5%;
    transform: none;
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse at center, rgba(224, 122, 58, 0.09) 0%, transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.hp-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1 1 auto;
    display: flex;
    align-items: stretch;
    gap: clamp(3rem, 6vw, 6rem);
}

.hp-hero-main {
    flex: 0 1 auto;
    min-width: 0;
    align-self: flex-end;
}

/* ---- Hero Mission Panel (top right, right-anchored) ---- */
.hp-hero-mission {
    flex: 1 1 380px;
    max-width: 470px;
    align-self: flex-start;
    margin-top: 4rem;
    margin-left: auto;
    position: relative;
    text-align: right;
    padding-right: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: 0.4rem;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hp-hero-mission::before {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    width: 1px;
    height: 90px;
    background: var(--accent-orange);
}

.hp-mission-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.3rem, 3.4vw, 3.4rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.hp-hero-mission p {
    font-size: 0.84rem;
    line-height: 1.75;
    color: #b5b5b5;
    margin-bottom: 1rem;
}

.hp-hero-mission p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .hp-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }

    .hp-hero-mission {
        max-width: 560px;
        flex: 0 0 auto;
        align-self: flex-start;
        margin-top: 0;
        margin-left: 0;
        text-align: left;
        padding-right: 0;
        padding-left: clamp(1.5rem, 3vw, 2.5rem);
        border-right: none;
        border-left: 1px solid rgba(255, 255, 255, 0.14);
    }

    .hp-hero-mission::before {
        right: auto;
        left: -1px;
    }
}

.hp-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 16vw, 14rem);
    letter-spacing: 0.02em;
    line-height: 0.85;
    margin-bottom: 2rem;
}

.title-outline {
    display: block;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.85);
    color: transparent;
}

.title-solid {
    display: block;
    color: #ffffff;
}

.hp-hero-tagline {
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    color: var(--accent-orange);
    max-width: 480px;
    margin: 0 0 2.5rem;
    line-height: 1.8;
}

.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
    animation: arrowBounce 2s ease-in-out infinite;
}

.scroll-arrow:hover {
    color: var(--accent-orange);
    text-decoration: none;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(7px); }
}

/* ---- Marquee ---- */
.marquee-section {
    overflow: hidden;
    background: #000;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 1.1rem 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee 40s linear infinite;
}

.marquee-track span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    letter-spacing: 0.12em;
    color: #2a2a2a;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ---- Section Layout ---- */
.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

/* ---- Mission Block ---- */
.mission-block {
    background: #000;
    position: relative;
    overflow: hidden;
}

.mission-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.38;
    filter: grayscale(40%);
}

.mission-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
    z-index: 1;
    pointer-events: none;
}

.mission-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 7rem 2rem;
    position: relative;
    z-index: 2;
}

.mission-body {
    max-width: 600px;
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.85;
}

/* ---- Feature Grid ---- */
.services-section {
    background: #000;
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
}

.feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 0.9rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #1e1e1e;
}

.feature-card p {
    color: #aaa;
    font-size: 0.93rem;
    line-height: 1.8;
}

/* ---- Clickable content-pillar cards (route to their page) ---- */
a.feature-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease;
}

a.feature-card:hover {
    transform: translateY(-4px);
}

a.feature-card:hover .feature-title {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.feature-cta {
    display: inline-block;
    margin-top: 1.1rem;
    color: var(--accent-orange);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

/* ---- Short section intro line + centered section link ---- */
.section-intro {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 560px;
    margin-top: 1.5rem;
}

.section-link-row {
    text-align: center;
    margin-top: 3rem;
}

.team-preview-section .section-link-row {
    text-align: left;
}

/* ---- Follow / closing CTA band ---- */
.cta-band {
    background: #000;
    border-top: 1px solid #141414;
    text-align: center;
    padding: clamp(3.5rem, 7vw, 6rem) 2rem;
}

.cta-band .display-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
}

.cta-band p {
    color: #aaa;
    max-width: 520px;
    margin: 0 auto 2.25rem;
    line-height: 1.8;
}

.cta-band .btn-group {
    justify-content: center;
}

/* ---- About: credibility stats strip ---- */
.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 6vw, 4.5rem);
    margin-bottom: 4.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid #1a1a1a;
}

/* ---- Team Preview ---- */
.team-preview-section {
    background: #000;
    position: relative;
    overflow: hidden;
}

.team-preview-grid {
    display: flex;
    gap: 5rem;
    justify-content: center;
    margin-top: 3.5rem;
    flex-wrap: wrap;
}

.team-preview-card {
    text-align: center;
    max-width: 240px;
}

.team-preview-photo-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    border: 2px solid rgba(224, 122, 58, 0.25);
    box-shadow: 0 0 35px rgba(224, 122, 58, 0.07);
}

.team-preview-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-preview-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: #ffffff;
    margin-bottom: 0.35rem;
}

.team-preview-role {
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c0c0c0;
    margin-bottom: 1rem;
}

.bio-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.bio-link:hover {
    opacity: 0.65;
    text-decoration: none;
}

/* ---- Merch Section ---- */
.merch-section {
    background: #000;
    border-top: 1px solid #161616;
    position: relative;
    overflow: hidden;
}

.merch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.merch-card {
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    overflow: hidden;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.merch-card:hover {
    border-color: rgba(224, 122, 58, 0.35);
}

.merch-card--featured {
    border-top: 2px solid var(--accent-orange);
}

.merch-img-wrap {
    background: #f2f2f2;
    overflow: hidden;
}

.merch-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.merch-card:hover .merch-img {
    transform: scale(1.04);
}

.merch-card-body {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid #1a1a1a;
}

.merch-badge {
    font-size: 0.55rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-orange);
    display: block;
    margin-bottom: 0.5rem;
}

.merch-badge::before {
    content: '• ';
}

.merch-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 0.4rem;
    line-height: 1.1;
}

.merch-price {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #aaa;
    display: block;
    margin-bottom: 1.25rem;
}

.merch-btn {
    align-self: flex-start;
    font-size: 0.75rem;
    padding: 0.65rem 1.5rem;
    letter-spacing: 0.08em;
    margin-top: auto;
}

/* ---- Footer (Homepage) ---- */
.hp-footer {
    background: #000;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-social-row {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-social-row a {
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-social-row a:hover {
    color: var(--accent-orange);
}

.footer-emblem img {
    height: 80px;
    width: auto;
    opacity: 0.6;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 3rem;
    border-bottom: 1px solid #161616;
}

.footer-brand .footer-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #999;
}

.footer-cols {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 1.25rem;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-social {
    justify-content: flex-start !important;
    gap: 1rem !important;
}

.footer-social a {
    display: inline !important;
    font-size: 1.15rem !important;
    margin-bottom: 0 !important;
}

.footer-bottom {
    padding: 1.5rem 0;
    color: #2e2e2e;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

/* ---- Homepage Mobile ---- */
@media (max-width: 768px) {
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
        max-width: 360px;
        margin: 0 auto;
    }

    .stat-number,
    .stat-suffix {
        font-size: 2.75rem;
    }

    /* Scale display headlines with viewport instead of hitting a hard 3.5rem floor */
    .display-headline {
        font-size: clamp(2.4rem, 11vw, 10rem);
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .team-preview-grid {
        gap: 3rem;
    }

    .merch-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-cols {
        gap: 2rem;
    }

    .mission-inner,
    .section-inner {
        padding: 3.5rem 1.25rem;
    }

    .hp-hero {
        padding: 5rem 1.25rem 3.5rem;
        justify-content: flex-end;
    }

    .hp-hero-title {
        font-size: clamp(3.5rem, 17vw, 7rem);
    }

    .title-outline {
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.85);
    }

    /* Prevent the decorative glow div from adding overflow */
    .hp-hero-glow {
        width: min(800px, 100vw);
        height: min(800px, 100vw);
    }

    /* Hero CTA buttons: full-width stacked on mobile */
    .hp-hero .btn-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        max-width: 320px;
    }

    .hp-hero .btn {
        text-align: center;
    }


}


/* ============================================================
   INNER PAGE STYLES
   Shared across team, bio, and services pages
   ============================================================ */

/* ---- Page Hero (inner pages) ---- */
.page-hero {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    padding: 9rem 2rem 4rem;
}

.page-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* ---- Page Hero — video background variant ---- */
.page-hero--video {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: none;
    background: #000;
}

.page-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.35;
}

.page-hero--video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.page-hero--video .page-hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 9rem;
    padding-bottom: 5rem;
}

.page-hero .eyebrow {
    margin-bottom: 0.75rem;
}

.page-hero .eyebrow::before {
    content: none;
}

.page-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.9;
    color: #ffffff;
    letter-spacing: 0.04em;
}

/* ---- Inner Page Content Wrapper ---- */
.inner-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* ---- Bio Page Layout ---- */
.bio-page-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 5rem;
    align-items: start;
}

.bio-aside-new {
    position: sticky;
    top: 6rem;
}

.bio-aside-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(224, 122, 58, 0.3);
    box-shadow: 0 0 40px rgba(224, 122, 58, 0.08);
    display: block;
    margin-bottom: 1.5rem;
}

.bio-aside-photo-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #161616;
    border: 2px solid rgba(224, 122, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bio-aside-photo-placeholder span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.1em;
    color: #888;
}

.bio-aside-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.12em;
    color: #ffffff;
    display: block;
    margin-bottom: 0.3rem;
}

.bio-aside-role {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 0.25rem;
}

.bio-aside-location {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 1.5rem;
}

.back-link-new {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.back-link-new:hover {
    color: var(--accent-orange);
}

.bio-text {
    color: #bbb;
    font-size: 1.05rem;
    line-height: 1.9;
}

.bio-text p {
    margin-bottom: 1.5rem;
}

.bio-text a {
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.bio-text a:hover {
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

/* ---- Team Page ---- */
.team-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3.5rem;
}

.team-card-new {
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-top: 2px solid var(--accent-orange);
    padding: 2.5rem;
}

.team-card-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(224, 122, 58, 0.25);
    display: block;
    margin-bottom: 1.25rem;
}

.team-card-photo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #161616;
    border: 2px solid rgba(224, 122, 58, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.team-card-photo-placeholder span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #888;
}

.team-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.team-card-name:hover {
    color: var(--accent-orange);
}

.team-card-role {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 1.25rem;
    display: block;
}

.team-card-bio {
    color: #aaa;
    font-size: 0.92rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-card-bio a {
    color: #c0c0c0;
    text-decoration: none;
    border-bottom: 1px solid #333;
    transition: color 0.2s ease;
}

.team-card-bio a:hover {
    color: var(--accent-orange);
}

/* ---- Services Page ---- */
.services-intro {
    max-width: 640px;
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 4rem;
}

.services-list-new {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
}

.services-list-new li {
    padding: 0.6rem 0;
    color: #bbb;
    border-bottom: 1px solid #161616;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.services-list-new li::before {
    content: '— ';
    color: var(--accent-orange);
}

.services-block {
    margin-bottom: 4rem;
}

.services-block-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
    color: #ffffff;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #1a1a1a;
}

.services-block p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.85;
    max-width: 640px;
}

.services-cta {
    margin-top: 4rem;
    padding: 3rem;
    border: 1px solid #1a1a1a;
    border-left: 3px solid var(--accent-orange);
    background: #0d0d0d;
}

.services-cta p {
    color: #bbb;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* ---- Inner Page Footer (reuses hp-footer markup/styles) ---- */
/* hp-footer CSS already defined above — no duplication needed */

/* ---- Inner Page Mobile ---- */
@media (max-width: 768px) {
    .bio-page-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .bio-aside-new {
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .page-hero {
        padding: 7rem 1.25rem 2.5rem;
    }

    .page-hero-title {
        font-size: clamp(2.8rem, 10vw, 8rem);
    }

    .inner-content {
        padding: 2.5rem 1.25rem;
    }

    .services-cta {
        padding: 2rem 1.25rem;
    }
}


/* ============================================================
   NEW CONTENT SECTIONS — added session 4
   ============================================================ */

/* ---- Hero Sub-Tagline ("By retail investors...") ---- */
.hp-hero-sub {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 2rem;
    font-weight: 400;
}

/* ---- Featured Interview (Homepage) ---- */
.featured-interview {
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Left-align the "Latest Coverage" header block with the video below it,
   instead of the centered max-width default — matches the Our Focus heading */
.featured-interview > .section-inner {
    max-width: none;
    margin: 0;
    padding-left: 5%;
}

.featured-interview-grid {
    display: grid;
    grid-template-columns: 1fr 1.22fr;
    gap: 0;
    min-height: 520px;
    padding-left: 5%;
}

.featured-interview-visual {
    position: relative;
    overflow: hidden;
    background: #000;
}

.featured-interview-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    display: block;
}

.featured-interview-thumb-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    background: #0d0d0d;
    border-right: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.featured-interview-thumb-placeholder i {
    font-size: 3rem;
    color: #1e1e1e;
}

.featured-interview-thumb-placeholder span {
    font-size: 0.58rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #252525;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: background 0.3s ease;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.1);
}

.play-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.play-overlay:hover .play-btn {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    transform: scale(1.06);
}

.featured-interview-content {
    padding: 4rem 4rem 4rem 3.125vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #000;
}

/* Refined, larger eyebrow for the featured block (scoped — global eyebrow unchanged) */
.featured-interview .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.32em;
    margin-bottom: 1.75rem;
}

.featured-interview-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5.6vw, 5.5rem);
    letter-spacing: 0.04em;
    line-height: 0.86;
    color: #fff;
    margin-bottom: 1.75rem;
}

.featured-interview-subject {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
    margin: 0 0 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: block;
}

.featured-interview-desc {
    font-size: clamp(1.02rem, 1.05vw, 1.18rem);
    color: rgba(255, 255, 255, 0.64);
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 2.75rem;
}

.featured-interview .btn {
    padding: 1.05rem 2.6rem;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ---- Our Focus Carousel ---- */
.our-focus {
    background: #000;
    color: #fff;
    padding: clamp(3rem, 6vw, 7rem) 0 clamp(2.5rem, 5vw, 6rem);
    overflow: hidden;
    position: relative;
}

.our-focus-head {
    margin: 0 3.125vw 4.4vw;
    position: relative;
    z-index: 1;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8vw;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
}

.our-focus-row {
    display: flex;
    gap: 3.5vw;
    padding: 0 0 0 3.125vw;
    scroll-padding-left: 3.125vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    position: relative;
    z-index: 1;
}

.our-focus-row.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

.our-focus-row::-webkit-scrollbar { display: none; }

.our-focus-card {
    flex: 0 0 auto;
    display: flex;
    gap: 3.125vw;
    scroll-snap-align: start;
}

.our-focus-card img {
    width: 44.6vw;
    aspect-ratio: 1.45 / 1;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.our-focus-text {
    width: 19.3vw;
    padding-top: 8.4vw;
}

.our-focus-card h3 {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5vw;
    font-weight: 400;
    line-height: 1.08;
    text-transform: uppercase;
    color: #fff;
}

.our-focus-card p {
    margin: 1.35vw 0 0;
    font-size: 1.125vw;
    line-height: 1.33;
    color: rgba(255, 255, 255, 0.55);
}

.our-focus-dots {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40vw;
    margin: 5.5vw auto 0;
}

.our-focus-dots::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.our-focus-dot {
    position: relative;
    width: 7px;
    height: 7px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.our-focus-dot.active {
    background: var(--accent-orange);
    transform: scale(1.45);
}

@media (max-width: 1099px) {
    .our-focus-head {
        font-size: 13.3vw;
        white-space: normal;
        margin: 0 5.2vw 7.3vw;
    }
    .our-focus-row {
        gap: 5.2vw;
        padding: 0 0 0 5.2vw;
        scroll-padding-left: 5.2vw;
    }
    .our-focus-card {
        flex: 0 0 78vw;
        display: block;
    }
    .our-focus-card img {
        width: 100%;
        aspect-ratio: 1.44 / 1;
        margin-bottom: 24px;
    }
    .our-focus-text {
        width: auto;
        padding-top: 0;
    }
    .our-focus-card h3 {
        font-size: clamp(22px, 3.33vw, 40px);
        text-transform: none;
    }
    .our-focus-card p {
        margin-top: 16px;
        font-size: 15px;
        max-width: 36ch;
    }
    .our-focus-dots {
        width: 70vw;
    }
}

/* ---- Current Focus (Homepage) ---- */
.current-focus {
    background: #000;
    position: relative;
    overflow: hidden;
}


.focus-inner {
    position: relative;
    z-index: 1;
}

.focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3.5rem;
}

.focus-body {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.9;
    margin-bottom: 2rem;
    max-width: 480px;
}

.focus-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.focus-stat {
    border-left: 2px solid var(--accent-orange);
    padding-left: 1rem;
}

.focus-stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.focus-stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #aaa;
    line-height: 1.4;
}

.focus-disclaimer {
    font-size: 0.68rem;
    color: #2e2e2e;
    line-height: 1.6;
    border-top: 1px solid #161616;
    padding-top: 1.25rem;
    margin-top: 2rem;
    grid-column: 1 / -1;
}

/* ---- Content Card Grid (interviews, earnings, livestreams) ---- */
.content-page-section {
    background: #000;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.content-card {
    background: #0d0d0d;
    border: 1px solid #1a1a1a;
    overflow: hidden;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.content-card:hover {
    border-color: rgba(224, 122, 58, 0.3);
}

.content-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
    position: relative;
    display: block;
}

.content-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.content-card-thumb.video-embed {
    position: relative;
    padding-top: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.content-card-thumb.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.content-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 180px;
}

.content-card-img-placeholder i {
    font-size: 2rem;
    color: #1e1e1e;
}

.content-card-img-placeholder span {
    font-size: 0.56rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #222;
}

.content-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content-card-tag {
    font-size: 0.58rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-orange);
    margin-bottom: 0.6rem;
    display: block;
}

.content-card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: #fff;
    margin-bottom: 0.4rem;
    line-height: 1.05;
}

.content-card-meta {
    font-size: 0.68rem;
    color: #aaa;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.content-card-desc {
    font-size: 0.88rem;
    color: #c0c0c0;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex: 1;
}

.content-card-link {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-orange);
    text-decoration: none;
    transition: opacity 0.2s ease;
    align-self: flex-start;
}

.content-card-link:hover {
    opacity: 0.65;
}

/* ---- Company Subtab Bar ---- */
.company-subtab-bar {
    background-color: var(--secondary-dark);
    border-bottom: 1px solid #222;
}

.company-subtabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
}

.company-subtab {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #aaa;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: color 0.2s, border-color 0.2s;
}

.company-subtab:hover {
    color: #fff;
}

.company-subtab.active {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
}

/* ---- Company Portfolio Grid ---- */
.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.company-card {
    background: transparent;
    border: 1px solid #1a1a1a;
    padding: 2rem;
    transition: border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.company-card:hover {
    border-color: rgba(224, 122, 58, 0.3);
}

.company-card-header,
.company-overview-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.company-overview {
    max-width: 720px;
    margin-bottom: 2rem;
}

.company-logo-placeholder {
    width: 120px;
    height: 120px;
    min-width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-logo-placeholder i {
    font-size: 1.1rem;
    color: #2a2a2a;
}

.company-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-ticker {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 0.15rem;
    display: block;
}

.company-name-full {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c0c0c0;
}

.company-sector-tag {
    display: inline-block;
    font-size: 0.56rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    border: 1px solid #1e1e1e;
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.9rem;
}

.company-desc {
    font-size: 0.88rem;
    color: #c0c0c0;
    line-height: 1.78;
    margin-bottom: 1.25rem;
    flex: 1;
}

.company-links {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.company-link {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-orange);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.company-link:hover {
    opacity: 0.65;
}

.company-link-coming {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #666;
}

.company-placeholder-card {
    border-style: dashed;
    border-color: #161616;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    flex-direction: column;
    gap: 0.75rem;
}

.company-placeholder-card i {
    font-size: 1.5rem;
    color: #1e1e1e;
}

.company-placeholder-card span {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #252525;
}

/* ---- Contact Page ---- */
.contact-section {
    background: #000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-label {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-info-value {
    font-size: 0.92rem;
    color: #aaa;
    line-height: 1.6;
}

.contact-info-value a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-value a:hover {
    color: #fff;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
}

.contact-social a {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.contact-social a:hover {
    color: var(--accent-orange);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #aaa;
}

.form-input,
.form-textarea {
    background: #0d0d0d;
    border: 1px solid #1e1e1e;
    color: #fff;
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    -webkit-appearance: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(224, 122, 58, 0.4);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-note {
    font-size: 0.7rem;
    color: #888;
    line-height: 1.5;
}

/* ---- About Page ---- */
.about-mission-text {
    font-size: 1.05rem;
    color: #aaa;
    line-height: 1.95;
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.about-section-divider {
    border: none;
    border-top: 1px solid #161616;
    margin: 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.methodology-item {
    border-left: 2px solid #1e1e1e;
    padding-left: 1.25rem;
    padding-top: 0.25rem;
}

.methodology-item:hover {
    border-left-color: var(--accent-orange);
}

.methodology-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.methodology-item p {
    font-size: 0.88rem;
    color: #c0c0c0;
    line-height: 1.78;
}

.sectors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.sector-tag {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c0c0c0;
    border: 1px solid #1e1e1e;
    padding: 0.35rem 0.85rem;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.sector-tag:hover {
    border-color: rgba(224, 122, 58, 0.3);
    color: #bbb;
}

/* ---- Responsive: New Sections ---- */
@media (max-width: 768px) {
    .featured-interview-grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .featured-interview-content {
        padding: 2rem 1.25rem 2.5rem;
        border-left: none;
        border-top: 1px solid #151515;
    }

    .featured-interview-title {
        font-size: clamp(2rem, 8vw, 3.8rem);
    }

    .focus-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .focus-stats {
        grid-template-columns: 1fr 1fr;
    }

    .focus-body {
        max-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .company-grid {
        grid-template-columns: 1fr;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    /* Stats bar: tighter on small screens */
    .stats-bar {
        padding: 1.25rem 1rem;
    }

    /* Mission block padding */
    .mission-inner {
        padding: 4rem 1.25rem;
    }
}

/* ==================================================================
   Articles Page
   ================================================================== */

.articles-main {
    background: #000;
    max-width: none;
    margin: 0;
    padding: 0;
}

/* TWZ content column: 1536px container incl. 2rem side padding (~1472px content) */
.articles-inner {
    max-width: 1536px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

/* ---- Shared article card anatomy ---- */
.article-kicker {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1rem;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.article-byline {
    margin-top: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.article-byline strong {
    color: #ddd;
    font-weight: 600;
}

/* ---- Featured story (full-bleed hero) ---- */
.feature-story {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto 2.5rem;
    overflow: hidden;
    text-decoration: none;
}

.feature-story-img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
}

.feature-story::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0) 75%);
}

.feature-story-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1536px;
    z-index: 2;
    padding: 0 2rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.feature-story-title {
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #fff;
    width: 66%;
    margin-bottom: 0.75rem;
}

.feature-story:hover .feature-story-title {
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.feature-story-dek {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
    max-width: 640px;
    margin-bottom: 0.35rem;
}

/* ---- Flag-bar section heading ---- */
.flag-bar {
    position: relative;
    width: 100%;
    background: transparent;
    padding: 0.5rem 1rem 0.5rem 73px;
    margin-bottom: 1.5rem;
}

.flag-bar::before {
    content: '';
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
    width: 43px;
    background: url('assets/zhg_emblem.png') center / contain no-repeat;
}

.flag-bar h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #fff;
    line-height: 1.5;
}

/* ---- Latest news grid ---- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1.25rem;
    margin-bottom: 3.5rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.news-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    margin-bottom: 1rem;
}

.news-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-thumb img {
    transform: scale(1.04);
}

.news-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0.5rem;
}

.news-card:hover .news-card-title {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.news-card-dek {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b5b5b5;
    margin-bottom: 0;
}

/* ---- Horizontal article rows ---- */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-row {
    display: flex;
    gap: 1.25rem;
    text-decoration: none;
}

.news-row-thumb {
    width: 33.333%;
    min-width: 373px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 4px;
    background: #111;
    flex-shrink: 0;
}

.news-row-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-row:hover .news-row-thumb img {
    transform: scale(1.04);
}

.news-row-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-row-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 0.5rem;
}

.news-row:hover .news-row-title {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.news-row-dek {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b5b5b5;
    margin-bottom: 0;
}

/* ---- Article page (single story) ---- */
.article-main {
    background: #000;
    max-width: none;
    margin: 0;
    padding: 0;
}

.article-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 9.5rem 1.5rem 4rem;
}

.article-header {
    margin-bottom: 2.25rem;
}

.article-breadcrumb {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8a8a;
    text-decoration: none;
    margin-bottom: 1.25rem;
}

.article-breadcrumb:hover {
    color: var(--accent-orange);
}

.article-header .article-kicker {
    font-size: 0.8rem;
}

.article-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #fff;
    margin-bottom: 0.9rem;
}

.article-dek {
    font-size: 1.15rem;
    line-height: 1.55;
    color: #b5b5b5;
    margin-bottom: 1.5rem;
}

.article-header .article-byline {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #1e1e1e;
}

.article-body p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #cfcfcf;
    margin-bottom: 1.4rem;
}

.article-body h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 2.5rem 0 1rem;
}

.article-body a {
    color: var(--accent-orange);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-body a:hover {
    opacity: 0.75;
}

.article-figure {
    margin: 2rem 0;
}

.article-figure img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.article-figure figcaption {
    font-size: 0.78rem;
    color: #8a8a8a;
    margin-top: 0.6rem;
}

.article-body ul {
    margin: 0 0 1.4rem 1.25rem;
}

.article-body li {
    margin-bottom: 0.4rem;
}

.article-body li p {
    margin-bottom: 0;
}

/* Sources list (last section) renders compact */
.article-body ul:last-child {
    font-size: 0.85rem;
}

.article-body ul:last-child li p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #999;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #1e1e1e;
}

@media (max-width: 768px) {
    .article-container {
        padding: 8rem 1.25rem 3rem;
    }

    .article-title {
        font-size: 1.9rem;
    }

    .article-dek {
        font-size: 1.02rem;
    }
}

/* ---- Articles responsive ---- */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-story-title {
        font-size: 2.25rem;
        width: 85%;
    }
}

@media (max-width: 900px) {
    .news-row {
        flex-direction: column;
        gap: 1rem;
    }

    .news-row-thumb {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .feature-story-img {
        aspect-ratio: 4 / 5;
    }

    .feature-story-body {
        padding: 0 1.25rem 1.5rem;
    }

    .feature-story-title {
        font-size: 1.6rem;
        line-height: 1.2;
        width: 100%;
    }

    .feature-story-dek {
        font-size: 0.9rem;
    }

    .articles-inner {
        padding: 2rem 1.25rem 4rem;
    }

    .flag-bar h2 {
        font-size: 1.125rem;
    }
}

@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
