/* --- RESET & BASE --- */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: #000;
}

/* --- PROGRESS BAR --- */
#progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #FFB700;
    z-index: 100;
    width: 0%;
    box-shadow: 0 0 10px #FFB700;
}

/* --- TYPOGRAPHY --- */
.story-title {
    font-family: 'Noto Serif Display', serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #FFB700; 
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    line-height: 1.2;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    font-size: 1.125rem; /* text-lg */
}

.cover-title-main {
    font-family: 'Noto Serif Display', serif;
    font-weight: 900;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0 4px 15px rgba(0,0,0,0.6), 0 0 60px rgba(0,0,0,0.8); 
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-size: 1.5rem; /* text-2xl */
    margin-bottom: 1rem;
}

.sub-connect {
    color: #ffffff;
    font-size: 1.125rem;
    font-family: 'Noto Serif Display', serif;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.1em;
    margin: 0.75rem 0;
    display: block;
    opacity: 0.9;
}

.cover-highlight-text {
    color: #FFB700; 
    font-style: italic;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9), 0 0 40px rgba(255, 183, 0, 0.3); 
    font-size: 1.875rem; /* text-3xl */
    display: block;
    margin-top: 0.5rem;
}

.story-text {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9), 0 0 30px rgba(0,0,0,0.7);
    line-height: 1.6;
    max-width: 64rem; /* max-w-5xl */
    margin: 0 auto;
}

/* --- LAYOUT --- */
.fullscreen-section {
    position: relative;
    min-height: 100vh;
    min-height: 100svh; 
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 5vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.relative-section {
    position: relative;
}

.video-bg-fullscreen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60vh; 
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 30%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.full-screen-overlay {
    position: absolute;
    inset: 0;
    height: 100vh;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 100%);
}
        
.soft-edge-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 15vh;
    background: linear-gradient(to bottom, transparent, #000);
    z-index: 2;
    pointer-events: none;
}

.content-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 60px 20px;
    text-align: center;
    opacity: 0; 
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-container.in-view {
    opacity: 1;
    transform: translateY(0);
}

.deco-line {
    width: 100px;
    height: 3px;
    background-color: #FFB700;
    margin: 1rem auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.9);
    border-radius: 2px;
}

/* --- ANIMATIONS --- */
.scroll-arrow-box {
    margin-top: 2rem;
    animation: bounce 1s infinite;
}

.scroll-arrow-box i {
    color: white;
    font-size: 1.875rem;
    filter: drop-shadow(0 10px 8px rgba(0,0,0,0.5));
}

@keyframes bounce {
    0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
    50% { transform: none; animation-timing-function: cubic-bezier(0,0,0.2,1); }
}

/* --- STATS --- */
.stat-header { margin-bottom: 3rem; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.stat-icon {
    font-size: 1.875rem; /* text-3xl */
    color: #FFB700;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 4px 3px rgba(0,0,0,0.4));
}

.stat-num-box {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
    filter: drop-shadow(0 10px 8px rgba(0,0,0,0.5));
}

.stat-label {
    font-size: 0.875rem;
    color: #e5e7eb;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    filter: drop-shadow(0 4px 3px rgba(0,0,0,0.4));
}

/* --- FOOTER --- */
.main-footer {
    background: linear-gradient(to bottom, #000, #1e3a8a);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    position: relative;
    z-index: 20;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.credit-group {
    margin-bottom: 0.75rem;
}

.footer-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(191, 219, 254, 0.6);
    margin: 0 0 2px 0;
}

.footer-name {
    font-family: 'Noto Serif Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.footer-subname {
    font-family: 'Noto Serif Display', serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

.footer-divider {
    width: 2.5rem;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.5), transparent);
    margin: 1rem 0;
}

.footer-copy {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

/* --- RESPONSIVE --- */
@media (min-width: 768px) {
    .cover-title-main { font-size: 2.25rem; } /* text-4xl */
    .sub-connect { font-size: 1.5rem; }
    .cover-highlight-text { font-size: 3rem; } /* text-5xl */
    .story-title { font-size: 1.5rem; }
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    .stat-num-box { font-size: 2.25rem; } /* text-4xl */
    .stat-label { font-size: 1rem; }
}

@media (min-width: 1024px) {
    .cover-title-main { font-size: 3rem; } /* text-5xl */
    .cover-highlight-text { font-size: 3.75rem; } /* text-6xl */
}

@media (max-width: 768px) {
    .fullscreen-section {
        background-attachment: scroll; 
    }
    .story-title {
        font-size: 1.35rem !important;
    }
    .story-text {
        font-size: 1.1rem !important;
        text-align: justify;
        text-align-last: center;
        font-weight: 600;
    }
    .cover-title-main {
        font-size: 1.5rem !important;
    }
    .bottom-gradient {
        height: 85vh;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0) 100%);
    }
}