/* ==========================================================================
   WEEIPRESS 2.0 - COMPLETELY RETHOUGHT ONLINE STYLESHEET
   Next-Generation Phygital News, Infotainment & Advertainment Platform
   ========================================================================== */

:root {
    --bg-dark: #07090e;
    --bg-card: rgba(16, 22, 36, 0.7);
    --bg-card-hover: rgba(22, 31, 52, 0.85);
    --bg-surface: #0e1320;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-highlight: rgba(255, 38, 64, 0.35);
    
    --primary-red: #ff2640;
    --primary-red-hover: #e0162e;
    --primary-red-glow: rgba(255, 38, 64, 0.4);
    --accent-cyan: #00d2ff;
    --accent-purple: #9d4edd;
    
    --text-main: #f8fafc;
    --text-sub: #94a3b8;
    --text-muted: #64748b;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --container-max: 1240px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    color-scheme: dark;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}

/* Background Ambient Glows */
body::before {
    content: "";
    position: fixed;
    top: -200px;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 38, 64, 0.12) 0%, rgba(255, 38, 64, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    bottom: -150px;
    right: 15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.08) 0%, rgba(0, 210, 255, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

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

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

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* --------------------------------------------------------------------------
   Live Ticker Bar (Top)
   -------------------------------------------------------------------------- */
.top-ticker-bar {
    background: rgba(11, 15, 25, 0.95);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 16px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    z-index: 1050;
    position: relative;
}

.ticker-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
    white-space: nowrap;
    margin-right: 16px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-red);
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.ticker-track-wrap {
    flex-grow: 1;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-block;
    animation: tickerSlide 30s linear infinite;
    color: var(--text-sub);
}

.ticker-track span {
    margin-right: 40px;
}

.ticker-track span b {
    color: var(--text-main);
}

@keyframes tickerSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.ticker-meta .badge-live {
    background: rgba(0, 210, 255, 0.12);
    color: var(--accent-cyan);
    padding: 2px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(0, 210, 255, 0.25);
    font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Header & Glass Navbar
   -------------------------------------------------------------------------- */
.header-glass {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 9, 14, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header-glass.is-scrolled {
    background: rgba(7, 9, 14, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
    border-bottom-color: rgba(255, 38, 64, 0.2);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.02em;
}

.brand-logo img {
    height: 38px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 8px;
}

.nav-link-pill {
    padding: 8px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-sub);
    border-radius: var(--radius-pill);
    transition: var(--transition-fast);
}

.nav-link-pill:hover,
.nav-link-pill.active {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.lang-switch {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-pill);
    padding: 3px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.78rem;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn.active, .lang-btn:hover {
    color: #fff;
    background: rgba(255, 38, 64, 0.85);
}

/* Buttons */
.btn-rethought {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.btn-rethought-red {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff4b60 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-rethought-red:hover {
    box-shadow: 0 0 24px var(--primary-red-glow);
    transform: translateY(-2px);
}

.btn-rethought-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border-color: var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-rethought-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 14px 34px;
    font-size: 1.05rem;
}

/* Mobile Toggler */
.mobile-toggler {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 1.25rem;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
}

/* --------------------------------------------------------------------------
   Hero Section 2.0
   -------------------------------------------------------------------------- */
.hero-rethought {
    padding: 90px 0 70px;
    position: relative;
    text-align: center;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    background: rgba(255, 38, 64, 0.1);
    border: 1px solid rgba(255, 38, 64, 0.3);
    color: var(--primary-red);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.gradient-text-red {
    background: linear-gradient(135deg, #ffffff 0%, #ff6b7d 50%, var(--primary-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    color: var(--text-sub);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-subtitle b {
    color: var(--text-main);
}

.hero-cta-cluster {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Stat strip */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #fff 40%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Phygital Interactive Lab (Video & Synchronous CTA Console)
   -------------------------------------------------------------------------- */
.section-lab {
    padding: 70px 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.section-tag {
    color: var(--primary-red);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--text-sub);
    font-size: 1.05rem;
}

.lab-grid {
    display: grid;
    grid-template-columns: 1.7fr 1.1fr;
    gap: 24px;
    align-items: stretch;
}

.video-theater-frame {
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    position: relative;
    display: flex;
    flex-direction: column;
}

.theater-top-bar {
    background: #111520;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.82rem;
    color: var(--text-sub);
}

.stream-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--accent-cyan);
}

.stream-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

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

/* Simulated Synchronous CTA Sidecar Console */
.cta-sidecar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(16px);
}

.sidecar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.sidecar-title {
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidecar-badge {
    background: rgba(255, 38, 64, 0.15);
    color: var(--primary-red);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 38, 64, 0.3);
}

.cta-cards-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-grow: 1;
}

.cta-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: var(--transition-fast);
    position: relative;
    cursor: pointer;
}

.cta-item:hover, .cta-item.active {
    background: rgba(255, 38, 64, 0.06);
    border-color: var(--border-highlight);
    transform: translateX(4px);
}

.cta-item-time {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.cta-item-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.cta-item-desc {
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 1.4;
    margin-bottom: 8px;
}

.cta-item-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* --------------------------------------------------------------------------
   The 3 Core Pillars (Interactive Tabbed Hub)
   -------------------------------------------------------------------------- */
.section-pillars {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d121c 50%, var(--bg-dark) 100%);
}

.pillars-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pillar-tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-sub);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pillar-tab-btn.active, .pillar-tab-btn:hover {
    background: var(--primary-red);
    color: #ffffff;
    border-color: var(--primary-red);
    box-shadow: 0 4px 20px var(--primary-red-glow);
}

.pillar-tab-content {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    backdrop-filter: blur(20px);
    animation: fadeIn 0.4s ease forwards;
}

.pillar-tab-content.active {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
}

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

.pillar-content-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.pillar-content-text p {
    color: var(--text-sub);
    font-size: 1.02rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.pillar-feature-list {
    list-style: none;
    margin-bottom: 28px;
}

.pillar-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.pillar-feature-list li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(0, 210, 255, 0.15);
    color: var(--accent-cyan);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 800;
}

.pillar-content-media {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.pillar-content-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   Corporate PR Suite: PR+, CONFERENCE+, EVENTS+
   -------------------------------------------------------------------------- */
.section-corporate {
    padding: 80px 0;
}

.corporate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.corp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.corp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.corp-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-highlight);
    background: var(--bg-card-hover);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

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

.corp-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 38, 64, 0.1);
    border: 1px solid rgba(255, 38, 64, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.corp-icon-box img {
    width: 44px;
    height: 44px;
}

.corp-card-title {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.corp-card-subtitle {
    font-size: 0.88rem;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 16px;
}

.corp-card-desc {
    color: var(--text-sub);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
    flex-grow: 1;
}

.corp-card-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 18px;
}

/* --------------------------------------------------------------------------
   Phygital Network & Ecosystem (Xspots & XCircle)
   -------------------------------------------------------------------------- */
.section-ecosystem {
    padding: 70px 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ecosystem-banner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.ecosystem-badge {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--accent-cyan);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
}

.ecosystem-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.ecosystem-desc {
    color: var(--text-sub);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ecosystem-pills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.ecosystem-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
}

/* --------------------------------------------------------------------------
   Grand Call to Action
   -------------------------------------------------------------------------- */
.section-cta {
    padding: 90px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box {
    background: linear-gradient(135deg, rgba(22, 28, 44, 0.9) 0%, rgba(13, 17, 28, 0.95) 100%);
    border: 1px solid rgba(255, 38, 64, 0.3);
    border-radius: var(--radius-lg);
    padding: 60px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(255, 38, 64, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-box p {
    color: var(--text-sub);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 32px;
}

/* --------------------------------------------------------------------------
   Contact Modal / Lead Gen Drawer
   -------------------------------------------------------------------------- */
.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-modal-overlay.show {
    display: flex;
}

.contact-modal-box {
    background: #0e1320;
    border: 1px solid var(--border-highlight);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    padding: 36px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.modal-close-btn:hover {
    color: #fff;
}

.modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal-subtitle {
    color: var(--text-sub);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-sub);
    margin-bottom: 6px;
    text-transform: uppercase;
}

.form-input, .form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 10px rgba(255, 38, 64, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 90px;
}

/* --------------------------------------------------------------------------
   Footer 2.0
   -------------------------------------------------------------------------- */
.footer-rethought {
    background: #05070a;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 30px;
    font-size: 0.9rem;
    color: var(--text-sub);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand p {
    margin-top: 16px;
    line-height: 1.6;
    max-width: 320px;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-links {
    list-style: none;
}

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

.footer-links a:hover {
    color: var(--primary-red);
}

.footer-bottom-bar {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .lab-grid {
        grid-template-columns: 1fr;
    }
    
    .pillar-tab-content.active {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
    
    .corporate-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-banner {
        grid-template-columns: 1fr;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767.98px) {
    .mobile-toggler {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #090c13;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .nav-link-pill {
        width: 100%;
        text-align: left;
    }
    
    .ticker-meta {
        display: none;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
