/* =========================================
   SECTION: ABOUT VELO
========================================= */

.velo-about {
    position: relative;
    overflow: hidden;
    padding: clamp(78px, 8vw, 122px) 24px;
    background:
        radial-gradient(circle at 18% 18%, rgba(69, 217, 255, 0.12), transparent 34%),
        radial-gradient(circle at 82% 76%, rgba(7, 16, 31, 0.055), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    color: #07101f;
    isolation: isolate;
}

.velo-about::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.055) 1px, transparent 1px);
    background-size: auto, 180px 180px;
}

.velo-about__shell {
    width: min(100%, 1500px);
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(460px, 1.02fr);
    align-items: center;
    gap: clamp(46px, 6vw, 96px);
}

/* =========================================
   LEFT CONTENT
========================================= */

.velo-about__content {
    width: 100%;
    max-width: 690px;
}

/* Eyebrow */
.velo-about__eyebrow {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 34px;
}

.velo-about__eyebrow p {
    margin: 0;
    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(0.84rem, 0.9vw, 1rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #008fe8;
}

/* Title */
.velo-about__title {
    max-width: 690px;
    margin: 0;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(2.1rem, 4.4vw, 5.6rem);
    font-weight: 800;
    line-height: 0.96;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    text-wrap: balance;

    color: #07101f;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.95),
        0 12px 28px rgba(7, 16, 31, 0.08);
}

/* Lead */
.velo-about__lead {
    margin: 32px 0 0;
    max-width: 650px;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: clamp(1.35rem, 1.9vw, 2.15rem);
    font-weight: 500;
    line-height: 1.35;

    color: #159dff;
    text-shadow:
        0 0 14px rgba(69, 217, 255, 0.16);
}

/* Small accent line under lead */
.velo-about__accent-line {
    display: block;
    width: 62px;
    height: 3px;
    margin-top: 24px;
    border-radius: 999px;

    background: linear-gradient(
        90deg,
        #007cff 0%,
        #00b8ff 70%,
        rgba(255, 255, 255, 0) 100%
    );

    box-shadow:
        0 0 6px rgba(0, 140, 255, 0.32),
        0 0 14px rgba(69, 217, 255, 0.18);
}

/* Body text */
.velo-about__text {
    max-width: 640px;
    margin: 26px 0 0;

    font-size: clamp(1.05rem, 1.15vw, 1.28rem);
    font-weight: 500;
    line-height: 1.75;

    color: rgba(28, 49, 72, 0.78);
}

/* =========================================
   CTA
========================================= */

.velo-about__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;

    margin-top: 38px;
}

.velo-about__actions .velo-button {
    min-height: 58px;
    padding: 17px 30px;

    font-family: "Bai Jamjuree", Arial, sans-serif;
    font-size: clamp(0.95rem, 1vw, 1.08rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;

    border-radius: 8px 8px 22px 8px;
}

.velo-about__actions .velo-button span {
    margin-left: 28px;
    font-size: 1.45rem;
    line-height: 1;
}

.velo-about__actions .velo-button--primary {
    background: #2a78f5;
    border: #2a78f5;
    color: #ffffff;
    box-shadow:
        0 18px 40px rgba(0, 124, 255, 0.24),
        0 0 26px rgba(69, 217, 255, 0.22);
}

.velo-about__actions .velo-button--primary:hover {
    transform: translateY(-2px);
    background: #52b2f7;
    border-color: #52b2f7;
    color: #ffffff;
    box-shadow:
        0 22px 48px rgba(7, 16, 31, 0.22),
        0 0 34px rgba(69, 217, 255, 0.28);
}
/* =========================================
   CARDS - MORE SQUARE
========================================= */

/* =========================================
   CARDS - PROPORTIONATE SQUARE STYLE
========================================= */

.velo-about__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 1.5vw, 24px);
    margin-top: clamp(46px, 5vw, 64px);
    width: 100%;
    max-width: 760px;
}

.velo-about__card {
    position: relative;
    overflow: hidden;

    aspect-ratio: 1 / 1.18;
    min-height: 285px;
    padding: clamp(28px, 2vw, 34px) clamp(24px, 2vw, 30px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;

    border: 1px solid rgba(220, 238, 250, 0.92);
    border-radius: 12px;

    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.94),
            rgba(248, 252, 255, 0.82)
        );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 18px 44px rgba(7, 16, 31, 0.06),
        0 0 28px rgba(69, 217, 255, 0.07);

    backdrop-filter: blur(14px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.velo-about__card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-120%);
    background: linear-gradient(
        110deg,
        transparent 0%,
        rgba(255, 255, 255, 0.24) 34%,
        rgba(69, 217, 255, 0.22) 50%,
        rgba(255, 255, 255, 0.16) 66%,
        transparent 100%
    );
    transition:
        opacity 0.3s ease,
        transform 0.7s ease;
}

.velo-about__card:hover {
    transform: translateY(-7px);
    border-color: rgba(69, 217, 255, 0.44);
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98),
            rgba(241, 250, 255, 0.9)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        0 24px 58px rgba(7, 16, 31, 0.1),
        0 0 38px rgba(69, 217, 255, 0.17);
}

.velo-about__card:hover::before {
    opacity: 1;
    transform: translateX(120%);
}

.velo-about__card-icon,
.velo-about__card-title,
.velo-about__card-line,
.velo-about__card-text {
    position: relative;
    z-index: 1;
}

/* Icon */
.velo-about__card-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #249cff;
}

.velo-about__card-icon svg {
    width: 54px;
    height: 54px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.25;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter:
        drop-shadow(0 0 8px rgba(69, 217, 255, 0.22))
        drop-shadow(0 0 16px rgba(69, 217, 255, 0.12));
}

/* Card title */
.velo-about__card-title {
    margin: 0;
    max-width: 210px;

    font-family: "Jura", Arial, sans-serif;
    font-size: clamp(0.92rem, 0.88vw, 1.04rem);
    font-weight: 800;
    line-height: 1.24;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: #07101f;
}

/* Card text */
.velo-about__card-text {
    margin: 20px 0 0;
    max-width: 220px;

    font-size: clamp(0.82rem, 0.8vw, 0.92rem);
    font-weight: 500;
    line-height: 1.52;

    color: rgba(28, 49, 72, 0.76);
}

/* =========================================
   RIGHT IMAGE
========================================= */

.velo-about__media {
    position: relative;
}

.velo-about__image-wrap {
    position: relative;
    overflow: hidden;

    min-height: clamp(520px, 52vw, 760px);

    border: 1px solid rgba(220, 238, 250, 0.96);
    border-radius: 6px;

    background: rgba(255, 255, 255, 0.5);

    clip-path: polygon(
        20px 0,
        calc(100% - 20px) 0,
        100% 20px,
        100% calc(100% - 20px),
        calc(100% - 20px) 100%,
        20px 100%,
        0 calc(100% - 20px),
        0 20px
    );

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.94),
        0 26px 76px rgba(7, 16, 31, 0.14),
        0 0 44px rgba(69, 217, 255, 0.13);
}

.velo-about__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.75;
}

.velo-about__image-wrap img {
    display: block;

    width: 100%;
    height: 100%;
    min-height: clamp(520px, 52vw, 760px);

    object-fit: cover;
    object-position: center;

    transform: scale(1.01);

    transition:
        transform 0.55s ease,
        filter 0.55s ease;
}

.velo-about__image-wrap:hover img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.04);
}

/* Remove old badge if still in markup */
.velo-about__badge {
    display: none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1180px) {
    .velo-about__shell {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .velo-about__content {
        max-width: 900px;
    }

    .velo-about__title {
        max-width: 860px;
    }

    .velo-about__lead,
    .velo-about__text {
        max-width: 760px;
    }

    .velo-about__cards {
        max-width: 900px;
    }
}

/* =========================================
   TABLET CARD CLEANUP
========================================= */

@media (max-width: 820px) {
    .velo-about {
        padding: 72px 18px;
    }

    .velo-about__title {
        font-size: clamp(2.75rem, 12vw, 4.4rem);
    }

    .velo-about__lead {
        font-size: clamp(1.25rem, 5vw, 1.65rem);
    }

    .velo-about__text {
        font-size: 1rem;
        line-height: 1.7;
    }

    .velo-about__cards {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 42px;
        max-width: 100%;
    }

    .velo-about__card {
        aspect-ratio: auto;
        min-height: auto;
        padding: 34px 30px;

        display: grid;
        grid-template-columns: 74px 1fr;
        grid-template-rows: auto auto;
        column-gap: 24px;
        row-gap: 10px;

        align-items: center;
    }

    .velo-about__card-icon {
        grid-column: 1;
        grid-row: 1 / span 2;

        width: 64px;
        height: 64px;
        margin: 0;

        align-self: start;
    }

    .velo-about__card-icon svg {
        width: 58px;
        height: 58px;
    }

    .velo-about__card-title {
        grid-column: 2;
        grid-row: 1;

        max-width: 100%;
        margin: 0;

        font-size: clamp(1rem, 3.2vw, 1.25rem);
        line-height: 1.25;
    }

    .velo-about__card-text {
        grid-column: 2;
        grid-row: 2;

        max-width: 100%;
        margin: 0;

        font-size: clamp(0.92rem, 2.8vw, 1.02rem);
        line-height: 1.55;
    }

    .velo-about__image-wrap,
    .velo-about__image-wrap img {
        min-height: 420px;
    }
}

/* =========================================
   MOBILE CARD CLEANUP
========================================= */

@media (max-width: 560px) {
    .velo-about__eyebrow {
        gap: 0;
        margin-bottom: 28px;
    }

    .velo-about__eyebrow span {
        display: none;
    }

    .velo-about__eyebrow p {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }

    .velo-about__title {
        font-size: clamp(2.35rem, 13vw, 3.5rem);
    }

    .velo-about__cards {
        gap: 18px;
        margin-top: 38px;
    }

    .velo-about__card {
        padding: 28px 24px;

        display: grid;
        grid-template-columns: 58px 1fr;
        grid-template-rows: auto auto;
        column-gap: 20px;
        row-gap: 8px;

        border-radius: 12px;
    }

    .velo-about__card-icon {
        width: 52px;
        height: 52px;
    }

    .velo-about__card-icon svg {
        width: 48px;
        height: 48px;
    }

    .velo-about__card-title {
        font-size: 1rem;
        line-height: 1.25;
        letter-spacing: 0.055em;
    }

    .velo-about__card-text {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .velo-about__actions .velo-button {
        width: 100%;
        justify-content: center;
    }

    .velo-about__image-wrap,
    .velo-about__image-wrap img {
        min-height: 360px;
    }
}