/* =========================================
   SECTION: ABOUT VELO HERO
========================================= */

.velo-about-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    min-height: clamp(620px, 72vh, 820px);
    display: flex;
    align-items: center;

    padding: clamp(90px, 8vw, 130px) 24px;

    background: #f8fcff;
    color: #07101f;
}

/* Background image */
.velo-about-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.velo-about-hero__bg img {
    display: block;
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center right;
}

/* Soft white wash for left-side readability */
.velo-about-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(248, 252, 255, 0.96) 0%,
            rgba(248, 252, 255, 0.84) 28%,
            rgba(248, 252, 255, 0.46) 52%,
            rgba(248, 252, 255, 0.12) 78%,
            rgba(248, 252, 255, 0) 100%
        ),
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.58) 0%,
            rgba(255, 255, 255, 0.12) 46%,
            rgba(247, 251, 255, 0.54) 100%
        );
}

/* Content shell */
.velo-about-hero__shell {
    width: min(100%, 1420px);
    margin: 0 auto;
}

.velo-about-hero__content {
    width: 100%;
    max-width: 520px;
}

/* Eyebrow */
.velo-about-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 36px;
}

.velo-about-hero__eyebrow span {
    display: block;
    width: 52px;
    height: 2px;
    border-radius: 999px;

    background: linear-gradient(
        90deg,
        #007cff 0%,
        #00b8ff 74%,
        rgba(255, 255, 255, 0) 100%
    );

    box-shadow:
        0 0 8px rgba(0, 140, 255, 0.34),
        0 0 18px rgba(69, 217, 255, 0.18);
}

.velo-about-hero__eyebrow p {
    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(0.74rem, 0.78vw, 0.9rem);
    font-weight: 800;
    letter-spacing: 0.24em;
    line-height: 1;
    text-transform: uppercase;

    color: #008fe8;
}

/* Title */
.velo-about-hero h2 {
    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(3.1rem, 5.4vw, 6.6rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: 0.055em;
    text-transform: uppercase;

    color: #07101f;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.96),
        0 14px 34px rgba(7, 16, 31, 0.08);
}

/* Blue lead text */
.velo-about-hero__lead {
    max-width: 470px;
    margin: 30px 0 0;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: clamp(1.3rem, 1.8vw, 2.05rem);
    font-weight: 500;
    line-height: 1.28;

    color: #168fff;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.84),
        0 0 18px rgba(69, 217, 255, 0.14);
}

/* Accent line */
.velo-about-hero__line {
    display: block;

    width: 54px;
    height: 3px;
    margin-top: 24px;

    border-radius: 999px;

    background: linear-gradient(
        90deg,
        #007cff 0%,
        #00b8ff 72%,
        rgba(255, 255, 255, 0) 100%
    );

    box-shadow:
        0 0 8px rgba(0, 140, 255, 0.32),
        0 0 16px rgba(69, 217, 255, 0.18);
}

/* Body text */
.velo-about-hero__text {
    max-width: 440px;
    margin: 24px 0 0;

    font-size: clamp(0.98rem, 1vw, 1.12rem);
    font-weight: 500;
    line-height: 1.78;

    color: rgba(28, 49, 72, 0.78);

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Button */
.velo-about-hero__button {
    position: relative;

    width: fit-content;
    min-width: 245px;
    min-height: 58px;
    margin-top: 36px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;

    color: #ffffff;
    background: #0066ff;

    border: 1px solid #00bfff;
    border-radius: 8px 8px 22px 8px;

    box-shadow:
        0 18px 40px rgba(0, 124, 255, 0.24),
        0 0 26px rgba(69, 217, 255, 0.22);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.velo-about-hero__button span {
    font-size: 1.35rem;
    line-height: 1;
}

.velo-about-hero__button:hover {
    transform: translateY(-2px);

    background: #7ddeff;
    color: #ffffff;

    box-shadow:
        0 22px 48px rgba(7, 16, 31, 0.22),
        0 0 34px rgba(69, 217, 255, 0.28);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {
    .velo-about-hero {
        min-height: 680px;
        padding: 90px 24px;
    }

    .velo-about-hero__bg img {
        object-position: 64% center;
    }

    .velo-about-hero__shade {
        background:
            linear-gradient(
                90deg,
                rgba(248, 252, 255, 0.96) 0%,
                rgba(248, 252, 255, 0.84) 42%,
                rgba(248, 252, 255, 0.36) 74%,
                rgba(248, 252, 255, 0.1) 100%
            ),
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.58) 0%,
                rgba(255, 255, 255, 0.12) 46%,
                rgba(247, 251, 255, 0.58) 100%
            );
    }

    .velo-about-hero__content {
        max-width: 500px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
    .velo-about-hero {
        min-height: 760px;
        padding: 76px 18px;
        align-items: flex-start;
    }

    .velo-about-hero__bg img {
        object-position: 68% center;
    }

    .velo-about-hero__shade {
        background:
            linear-gradient(
                180deg,
                rgba(248, 252, 255, 0.96) 0%,
                rgba(248, 252, 255, 0.84) 44%,
                rgba(248, 252, 255, 0.4) 72%,
                rgba(248, 252, 255, 0.76) 100%
            );
    }

    .velo-about-hero__content {
        max-width: 100%;
    }

    .velo-about-hero__eyebrow {
        margin-bottom: 28px;
    }

    .velo-about-hero__eyebrow span {
        width: 42px;
    }

    .velo-about-hero__eyebrow p {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    .velo-about-hero h2 {
        font-size: clamp(2.6rem, 15vw, 4rem);
    }

    .velo-about-hero__lead {
        max-width: 100%;
        margin-top: 24px;
        font-size: clamp(1.2rem, 6vw, 1.55rem);
    }

    .velo-about-hero__text {
        max-width: 100%;
        font-size: 0.95rem;
        line-height: 1.68;
    }

    .velo-about-hero__button {
        width: 100%;
        min-width: 0;
        margin-top: 30px;
    }
}

/* =========================================
   SECTION: FOUNDER / PERSONAL APPROACH
========================================= */

.velo-founder {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    padding: clamp(82px, 8vw, 130px) 24px;

    background:
        radial-gradient(circle at 18% 10%, rgba(69, 217, 255, 0.12), transparent 34%),
        radial-gradient(circle at 86% 82%, rgba(7, 16, 31, 0.055), transparent 34%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);

    color: #07101f;
}

.velo-founder::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;

    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.78), transparent 54%),
        linear-gradient(35deg, rgba(69, 217, 255, 0.05) 1px, transparent 1px);

    background-size: auto, 180px 180px;
}

.velo-founder__shell {
    width: min(100%, 1420px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
    align-items: center;
    gap: clamp(46px, 6vw, 90px);
}

/* =========================================
   LEFT CONTENT
========================================= */

.velo-founder__content {
    width: 100%;
    max-width: 620px;
}

.velo-founder__kicker {
    margin: 0 0 26px;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(0.78rem, 0.86vw, 1rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #008fe8;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 16px rgba(69, 217, 255, 0.24);
}

.velo-founder h2 {
    max-width: 620px;
    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(2.5rem, 3.7vw, 5rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0.035em;
    text-wrap: balance;

    color: #07101f;

    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.96),
        0 12px 30px rgba(7, 16, 31, 0.08);
}

.velo-founder__copy {
    max-width: 590px;
    margin-top: 34px;
}

.velo-founder__copy p {
    margin: 0;

    font-size: clamp(1rem, 1.05vw, 1.16rem);
    font-weight: 500;
    line-height: 1.78;

    color: rgba(28, 49, 72, 0.76);
}

.velo-founder__copy p + p {
    margin-top: 26px;
}

/* =========================================
   SIGNATURE
========================================= */

.velo-founder__signature {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 38px;
}

.velo-founder__signature img {
    display: block;

    width: clamp(170px, 14vw, 250px);
    height: auto;

    object-fit: contain;

    opacity: 1;
    filter: none;
}

.velo-founder__signature div {
    position: relative;
    padding-left: 22px;
}

.velo-founder__signature div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;

    width: 12px;
    height: 2px;
    border-radius: 999px;

    background: rgba(7, 16, 31, 0.48);
}

.velo-founder__signature strong {
    display: block;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: clamp(0.96rem, 1vw, 1.08rem);
    font-weight: 800;
    line-height: 1.2;

    color: #07101f;
}

.velo-founder__signature span {
    display: block;
    margin-top: 6px;

    font-family: "Jura", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: rgba(28, 49, 72, 0.56);
    r: rgba(28, 49, 72, 0.56);
}

/* =========================================
   RIGHT IMAGE
========================================= */

.velo-founder__media {
    position: relative;
}

.velo-founder__image-wrap {
    position: relative;
    overflow: hidden;

    min-height: clamp(430px, 42vw, 640px);

    border: 1px solid rgba(220, 238, 250, 0.96);
    border-radius: 6px;

    background: rgba(255, 255, 255, 0.5);

    clip-path: polygon(
        22px 0,
        calc(100% - 22px) 0,
        100% 22px,
        100% calc(100% - 22px),
        calc(100% - 22px) 100%,
        22px 100%,
        0 calc(100% - 22px),
        0 22px
    );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 26px 76px rgba(7, 16, 31, 0.12),
        0 0 44px rgba(69, 217, 255, 0.12);
}

.velo-founder__image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.05),
            rgba(7, 16, 31, 0.12)
        ),
        linear-gradient(
            110deg,
            transparent 0%,
            rgba(255, 255, 255, 0.14) 42%,
            rgba(69, 217, 255, 0.12) 52%,
            transparent 66%
        );

    opacity: 0.62;
}

.velo-founder__image-wrap img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: clamp(430px, 42vw, 640px);

    object-fit: cover;
    object-position: center;

    transform: scale(1.01);

    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

.velo-founder__image-wrap:hover img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.04);
}

/* =========================================
   STATS
========================================= */

.velo-founder__stats {
    grid-column: 1 / -1;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    margin-top: clamp(30px, 4vw, 54px);

    border-top: 1px solid rgba(7, 16, 31, 0.08);
    border-bottom: 1px solid rgba(7, 16, 31, 0.08);

    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(14px);
}

.velo-founder__stat {
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    min-height: 132px;
    padding: 28px 24px;

    border-right: 1px solid rgba(7, 16, 31, 0.08);

    background: rgba(255, 255, 255, 0);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

/* Soft shine layer */
.velo-founder__stat::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;

    background:
        linear-gradient(
            110deg,
            transparent 0%,
            rgba(255, 255, 255, 0.22) 34%,
            rgba(69, 217, 255, 0.18) 50%,
            rgba(255, 255, 255, 0.12) 66%,
            transparent 100%
        );

    opacity: 0;
    transform: translateX(-120%);

    transition:
        opacity 0.3s ease,
        transform 0.75s ease;

    pointer-events: none;
}

/* Keep content above shine */
.velo-founder__stat-icon,
.velo-founder__stat-text {
    position: relative;
    z-index: 1;
}

.velo-founder__stat:hover {
    transform: translateY(-6px);

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.88),
            rgba(241, 250, 255, 0.72)
        );

    border-color: rgba(69, 217, 255, 0.34);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 18px 42px rgba(7, 16, 31, 0.08),
        0 0 36px rgba(69, 217, 255, 0.16);
}

.velo-founder__stat:hover::before {
    opacity: 1;
    transform: translateX(120%);
}

.velo-founder__stat:last-child {
    border-right: 0;
}

.velo-founder__stat-icon {
    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(69, 217, 255, 0.28);
    border-radius: 999px;

    color: #249cff;
    background: rgba(255, 255, 255, 0.52);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 0 24px rgba(69, 217, 255, 0.11);

    transition:
        transform 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.velo-founder__stat:hover .velo-founder__stat-icon {
    transform: scale(1.08);

    color: #007cff;
    border-color: rgba(69, 217, 255, 0.58);
    background: rgba(255, 255, 255, 0.8);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        0 0 22px rgba(69, 217, 255, 0.28),
        0 0 42px rgba(69, 217, 255, 0.16);
}

.velo-founder__stat-icon svg {
    width: 32px;
    height: 32px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.velo-founder__stat-text strong {
    display: block;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(2rem, 2.4vw, 3rem);
    font-weight: 800;
    line-height: 1;

    color: #07101f;

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

.velo-founder__stat:hover .velo-founder__stat-text strong {
    color: #008fe8;
    text-shadow: 0 0 18px rgba(69, 217, 255, 0.22);
}

.velo-founder__stat-text span {
    display: block;
    margin-top: 8px;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: clamp(0.88rem, 0.95vw, 1.02rem);
    font-weight: 500;
    line-height: 1.3;

    color: rgba(28, 49, 72, 0.66);
}

/* =========================================
   MOBILE STATS
========================================= */

@media (max-width: 700px) {
    .velo-founder__stats {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .velo-founder__stat {
        justify-content: flex-start;
        min-height: 112px;
        padding: 24px 4px;
        border-right: 0;
        border-bottom: 1px solid rgba(7, 16, 31, 0.08);
    }

    .velo-founder__stat:hover {
        transform: translateY(-4px);
    }

    .velo-founder__stat:last-child {
        border-bottom: 0;
    }

    .velo-founder__stat-icon {
        width: 58px;
        height: 58px;
    }

    .velo-founder__stat-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1080px) {
    .velo-founder__shell {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .velo-founder__content {
        max-width: 760px;
    }

    .velo-founder h2 {
        max-width: 760px;
    }

    .velo-founder__copy {
        max-width: 720px;
    }

    .velo-founder__stats {
        margin-top: 8px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {
    .velo-founder {
        padding: 72px 18px;
    }

    .velo-founder h2 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.08;
    }

    .velo-founder__copy {
        margin-top: 26px;
    }

    .velo-founder__copy p {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .velo-founder__signature {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        margin-top: 32px;
    }

    .velo-founder__signature img {
        width: 150px;
    }

    .velo-founder__signature div {
        padding-left: 20px;
    }

    .velo-founder__image-wrap,
    .velo-founder__image-wrap img {
        min-height: 380px;
    }

    .velo-founder__stats {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .velo-founder__stat {
        justify-content: flex-start;
        min-height: 112px;
        padding: 24px 4px;
        border-right: 0;
        border-bottom: 1px solid rgba(7, 16, 31, 0.08);
    }

    .velo-founder__stat:last-child {
        border-bottom: 0;
    }

    .velo-founder__stat-icon {
        width: 58px;
        height: 58px;
    }

    .velo-founder__stat-icon svg {
        width: 28px;
        height: 28px;
    }
}