/* ===================================
   INVESTORS PAGE - TESLA MINIMAL
   Pure typography. No images. No icons.
   Power is in spacing and structure.
   =================================== */

/* ===== BODY OVERRIDE ===== */
.investors-body {
    background: #000000;
    color: #ffffff;
}

/* ===== TOP TAG ===== */
.top-tag {
    position: fixed;
    top: 32px;
    right: 48px;
    font-size: 12px;
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
    z-index: 999;
    color: #ffffff;
}

/* ===== NAVIGATION (MINIMAL) ===== */
.investors-nav {
    background: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.investors-nav .logo a {
    color: #ffffff;
}

.investors-nav .nav-menu a {
    color: rgba(255, 255, 255, 0.7);
}

.investors-nav .nav-menu a:hover,
.investors-nav .nav-menu a.active {
    color: #ffffff;
}

/* ===== MAIN CONTAINER ===== */
.investors-main {
    margin-top: 80px;
}

/* ===== CONTAINER SYSTEM ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.container-centered {
    text-align: center;
}

/* ===== SECTIONS ===== */
.section {
    padding: 160px 0;
}

/* Hero - Extra top padding */
.section-hero {
    padding-top: 200px;
    padding-bottom: 180px;
}

/* Closing - Extra padding */
.section-closing {
    padding: 200px 0;
}

/* ===== TYPOGRAPHY ===== */

/* H1 - Hero Title */
.hero-title {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: #ffffff;
    max-width: 1000px;
}

/* H2 - Section Titles */
.section-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    max-width: 900px;
}

/* Body Large */
.body-large {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    max-width: 720px;
}

/* Body Stack (Multi-line paragraphs) */
.body-stack {
    max-width: 720px;
}

.body-stack p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px 0;
}

.body-stack p:last-child {
    margin-bottom: 0;
}

/* Micro Status */
.micro-status {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 720px;
}

/* Closing Large Text */
.closing-large {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ===== SPACING SYSTEM ===== */
.spacer-24 { height: 24px; }
.spacer-32 { height: 32px; }
.spacer-40 { height: 40px; }
.spacer-60 { height: 60px; }

/* ===== CTA BUTTONS ===== */
.cta-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-outline {
    display: inline-block;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-outline:hover {
    background: #ffffff;
    color: #000000;
}

/* ===== ANIMATIONS ===== */

/* Fade In Sequential (Hero) */
.fade-in-seq {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSeq 0.8s ease forwards;
}

.fade-in-seq[data-delay="0"] { animation-delay: 0s; }
.fade-in-seq[data-delay="1"] { animation-delay: 0.2s; }
.fade-in-seq[data-delay="2"] { animation-delay: 0.4s; }
.fade-in-seq[data-delay="3"] { animation-delay: 0.6s; }

@keyframes fadeInSeq {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade Up (Sections) */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Fade Up Slow (Closing) */
.fade-up-slow {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

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

/* ===== RESPONSIVE: TABLET (768px) ===== */
@media (max-width: 1199px) {
    .container {
        padding: 0 32px;
    }
    
    .section {
        padding: 120px 0;
    }
    
    .section-hero {
        padding-top: 160px;
        padding-bottom: 140px;
    }
    
    .section-closing {
        padding: 160px 0;
    }
    
    .hero-title {
        font-size: 54px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .body-large,
    .body-stack p {
        font-size: 19px;
    }
    
    .closing-large {
        font-size: 28px;
    }
    
    .top-tag {
        right: 32px;
    }
}

/* ===== RESPONSIVE: MOBILE (≤767px) ===== */
@media (max-width: 767px) {
    .container {
        padding: 0 24px;
    }
    
    .section {
        padding: 90px 0;
    }
    
    .section-hero {
        padding-top: 120px;
        padding-bottom: 100px;
    }
    
    .section-closing {
        padding: 120px 0;
    }
    
    .hero-title {
        font-size: 42px;
        letter-spacing: -0.005em;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .body-large,
    .body-stack p {
        font-size: 18px;
    }
    
    .closing-large {
        font-size: 24px;
    }
    
    .top-tag {
        font-size: 10px;
        top: 24px;
        right: 24px;
    }
    
    /* Stack buttons vertically */
    .cta-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .btn-outline {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }
    
    /* Reduce spacers on mobile */
    .spacer-32 { height: 24px; }
    .spacer-40 { height: 32px; }
    .spacer-60 { height: 40px; }
}

/* ===== FOOTER (MINIMAL) ===== */
.investors-footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 80px 48px;
}

.investors-footer p {
    color: rgba(255, 255, 255, 0.6);
}

.investors-footer a {
    color: rgba(255, 255, 255, 0.8);
}

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

/* ===== PRINT STYLES (OPTIONAL) ===== */
@media print {
    .top-tag,
    .investors-nav,
    .investors-footer {
        display: none;
    }
    
    .section {
        padding: 60px 0;
        page-break-inside: avoid;
    }
    
    .btn-outline {
        display: none;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .fade-in-seq,
    .fade-up,
    .fade-up-slow {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}
