/* UnLost — about.html page styles */

/* MISSION HERO */
.about-hero {
    background: var(--navy);
    padding: 80px var(--gutter);
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: 'UnLost';
    position: absolute;
    bottom: -20px;
    right: var(--gutter);
    font-family: var(--font-display);
    font-size: clamp(100px, 18vw, 240px);
    font-weight: 900;
    font-style: italic;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    line-height: 1;
}

.about-hero__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 860px) { .about-hero__inner { grid-template-columns: 1fr; } }

.about-hero__label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--beacon);
    margin-bottom: 18px;
}

.about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 22px;
}

.about-hero__title em { color: var(--beacon); font-style: italic; }

.about-hero__body {
    font-size: 16px;
    color: rgba(250,247,242,0.7);
    line-height: 1.8;
}

.about-hero__stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px;
}

.about-stat-box__num {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 900;
    color: var(--beacon);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-box__label {
    font-family: var(--font-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(250,247,242,0.45);
}

/* HOW SECTION */
.how-section {
    padding: 80px var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
}

.how-steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 48px;
}

.how-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0;
    position: relative;
}

.how-step:not(:last-child) .step-line {
    position: absolute;
    left: 39px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: var(--rule);
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    flex-shrink: 0;
    margin: 8px 16px 8px 16px;
    position: relative;
    z-index: 1;
}

.step-content {
    padding: 8px 0 48px;
}

.step-content__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.step-content__desc {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.75;
    max-width: 560px;
}

/* STORY SECTION */
.story-section {
    background: var(--warm-white);
    padding: 80px var(--gutter);
}

.story-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.story-inner blockquote {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    font-style: italic;
    color: var(--navy);
    line-height: 1.4;
    margin: 32px 0;
    position: relative;
}

.story-inner blockquote::before {
    content: '\201C';
    font-size: 80px;
    color: var(--beacon);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -20px;
    font-style: normal;
    line-height: 1;
}

.story-inner p {
    font-size: 16px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 18px;
}

/* PARTNER SECTION */
.partners-section {
    padding: 60px var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
    text-align: center;
}

.partners-section p {
    font-size: 15px;
    color: var(--mid);
    max-width: 560px;
    margin: 16px auto 36px;
    line-height: 1.7;
}

.partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.4;
    filter: grayscale(1);
}

.partner-logo {
    font-family: var(--font-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--mid);
    padding: 12px 20px;
    border: 1.5px solid var(--rule);
    border-radius: var(--radius);
}
