/* ==========================================================
   About Page — CrankUp
   Full-bleed editorial layout. No container grids for team/values.
   Sections: Hero → Story Scroll → Stats → Team → Values → Location → CTA
   ========================================================== */

/* ── Hero ──────────────────────────────────────────────── */
.abt-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg);
    overflow: hidden;
    padding: 140px 24px 80px;
}

.abt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.abt-hero::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.abt-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 960px;
}

.abt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--border-hi);
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.abt-hero-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.abt-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.abt-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.abt-scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both;
}

.abt-scroll-hint .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--border-hi);
    border-radius: 12px;
    position: relative;
}

.abt-scroll-hint .wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: abt-wheel 1.6s ease-in-out infinite;
}

.abt-scroll-hint span {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-faint);
}

@keyframes abt-wheel {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(6px); }
}

/* ── Story Scroll (word-by-word highlight) ──────────────── */
#abt-story-scroll {
    position: relative;
    height: 300vh;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.abt-story-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.abt-story-inner {
    max-width: 800px;
    width: 100%;
    position: relative;
}

.abt-story-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

.abt-story-text {
    font-family: var(--font-body);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.8;
    color: var(--text-faint);
    margin-bottom: 24px;
}

.abt-story-text:last-child {
    margin-bottom: 0;
}

.abt-story-text .pw {
    transition: color 0.25s ease;
    color: var(--text-faint);
}

.abt-story-text .pw.lit {
    color: var(--text-primary);
}

.abt-story-punchline {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-faint);
    margin-top: 8px;
    margin-bottom: 0;
}

.abt-story-punchline .pw {
    transition: color 0.25s ease;
    color: var(--text-faint);
}

.abt-story-punchline .pw.lit {
    color: var(--gold);
}

/* Progress bar */
.abt-story-progress {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 120px;
    background: var(--border);
    border-radius: 1px;
}

.abt-story-progress-fill {
    width: 100%;
    height: 0%;
    background: var(--gold);
    border-radius: 1px;
    transition: height 0.15s ease;
}

/* ── Stats Strip ───────────────────────────────────────── */
.abt-stats {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.abt-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 100%;
}

.abt-stat {
    padding: 48px 24px;
    text-align: center;
    border-right: 1px solid var(--border);
}

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

.abt-stat-num {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.abt-stat-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-faint);
}

/* ── Team — Full-bleed editorial bands ─────────────────── */
.abt-team {
    padding: 120px 0 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.abt-team-header {
    text-align: center;
    padding: 0 24px 64px;
}

.abt-team-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.abt-team-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

/* Each team member = full-width band */
.abt-member {
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}

.abt-member:last-child {
    border-bottom: 1px solid var(--border);
}

.abt-member:hover {
    background: var(--surface);
}

.abt-member::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-member:hover::after {
    transform: scaleX(1);
}

.abt-member-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
}

.abt-member-num {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 0.85;
    letter-spacing: -0.04em;
    color: var(--border-hi);
    transition: color 0.4s ease;
}

.abt-member:hover .abt-member-num {
    color: var(--gold);
}

.abt-member-role {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 12px;
}

.abt-member-right h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.1;
}

.abt-member-right p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 600px;
}

/* ── Values — Full-width stacked principles ────────────── */
.abt-values {
    padding: 120px 0 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.abt-values-header {
    text-align: center;
    padding: 0 24px 64px;
}

.abt-values-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.abt-values-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.abt-values-header p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-muted);
}

/* Each principle = full-width band */
.abt-principle {
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.abt-principle:last-child {
    border-bottom: 1px solid var(--border);
}

.abt-principle:hover {
    background: var(--surface);
}

.abt-principle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-principle:hover::after {
    transform: scaleX(1);
}

.abt-principle-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 44px 48px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 40px;
    align-items: start;
}

.abt-principle-num {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.03em;
}

.abt-principle-right h3 {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.abt-principle-right p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 600px;
}

/* ── Location ──────────────────────────────────────────── */
.abt-location {
    padding: 120px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.abt-location-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 24px;
}

.abt-location-icon {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 24px;
}

.abt-location h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.abt-location-sub {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.abt-location p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-muted);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
    .abt-story-progress {
        display: none;
    }

    .abt-member-inner {
        padding: 48px 32px;
        gap: 40px;
    }

    .abt-principle-inner {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .abt-hero {
        min-height: auto;
        padding: 140px 20px 80px;
    }

    /* Story scroll — collapse to static on mobile */
    #abt-story-scroll {
        height: auto;
        padding: 80px 0;
    }

    .abt-story-sticky {
        position: relative;
        height: auto;
        padding: 0 20px;
    }

    .abt-story-text,
    .abt-story-punchline {
        color: var(--text-muted);
    }

    .abt-story-punchline {
        color: var(--gold);
    }

    .abt-story-text .pw,
    .abt-story-punchline .pw {
        color: inherit;
    }

    .abt-story-progress {
        display: none;
    }

    /* Stats */
    .abt-stats-grid {
        grid-template-columns: 1fr;
    }

    .abt-stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 32px 20px;
    }

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

    /* Team — stack to vertical */
    .abt-team {
        padding: 80px 0 0;
    }

    .abt-member-inner {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 24px;
    }

    .abt-member-left {
        display: flex;
        align-items: baseline;
        gap: 16px;
    }

    .abt-member-num {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .abt-member-role {
        margin-top: 0;
    }

    /* Values — stack */
    .abt-values {
        padding: 80px 0 0;
    }

    .abt-principle-inner {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 36px 24px;
    }

    /* Location */
    .abt-location {
        padding: 80px 0;
    }
}

/* ── Reduced Motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    #abt-story-scroll {
        height: auto;
        padding: 80px 0;
    }

    .abt-story-sticky {
        position: relative;
        height: auto;
    }

    .abt-story-text,
    .abt-story-punchline {
        color: var(--text-muted);
    }

    .abt-story-punchline {
        color: var(--gold);
    }

    .abt-story-text .pw,
    .abt-story-punchline .pw {
        color: inherit;
        transition: none;
    }

    .abt-story-progress {
        display: none;
    }

    .abt-scroll-hint {
        display: none;
    }

    .abt-member-num,
    .abt-member,
    .abt-principle {
        transition: none;
    }

    .abt-member::after,
    .abt-principle::after {
        transition: none;
    }
}
