/* =========================================================
   ABOUT PAGE
========================================================= */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(65, 166, 84, 0.28),
            transparent 36%
        ),
        linear-gradient(135deg, #06110c, #12351f);
}

.inner-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

.inner-hero-copy h1 {
    max-width: 850px;
    margin: 0 0 28px;
    color: #ffffff;
    font-size: clamp(3.1rem, 5vw, 5rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.inner-hero-copy h1 span {
    display: block;
    color: var(--green-light);
}

.inner-hero-lead {
    max-width: 750px;
    color: #c5d4cb;
    font-size: 1.18rem;
    line-height: 1.8;
}

.about-hero-panel {
    padding: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
}

.about-hero-panel h2 {
    color: #ffffff;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.panel-label {
    color: var(--green-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.clean-check-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.clean-check-list li::before {
    margin-right: 10px;
    color: var(--green-light);
    content: "✓";
}

.centered-heading {
    max-width: 820px;
    margin: 0 auto 55px;
    text-align: center;
}

.outcome-section {
    background: var(--off);
}

.outcome-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.outcome-card {
    padding: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.outcome-number {
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.outcome-card h3 {
    margin-top: 22px;
    font-size: 1.7rem;
}

.east-west-section {
    background: var(--ink);
    color: #dce7df;
}

.east-west-section h2 {
    color: #ffffff;
}

.east-west-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.bridge-card {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
}

.bridge-side {
    padding: 42px;
    background: rgba(255, 255, 255, 0.05);
}

.bridge-side span {
    display: block;
    margin-bottom: 20px;
    color: var(--green-light);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.bridge-side strong {
    display: block;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.5rem;
}

.bridge-symbol {
    display: grid;
    place-items: center;
    padding: 20px;
    color: #ffffff;
    background: var(--green);
    font-size: 2rem;
    font-weight: 900;
}

.about-ai-section {
    background: #ffffff;
}

.ai-employee-visual {
    padding: 36px;
    border-radius: 28px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(84, 211, 109, 0.32),
            transparent 34%
        ),
        linear-gradient(145deg, #07120d, #123b22);
    box-shadow: var(--shadow);
}

.ai-status-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-weight: 800;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 20px var(--green-light);
}

.ai-task-list {
    display: grid;
    gap: 12px;
}

.ai-task-list div {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.07);
}

.ai-task-list span {
    color: var(--green-light);
    font-weight: 900;
}

.values-section {
    background: var(--off);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.value-card {
    padding: 36px;
    border-left: 4px solid var(--green);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    font-size: 1.5rem;
}


/* TABLET */

@media (max-width: 960px) {

    .inner-hero-grid,
    .east-west-grid {
        grid-template-columns: 1fr;
    }

    .outcome-grid {
        grid-template-columns: 1fr;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .about-hero {
        padding: 80px 0;
    }

    .inner-hero-copy h1 {
        font-size: clamp(2.7rem, 12vw, 3.7rem);
    }

    .about-hero-panel {
        padding: 28px;
    }

    .bridge-card {
        grid-template-columns: 1fr;
    }

    .bridge-symbol {
        min-height: 70px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

}