*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    color: #2c2c2c;
    background: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.scroll-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: #1a1a1a;
    z-index: 9999;
}

nav,
p,
a,
h1,
h2
h3 {
    font-family: 'Jost', sans-serif;
}


/* ── NAV ── */

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #ece9e4;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

nav.visible {
    transform: translateY(0);
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: #2c2c2c;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-decoration: none;
}

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


/* ── STATS ── */

.stats {
    height: 100vh;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
}

.stat {
    padding: 44px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat:last-child { border-right: none; }

.stat-num {
    font-size: 52px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-lbl {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
}


/* ── GET TO KNOW ── */

.get-to-know {
    padding: 44px 28px;
    background: #f6f3ef;
}

.get-to-know .section-label { margin-bottom: 16px; }

.get-to-know p {
    font-size: 13px;
    color: #555;
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 22px;
}

.btn-dark {
    display: inline-block;
    padding: 14px 32px;
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-dark:hover {
    background: #ffffff;
    color: #1a1a1a;
    border-color: #1a1a1a;
}

.section-label {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    font-weight: 400;
}


/* ════════════════════════════════
   TABLET — 1024px
   ════════════════════════════════ */

@media (max-width: 1024px) {

    nav { padding: 22px 32px; }

    .stats {
        height: auto;
        min-height: 30vh;
    }

    .stat { padding: 40px 16px; }

    .stat-num { font-size: 46px; }
}


/* ════════════════════════════════
   LARGE PHONES — 768px
   ════════════════════════════════ */

@media (max-width: 768px) {

    nav { padding: 18px 24px; }

    .nav-links { gap: 18px; }

    .stats {
        height: auto;
        grid-template-columns: 1fr;
    }

    .stat {
        padding: 32px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stat:last-child { border-bottom: none; }

    .stat-num { font-size: 40px; }

    .get-to-know { padding: 36px 24px; }

    .btn-dark {
        width: 100%;
        text-align: center;
        padding: 13px 20px;
    }
}


/* ════════════════════════════════
   IPHONES — 430px
   ════════════════════════════════ */

@media (max-width: 430px) {

    nav { padding: 16px 20px; }

    .nav-links { gap: 14px; }

    .nav-links a { font-size: 13px; }

    .stat { padding: 28px 16px; }

    .stat-num { font-size: 36px; }

    .stat-lbl { font-size: 9px; }

    .get-to-know { padding: 30px 20px; }

    .get-to-know p { font-size: 13px; }
}



/* === SCROLL REVEAL ANIMATION === */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.show {
        opacity: 1;
        transform: none;
        transition: none;
    }
}