/* ==========================================================================
   about-2027.css — page-specific rules for /about
   --------------------------------------------------------------------------
   Everything structural (tokens, chrome, buttons, hairline rows, cards,
   reveal) comes from css/site-2027.css. Only the shapes that file cannot
   express live here: the split hero aside, the two asymmetric prose splits,
   the founder portrait, the fact rows, the value grid and the CTA panel.

   No forced overrides, no bare element resets — every rule is scoped to a
   .cy27-about* class so it can never outrank the shared single-class layer.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero — copy left (1.1fr), mission right (.9fr) behind a single hairline
   -------------------------------------------------------------------------- */

.cy27-about-hero .cy27-phero__inner {
    align-items: end;
    padding-bottom: 90px;
}

/* The shared aside is a bordered card; the design asks for a bare left rule. */
.cy27-about__aside {
    padding: 0 0 0 32px;
    border: 0;
    border-left: 1px solid var(--cy27-line);
    border-radius: 0;
}

.cy27-about__aside-label {
    display: block;
    margin-bottom: 10px;
}

.cy27-about__mission {
    color: var(--cy27-body-strong);
    font-size: 1.02rem;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Prose blocks — a 1.3rem statement followed by supporting paragraphs
   -------------------------------------------------------------------------- */

.cy27-about__prose {
    max-width: 720px;
}

.cy27-about__prose h2 {
    margin-bottom: 24px;
    color: var(--cy27-text);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0;
}

.cy27-about__prose p {
    color: var(--cy27-body);
    font-size: 1.05rem;
    line-height: 1.75;
}

.cy27-about__prose p + p {
    margin-top: 18px;
}

/* Mono kicker above a prose block or a section heading. */
.cy27-about__kicker {
    display: block;
    margin-bottom: 18px;
}

.cy27-about__head {
    margin-bottom: 38px;
}

/* --------------------------------------------------------------------------
   Origin story — .6fr / 1.4fr under a hairline
   -------------------------------------------------------------------------- */

.cy27-about__story {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 64px;
    align-items: start;
    padding-top: 44px;
    border-top: 1px solid var(--cy27-line);
}

/* --------------------------------------------------------------------------
   Founder — portrait left (.85fr), copy right (1.15fr)
   -------------------------------------------------------------------------- */

.cy27-about__founder {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 56px;
    align-items: start;
}

.cy27-about__photo {
    display: block;
    width: 100%;
    height: auto;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 16px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .5);
}

.cy27-about__portrait figcaption {
    margin-top: 20px;
    letter-spacing: .12em;
}

/* Founder facts — hairline name/description rows, 200px label column. */
.cy27-about__facts {
    margin: 34px 0 0;
}

.cy27-about__facts .cy27-row {
    grid-template-columns: 200px 1fr;
    gap: 24px;
    padding: 20px 0;
}

.cy27-about__fact-name {
    color: var(--cy27-heading);
    font-size: 1rem;
    font-weight: 700;
}

.cy27-about__fact-copy {
    margin: 0;
    color: var(--cy27-body);
    font-size: .97rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   What makes us different — hairline rows, slightly smaller titles
   -------------------------------------------------------------------------- */

.cy27-about__diff .cy27-row {
    padding: 26px 0;
}

.cy27-about__diff h3 {
    font-size: 1.15rem;
}

.cy27-about__diff p {
    font-size: 1rem;
}

/* --------------------------------------------------------------------------
   Core values — six cards
   -------------------------------------------------------------------------- */

.cy27-about__values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.cy27-about__value {
    padding: 30px;
}

.cy27-about__value h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cy27-about__value p {
    color: var(--cy27-body);
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Closing CTA — the one beam panel on this page
   -------------------------------------------------------------------------- */

.cy27-about__cta {
    padding: clamp(40px, 6vw, 84px) clamp(24px, 5vw, 64px);
    border-radius: 20px;
    text-align: center;
    background:
        radial-gradient(120% 150% at 50% 0%, rgba(0, 192, 250, .14), transparent 60%),
        linear-gradient(160deg, rgba(20, 27, 40, .72), rgba(11, 16, 25, .6));
}

.cy27-about__cta h2 {
    margin-bottom: 16px;
    font-size: clamp(1.9rem, 3.2vw, 2.9rem);
}

.cy27-about__cta-lead {
    max-width: 520px;
    margin: 0 auto 32px;
    color: var(--cy27-body);
    font-size: 1.1rem;
    line-height: 1.7;
}

.cy27-about__cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.cy27-about__cta-note {
    margin-top: 28px;
    font-size: .74rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cy27-subtle);
}

.cy27-about__cta i {
    font-size: .85rem;
}

/* --------------------------------------------------------------------------
   Responsive
   Grid overrides are repeated here because a .cy27-about* descendant rule
   outranks the shared single-class rules inside site-2027.css media blocks.
   -------------------------------------------------------------------------- */

@media (max-width: 1000px) {
    .cy27-about-hero .cy27-phero__inner {
        align-items: start;
        padding-bottom: 84px;
    }

    .cy27-about__aside {
        padding: 26px 0 0;
        border-left: 0;
        border-top: 1px solid var(--cy27-line);
    }

    .cy27-about__story,
    .cy27-about__founder {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cy27-about__portrait {
        max-width: 420px;
    }

    .cy27-about__facts .cy27-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cy27-about__values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .cy27-about__story {
        gap: 20px;
    }

    .cy27-about__value {
        padding: 26px 24px;
    }
}
