/* ===================================
   METALLUM VENTURES - MAIN STYLES
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

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

/* ===================================
   SPLASH SCREEN
   =================================== */

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    transition: opacity 1.5s ease-out;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.splash-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.splash-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover;
    object-position: center;
    will-change: transform;
    min-width: 100vw;
    min-height: 100vh;
}

.splash-logo {
    position: relative;
    z-index: 2;
    max-width: 300px;
    width: 40%;
    height: auto;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.8;
    z-index: 2;
    animation: fadeInOut 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 10px auto 0;
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: rotate(45deg);
        margin-top: 10px;
    }
    50% {
        transform: rotate(45deg);
        margin-top: 18px;
    }
}

/* ===================================
   NAVIGATION
   =================================== */

.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000 !important;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.navbar.visible {
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d5f5c;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #0d5f5c;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0d5f5c;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #0d5f5c;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    min-height: 100vh;
    /* Mountain background with teal overlay for continuity from splash */
    background:
        linear-gradient(
            to bottom,
            rgba(13, 95, 92, 0.6) 0%,
            rgba(13, 95, 92, 0.85) 50%,
            rgba(26, 138, 133, 0.9) 100%
        ),
        url('../images/1DF6E04C-B6A8-41E1-AA1B-760564AFEA01.png') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 5%;
    position: relative;
    background-attachment: fixed; /* Subtle parallax on desktop */
}

.hero-content {
    max-width: 900px;
    margin-top: 60px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #0d5f5c;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===================================
   SECTIONS
   =================================== */

.section {
    padding: 8rem 5%;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #0d5f5c;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 800px;
}

/* ===================================
   OUR PLAN SECTION
   =================================== */

.our-plan-section {
    background: #ffffff;
    text-align: center;
}

.plan-subtitle {
    font-size: 1.3rem;
    color: #0d5f5c;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 500;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.pillar-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: left;
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-header {
    background: #0d5f5c;
    color: white;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pillar-content {
    background: #f8fafa;
    padding: 2.5rem;
    min-height: 200px;
}

.pillar-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.pillar-content p:last-child {
    margin-bottom: 0;
}

.pillar-content strong {
    color: #1a1a1a;
    font-weight: 700;
}

.plan-tagline {
    font-size: 1.1rem;
    color: #0d5f5c;
    font-style: italic;
    line-height: 1.7;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===================================
   THESIS / WHERE WE PLAY SECTION
   =================================== */

.thesis-section {
    background: #f8fafa;
}

.thesis-subtitle {
    font-size: 1.3rem;
    color: #0d5f5c;
    font-weight: 600;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.thesis-boxes {
    max-width: 1000px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.thesis-box {
    background: white;
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.thesis-box h3 {
    color: #0d5f5c;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thesis-box p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.thesis-box em {
    font-style: italic;
}

.thesis-box strong {
    color: #1a1a1a;
    font-weight: 700;
    font-style: italic;
}

.thesis-tagline {
    font-size: 1.1rem;
    color: #0d5f5c;
    font-style: italic;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* ===================================
   MARKET MAP SECTION
   =================================== */

.market-map-section {
    background: #ffffff;
}

.market-subtitle {
    font-size: 1.2rem;
    color: #0d5f5c;
    font-weight: 600;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.map-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
    align-items: start;
}

.map-container {
    width: 100%;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.map-legend {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legend-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legend-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-circle.blue {
    background: #6BA4D4;
}

.legend-circle.teal {
    background: #0d5f5c;
}

.legend-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

.legend-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.legend-list li {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.legend-list li:last-child {
    margin-bottom: 0;
}

.legend-list li.indent {
    padding-left: 1.5rem;
}

.legend-list strong {
    color: #1a1a1a;
    font-weight: 700;
}

.market-tagline {
    font-size: 1.2rem;
    color: #0d5f5c;
    font-style: italic;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 1rem;
    padding: 0 2rem;
    text-align: center;
    font-weight: 500;
}

.source-citation {
    font-size: 0.85rem;
    color: #999;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* ===================================
   SOURCING ENGINE & EDGE SECTION
   =================================== */

.sourcing-section {
    background: #f8fafa;
}

.sourcing-subtitle {
    font-size: 1.2rem;
    color: #0d5f5c;
    font-weight: 600;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.sourcing-grid {
    max-width: 1100px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sourcing-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

.sourcing-label {
    background: #0d5f5c;
    color: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
}

.sourcing-label h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.sourcing-description {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
}

.sourcing-description p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.sourcing-tagline {
    font-size: 1.1rem;
    color: #0d5f5c;
    font-style: italic;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    font-weight: 500;
}

/* ===================================
   WHY FOUNDERS CHOOSE METALLUM SECTION
   =================================== */

.founders-section {
    background: #ffffff;
}

.founders-subtitle {
    font-size: 1.2rem;
    color: #0d5f5c;
    font-weight: 600;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.founder-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pillar-number {
    width: 40px;
    height: 40px;
    background: #0d5f5c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: -20px;
    position: relative;
    z-index: 2;
}

.pillar-header-founders {
    background: #0d5f5c;
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.pillar-box-founders {
    background: white;
    border: 2px dashed #ccc;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 2rem;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.pillar-box-founders p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.pillar-box-founders strong {
    color: #1a1a1a;
    font-weight: 700;
}

.founders-tagline {
    font-size: 1.1rem;
    color: #0d5f5c;
    font-style: italic;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    font-weight: 500;
}

/* ===================================
   REPRESENTATIVE TRACK RECORD SECTION
   =================================== */

.track-record-section {
    background: #f8fafa;
}

.track-subtitle {
    font-size: 1.2rem;
    color: #0d5f5c;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.track-subtitle strong {
    font-weight: 700;
}

.table-container {
    max-width: 1400px;
    margin: 0 auto 3rem;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.portfolio-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 0.95rem;
}

.portfolio-table thead {
    background: #0d5f5c;
    color: white;
}

.portfolio-table th {
    padding: 1rem 0.75rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.portfolio-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.portfolio-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.portfolio-table tbody tr:hover {
    background: #f0f8f8;
}

.portfolio-table td {
    padding: 1.25rem 0.75rem;
    color: #333;
    vertical-align: middle;
}

.company-cell {
    font-weight: 600;
    color: #0d5f5c;
}

.company-logo {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
}

.currency,
.percentage,
.multiple {
    text-align: right;
    font-weight: 500;
    font-family: 'Courier New', monospace;
}

.track-tagline {
    font-size: 1.1rem;
    color: #0d5f5c;
    font-style: italic;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    font-weight: 500;
}

/* ===================================
   ABOUT / STATS SECTION
   =================================== */

.about-section {
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: #0d5f5c;
    margin-bottom: 0.5rem;
}

.stat-number::before {
    content: '$';
    font-size: 2.5rem;
    vertical-align: super;
    margin-right: 0.2rem;
}

.stat-card:nth-child(2) .stat-number::before,
.stat-card:nth-child(1) .stat-number::after,
.stat-card:nth-child(3) .stat-number::after,
.stat-card:nth-child(4) .stat-number::after {
    content: '';
}

.stat-card:nth-child(2) .stat-number::after {
    content: '~';
    font-size: 2.5rem;
    margin-right: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* ===================================
   SECTORS SECTION
   =================================== */

.sectors-section {
    background: linear-gradient(135deg, #f8fafa, #ffffff);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.sector-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(13, 95, 92, 0.15);
}

.sector-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.sector-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0d5f5c;
}

.sector-card p {
    color: #666;
    line-height: 1.7;
}

/* ===================================
   MISSION SECTION
   =================================== */

.mission-section {
    background: #0d5f5c;
    color: white;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-section .section-title {
    color: white;
}

.mission-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* ===================================
   TEAM SECTION
   =================================== */

.team-section {
    background: #f8fafa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(13, 95, 92, 0.15);
}

.team-photo {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #0d5f5c, #1a8a85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.team-photo .initials {
    font-size: 4rem;
    font-weight: 700;
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #0d5f5c;
}

.team-info .role {
    color: #888;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */

.portfolio-section {
    background: white;
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-item {
    padding: 2rem;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item h4 {
    font-size: 1.5rem;
    color: #0d5f5c;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.portfolio-item p {
    color: #666;
    font-size: 1rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    background: #f8fafa;
    text-align: center;
}

.contact-container {
    max-width: 800px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 5%;
    text-align: center;
}

.footer p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

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

    .sourcing-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sourcing-label {
        min-height: auto;
        padding: 1.5rem;
    }

    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        /* Disable parallax on mobile for performance */
        background-attachment: scroll;
        padding: 0 5%;
        min-height: 100vh;
        width: 100%;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
        width: 100%;
    }

    .hero p {
        font-size: 1.1rem;
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 5rem 5%;
        width: 100%;
    }

    .stats-grid,
    .sectors-grid,
    .team-grid,
    .portfolio-grid,
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .plan-subtitle {
        font-size: 1.1rem;
    }

    .pillar-content {
        padding: 2rem;
        min-height: auto;
    }

    .plan-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .thesis-subtitle {
        font-size: 1.1rem;
    }

    .thesis-box {
        padding: 1.5rem;
    }

    .thesis-box h3 {
        font-size: 1.1rem;
    }

    .thesis-box p {
        font-size: 1rem;
    }

    .thesis-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .market-subtitle {
        font-size: 1.1rem;
    }

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

    .legend-circle {
        width: 30px;
        height: 30px;
    }

    .legend-item h4 {
        font-size: 1rem;
    }

    .legend-list li {
        font-size: 0.95rem;
    }

    .market-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .sourcing-subtitle {
        font-size: 1.1rem;
    }

    .sourcing-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .sourcing-label {
        min-height: auto;
        padding: 1.5rem 1rem;
    }

    .sourcing-label h3 {
        font-size: 1rem;
    }

    .sourcing-description {
        padding: 1.5rem;
    }

    .sourcing-description p {
        font-size: 0.95rem;
    }

    .sourcing-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .founders-subtitle {
        font-size: 1.1rem;
    }

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

    .pillar-number {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
        margin-bottom: -17px;
    }

    .pillar-header-founders {
        font-size: 1rem;
        padding: 1.25rem 1rem;
    }

    .pillar-box-founders {
        padding: 1.5rem;
        min-height: auto;
    }

    .pillar-box-founders p {
        font-size: 0.95rem;
    }

    .founders-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .track-subtitle {
        font-size: 1.1rem;
    }

    .table-container {
        border-radius: 8px;
        margin-left: -5%;
        margin-right: -5%;
        width: calc(100% + 10%);
    }

    .portfolio-table {
        font-size: 0.85rem;
    }

    .portfolio-table th {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    .portfolio-table td {
        padding: 1rem 0.5rem;
        font-size: 0.85rem;
    }

    .track-tagline {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .splash-logo {
        width: 60%;
        max-width: 200px;
    }

    .splash-screen {
        width: 100vw !important;
        height: 100vh !important;
        overflow: hidden;
        left: 0 !important;
        top: 0 !important;
    }

    .splash-background {
        width: 100vw !important;
        height: 100vh !important;
        min-width: 100vw !important;
        min-height: 100vh !important;
        object-fit: cover;
        left: 0 !important;
        top: 0 !important;
    }

    body {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    html {
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 479px) {
    .hero h1 {
        font-size: 2rem;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .sector-card,
    .team-card {
        padding: 2rem;
    }

    .container {
        width: 100%;
        padding: 0 5%;
    }
}
