@import url('https://api.fontshare.com/v2/css?f[]=clash-display@200,300,400,500,600,700&f[]=satoshi@300,400,500,700,900&display=swap');

/* ─── Global Reset ──────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* ─── Reveal Animation Base ─────────────────────────────────────────────────── */
.about-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s ease, transform 0.75s ease;
    transition-delay: var(--reveal-delay, 0s);
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Main wrapper ──────────────────────────────────────────────────────────── */
.about-main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ─── Section 1: Statement ──────────────────────────────────────────────────── */
.about-statement {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 6rem);
    position: relative;
}

/* Subtle horizontal rule below section */
.about-statement::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: clamp(1.5rem, 6vw, 6rem);
    right: clamp(1.5rem, 6vw, 6rem);
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

/* Scroll hint — fades in via JS, fades out on scroll */
.scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Satoshi', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    white-space: nowrap;
}

.statement-inner {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

.statement-text {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(4rem, 10vw, 9.5rem);
    font-weight: 600;
    line-height: 1.0;
    letter-spacing: -0.02em;
    color: #fff;
}

.statement-text span {
    color: #ff0000;
}

/* ─── Section 2: Context ────────────────────────────────────────────────────── */
.about-context {
    padding: clamp(7rem, 12vw, 14rem) clamp(1.5rem, 6vw, 6rem) clamp(9rem, 16vw, 18rem);
    position: relative;
}

.about-context::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: clamp(1.5rem, 6vw, 6rem);
    right: clamp(1.5rem, 6vw, 6rem);
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.context-inner {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.context-para {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-weight: 300;
    line-height: 1.85;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.65);
}

/* ─── Section 3: Philosophy ─────────────────────────────────────────────────── */
.about-philosophy {
    padding: clamp(10rem, 18vw, 22rem) clamp(1.5rem, 6vw, 6rem) clamp(10rem, 18vw, 22rem);
    position: relative;
}

.about-philosophy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: clamp(1.5rem, 6vw, 6rem);
    right: clamp(1.5rem, 6vw, 6rem);
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.philosophy-inner {
    max-width: 1100px;
}

.philosophy-line {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 5.5vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.9);
}

/* Single accent word — all other text stays white */
.philosophy-line span {
    color: #ff0000;
}

/* ─── Section 4: Closing ────────────────────────────────────────────────────── */
.about-closing {
    padding: clamp(8rem, 14vw, 16rem) clamp(1.5rem, 6vw, 6rem) clamp(6rem, 10vw, 12rem);
}

.closing-inner {
    max-width: 680px;
    /* Matches .context-inner exactly */
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    opacity: 0.35;
    /* Visually subdued — intentional, not absent */
}

.closing-line {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* ─── Active nav link ───────────────────────────────────────────────────────── */
.nav-active {
    color: rgba(255, 255, 255, 0.5) !important;
    pointer-events: none;
}

/* ─── Mobile ────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .statement-text {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .philosophy-line {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

    .context-para {
        font-size: 1rem;
    }
}