@font-face {
    font-family: "Bebas Neue";
    src: url("../assets/fonts/BebasNeue-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins SemiBold";
    src: url("../assets/fonts/POPPINS-SEMIBOLD.TTF") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Poppins ExtraBold";
    src: url("../assets/fonts/POPPINS-EXTRABOLD.TTF") format("truetype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #070707;
    --bg-raise: #101010;
    --ink: #f7f4ef;
    --muted: rgba(247, 244, 239, 0.68);
    --line: rgba(255, 255, 255, 0.14);
    --orange: #ff8d00;
    --header: 78px;
    --wrap: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Poppins SemiBold", Arial, sans-serif;
    font-weight: 600;
    line-height: 1.6;
    overflow-x: hidden;
}

body:has(.mw-menu-check:checked) { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

::selection { background: var(--orange); color: #16120c; }

.mw-skip {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 80;
    background: var(--orange);
    color: #16120c;
    padding: 10px 14px;
}
.mw-skip:focus { top: 12px; }

.mw-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 40;
    height: var(--header);
    background: rgba(7, 7, 7, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mw-header__inner {
    width: var(--wrap);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

.mw-logo img { height: 42px; width: auto; }

.mw-menu-check {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.mw-burger {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    place-items: center;
    gap: 5px;
    cursor: pointer;
}

.mw-burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mw-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.mw-nav > a,
.mw-sub > span {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mw-nav a[aria-current="page"] { color: var(--orange); }

.mw-sub { position: relative; }

.mw-sub > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.mw-sub > span::after {
    content: "";
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.mw-sub__list {
    list-style: none;
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    min-width: 210px;
    padding: 8px;
    background: rgba(12, 12, 12, 0.96);
    border: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(6px);
    transition: 0.2s ease;
}

.mw-sub:hover .mw-sub__list,
.mw-sub:focus-within .mw-sub__list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mw-sub__list a { display: block; padding: 11px 12px; font-size: 13px; letter-spacing: 0.04em; }
.mw-sub__list a:hover,
.mw-sub__list a:focus-visible { background: #fff; color: #111; }

.mw-phone { font-size: 13px; letter-spacing: 0.06em; white-space: nowrap; }
.mw-phone span { color: var(--muted); margin-right: 8px; }
.mw-phone--menu { display: none; }

.mw-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 13px;
    border: 1px solid transparent;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.mw-btn:hover,
.mw-btn:focus-visible { transform: translateY(-2px); }
.mw-btn--solid { background: var(--orange); color: #16120c; }
.mw-btn--solid:hover,
.mw-btn--solid:focus-visible { background: #fff; }
.mw-btn--ghost { border-color: rgba(255, 255, 255, 0.7); color: #fff; background: rgba(0, 0, 0, 0.25); }
.mw-btn--ghost:hover,
.mw-btn--ghost:focus-visible { background: #fff; color: #111; }

.mw-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.mw-kicker {
    color: var(--orange);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 18px;
}

.mw-display {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 0.82;
}

.mw-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header) + 48px) 0 72px;
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.35), rgba(7, 7, 7, 0.15) 28%, rgba(7, 7, 7, 0.88)),
        linear-gradient(90deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.62) 46%, rgba(7, 7, 7, 0.28) 100%),
        var(--hero) center center / cover no-repeat;
    overflow: hidden;
}

.mw-hero--platinum { --hero: url("../assets/images/rolls-royce-img.avif"); }
.mw-hero--ultimate { --hero: url("../assets/images/gold-car-bg.avif"); }
.mw-hero--ghost { --hero: url("../assets/images/section-5-bg.avif"); }
.mw-hero--trex { --hero: url("../assets/images/section-6-bg.avif"); }
.mw-hero--hybrix { --hero: url("../assets/images/hybrixbg.jpg"); }
.mw-hero--home { --hero: url("../assets/images/Main_ImgID1.webp"); }
.mw-hero--home .mw-hero__split { display: block; position: relative; }
.mw-hero--home h1 { font-size: clamp(64px, 8vw, 128px); max-width: 16ch; }
.mw-hero--home h1 span { display: block; }
.mw-home-mark { height: 36px; width: auto; margin-bottom: 18px; }
.mw-hero--home .mw-hero__car {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(46vw, 620px);
    max-height: 58vh;
    object-fit: contain;
    object-position: right bottom;
}
.mw-hero--contact { --hero: url("../assets/images/section-contact-us-bg.avif.webp"); }

.mw-page-contact {
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.72), #070707 70%),
        var(--hero) center / cover no-repeat;
}

.mw-hero__inner { position: relative; z-index: 1; width: var(--wrap); margin: 0 auto; }

.mw-hero h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(84px, 14vw, 188px);
    font-weight: 400;
    line-height: 0.8;
    letter-spacing: 0.03em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.92);
}

.mw-hero__sub {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35em 0.7em;
    margin-top: 14px;
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(32px, 4.6vw, 64px);
    line-height: 0.9;
    letter-spacing: 0.08em;
}

.mw-hero__sub span:first-child {
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
}

.mw-lead {
    max-width: 680px;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(247, 244, 239, 0.88);
}

.mw-lead + .mw-lead { margin-top: 14px; }
.mw-lead strong { font-family: "Poppins ExtraBold", Arial, sans-serif; font-weight: 800; color: #fff; }
.mw-hero .mw-actions { margin-top: 32px; }

.mw-hero__split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: end;
}

.mw-hero__car {
    width: min(100%, 640px);
    margin-left: auto;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.45));
}

.mw-dino {
    width: min(220px, 40vw);
    margin-top: 18px;
}

.mw-marquee {
    background: var(--orange);
    color: #16120c;
    overflow: hidden;
}

.mw-marquee__track {
    display: flex;
    width: max-content;
    animation: mw-slide 32s linear infinite;
}

.mw-marquee__group {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 16px 14px;
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
    letter-spacing: 0.12em;
}

.mw-marquee__group i { font-style: normal; opacity: 0.45; }

.mw-wrap { width: var(--wrap); margin: 0 auto; }

.mw-sheet {
    width: var(--wrap);
    margin: 0 auto;
    padding: 96px 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: center;
}

.mw-frame {
    position: relative;
    min-height: 420px;
    display: grid;
    place-items: center;
    padding: 36px 24px;
    background: radial-gradient(circle at 50% 42%, #2a241c 0%, #101010 58%, #070707 100%);
    border: 1px solid var(--line);
}

.mw-frame img { width: min(100%, 640px); height: auto; }

.mw-tick { position: absolute; width: 22px; height: 22px; border-color: var(--orange); border-style: solid; }
.mw-tick--tl { top: 16px; left: 16px; border-width: 2px 0 0 2px; }
.mw-tick--tr { top: 16px; right: 16px; border-width: 2px 2px 0 0; }
.mw-tick--bl { bottom: 16px; left: 16px; border-width: 0 0 2px 2px; }
.mw-tick--br { bottom: 16px; right: 16px; border-width: 0 2px 2px 0; }

.mw-sheet h2,
.mw-features h2,
.mw-block h2,
.mw-close h2 {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.08em;
    font-size: clamp(48px, 6vw, 84px);
    line-height: 0.9;
}

.mw-film {
    margin: 18px 0 28px;
    max-width: 520px;
    color: var(--muted);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mw-specgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
}

.mw-specgrid div { padding: 18px 0 16px; border-bottom: 1px solid var(--line); }
.mw-specgrid div:nth-child(odd) { padding-right: 22px; border-right: 1px solid var(--line); }
.mw-specgrid div:nth-child(even) { padding-left: 22px; }

.mw-specgrid dt {
    color: var(--orange);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.mw-specgrid dd { display: flex; align-items: baseline; gap: 6px; }

.mw-specgrid b {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 0.9;
}

.mw-specgrid small {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.mw-micron { text-transform: none; letter-spacing: 0; }

.mw-series { margin-top: 28px; }
.mw-series img { width: min(100%, 280px); mix-blend-mode: screen; }

.mw-wide {
    width: min(1440px, calc(100% - 24px));
    margin: 0 auto;
}

.mw-wide img {
    width: 100%;
    max-height: 72vh;
    object-fit: cover;
    object-position: center;
}

.mw-features {
    width: var(--wrap);
    margin: 0 auto;
    padding: 72px 0 24px;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 40px;
}

.mw-feature-list {
    list-style: none;
    counter-reset: feature;
    border-top: 1px solid var(--line);
}

.mw-feature-list li {
    counter-increment: feature;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 72px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
}

.mw-feature-list li::before {
    content: counter(feature, decimal-leading-zero);
    color: var(--orange);
    font-family: "Bebas Neue", sans-serif;
    font-size: 28px;
}

.mw-close {
    margin-top: 64px;
    padding: 88px 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 7, 0.88), rgba(7, 7, 7, 0.5)),
        var(--hero, url("../assets/images/hybrixbg.jpg")) center / cover no-repeat;
}

.mw-close__inner {
    width: var(--wrap);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
}

.mw-close h2 span { display: block; color: transparent; -webkit-text-stroke: 1.5px #fff; }
.mw-close .mw-actions { margin-top: 0; flex-direction: column; align-items: flex-start; }
.mw-office { color: var(--muted); font-size: 14px; }

.mw-footer { border-top: 1px solid var(--line); padding: 36px 0 42px; }
.mw-footer__inner {
    width: var(--wrap);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.mw-footer__brand img:first-child { height: 42px; width: auto; margin-bottom: 10px; }
.mw-wordmark { height: 22px; width: auto; margin-bottom: 8px; mix-blend-mode: screen; }
.mw-footer__brand p { letter-spacing: 0.18em; font-size: 11px; color: var(--muted); }
.mw-socials { display: flex; gap: 14px; }
.mw-socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
}
.mw-socials img { width: 16px; height: 16px; object-fit: contain; }

.mw-nav a:focus-visible,
.mw-phone:focus-visible,
.mw-logo:focus-visible,
.mw-socials a:focus-visible,
.mw-btn:focus-visible,
.mw-burger:focus-visible,
.mw-field:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 3px;
}

.mw-pillars {
    width: var(--wrap);
    margin: 0 auto;
    padding: 72px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.mw-pillar {
    min-height: 210px;
    padding: 28px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 141, 0, 0.16), transparent 42%),
        #0c0c0c;
}

.mw-pillar h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 42px;
    letter-spacing: 0.08em;
    font-weight: 400;
    margin-bottom: 10px;
}

.mw-pillar p { color: var(--muted); max-width: 46ch; }

.mw-band {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    padding: 72px 0;
    background:
        linear-gradient(90deg, rgba(7, 7, 7, 0.88) 0%, rgba(7, 7, 7, 0.45) 55%, rgba(7, 7, 7, 0.2) 100%),
        var(--band) center / cover no-repeat;
}

.mw-band--flip {
    background:
        linear-gradient(270deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.45) 55%, rgba(7, 7, 7, 0.15) 100%),
        var(--band) center / cover no-repeat;
}

.mw-band--platinum { --band: url("../assets/images/section-3-3.avif"); }
.mw-band--ultimate { --band: url("../assets/images/section-4-bg.avif"); }
.mw-band--ghost { --band: url("../assets/images/section-5-bg.avif"); }
.mw-band--trex { --band: url("../assets/images/section-6-bg.avif"); }
.mw-band--hybrix { --band: url("../assets/images/section-7-bg.avif"); }
.mw-band--contact { --band: url("../assets/images/section-contact-us-bg.avif.webp"); }

.mw-band--flip .mw-band__inner { margin-left: auto; text-align: left; }

.mw-band__inner { width: min(640px, var(--wrap)); margin-left: max(24px, calc((100% - 1180px) / 2)); }
.mw-band h2 { font-size: clamp(56px, 7vw, 96px); }
.mw-band h2 span { display: block; color: transparent; -webkit-text-stroke: 1.5px #fff; }
.mw-band p { margin: 16px 0 24px; color: rgba(247, 244, 239, 0.88); max-width: 58ch; }
.mw-band strong { font-family: "Poppins ExtraBold", Arial, sans-serif; color: #fff; }

.mw-lineup { width: var(--wrap); margin: 0 auto; padding: 80px 0 40px; }
.mw-lineup h2 { text-align: center; margin-bottom: 28px; }
.mw-lineup__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.mw-card { grid-column: span 2; display: block; border: 1px solid var(--line); background: #0c0c0c; overflow: hidden; }
.mw-card img { display: block; transform-origin: center center; }
.mw-lineup__grid .mw-card:nth-child(4),
.mw-lineup__grid .mw-card:nth-child(5) { grid-column: span 3; }
.mw-card img { width: 100%; height: 280px; object-fit: cover; }
.mw-card span {
    display: block;
    padding: 14px 16px 16px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.14em;
    font-size: 28px;
}
.mw-card:hover span,
.mw-card:focus-visible span { color: var(--orange); }
.mw-lineup .mw-series { display: flex; justify-content: center; }

.mw-home-footer {
    margin-top: 48px;
    padding: 72px 0 48px;
    background:
        linear-gradient(180deg, rgba(7, 7, 7, 0.2), #070707 28%),
        url("../assets/images/homepage-footer-bg.avif.webp") center / cover no-repeat;
    border-top: 1px solid var(--line);
}

.mw-home-footer__grid {
    width: var(--wrap);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 40px;
}

.mw-home-logo { height: 46px; width: auto; display: block; margin-bottom: 18px; }

.mw-home-footer h3 {
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.12em;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 12px;
}

.mw-home-footer p,
.mw-home-footer a { color: var(--muted); font-size: 14px; }
.mw-home-footer a:hover { color: #fff; }
.mw-home-footer ul { list-style: none; display: grid; gap: 8px; }
.mw-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.mw-stats b {
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--orange);
    line-height: 1;
}
.mw-stats span { font-size: 12px; letter-spacing: 0.06em; color: var(--muted); }

.mw-contact {
    width: var(--wrap);
    margin: 0 auto;
    padding: calc(var(--header) + 48px) 0 72px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.mw-contact h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 0.82;
    font-weight: 400;
}

.mw-contact h1 span { display: block; color: transparent; -webkit-text-stroke: 1.5px #fff; }
.mw-contact h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(48px, 6vw, 84px);
    color: var(--orange);
    font-weight: 400;
    letter-spacing: 0.08em;
}

.mw-form { display: grid; gap: 14px; }
.mw-form__row { display: grid; gap: 14px; }
.mw-form__row--half { grid-template-columns: 1fr 1fr; }

.mw-field {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    background: #101010;
    color: var(--ink);
    border: 1px solid var(--line);
}

.mw-field::placeholder { color: rgba(247, 244, 239, 0.45); }
.mw-form .mw-btn { justify-self: start; margin-top: 6px; }

.mw-contact-aside { margin-top: 28px; color: var(--muted); }
.mw-contact-aside a { color: #fff; }

@keyframes mw-slide { to { transform: translateX(-50%); } }

@media (max-width: 1024px) {
    .mw-hero__split,
    .mw-sheet,
    .mw-features,
    .mw-contact,
    .mw-home-footer__grid { grid-template-columns: 1fr; }
    .mw-lineup__grid { grid-template-columns: 1fr 1fr; }
    .mw-card,
    .mw-lineup__grid .mw-card:nth-child(4),
    .mw-lineup__grid .mw-card:nth-child(5) { grid-column: auto; }
    .mw-band__inner { margin-left: 24px; margin-right: 24px; width: auto; }
    .mw-close__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 980px) {
    :root { --wrap: min(1180px, calc(100% - 32px)); }

    .mw-header {
        background: linear-gradient(180deg, rgba(7, 7, 7, 0.92), rgba(7, 7, 7, 0.35) 72%, rgba(7, 7, 7, 0));
        border-bottom: 0;
    }

    .mw-hero:not(.mw-hero--home) {
        min-height: 0;
        display: block;
        padding: 0 0 36px;
        background: #070707;
    }

    .mw-hero:not(.mw-hero--home)::before {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 1 / 1;
        background:
            linear-gradient(180deg, rgba(7, 7, 7, 0.42) 0%, rgba(7, 7, 7, 0) 18%, rgba(7, 7, 7, 0) 42%, rgba(7, 7, 7, 0.55) 70%, #070707 100%),
            var(--hero) center 42% / cover no-repeat;
    }

    .mw-hero:not(.mw-hero--home) .mw-hero__inner {
        margin-top: -34vw;
    }

    .mw-hero:not(.mw-hero--home) h1 {
        color: #fff;
        -webkit-text-stroke: 0;
        font-size: clamp(88px, 24vw, 120px);
        text-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    }

    .mw-hero:not(.mw-hero--home) .mw-hero__sub {
        font-size: clamp(28px, 8vw, 40px);
        text-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
    }

    .mw-hero--home {
        min-height: 100svh;
        align-items: flex-end;
        padding: calc(var(--header) + 8px) 0 12px;
        background:
            linear-gradient(180deg, rgba(7, 7, 7, 0.5) 0%, rgba(7, 7, 7, 0.08) 36%, rgba(7, 7, 7, 0.82) 100%),
            var(--hero) center 30% / cover no-repeat;
    }

    .mw-hero--home h1 {
        font-size: clamp(68px, 17vw, 96px);
        color: #fff;
        -webkit-text-stroke: 0;
    }

    .mw-hero--home .mw-hero__car {
        position: relative;
        right: auto;
        bottom: auto;
        width: 112%;
        max-width: none;
        max-height: none;
        margin: 4px 0 0 -6%;
        object-fit: contain;
        object-position: center bottom;
    }

    .mw-band,
    .mw-band--flip {
        min-height: 0;
        display: block;
        padding: 0 0 28px;
        background: #070707;
    }

    .mw-band::before {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 4 / 5;
        background:
            linear-gradient(180deg, rgba(7, 7, 7, 0.12) 0%, rgba(7, 7, 7, 0) 24%, rgba(7, 7, 7, 0.35) 62%, #070707 100%),
            var(--band) center 40% / cover no-repeat;
    }

    .mw-band__inner,
    .mw-band--flip .mw-band__inner {
        width: var(--wrap);
        margin: -40vw auto 0;
        text-align: left;
    }

    .mw-band h2 { font-size: clamp(56px, 15vw, 84px); }

    .mw-close {
        display: block;
        padding: 0 0 32px;
        background: #070707;
    }

    .mw-close::before {
        content: "";
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        background:
            linear-gradient(180deg, rgba(7, 7, 7, 0) 20%, #070707 100%),
            var(--hero, url("../assets/images/hybrixbg.jpg")) center / cover no-repeat;
    }

    .mw-close__inner {
        width: var(--wrap);
        margin: -22vw auto 0;
    }

    .mw-wide img {
        max-height: none;
        height: auto;
        object-fit: contain;
    }

    .mw-page-contact {
        background:
            linear-gradient(180deg, rgba(7, 7, 7, 0.28) 0%, rgba(7, 7, 7, 0.72) 34%, #070707 58%),
            var(--hero) center top / 100% auto no-repeat;
        background-color: #070707;
    }

    .mw-burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        grid-column: 3;
    }

    .mw-phone { display: none; }

    .mw-nav {
        position: fixed;
        top: var(--header);
        right: 0;
        left: 0;
        height: calc(100svh - var(--header));
        z-index: 30;
        background: #070707;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 12px 22px 32px;
        transform: translateX(100%);
        visibility: hidden;
        overflow: auto;
    }

    .mw-menu-check:checked ~ .mw-nav {
        transform: none;
        visibility: visible;
    }

    .mw-menu-check:checked ~ .mw-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .mw-menu-check:checked ~ .mw-burger span:nth-child(2) { opacity: 0; }
    .mw-menu-check:checked ~ .mw-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .mw-nav > a,
    .mw-sub { width: 100%; border-bottom: 1px solid var(--line); padding: 16px 0; }

    .mw-sub__list {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        border: 0;
        background: transparent;
        padding: 10px 0 0;
        min-width: 0;
    }

    .mw-sub:hover .mw-sub__list,
    .mw-sub:focus-within .mw-sub__list {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .mw-sub__list a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .mw-sub__list a:hover,
    .mw-sub__list a:focus-visible { background: transparent; color: var(--orange); }
    .mw-phone--menu { display: block; margin-top: 22px; border: 0; }
    .mw-footer__inner,
    .mw-pillars,
    .mw-form__row--half { grid-template-columns: 1fr; align-items: flex-start; flex-direction: column; }
    .mw-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
    .mw-hero h1 { font-size: clamp(84px, 22vw, 112px); }
    .mw-hero--home h1 { font-size: clamp(64px, 16vw, 88px); }
    .mw-feature-list li { font-size: 16px; grid-template-columns: 48px 1fr; }
    .mw-card img { height: 200px; }
    .mw-sheet, .mw-features, .mw-pillars { padding-top: 48px; padding-bottom: 48px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .mw-marquee__track, .mw-btn, .mw-nav, .mw-burger span { animation: none; transition: none; }
}
