/* /about/about.css — About page.
   Rides on marketplace.css for navbar/footer/tokens. */

.about-hero{
    background: linear-gradient(135deg, #fdf6f4 0%, var(--surface) 100%);
    padding: 130px 2rem 70px;
    text-align: center;
}
.about-hero__inner{
    max-width: 760px;
    margin: 0 auto;
}
.about-eyebrow{
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--second-color);
    margin: 0 0 12px;
}
.about-hero h1{
    font-family: var(--headers);
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--main-text);
}
.about-lede{
    font-size: 17px;
    line-height: 1.7;
    color: var(--muted-text);
    margin: 0 0 28px;
}
.about-hero__actions{
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-btn{
    display: inline-block;
    padding: 13px 28px;
    border-radius: 10px;
    font-family: var(--headers);
    font-weight: 600;
    font-size: 14.5px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
.about-btn--primary{
    background: var(--second-color);
    color: #fff;
}
.about-btn--primary:hover{
    background: var(--button-hovers);
    transform: translateY(-1px);
}
.about-btn--ghost{
    background: transparent;
    color: var(--second-color);
    border: 1px solid var(--second-color);
}
.about-btn--ghost:hover{
    background: var(--second-color);
    color: #fff;
}

/* ---------- stats ---------- */
.about-stats{
    max-width: 980px;
    margin: -38px auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    position: relative;
    z-index: 2;
}
.about-stat{
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}
.about-stat strong{
    display: block;
    font-family: var(--headers);
    font-size: 28px;
    color: var(--second-color);
    line-height: 1.1;
}
.about-stat span{
    font-size: 12.5px;
    color: var(--muted-text);
}

/* ---------- sections ---------- */
.about-section{
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 2rem;
}
.about-section h2{
    font-family: var(--headers);
    font-size: 26px;
    margin: 0 0 16px;
    color: var(--main-text);
}
.about-section p{
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted-text);
    margin: 0 0 14px;
    max-width: 68ch;
}
.about-section a:not(.about-btn){
    color: var(--second-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.about-section .about-btn{ margin-top: 10px; }

.about-section--tint{
    background: var(--surface);
    max-width: none;
}
.about-section--tint > h2,
.about-section--tint > p,
.about-section--tint > .about-cards,
.about-section--tint > .about-hero__actions{
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- steps ---------- */
.about-steps{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px;
}
.about-step{
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px 20px;
}
.about-step__num{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--second-color);
    color: #fff;
    font-family: var(--headers);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 12px;
}
.about-step h3{
    font-family: var(--headers);
    font-size: 17px;
    margin: 0 0 7px;
}
.about-step p{
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ---------- cards ---------- */
.about-cards{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.about-card{
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
}
.about-card h3{
    font-family: var(--headers);
    font-size: 17px;
    margin: 0 0 8px;
    color: var(--second-color);
}
.about-card p{
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 900px){
    .about-hero{ padding: 100px 20px 60px; }
    .about-hero h1{ font-size: 32px; }
    .about-stats{
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
    .about-section{ padding: 46px 20px; }
    .about-steps,
    .about-cards{ grid-template-columns: 1fr; }
}

@media (max-width: 480px){
    .about-hero h1{ font-size: 26px; }
    .about-lede{ font-size: 15px; }
    .about-btn{ width: 100%; text-align: center; }
    .about-stat strong{ font-size: 23px; }
}
