﻿/* =========================================================
SAN ROBOTICS
ABOUT PAGE
========================================================= */

.about-container {

    max-width: 1250px;

    margin: auto;

    padding: 0 30px;
}


/* =========================================================
ABOUT HERO
========================================================= */

.about-hero {

    position: relative;

    min-height: 590px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 75% 50%,
            rgba(8,126,209,0.18),
            transparent 32%
        ),

        linear-gradient(
            135deg,
            #031126,
            #061A3A 60%,
            #062B55
        );

    color: var(--white);
}

.about-hero-grid {

    position: absolute;

    inset: 0;

    opacity: .25;

    background-image:

        linear-gradient(
            rgba(69,217,255,.12) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(69,217,255,.12) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent
        );
}

.about-hero-glow {

    position: absolute;

    width: 500px;

    height: 500px;

    right: 5%;

    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background:
        rgba(18,155,239,.15);

    filter: blur(80px);
}

.about-hero-container {

    position: relative;

    z-index: 2;

    max-width: 1250px;

    min-height: 590px;

    margin: auto;

    padding: 70px 30px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;
}

.about-eyebrow {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: var(--cyan);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 3px;
}

.about-eyebrow span {

    width: 35px;

    height: 2px;

    background: var(--cyan);
}

.about-hero-content h1 {

    max-width: 650px;

    margin: 0 0 25px;

    font-family:
        'Space Grotesk',
        sans-serif;

    font-size:
        clamp(44px, 5vw, 70px);

    line-height: 1.02;

    letter-spacing: -2px;
}

.about-hero-content h1 span {

    display: block;

    background:

        linear-gradient(
            90deg,
            var(--blue-bright),
            var(--cyan)
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.about-hero-content > p {

    max-width: 560px;

    color:
        rgba(255,255,255,.68);

    font-size: 16px;

    line-height: 1.8;
}

.about-hero-actions {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 35px;
}

.about-primary-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 23px;

    border-radius: 50px;

    color: white;

    font-size: 12px;

    font-weight: 700;

    background:

        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-bright)
        );

    box-shadow:
        0 12px 30px
        rgba(8,126,209,.28);

    transition: .35s ease;
}

.about-primary-btn:hover {

    color: white;

    transform: translateY(-3px);

    box-shadow:
        0 18px 38px
        rgba(8,126,209,.4);
}

.about-primary-btn i {

    transition: .3s ease;
}

.about-primary-btn:hover i {

    transform:
        translateX(5px);
}

.about-secondary-btn {

    padding: 13px 22px;

    border:
        1px solid
        rgba(255,255,255,.2);

    border-radius: 50px;

    color:
        rgba(255,255,255,.8);

    font-size: 12px;

    font-weight: 600;

    transition: .35s ease;
}

.about-secondary-btn:hover {

    color: white;

    border-color:
        var(--cyan);

    background:
        rgba(69,217,255,.07);
}


/* =========================================================
HERO TECHNOLOGY VISUAL
========================================================= */

.about-hero-visual {

    position: relative;

    width: 450px;

    height: 450px;

    margin: auto;
}

.about-core {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 130px;

    height: 130px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform:
        translate(-50%,-50%);

    border:
        1px solid
        rgba(69,217,255,.4);

    border-radius: 50%;

    background:
        rgba(6,26,58,.75);

    box-shadow:

        0 0 50px
        rgba(18,155,239,.25),

        inset 0 0 30px
        rgba(69,217,255,.08);
}

.about-core i {

    color: var(--cyan);

    font-size: 42px;

    animation:
        pulseCore 3s infinite ease-in-out;
}

.core-ring {

    position: absolute;

    inset: -20px;

    border:
        1px dashed
        rgba(69,217,255,.3);

    border-radius: 50%;

    animation:
        rotateRing 15s linear infinite;
}

.about-orbit {

    position: absolute;

    left: 50%;

    top: 50%;

    border:
        1px solid
        rgba(69,217,255,.15);

    border-radius: 50%;

    transform:
        translate(-50%,-50%)
        rotate(-20deg);
}

.orbit-one {

    width: 330px;

    height: 150px;
}

.orbit-two {

    width: 410px;

    height: 190px;

    transform:
        translate(-50%,-50%)
        rotate(30deg);
}

.about-tech-card {

    position: absolute;

    top: 35px;

    right: 15px;

    padding: 12px 16px;

    display: flex;

    align-items: center;

    gap: 9px;

    border:
        1px solid
        rgba(69,217,255,.2);

    border-radius: 12px;

    background:
        rgba(3,17,38,.8);

    backdrop-filter:
        blur(12px);

    color: white;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.25);

    animation:
        floatingCard 4s ease-in-out infinite;
}

.tech-card-two {

    top: auto;

    right: auto;

    left: 5px;

    bottom: 100px;

    animation-delay:
        -1.5s;
}

.tech-card-three {

    top: auto;

    right: 35px;

    bottom: 35px;

    animation-delay:
        -3s;
}

.tech-card-icon {

    color: var(--cyan);
}


/* =========================================================
WHO WE ARE
========================================================= */

.who-section {

    padding: 120px 0;

    background: white;
}

.who-section .about-container {

    display: grid;

    grid-template-columns:
        .9fr 1.1fr;

    gap: 90px;

    align-items: center;
}

.who-image {

    position: relative;
}

.who-image-frame {

    position: relative;

    overflow: hidden;

    border-radius: 25px;

    box-shadow:
        0 25px 70px
        rgba(3,17,38,.14);
}

.who-image-frame::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(8,126,209,.12),
            transparent
        );
}

.who-image-frame img {

    width: 100%;

    aspect-ratio: 4/5;

    object-fit: cover;

    transition:
        transform .7s ease;
}

.who-image:hover img {

    transform:
        scale(1.06);
}

.experience-badge {

    position: absolute;

    right: -25px;

    bottom: 35px;

    width: 145px;

    height: 110px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--navy)
        );

    box-shadow:
        0 20px 45px
        rgba(3,17,38,.2);
}

.experience-badge strong {

    font-family:
        'Space Grotesk';

    font-size: 32px;
}

.experience-badge span {

    font-size: 10px;

    line-height: 1.4;

    text-align: center;

    opacity: .8;
}

.about-section-label {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: var(--blue);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.about-section-label span {

    width: 28px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );
}

.about-section-label.center {

    justify-content: center;
}

.who-content h2,
.about-section-heading h2,
.about-strength-content h2 {

    margin: 0 0 22px;

    font-family:
        'Space Grotesk';

    color: var(--navy);

    font-size:
        clamp(35px,4vw,50px);

    line-height: 1.1;

    letter-spacing: -1px;
}

.who-content h2 span,
.about-section-heading h2 span,
.about-strength-content h2 span {

    color: var(--blue);
}

.who-content > p {

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.85;
}

.who-features {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 12px;

    margin-top: 30px;
}

.who-features > div {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 14px;

    border-radius: 10px;

    background:
        var(--light);

    color: var(--navy);

    font-size: 12px;

    font-weight: 600;
}

.who-features i {

    color: var(--blue);
}


/* =========================================================
PURPOSE
========================================================= */

.about-purpose-section {

    padding: 120px 0;

    background:
        var(--light);
}

.about-section-heading {

    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}

.about-section-heading > p {

    color: var(--text-light);

    line-height: 1.8;

    font-size: 14px;
}

.about-purpose-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;
}

.about-purpose-card {

    position: relative;

    padding: 45px;

    overflow: hidden;

    border-radius: 22px;

    background: white;

    border:
        1px solid
        rgba(8,126,209,.1);

    box-shadow:
        0 20px 60px
        rgba(3,17,38,.06);

    transition:
        .45s ease;
}

.about-purpose-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        0 30px 75px
        rgba(3,17,38,.11);
}

.purpose-number {

    position: absolute;

    top: 25px;

    right: 30px;

    color:
        rgba(8,126,209,.08);

    font-family:
        'Space Grotesk';

    font-size: 60px;

    font-weight: 800;
}

.about-purpose-icon {

    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 15px;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--blue-bright)
        );

    font-size: 21px;
}

.about-purpose-card h3 {

    margin-bottom: 18px;

    font-family:
        'Space Grotesk';

    color: var(--navy);

    font-size: 28px;
}

.about-purpose-card p {

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.85;
}

.mission-quote {

    padding: 25px;

    border-left:
        3px solid
        var(--cyan);

    border-radius:
        0 12px 12px 0;

    background:
        rgba(8,126,209,.05);

    color: var(--navy);

    font-family:
        'Space Grotesk';

    font-size: 15px;

    line-height: 1.8;
}

.purpose-tag {

    display: inline-block;

    margin-top: 25px;

    padding: 8px 13px;

    border-radius: 50px;

    color: var(--blue);

    background:
        rgba(8,126,209,.07);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
MISSION TECHNOLOGY POINTS
========================================================= */

.mission-points {

    position: relative;

    margin-top: 32px;

    display: flex;

    flex-direction: column;
}


/* Vertical technology line */

.mission-points::before {

    content: "";

    position: absolute;

    left: 21px;

    top: 22px;

    bottom: 22px;

    width: 1px;

    background:

        linear-gradient(
            to bottom,
            rgba(11, 79, 156, 0.35),
            rgba(11, 79, 156, 0.05)
        );
}


/* Individual point */

.mission-point {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 62px;

    transition:
        transform 0.35s ease;
}


/* Connection node */

.mission-point-line {

    position: absolute;

    left: 17px;

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid #0B4F9C;

    z-index: 2;

    transition:

        background 0.35s ease,

        box-shadow 0.35s ease,

        transform 0.35s ease;
}


/* Icon */

.mission-point-icon {

    position: relative;

    width: 44px;

    height: 44px;

    margin-left: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    border:
        1px solid
        rgba(11, 79, 156, 0.18);

    color: #0B4F9C;

    font-size: 15px;

    z-index: 3;

    box-shadow:
        0 5px 18px
        rgba(11, 79, 156, 0.08);

    transition:

        transform 0.35s ease,

        background 0.35s ease,

        color 0.35s ease,

        box-shadow 0.35s ease;
}


/* Content */

.mission-point-content {

    padding-left: 18px;
}

.mission-point-content h4 {

    margin: 0 0 2px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.3px;

    color: var(--navy);

    transition:
        color 0.3s ease;
}

.mission-point-content p {

    margin: 0;

    font-size: 13px;

    color: #68778c;

    line-height: 1.5;
}


/* =========================================================
MISSION HOVER
========================================================= */

.mission-point:hover {

    transform:
        translateX(6px);
}

.mission-point:hover .mission-point-icon {

    background: #0B4F9C;

    color: #ffffff;

    transform:
        scale(1.08);

    box-shadow:
        0 8px 25px
        rgba(11, 79, 156, 0.25);
}

.mission-point:hover .mission-point-line {

    background: #0B4F9C;

    transform:
        scale(1.35);

    box-shadow:
        0 0 12px
        rgba(11, 79, 156, 0.35);
}

.mission-point:hover .mission-point-content h4 {

    color: #0B4F9C;
}


/* =========================================================
LEADERSHIP
========================================================= */

.leadership-section {

    padding: 120px 0;

    background: white;
}

.leadership-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;
}

.leader-card {

    overflow: hidden;

    border-radius: 20px;

    background: white;

    border:
        1px solid
        rgba(8,126,209,.1);

    box-shadow:
        0 15px 45px
        rgba(3,17,38,.07);

    transition:
        .45s ease;
}

.leader-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 30px 70px
        rgba(3,17,38,.13);
}

.leader-image {

    position: relative;

    overflow: hidden;

    /*
       Compact leadership portrait area.
       The three people remain visually smaller
       and do not dominate the page.
    */

    height: 270px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #061A3A,
            #087ED1
        );
}

.leader-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center top;

    transition:
        transform .7s ease;
}

.leader-card:hover
.leader-image img {

    transform:
        scale(1.05);
}

.leader-overlay {

    position: absolute;

    left: 15px;

    bottom: 15px;

    padding: 7px 11px;

    border-radius: 6px;

    background:
        rgba(3,17,38,.8);

    backdrop-filter:
        blur(8px);

    color: var(--cyan);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.leader-content {

    padding: 25px;
}

.leader-role {

    margin-bottom: 8px;

    color: var(--blue);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}

.leader-content h3 {

    margin: 0 0 12px;

    color: var(--navy);

    font-family:
        'Space Grotesk';

    font-size: 23px;
}

.leader-content p {

    margin-bottom: 20px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.75;
}

.leader-more {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--blue);

    cursor: pointer;

    font-size: 11px;

    font-weight: 800;
}

.leader-more i {

    transition: .3s ease;
}

.leader-more:hover i {

    transform:
        translateX(5px);
}


/* =========================================================
STRENGTH
========================================================= */

.about-strength-section {

    padding: 110px 0;

    background:
        var(--light);
}

.about-strength-section .about-container {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    gap: 80px;

    align-items: center;
}

.about-strength-content p {

    max-width: 500px;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.85;
}

.strength-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}

.strength-item {

    padding: 28px;

    border-radius: 15px;

    background: white;

    border:
        1px solid
        rgba(8,126,209,.08);

    transition:
        .35s ease;
}

.strength-item:hover {

    transform:
        translateY(-5px);

    border-color:
        rgba(8,126,209,.25);
}

.strength-item i {

    margin-bottom: 15px;

    color: var(--blue);

    font-size: 24px;
}

.strength-item h4 {

    margin-bottom: 7px;

    color: var(--navy);

    font-family:
        'Space Grotesk';

    font-size: 15px;
}

.strength-item p {

    margin: 0;

    color: var(--text-light);

    font-size: 11px;
}


/* =========================================================
CTA
========================================================= */

.about-cta {

    position: relative;

    overflow: hidden;

    padding: 110px 30px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #031126,
            #061A3A
        );

    color: white;
}

.about-cta-grid {

    position: absolute;

    inset: 0;

    opacity: .2;

    background-image:

        linear-gradient(
            rgba(69,217,255,.1) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(69,217,255,.1) 1px,
            transparent 1px
        );

    background-size: 45px 45px;
}

.about-cta-content {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: auto;
}

.about-section-label.light {

    color: var(--cyan);
}

.about-cta h2 {

    margin: 15px 0 20px;

    font-family:
        'Space Grotesk';

    font-size:
        clamp(38px,5vw,60px);

    line-height: 1.05;
}

.about-cta h2 span {

    display: block;

    color: var(--cyan);
}

.about-cta p {

    margin-bottom: 30px;

    color:
        rgba(255,255,255,.6);

    font-size: 14px;
}


/* =========================================================
LEADERSHIP MODAL
========================================================= */

.leader-modal {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 25px;

    opacity: 0;

    visibility: hidden;

    transition:
        .35s ease;
}

.leader-modal.active {

    opacity: 1;

    visibility: visible;
}

.leader-modal-backdrop {

    position: absolute;

    inset: 0;

    background:
        rgba(3,17,38,.75);

    backdrop-filter:
        blur(8px);
}

.leader-modal-box {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 700px;

    max-height: 85vh;

    overflow-y: auto;

    padding: 45px;

    border-radius: 22px;

    background: white;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.3);

    transform:
        translateY(20px)
        scale(.97);

    transition:
        .4s ease;
}

.leader-modal.active
.leader-modal-box {

    transform:
        translateY(0)
        scale(1);
}

.leader-modal-close {

    position: absolute;

    top: 18px;

    right: 18px;

    width: 38px;

    height: 38px;

    border: 0;

    border-radius: 50%;

    background:
        var(--light);

    color: var(--navy);

    cursor: pointer;

    transition: .3s ease;
}

.leader-modal-close:hover {

    color: white;

    background: var(--blue);
}

.modal-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 20px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            var(--cyan)
        );

    color: white;

    font-size: 20px;
}

.modal-role {

    color: var(--blue);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}

.leader-modal-box h2 {

    margin: 8px 0 15px;

    font-family:
        'Space Grotesk';

    color: var(--navy);

    font-size: 32px;
}

.modal-divider {

    width: 50px;

    height: 3px;

    margin-bottom: 20px;

    border-radius: 5px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            var(--cyan)
        );
}

.leader-modal-box p {

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.9;
}


/* =========================================================
ANIMATIONS
========================================================= */

@keyframes floatingCard {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}

@keyframes rotateRing {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}

@keyframes pulseCore {

    0%,100% {

        transform:
            scale(1);

    }

    50% {

        transform:
            scale(1.12);

    }

}


/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:1000px) {

    .about-hero-container {

        grid-template-columns:
            1fr;

        text-align: center;

    }

    .about-eyebrow {

        justify-content: center;

    }

    .about-hero-content > p {

        margin: auto;

    }

    .about-hero-actions {

        justify-content: center;

    }

    .about-hero-visual {

        display: none;

    }

    .who-section .about-container {

        grid-template-columns:
            1fr;

        gap: 55px;

    }

    .who-image {

        max-width: 600px;

        margin: auto;

    }

    .about-purpose-grid {

        grid-template-columns:
            1fr;

    }

    .about-strength-section .about-container {

        grid-template-columns:
            1fr;

    }

}


@media(max-width:800px) {

    .leadership-grid {

        grid-template-columns:
            1fr 1fr;

    }

}


@media(max-width:767px) {

    .mission-point {

        min-height: 58px;
    }

    .mission-point-icon {

        width: 40px;

        height: 40px;
    }

    .mission-point-content {

        padding-left: 15px;
    }

    .mission-point-content h4 {

        font-size: 13px;
    }

    .mission-point-content p {

        font-size: 12px;
    }

}


@media(max-width:600px) {

    .about-container {

        padding:
            0 18px;

    }

    .about-hero {

        min-height: auto;

    }

    .about-hero-container {

        min-height: auto;

        padding:
            85px 20px;

    }

    .about-hero-content h1 {

        font-size: 43px;

    }

    .about-hero-actions {

        flex-direction: column;

    }

    .about-primary-btn,
    .about-secondary-btn {

        width: 100%;

        justify-content: center;

    }

    .who-section,
    .about-purpose-section,
    .leadership-section {

        padding: 80px 0;

    }

    .who-features {

        grid-template-columns:
            1fr;

    }

    .about-purpose-card {

        padding:
            30px 24px;

    }

    .leadership-grid {

        grid-template-columns:
            1fr;

    }

    /* Smaller leadership portraits on mobile */

    .leader-image {

        height: 245px;

    }

    .about-strength-section {

        padding: 80px 0;

    }

    .strength-grid {

        grid-template-columns:
            1fr;

    }

    .about-cta {

        padding:
            85px 20px;

    }

    .leader-modal-box {

        padding:
            35px 25px;

    }

}


/* =========================================================
COMPACT LEADERSHIP IMAGE CONTROL
========================================================= */

/*
   Keeps the three leadership photographs visually
   balanced with the rest of the website instead of
   allowing the portraits to dominate the cards.
*/

.leader-image img {

    object-position: center 20%;

}


/* =========================================================
SMALL DESKTOP SCREENS
========================================================= */

@media (min-width:801px) and (max-width:1100px) {

    .leader-image {

        height: 240px;

    }

}


/* =========================================================
ACCESSIBILITY / REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-primary-btn,
    .about-secondary-btn,
    .leader-card,
    .leader-image img,
    .mission-point,
    .mission-point-icon,
    .mission-point-line {

        transition: none;

    }

    .floatingCard,
    .rotateRing,
    .pulseCore {

        animation: none;

    }

}