/* About page — extends home design tokens */

.about-page {
    padding-top: clamp(5rem, 10vw, 7rem);
}

/* Hero */
.about-hero {
    display: grid;
    gap: 2.5rem;
    align-items: end;
    padding-bottom: var(--hp-pad, 4rem);
}

@media (min-width: 992px) {
    .about-hero {
        grid-template-columns: 1fr 1.1fr;
        gap: 3rem;
    }
}

.about-hero__media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}

.about-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 8, 0.2) 0%, rgba(5, 5, 8, 0.75) 100%);
}

.about-hero__media-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 1;
}

.about-hero__media-caption h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.15;
}

.about-hero__media-caption .brand {
    color: var(--primary-color);
}

.about-hero__intro {
    padding: 2rem 0;
}

.about-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.about-hero__stat {
    padding: 1rem;
    background: var(--hp-surface-2, #14141a);
    border: 1px solid var(--hp-border, rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    text-align: center;
}

.about-hero__stat strong {
    display: block;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.about-hero__stat span {
    font-size: 0.7rem;
    color: var(--hp-muted, #a1a1aa);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Story split */
.about-story {
    display: grid;
    gap: 3rem;
}

@media (min-width: 992px) {
    .about-story {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
    }
}

.about-story__prose {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--hp-muted, #a1a1aa);
}

.about-story__prose em {
    color: var(--hp-text, #f4f4f5);
    font-style: normal;
    font-weight: 600;
}

.about-story__prose .accent {
    color: var(--primary-color);
}

.about-mv-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-mv-card {
    padding: 1.75rem;
    background: var(--hp-surface-2, #14141a);
    border: 1px solid var(--hp-border, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    border-left: 3px solid var(--primary-color);
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-mv-card:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.about-mv-card__label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.about-mv-card__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--hp-text, #fff);
    margin-bottom: 0.5rem;
}

.about-mv-card__text {
    font-size: 0.9rem;
    color: var(--hp-muted, #a1a1aa);
    line-height: 1.7;
    margin: 0;
}

/* Partners marquee strip */
.about-partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.about-partners__logo {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hp-surface-2, #14141a);
    border: 1px solid var(--hp-border, rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    opacity: 0.7;
    transition: opacity 0.2s, border-color 0.2s;
}

.about-partners__logo:hover {
    opacity: 1;
    border-color: color-mix(in srgb, var(--primary-color) 35%, transparent);
}

.about-partners__logo img {
    max-height: 32px;
    max-width: 80px;
    object-fit: contain;
    filter: grayscale(1) brightness(1.3);
}

.about-partners__logo:hover img {
    filter: grayscale(0.3);
}

/* Values */
.about-values__grid {
    display: grid;
    gap: 1.25rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .about-values__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.about-value-card {
    padding: 1.75rem 1.5rem;
    background: var(--hp-surface-2, #14141a);
    border: 1px solid var(--hp-border, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    height: 100%;
    transition: border-color 0.25s;
}

.about-value-card:hover {
    border-color: color-mix(in srgb, var(--primary-color) 40%, transparent);
}

.about-value-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--primary-color) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.about-value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hp-text, #fff);
    margin-bottom: 0.5rem;
}

.about-value-card p {
    font-size: 0.85rem;
    color: var(--hp-muted, #a1a1aa);
    line-height: 1.6;
    margin: 0;
}

.about-values__centerpiece {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px dashed var(--hp-border, rgba(255, 255, 255, 0.12));
    background: color-mix(in srgb, var(--primary-color) 6%, transparent);
}

.about-values__centerpiece img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    opacity: 0.9;
}

/* Process timeline */
.about-process__track {
    display: grid;
    gap: 0;
    margin-top: 3rem;
    position: relative;
}

@media (min-width: 992px) {
    .about-process__track {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    .about-process__track::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-color2));
        opacity: 0.4;
        z-index: 0;
    }
}

.about-step {
    position: relative;
    z-index: 1;
    padding: 1.5rem;
    background: var(--hp-surface-2, #14141a);
    border: 1px solid var(--hp-border, rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .about-step {
        margin-bottom: 0;
        margin-top: 2rem;
    }
}

.about-step__num {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--hp-gradient, linear-gradient(135deg, var(--primary-color), var(--primary-color2)));
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.about-step__tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--hp-text, #fff);
    margin-bottom: 0.75rem;
}

.about-step p {
    font-size: 0.88rem;
    color: var(--hp-muted, #a1a1aa);
    line-height: 1.65;
    margin: 0;
}

/* About FAQ — reuses hp-faq-list from home.css */
.about-cta-inline {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 20px;
    background: var(--hp-gradient, linear-gradient(135deg, var(--primary-color), var(--primary-color2)));
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.about-cta-inline h3 {
    color: #fff;
    font-weight: 700;
    margin: 0;
    font-size: 1.25rem;
}

.about-cta-inline p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
}

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