/* ================================================================
   PROJECTKART — ABOUT PAGE
================================================================ */

.page-about {
    background: #07090d;
}

.about-hero {
    padding: 64px 0 56px;
    background:
        radial-gradient(circle at 88% 0%, rgba(40, 120, 255, 0.16), transparent 34%),
        #07090d;
}

.about-hero__eyebrow,
.about-story__eyebrow,
.about-store__eyebrow,
.about-cta__eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #6ea0ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.about-hero h1 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-size: clamp(3rem, 5.6vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.about-hero p {
    max-width: 560px;
    margin-top: 22px;
    color: #8b97ab;
    font-size: 17px;
    line-height: 1.7;
}

.about-story {
    padding: 64px 0 28px;
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: start;
}

.about-story h2 {
    max-width: 420px;
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 750;
    letter-spacing: -0.05em;
    line-height: 1.05;
}

.about-story__copy p {
    max-width: 560px;
    color: #8b97ab;
    font-size: 16px;
    line-height: 1.75;
}

.about-story__copy p + p {
    margin-top: 18px;
}

.about-note {
    margin-top: 28px;
    padding: 16px 18px;
    border: 1px solid rgba(245, 184, 61, 0.28);
    border-radius: 16px;
    background: rgba(245, 184, 61, 0.08);
    color: #f5d78a;
    font-size: 14px;
    line-height: 1.55;
}

.about-note strong {
    color: #f5c14d;
}

.about-values {
    padding: 28px 0 20px;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.about-value {
    padding: 24px 22px 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: #0c1118;
}

.about-value__icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
    color: #4d8dff;
}

.about-value__icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-value h3 {
    margin-bottom: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.about-value p {
    color: #8b97ab;
    font-size: 14px;
    line-height: 1.55;
}

.about-bottom {
    padding: 20px 0 72px;
}

.about-bottom__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 16px;
}

.about-store,
.about-cta {
    padding: 32px 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
}

.about-store {
    background: #0c1118;
}

.about-cta {
    background:
        radial-gradient(circle at 90% 16%, rgba(40, 120, 255, 0.16), transparent 36%),
        #0b1422;
}

.about-store dl {
    display: grid;
    gap: 18px;
}

.about-store dt {
    margin-bottom: 4px;
    color: #8b97ab;
    font-size: 13px;
}

.about-store dd {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.about-cta h2 {
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 750;
    letter-spacing: -0.045em;
}

.about-cta p {
    max-width: 420px;
    margin-bottom: 28px;
    color: #8b97ab;
    font-size: 15px;
    line-height: 1.65;
}

.about-cta a {
    color: #4d8dff;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 980px) {
    .about-story__grid,
    .about-values__grid,
    .about-bottom__grid {
        grid-template-columns: 1fr;
    }

    .about-values__grid {
        grid-template-columns: 1fr 1fr;
    }
}

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