:root {
    color-scheme: light;
    --peps-blue: #1193d2;
    --peps-blue-deep: #0b4e73;
    --peps-blue-soft: #eff8ff;
    --peps-yellow: #fbbf24;
    --peps-yellow-deep: #f59e0b;
    --ink: #0f172a;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.08);
    --card-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
    --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font);
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(17, 147, 210, 0.12), transparent 30%),
        linear-gradient(180deg, #0f8fce 0 390px, #f6fbff 390px, #ffffff 100%);
}

a {
    color: inherit;
}

.siteHeader,
main,
.footer {
    width: min(1500px, calc(100% - 32px));
    margin-inline: auto;
}

.siteHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 8px 0;
    color: #ffffff;
}

.brand {
    display: grid;
    gap: 7px;
    width: 245px;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand img {
    display: block;
    width: 132px;
    height: auto;
}

.brand span {
    display: block;
    color: #fff6cf;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

.topNav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.topNav a,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
}

.topNav a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.96rem;
}

.topNav a:hover,
.topNav a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.topNav .navHighlight,
.button.training,
.button.dark {
    border: 1px solid rgba(251, 191, 36, 0.18);
    background: linear-gradient(135deg, var(--peps-yellow-deep), var(--peps-yellow));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(245, 158, 11, 0.22);
}

.hero {
    display: grid;
    gap: 14px;
    padding: 62px 24px 106px;
    color: #ffffff;
}

.heroSimple {
    grid-template-columns: 1fr;
    min-height: auto;
}

.heroCopy {
    display: grid;
    gap: 14px;
    max-width: 1080px;
}

.tagline,
.eyebrow,
.productLabel {
    margin: 0;
    width: fit-content;
    color: #fff6cf;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font);
    font-weight: 900;
    letter-spacing: 0;
}

h1 {
    max-width: 1060px;
    margin-bottom: 0;
    color: #ffffff;
    font-size: clamp(2.35rem, 4.8vw, 4.35rem);
    line-height: 0.98;
}

.button {
    border: 0;
    cursor: pointer;
    transition: transform 0.08s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
}

.button.primary {
    background: linear-gradient(135deg, var(--peps-blue), var(--peps-blue-deep));
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(17, 147, 210, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
    box-shadow: 0 16px 30px rgba(17, 147, 210, 0.28);
}

.sectionIntro {
    position: relative;
    z-index: 2;
    margin-top: -54px;
    padding: 28px 30px 8px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px 28px 0 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--card-shadow);
}

.sectionIntro h2,
.trainingBand h2 {
    margin-bottom: 10px;
    color: var(--ink);
    font-size: clamp(2rem, 3.4vw, 3.25rem);
    line-height: 1.02;
}

.sectionIntro p,
.trainingBand p,
.product p {
    color: var(--muted);
    font-weight: 600;
    line-height: 1.55;
}

.sectionIntro .eyebrow,
.productLabel {
    color: var(--peps-blue-deep);
}

.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 18px 30px 34px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-top: 0;
    border-radius: 0 0 28px 28px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--card-shadow);
}

.product {
    position: relative;
    display: flex;
    min-height: 405px;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 20px;
    border: 2px solid rgba(17, 147, 210, 0.16);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
    transition: transform 0.08s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.product:hover {
    border-color: rgba(17, 147, 210, 0.36);
    box-shadow: 0 18px 34px rgba(17, 147, 210, 0.14);
    transform: translateY(-1px);
}

.product::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    border-radius: 16px 0 0 16px;
    background: var(--peps-blue);
}

.productMobile::before {
    background: var(--peps-blue-soft);
}

.productBlue::before {
    background: var(--peps-blue);
}

.productOrange::before {
    background: var(--peps-yellow-deep);
}

.productYellow::before {
    background: var(--peps-yellow);
}

.product h3 {
    margin: 12px 0 12px;
    color: #0b3350;
    font-size: 1.26rem;
    line-height: 1.12;
}

.actions {
    display: grid;
    grid-template-rows: minmax(58px, auto) auto;
    gap: 14px;
    margin-top: auto;
}

.resourceLinks {
    display: grid;
    align-content: end;
    gap: 12px;
}

.downloadButton {
    width: 100%;
}

.textLink {
    display: inline-flex;
    width: fit-content;
    color: #31546a;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration-color: rgba(17, 147, 210, 0.28);
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.textLink:hover,
.textLink:focus-visible {
    color: var(--peps-blue-deep);
}

.trainingBand {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    margin: 32px 0 42px;
    padding: 30px;
    border: 1px solid rgba(251, 191, 36, 0.25);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 196, 31, 0.2) 0%, rgba(255, 255, 255, 1) 82%);
    box-shadow: 0 18px 34px rgba(251, 191, 36, 0.14);
}

.trainingBand .eyebrow {
    color: #7a4b00;
}

.trainingBand p {
    max-width: 680px;
    margin-bottom: 0;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 8px 34px;
    color: var(--muted);
}

.footer img {
    width: 118px;
    height: auto;
}

.footer div {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer a {
    color: var(--peps-blue-deep);
    font-weight: 900;
    text-decoration: none;
}

.footer a:hover,
.footer a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 1180px) {
    .products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product {
        min-height: 330px;
    }
}

@media (max-width: 720px) {
    body {
        background:
            radial-gradient(circle at top left, rgba(17, 147, 210, 0.12), transparent 34%),
            linear-gradient(180deg, #0f8fce 0 470px, #f6fbff 470px, #ffffff 100%);
    }

    .siteHeader,
    main,
    .footer {
        width: min(100% - 22px, 1500px);
    }

    .siteHeader {
        align-items: flex-start;
        flex-direction: column;
        padding-top: 12px;
    }

    .brand {
        width: 240px;
    }

    .topNav {
        width: 100%;
        justify-content: flex-start;
    }

    .topNav a,
    .button {
        width: 100%;
    }

    .hero {
        padding: 38px 8px 88px;
    }

    h1 {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .sectionIntro {
        margin-top: -38px;
        padding: 22px 20px 8px;
        border-radius: 24px 24px 0 0;
    }

    .products {
        grid-template-columns: 1fr;
        padding: 14px 20px 24px;
        border-radius: 0 0 24px 24px;
    }

    .product {
        min-height: 0;
    }

    .actions {
        grid-template-rows: auto auto;
    }

    .trainingBand {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        border-radius: 24px;
    }

    .footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer div {
        justify-content: flex-start;
    }
}
