@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --black: #090909;
    --ink: #171717;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f1f2f3;
    --gray-200: #e2e4e7;
    --gray-300: #d3d6da;
    --page-gradient: linear-gradient(120deg, #d5d8dc 0%, #eceef0 24%, #ffffff 50%, #f3f4f5 72%, #d9dce0 100%);
    --navbar-gradient: linear-gradient(110deg, #9ea4aa 0%, #c4c8cc 22%, #eef0f2 48%, #ffffff 62%, #d3d6da 82%, #a9afb5 100%);
    --line: rgba(23, 23, 23, .14);
    --red: #c5161d;
    --gold: #d5a741;
    --premium-gold: #d7a941;
    --premium-gold-light: #ffe08a;
    --premium-dark: #020b13;
    --premium-blue: #061421;
    --top-strip: 0px;
    --header-height: 96px;
    --max-width: 1240px;
    --font-title: "Montserrat", sans-serif;
    --font-text: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    color: var(--ink);
    background: rgb(4, 16, 28);
    background-attachment: fixed;
    font-family: var(--font-text);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    background: rgb(4, 16, 28);
}

main > section + section {
    margin-top: 0;
}

.site-header {
    position: fixed;
    inset: var(--top-strip) 0 auto;
    z-index: 70;
    height: 96px;
    background: linear-gradient(180deg, rgba(1, 8, 14, .9), rgba(1, 8, 14, .2));
    border-bottom: 1px solid rgba(215, 169, 65, .08);
    box-shadow: none;
    transition: box-shadow .22s ease, transform .22s ease;
}

.site-header.is-scrolled {
    background: rgba(2, 11, 19, .94);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
    backdrop-filter: blur(14px);
}

.site-header.is-hidden {
    transform: translateY(calc(-1 * (var(--header-height) + var(--top-strip))));
}

.nav-shell {
    width: min(calc(100% - 42px), 1510px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    width: 310px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: sepia(1) saturate(1.5) hue-rotate(350deg) brightness(1.08) contrast(1.05);
    transform: scale(1.04);
    transform-origin: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: linear-gradient(135deg, var(--white), var(--gray-100));
    color: var(--black);
    font-size: 1.35rem;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-menu a {
    position: relative;
    padding: 12px 0;
    color: rgba(255, 255, 255, .9);
    font-size: .84rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    transition: color .2s ease, background .2s ease;
}

.nav-menu a:hover {
    background: transparent;
    color: var(--premium-gold-light);
}

.nav-menu a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--premium-gold);
    opacity: 0;
    transform: scaleX(.5);
    transition: opacity .2s ease, transform .2s ease;
}

.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a:first-child::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-menu .nav-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-left: 18px;
    padding: 12px 20px;
    border-radius: 6px;
    background: linear-gradient(135deg, #fff0b4 0%, #d8a441 48%, #9a6e1e 100%);
    color: #11100c;
    box-shadow: 0 10px 24px rgba(215, 169, 65, .28);
    font-weight: 900;
}

.premium-home {
    min-height: 100vh;
    color: var(--white);
    background:
        radial-gradient(circle at 72% 9%, rgba(215, 169, 65, .16), transparent 30%),
        linear-gradient(180deg, #020a12 0%, #04111d 64%, #020910 100%);
}

.project-videos {
    padding: 72px 0;
    background: rgb(4, 16, 28);
}

.wide-video {
    width: 100%;
    min-height: min(74vh, 820px);
    display: grid;
    place-items: center;
    overflow: hidden;
    border-top: 1px solid rgba(215, 169, 65, .22);
    border-bottom: 1px solid rgba(215, 169, 65, .22);
    background: rgba(2, 10, 18, .78);
}

.wide-video + .wide-video {
    margin-top: 48px;
}

.wide-video video {
    width: 100%;
    height: 100%;
    min-height: min(74vh, 820px);
    object-fit: cover;
    background: var(--black);
}

.home-hero {
    position: relative;
    min-height: 685px;
    overflow: hidden;
    isolation: isolate;
}

.home-bg {
    position: absolute;
    inset: 0;
    z-index: -4;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(90deg, rgba(2, 9, 16, .94) 0%, rgba(2, 9, 16, .78) 31%, rgba(2, 9, 16, .34) 58%, rgba(2, 9, 16, .22) 100%),
        linear-gradient(180deg, rgba(2, 9, 16, .46), rgba(2, 9, 16, .12) 46%, rgba(2, 9, 16, .94) 100%);
}

.home-medals {
    position: absolute;
    z-index: -1;
    right: -3vw;
    bottom: 12px;
    width: min(45vw, 720px);
    max-height: 83%;
    object-fit: contain;
    object-position: right bottom;
    filter: drop-shadow(0 26px 34px rgba(0, 0, 0, .48));
}

.home-copy {
    width: min(calc(100% - 72px), 1510px);
    min-height: 685px;
    margin-inline: auto;
    padding-top: 168px;
}

.home-copy h1 {
    max-width: 610px;
    color: rgba(255, 255, 255, .94);
    font-family: var(--font-title);
    font-size: clamp(2.9rem, 4.45vw, 5rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.home-copy h1 span {
    display: block;
    color: var(--premium-gold-light);
}

.home-rule {
    width: 48px;
    height: 2px;
    margin-top: 24px;
    background: var(--premium-gold);
}

.home-copy p {
    max-width: 620px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .9);
    font-size: 1.2rem;
    line-height: 1.65;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 32px;
}

.gold-button,
.outline-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gold-button {
    background: linear-gradient(135deg, #fff1bb 0%, #d5a13a 52%, #8f6419 100%);
    color: #100f0b;
    box-shadow: 0 16px 32px rgba(215, 169, 65, .26);
}

.outline-button {
    border: 1px solid rgba(215, 169, 65, .74);
    color: var(--white);
    background: rgba(2, 11, 19, .3);
}

.gold-button:hover,
.outline-button:hover {
    transform: translateY(-2px);
}

.home-panel {
    width: min(calc(100% - 72px), 1510px);
    margin-inline: auto;
    padding: 18px 0 34px;
    border-top: 1px solid rgba(215, 169, 65, .18);
}

.panel-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
    color: var(--white);
}

.panel-title span {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 169, 65, .48), transparent);
}

.panel-title h2 {
    color: rgba(255, 255, 255, .94);
    font-family: var(--font-title);
    font-size: clamp(1rem, 1.25vw, 1.35rem);
    font-weight: 600;
    letter-spacing: .08em;
    text-align: center;
    text-transform: uppercase;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.solutions-grid article {
    min-height: 174px;
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 24px 28px;
    border: 1px solid rgba(215, 169, 65, .52);
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(2, 14, 24, .88), rgba(8, 21, 34, .7));
}

.solutions-grid article:last-child {
    padding-right: 34px;
}

.solutions-grid i {
    color: var(--premium-gold);
    font-size: 4.4rem;
    line-height: 1;
}

.solutions-grid h3 {
    color: var(--white);
    font-family: var(--font-title);
    font-size: clamp(.98rem, 1.08vw, 1.1rem);
    line-height: 1.25;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.solutions-grid p {
    margin-top: 12px;
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
    line-height: 1.48;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 22px;
    padding: 24px 0;
    border-top: 1px solid rgba(215, 169, 65, .16);
    border-bottom: 1px solid rgba(215, 169, 65, .16);
}

.stats-row div {
    min-height: 78px;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    align-items: center;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, .12);
}

.stats-row div:last-child {
    border-right: 0;
}

.stats-row i {
    grid-row: span 2;
    color: var(--premium-gold);
    font-size: 2.35rem;
}

.stats-row strong {
    color: var(--premium-gold-light);
    font-family: var(--font-title);
    font-size: clamp(1.65rem, 2vw, 2.25rem);
    line-height: 1;
    text-transform: uppercase;
}

.stats-row span {
    color: rgba(255, 255, 255, .86);
    font-size: .82rem;
    font-weight: 700;
    text-transform: uppercase;
}

.client-strip {
    margin-top: 6px;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 22px;
    align-items: end;
    margin-top: 20px;
    color: rgba(255, 255, 255, .84);
    text-align: center;
}

.client-logos strong {
    font-family: var(--font-title);
    font-size: clamp(1rem, 1.3vw, 1.4rem);
    line-height: .95;
    text-transform: uppercase;
}

.client-logos small {
    font-size: .68em;
}

.hero-carousel {
    position: relative;
    height: calc(100vh - var(--top-strip) - var(--header-height));
    min-height: 560px;
    margin-top: calc(var(--top-strip) + var(--header-height));
    overflow: hidden;
    isolation: isolate;
    background: var(--page-gradient);
}

.carousel-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(0deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, .02) 46%, rgba(0, 0, 0, .16));
}

.hero-stage {
    position: absolute;
    inset: 0;
    z-index: -1;
    display: grid;
    place-items: center;
    padding: clamp(42px, 6vh, 76px) clamp(72px, 9vw, 150px) clamp(126px, 14vh, 176px);
}

.hero-slide {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translate(78px, -18px) scale(.96);
    transition: opacity .65s ease, visibility .65s ease, transform .65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-18px) scale(1);
}

.hero-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 36px 44px rgba(0, 0, 0, .38));
}

.carousel-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 52px;
    height: 68px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(0, 0, 0, .46);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background .2s ease, border-color .2s ease;
}

.carousel-arrow:hover {
    border-color: var(--red);
    background: var(--red);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 28px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.carousel-dots button {
    width: 38px;
    height: 5px;
    border: 0;
    background: rgba(255, 255, 255, .42);
    cursor: pointer;
}

.carousel-dots button.is-active {
    background: var(--red);
}

.video-carousel {
    position: relative;
    height: min(78vh, 820px);
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    background: var(--page-gradient);
}

.video-stage {
    position: absolute;
    inset: 0;
    display: grid;
}

.video-slide {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity .65s ease, visibility .65s ease, transform 1s ease;
}

.video-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.video-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .34) 42%, rgba(0, 0, 0, .08) 72%),
        linear-gradient(0deg, rgba(0, 0, 0, .38), transparent 48%);
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--black);
}

.video-copy {
    position: absolute;
    z-index: 2;
    left: max(38px, calc((100vw - var(--max-width)) / 2));
    top: 50%;
    max-width: min(620px, 58vw);
    color: var(--white);
    transform: translateY(-50%);
}

.video-copy span {
    display: block;
    margin-bottom: 14px;
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.video-copy h2 {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 5.5vw, 5.8rem);
    line-height: .98;
    letter-spacing: 0;
    text-transform: uppercase;
}

.video-toggle {
    position: absolute;
    z-index: 6;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .48);
    color: var(--white);
    font-size: 1.7rem;
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: background .2s ease, transform .2s ease;
}

.video-toggle:hover {
    background: var(--red);
    transform: translate(-50%, -50%) scale(1.06);
}

.video-dots {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 34px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.video-dots button {
    width: 42px;
    height: 5px;
    border: 0;
    background: rgba(255, 255, 255, .38);
    cursor: pointer;
}

.video-dots button.is-active {
    background: var(--red);
}

.medal-collection {
    padding: 76px max(28px, calc((100vw - var(--max-width)) / 2)) 86px;
    background: linear-gradient(125deg, #aeb3b9 0%, #cbd0d5 24%, #eef0f2 58%, #d8dce0 100%);
}

.collection-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.collection-heading span {
    display: block;
    margin-bottom: 10px;
    color: #4d535a;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.collection-heading h2 {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 4vw, 4.3rem);
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.medal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 40px);
}

.medal-item {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}

.medal-image {
    width: 100%;
    aspect-ratio: 4 / 4.5;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, #979da4 0%, #c9cdd1 42%, #f3f4f5 100%);
}

.medal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: clamp(18px, 2.4vw, 34px);
    filter: drop-shadow(0 20px 24px rgba(35, 39, 43, .26));
    transition: transform .35s ease;
}

.medal-item:hover .medal-image img {
    transform: scale(1.035);
}

.medal-item h3 {
    margin-top: 24px;
    font-family: var(--font-title);
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.medal-item p {
    max-width: 390px;
    margin-top: 12px;
    color: #3f444a;
    font-size: .98rem;
    line-height: 1.55;
}

.medal-item a {
    min-height: 46px;
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    background: var(--black);
    color: var(--white);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: background .2s ease, transform .2s ease;
}

.medal-item a:hover {
    background: var(--red);
    transform: translateY(-2px);
}

@media (max-width: 980px) {
    .site-header {
        height: 82px;
    }

    .brand {
        width: 230px;
        height: 72px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-menu a {
        font-size: .76rem;
    }

    .nav-menu .nav-cta {
        padding-inline: 14px;
    }

    .home-hero,
    .home-copy {
        min-height: 760px;
    }

    .home-copy {
        width: min(calc(100% - 44px), 1510px);
        padding-top: 132px;
    }

    .home-copy h1 {
        max-width: 560px;
    }

    .home-medals {
        right: -10vw;
        bottom: 24px;
        width: min(74vw, 680px);
        max-height: 54%;
    }

    .home-panel {
        width: min(calc(100% - 44px), 1510px);
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 22px;
    }

    .stats-row div:nth-child(2) {
        border-right: 0;
    }

    .client-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px 18px;
    }

    .hero-carousel::before {
        background: linear-gradient(0deg, rgba(0, 0, 0, .18), transparent 50%, rgba(0, 0, 0, .18));
    }

    .hero-stage {
        place-items: center;
        padding: 36px 38px 132px;
    }

    .hero-slide {
        width: 100%;
        height: 100%;
    }

    .video-carousel {
        height: 72vh;
        min-height: 580px;
    }

    .medal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    :root {
        --top-strip: 0px;
        --header-height: 70px;
    }

    .site-header {
        height: var(--header-height);
        background: rgba(2, 11, 19, .96);
        backdrop-filter: blur(14px);
    }

    .nav-toggle {
        display: grid;
        place-items: center;
        border-color: rgba(215, 169, 65, .34);
        background: rgba(255, 255, 255, .06);
        color: var(--premium-gold-light);
    }

    .nav-menu {
        position: fixed;
        top: calc(var(--top-strip) + var(--header-height));
        left: 16px;
        right: 16px;
        display: grid;
        gap: 2px;
        padding: 10px;
        background: linear-gradient(145deg, rgba(2, 11, 19, .98), rgba(7, 22, 35, .98));
        border: 1px solid rgba(215, 169, 65, .22);
        box-shadow: 0 18px 34px rgba(0, 0, 0, .38);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .2s ease, transform .2s ease;
    }

    .nav-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu a {
        width: 100%;
        padding: 14px;
        color: rgba(255, 255, 255, .92);
    }

    .nav-menu .nav-cta {
        margin-left: 0;
        text-align: center;
    }

    .home-hero,
    .home-copy {
        min-height: 820px;
    }

    .home-copy {
        padding-top: 112px;
    }

    .home-copy h1 {
        max-width: 510px;
    }

    .home-copy p {
        max-width: 490px;
        font-size: 1rem;
    }

    .home-medals {
        right: -20vw;
        width: 92vw;
        max-height: 48%;
    }

    .home-actions {
        gap: 12px;
    }

    .panel-title {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .panel-title span {
        display: none;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid article {
        grid-template-columns: 72px 1fr;
    }

    .solutions-grid i {
        font-size: 3.6rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .stats-row div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
        padding: 16px 10px;
    }

    .stats-row div:last-child {
        border-bottom: 0;
    }

    .carousel-arrow {
        top: auto;
        bottom: 24px;
        width: 46px;
        height: 54px;
        transform: none;
    }

    .carousel-prev {
        left: 18px;
    }

    .carousel-next {
        right: 18px;
    }

    .carousel-dots {
        bottom: 42px;
    }

    .video-carousel {
        height: 680px;
        min-height: 0;
    }

    .video-slide::after {
        background:
            linear-gradient(0deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .18) 64%),
            linear-gradient(90deg, rgba(0, 0, 0, .35), transparent);
    }

    .video-copy {
        left: 24px;
        right: 24px;
        top: auto;
        bottom: 116px;
        max-width: none;
        transform: none;
    }

    .video-copy h2 {
        font-size: clamp(2.3rem, 11vw, 4.2rem);
    }

    .video-toggle {
        top: 42%;
    }

    .video-dots {
        bottom: 41px;
    }

    main > section + section {
        margin-top: 0;
    }

    .medal-collection {
        padding: 58px 22px 66px;
    }

    .project-videos {
        padding: 38px 0;
    }

    .wide-video,
    .wide-video video {
        min-height: 520px;
    }

    .wide-video + .wide-video {
        margin-top: 28px;
    }
}

@media (max-width: 640px) {
    .brand {
        width: 184px;
        height: 64px;
    }

    .brand img {
        transform: scale(1.04);
    }

    .home-hero,
    .home-copy {
        min-height: 760px;
    }

    .home-copy {
        width: calc(100% - 32px);
        padding-top: 96px;
    }

    .home-copy h1 {
        font-size: clamp(2.25rem, 10vw, 3.45rem);
    }

    .home-rule {
        margin-top: 18px;
    }

    .home-actions {
        display: grid;
        width: 100%;
    }

    .gold-button,
    .outline-button {
        width: 100%;
    }

    .home-medals {
        right: -33vw;
        bottom: 16px;
        width: 118vw;
        max-height: 43%;
    }

    .home-panel {
        width: calc(100% - 32px);
        padding-top: 22px;
    }

    .solutions-grid article {
        min-height: auto;
        padding: 20px;
    }

    .client-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-carousel {
        min-height: 620px;
    }

    .hero-stage {
        padding: 28px 28px 120px;
    }

    .hero-slide {
        width: 100%;
        height: 100%;
    }

    .carousel-dots {
        gap: 7px;
    }

    .carousel-dots button {
        width: 24px;
    }

    .video-carousel {
        height: 620px;
    }

    .video-dots button {
        width: 30px;
    }

    .medal-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .medal-image {
        aspect-ratio: 1 / 1.08;
    }

    .medal-item h3 {
        margin-top: 20px;
    }

    .wide-video,
    .wide-video video {
        min-height: 420px;
    }
}
