* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--gm-page-background);
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
}

.page-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
}

.about-page {
    width: min(100%, 1600px);
    margin: 0 auto;
    padding: 0.35rem 0 2.5rem;
}

.about-page h1,
.about-page h2,
.about-page h3,
.about-page p,
.about-page figure {
    margin: 0;
}

.about-kicker,
.about-section-label {
    color: var(--gm-brand-a);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.about-kicker > span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gm-brand-a), var(--gm-brand-b));
    box-shadow: 0 0 0 5px rgba(36, 88, 216, 0.09);
}

.about-hero {
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
    overflow: hidden;
    border: 1px solid #d9e2ec;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09);
}

.about-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(3.5rem, 6vw, 7rem);
}

.about-hero-copy h1 {
    max-width: 10.5ch;
    margin-top: 1.3rem;
    color: #071426;
    font-size: clamp(3.6rem, 5.7vw, 6.5rem);
    font-weight: 600;
    letter-spacing: -0.065em;
    line-height: 0.92;
}

.about-hero-copy > p {
    max-width: 34rem;
    margin-top: 1.8rem;
    color: #475569;
    font-size: 1.2rem;
    line-height: 1.58;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2.2rem;
    flex-wrap: wrap;
}

.about-actions a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
}

.about-primary-action {
    background: var(--gm-action);
    color: #ffffff;
    box-shadow: 0 10px 22px var(--gm-action-shadow);
}

.about-primary-action:hover {
    background: var(--gm-action-hover);
}

.about-secondary-action {
    border: 1px solid #cbd5e1;
    color: #0f172a;
    background: #ffffff;
}

.about-product-proof {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 1.45rem;
    color: #dbeafe;
    background:
        radial-gradient(circle at 86% 8%, rgba(27, 191, 213, 0.2), transparent 28%),
        linear-gradient(145deg, #071426 0%, #0b2344 100%);
}

.about-product-bar {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.88rem;
}

.about-product-bar span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
}

.about-product-bar i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gm-brand-b);
    box-shadow: 0 0 0 5px rgba(27, 191, 213, 0.12);
}

.about-product-bar strong {
    color: #78e2ed;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-product-screen {
    height: 515px;
    margin-top: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
}

.about-product-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.about-product-proof figcaption {
    margin-top: 1rem;
    color: #9fb4cf;
    font-size: 0.86rem;
}

.about-story,
.about-capabilities,
.about-closing {
    border-right: 1px solid #dbe4ee;
    border-bottom: 1px solid #dbe4ee;
    border-left: 1px solid #dbe4ee;
    background: rgba(255, 255, 255, 0.88);
}

.about-story {
    display: grid;
    grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
    gap: 5rem;
    padding: clamp(4.5rem, 8vw, 8rem);
}

.about-story-copy {
    max-width: 58rem;
}

.about-story-copy h2,
.about-capabilities header h2,
.about-principles h2,
.about-closing h2 {
    color: #0b1b36;
    font-size: clamp(2.2rem, 4vw, 4.4rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 1;
}

.about-story-copy p {
    margin-top: 1.5rem;
    color: #3f4f64;
    font-size: 1.12rem;
    line-height: 1.7;
}

.about-capabilities {
    padding: clamp(4rem, 7vw, 7rem);
}

.about-capabilities header {
    display: grid;
    grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1.4fr);
    gap: 5rem;
    padding-bottom: 3.5rem;
}

.about-capabilities header h2 {
    max-width: 13ch;
}

.about-capability-list {
    border-top: 1px solid #cdd9e6;
}

.about-capability-list article {
    display: grid;
    grid-template-columns: minmax(90px, 0.35fr) minmax(0, 1.65fr);
    gap: 2rem;
    padding: 2.1rem 0;
    border-bottom: 1px solid #dbe4ee;
}

.about-capability-list article > span {
    color: #8190a4;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.about-capability-list article > div {
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    gap: 3rem;
}

.about-capability-list h3 {
    color: #12223a;
    font-size: 1.22rem;
    line-height: 1.25;
}

.about-capability-list p {
    max-width: 44rem;
    color: #55657a;
    font-size: 1rem;
    line-height: 1.6;
}

.about-principles {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(4rem, 8vw, 9rem);
    padding: clamp(4.5rem, 8vw, 8rem);
    color: #eaf2ff;
    border-radius: 0 0 28px 28px;
    background:
        radial-gradient(circle at 8% 12%, rgba(27, 191, 213, 0.13), transparent 26%),
        #08182f;
}

.about-principles .about-section-label {
    color: #5fdae7;
}

.about-principles h2 {
    max-width: 11ch;
    margin-top: 1.25rem;
    color: #ffffff;
}

.about-principles-intro > p {
    max-width: 34rem;
    margin-top: 1.7rem;
    color: #b5c6dc;
    font-size: 1.08rem;
    line-height: 1.65;
}

.about-principle-list {
    border-top: 1px solid rgba(184, 211, 241, 0.25);
}

.about-principle-list article {
    padding: 1.7rem 0 1.9rem;
    border-bottom: 1px solid rgba(184, 211, 241, 0.25);
}

.about-principle-list h3 {
    color: #ffffff;
    font-size: 1.2rem;
}

.about-principle-list p {
    max-width: 40rem;
    margin-top: 0.65rem;
    color: #aebfd5;
    line-height: 1.62;
}

.about-closing {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 6rem;
    padding: clamp(4rem, 7vw, 7rem);
    border-radius: 28px;
    margin-top: 1.5rem;
}

.about-closing h2 {
    max-width: 12ch;
    margin-top: 1.1rem;
}

.about-closing > div:last-child {
    align-self: end;
}

.about-closing p {
    max-width: 38rem;
    color: #475569;
    font-size: 1.08rem;
    line-height: 1.65;
}

.about-closing a {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
    color: var(--gm-brand-a);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
}

.about-closing a span {
    transition: transform 0.15s ease;
}

.about-closing a:hover span {
    transform: translateX(4px);
}

.site-footer {
    margin-top: 0;
}

@media (max-width: 1000px) {
    .about-hero,
    .about-principles {
        grid-template-columns: 1fr;
    }

    .about-hero {
        min-height: 0;
    }

    .about-hero-copy h1 {
        max-width: 12ch;
    }

    .about-product-proof {
        min-height: 560px;
    }

    .about-story,
    .about-capabilities header,
    .about-closing {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 720px) {
    .page-wrap {
        padding: 0.8rem;
    }

    .about-hero {
        border-radius: 20px;
    }

    .about-hero-copy,
    .about-story,
    .about-capabilities,
    .about-principles,
    .about-closing {
        padding: 2.5rem 1.4rem;
    }

    .about-hero-copy h1 {
        font-size: clamp(3rem, 15vw, 4.6rem);
    }

    .about-product-proof {
        min-height: 0;
        padding: 1.2rem;
    }

    .about-product-screen {
        height: 390px;
    }

    .about-product-bar strong {
        display: none;
    }

    .about-capability-list article,
    .about-capability-list article > div {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .about-principles {
        border-radius: 0 0 20px 20px;
    }

    .about-closing {
        border-radius: 20px;
    }
}
