:root {
    --home-ink: #111318;
    --home-muted: #6d6f74;
    --home-line: rgba(17, 19, 24, 0.14);
    --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page {
    background: #fff;
    color: var(--home-ink);
}

.home-page .top-banner {
    display: none;
}

.home-page header {
    position: absolute;
    inset: 0 0 auto;
    z-index: 1000;
    border: 0;
    background: transparent;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.home-page .header-container {
    height: 104px;
    padding: 0 clamp(28px, 3.5vw, 68px);
    gap: clamp(28px, 5vw, 90px);
}

.home-page .logo {
    position: static;
    order: -1;
    flex: 0 0 auto;
    transform: none;
}

.home-page .brand-logo {
    width: clamp(112px, 9vw, 150px);
    filter: brightness(0) invert(1) drop-shadow(0 5px 18px rgba(0, 0, 0, 0.25));
}

.home-page .nav-left {
    justify-content: center;
    gap: clamp(24px, 3vw, 54px);
}

.home-page .nav-right {
    flex: 0 0 auto;
    gap: clamp(16px, 1.7vw, 30px);
}

.home-page .nav-link {
    color: inherit;
    font-size: clamp(0.76rem, 0.82vw, 0.92rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    text-transform: none;
}

.home-page .nav-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    min-height: 36px;
    gap: 6px;
}

.home-page .nav-icon-link i {
    font-size: 1.3rem;
}

.home-page .nav-icon-link:not([href*="support"]) .nav-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.home-page .nav-cart-count {
    position: absolute;
    top: -2px;
    right: -7px;
    display: grid;
    min-width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #111;
    font-size: 0.62rem;
    font-weight: 700;
}

.home-page .mega-menu {
    color: #111;
}

.home-kicker {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.76rem, 0.9vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.home-button {
    display: inline-flex;
    min-width: 146px;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.54);
    border-radius: 999px;
    color: #fff;
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: transform 0.25s var(--home-ease), background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.home-button:hover,
.home-button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.home-button:active {
    transform: translateY(0) scale(0.97);
}

.home-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.home-button--filled {
    border-color: rgba(255, 255, 255, 0.18);
    background: color-mix(in srgb, var(--slide-accent, #a2adbb) 78%, transparent);
    backdrop-filter: blur(12px);
}

.home-button--filled:hover,
.home-button--filled:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #111;
}

.home-button--glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.home-button--glass:hover,
.home-button--glass:focus-visible {
    background: rgba(255, 255, 255, 0.92);
    color: #111;
}

.home-button--muted {
    border-color: #747474;
    background: #696969;
    color: #fff;
}

.home-button--muted:hover,
.home-button--muted:focus-visible {
    border-color: #fff;
    background: #fff;
    color: #111;
}

/* Hero */
.home-hero {
    position: relative;
    height: max(760px, 100svh);
    min-height: 760px;
    overflow: hidden;
    background: #05070a;
    color: #fff;
}

.home-hero__slides,
.home-hero__slide,
.home-hero__image,
.home-hero__overlay {
    position: absolute;
    inset: 0;
}

.home-hero__slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.85s ease, visibility 0.85s;
}

.home-hero__slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
}

.home-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.045);
    transition: transform 6s ease;
}

.home-hero__slide.is-active .home-hero__image {
    transform: scale(1);
}

.home-hero__overlay {
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.35) 43%, rgba(0, 0, 0, 0.13) 78%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.47), transparent 48%),
        rgba(0, 0, 0, 0.12);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    width: min(100% - 180px, 1360px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease 0.2s, transform 0.65s var(--home-ease) 0.2s;
}

.home-hero__slide.is-active .home-hero__content {
    opacity: 1;
    transform: translateY(0);
}

.home-hero h1,
.home-hero h2 {
    max-width: 850px;
    margin: 0 0 28px;
    font-size: clamp(2.8rem, 4.2vw, 5.2rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.045em;
}

.home-hero__lead {
    max-width: 700px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 1.15vw, 1.24rem);
    font-weight: 400;
    line-height: 1.75;
}

.home-hero__arrow,
.home-carousel__arrow {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.home-hero__arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 50%;
    color: #fff;
    font-size: 1.45rem;
    transform: translateY(-50%);
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--home-ease);
}

.home-hero__arrow:hover,
.home-hero__arrow:focus-visible {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.14);
}

.home-hero__arrow:active {
    transform: translateY(-50%) scale(0.9);
}

.home-hero__arrow--prev { left: 2.2vw; }
.home-hero__arrow--next { right: 2.2vw; }

.home-hero__counter {
    position: absolute;
    z-index: 5;
    right: clamp(40px, 6vw, 110px);
    bottom: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
}

.home-hero__counter i {
    width: 52px;
    height: 1px;
    background: rgba(255, 255, 255, 0.44);
}

/* Product tabs and carousel */
.home-products {
    position: relative;
    overflow: hidden;
    padding: clamp(105px, 9vw, 165px) 0 clamp(100px, 8vw, 150px);
    background: #fff;
    color: #37383b;
}

.home-products__heading {
    width: min(100% - 48px, 1100px);
    margin: 0 auto clamp(46px, 5vw, 78px);
    text-align: center;
}

.home-products__heading h2 {
    margin: 0;
    font-size: clamp(3.1rem, 5.1vw, 6rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.055em;
}

.home-products__heading > p {
    margin: 24px 0 0;
    color: #5f6064;
    font-size: clamp(1rem, 1.25vw, 1.3rem);
}

.home-products__tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(12px, 2.8vw, 54px);
    margin-top: clamp(36px, 4vw, 62px);
}

.home-products__tabs button {
    min-width: clamp(165px, 14vw, 238px);
    min-height: 56px;
    padding: 11px 24px;
    border: 1px solid #d4d4d4;
    border-radius: 999px;
    background: #ededed;
    color: #3f4043;
    font: inherit;
    font-size: clamp(0.84rem, 1.05vw, 1.06rem);
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.22s var(--home-ease), background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.home-products__tabs button:hover,
.home-products__tabs button:focus-visible {
    border-color: #777;
    background: #d9d9d9;
    transform: translateY(-2px);
}

.home-products__tabs button:active {
    transform: translateY(0) scale(0.97);
}

.home-products__tabs button.is-active {
    border-color: #333;
    background: #333;
    color: #fff;
}

.home-products__panel[hidden] {
    display: none;
}

.home-products__empty {
    min-height: 320px;
    display: grid;
    place-items: center;
    color: #777;
}

.home-carousel {
    --card-width: clamp(285px, 26vw, 410px);
    position: relative;
}

.home-carousel::before,
.home-carousel::after {
    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 58px;
    width: min(16vw, 250px);
    pointer-events: none;
}

.home-carousel::before {
    display: none;
}

.home-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0.9) 32%, transparent 100%);
}

.home-carousel__viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
    touch-action: pan-y pinch-zoom;
}

.home-carousel__viewport::-webkit-scrollbar { display: none; }
.home-carousel__viewport.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.home-carousel__viewport:focus-visible { outline: 2px solid #1b1b1b; outline-offset: -2px; }

.home-carousel__track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: clamp(8px, 1vw, 18px);
    padding: 18px max(24px, calc(100vw - var(--card-width))) 38px 0;
}

.home-product-card {
    width: var(--card-width);
    min-width: var(--card-width);
    height: var(--card-width);
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    scroll-snap-align: start;
    opacity: 0.64;
    transform: scale(0.9);
    transition: opacity 0.48s ease, transform 0.48s var(--home-ease);
}

.home-product-card.is-centered,
.home-product-card:hover,
.home-product-card:focus-within {
    z-index: 2;
    opacity: 1;
    transform: scale(1);
}

.home-product-card__surface,
.home-product-card__image,
.home-product-card__image picture,
.home-product-card__img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.home-product-card__surface {
    overflow: hidden;
    background: #e9e9e9;
}

.home-product-card__image picture,
.home-product-card__img {
    position: absolute;
    inset: 0;
}

.home-product-card__img {
    object-fit: cover;
    transition: transform 0.65s var(--home-ease), filter 0.4s ease;
}

.home-product-card:hover .home-product-card__img,
.home-product-card:focus-within .home-product-card__img {
    transform: scale(1.045);
    filter: brightness(0.58);
}

.home-product-card__badge,
.home-product-card__soldout {
    position: absolute;
    z-index: 3;
}

.home-product-card__badge {
    top: 18px;
    left: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.82);
    color: #fff;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.home-product-card__badge--new { background: #315d9d; }

.home-product-card__soldout {
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.58);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.home-product-card__more {
    position: absolute;
    z-index: 3;
    top: 38%;
    left: 50%;
    display: grid;
    width: 116px;
    height: 116px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.82);
    backdrop-filter: blur(11px);
    transition: opacity 0.35s ease, transform 0.35s var(--home-ease);
}

.home-product-card__more i { font-size: 1.15rem; }
.home-product-card__more small { position: absolute; top: 66%; font-size: 0.62rem; font-weight: 600; }

.home-product-card:hover .home-product-card__more,
.home-product-card:focus-within .home-product-card__more {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.home-product-card__details {
    position: absolute;
    z-index: 2;
    inset: auto 0 0;
    padding: 110px 30px 28px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.74) 48%, transparent);
    color: #fff;
    opacity: 0;
    transform: translateY(22px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s var(--home-ease);
}

.home-product-card:hover .home-product-card__details,
.home-product-card:focus-within .home-product-card__details {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.home-product-card__details > p {
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-product-card__details h3 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 1.8vw, 2rem);
    font-weight: 600;
    line-height: 1.2;
}

.home-product-card__details strong {
    display: block;
    margin-bottom: 14px;
    font-size: 0.85rem;
    font-weight: 500;
}

.home-product-card__members { letter-spacing: 0.08em; }

.home-product-card__action {
    display: inline-flex;
    width: 100%;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font: inherit;
    font-size: 0.73rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-product-card__action:hover,
.home-product-card__action:focus-visible {
    background: #fff;
    color: #111;
}

.home-product-card__action:disabled { opacity: 0.55; cursor: not-allowed; }

.home-carousel__arrow {
    position: absolute;
    z-index: 8;
    top: calc(50% - 30px);
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    color: #111;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s var(--home-ease), background-color 0.25s ease;
}

.home-carousel:hover .home-carousel__arrow,
.home-carousel:focus-within .home-carousel__arrow { opacity: 1; }
.home-carousel__arrow:hover,
.home-carousel__arrow:focus-visible { background: #111; color: #fff; transform: scale(1.08); }
.home-carousel__arrow--prev { left: 5vw; }
.home-carousel__arrow--next { right: 5vw; }

.home-carousel__progress {
    position: relative;
    width: min(330px, 56vw);
    height: 6px;
    margin: 18px auto 0;
    overflow: hidden;
    border-radius: 99px;
    background: #e1e1e1;
}

.home-carousel__progress span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 30%;
    border-radius: inherit;
    background: #3d3d3d;
    transform: translateX(0);
    transition: width 0.2s ease, transform 0.12s linear;
}

/* Protection + story */
.home-protection {
    background: #030303;
    color: #fff;
}

.home-protection__visual {
    position: relative;
    min-height: 900px;
    overflow: hidden;
}

.home-protection__visual > img,
.home-protection__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-protection__visual > img { object-fit: cover; }
.home-protection__shade {
    background: linear-gradient(180deg, rgba(2, 4, 7, 0.32), rgba(2, 4, 7, 0.83)), rgba(0, 0, 0, 0.18);
}

.home-protection__inner,
.home-story {
    position: relative;
    z-index: 2;
    width: min(100% - 120px, 1640px);
    margin: 0 auto;
}

.home-protection__inner {
    padding: clamp(100px, 9vw, 155px) 0 90px;
}

.home-protection__inner > h2 {
    margin: 0 0 clamp(70px, 8vw, 120px);
    font-size: clamp(3rem, 5vw, 5.8rem);
    font-weight: 600;
    letter-spacing: -0.045em;
}

.home-protection__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.home-protection__cards article {
    min-height: 330px;
    padding: clamp(30px, 3vw, 48px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(20, 22, 26, 0.7);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(17px);
    transition: transform 0.35s var(--home-ease), background-color 0.35s ease, border-color 0.35s ease;
}

.home-protection__cards article:hover {
    transform: translateY(-10px);
    border-color: rgba(126, 169, 237, 0.64);
    background: rgba(30, 34, 40, 0.82);
}

.home-protection__cards i {
    margin-bottom: 72px;
    color: #80adf7;
    font-size: 2.2rem;
}

.home-protection__cards h3 {
    margin: 0 0 20px;
    font-size: clamp(1.35rem, 1.7vw, 1.9rem);
    font-weight: 600;
}

.home-protection__cards p {
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 1rem;
    line-height: 1.85;
}

.home-story {
    min-height: 980px;
    padding: clamp(130px, 11vw, 190px) 0;
}

.home-story__intro { max-width: 1150px; }
.home-story__intro h2 {
    margin: 0 0 42px;
    font-size: clamp(3.2rem, 5.2vw, 6rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.055em;
}

.home-story__intro > p:last-child {
    max-width: 900px;
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: clamp(1.08rem, 1.4vw, 1.45rem);
    line-height: 1.9;
}

.home-story__values {
    margin: clamp(70px, 7vw, 110px) 0 70px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.home-story__values article {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 18px;
    padding: 38px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.home-story__values span { font-size: 1.25rem; font-weight: 500; }
.home-story__values h3 { margin: 0 0 10px; font-size: 1.55rem; font-weight: 500; }
.home-story__values p { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 1rem; }

/* Final CTA */
.home-ready {
    position: relative;
    min-height: 630px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #aaa;
    color: #fff;
    text-align: center;
}

.home-ready__image,
.home-ready__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-ready__image { object-fit: cover; filter: grayscale(0.25); }
.home-ready__shade { background: rgba(35, 35, 35, 0.46); backdrop-filter: blur(1px); }
.home-ready__content { position: relative; z-index: 2; padding: 60px 24px; }
.home-ready h2 { margin: 0; font-size: clamp(3rem, 4.8vw, 5.6rem); font-weight: 600; letter-spacing: -0.05em; }
.home-ready p { margin: 16px 0 30px; font-size: clamp(1rem, 1.25vw, 1.3rem); }
.home-ready .home-actions { justify-content: center; }

/* Footer */
.site-footer {
    padding: 90px clamp(28px, 7vw, 130px) 38px;
    background: #fff;
    color: #343438;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) 0.7fr 1fr;
    gap: clamp(55px, 8vw, 150px);
    align-items: start;
}

.site-footer__brand img { width: clamp(185px, 20vw, 300px); height: auto; filter: grayscale(1) brightness(0.22); }
.site-footer__brand p { max-width: 340px; margin: 22px 0 0; color: #777; line-height: 1.75; }
.site-footer__links { display: grid; gap: 14px; }
.site-footer__links a { color: #4c4c50; font-size: 0.92rem; }
.site-footer__links a:hover { color: #000; transform: translateX(3px); }
.site-footer__contact p { margin: 0 0 26px; line-height: 2; }
.site-footer__social { display: flex; gap: 14px; }
.site-footer__social a { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 50%; background: #e3e3e3; font-size: 1.15rem; }
.site-footer__social a:hover { background: #333; color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 70px; padding-top: 24px; border-top: 1px solid #e6e6e6; color: #8a8a8a; font-size: 0.78rem; }
.site-footer__legal { display: flex; gap: 20px; }

@media (max-width: 1120px) {
    .home-page .nav-left { gap: 20px; }
    .home-page .nav-right { gap: 13px; }
    .home-page .nav-link { font-size: 0.72rem; }
    .home-hero__content { width: min(100% - 130px, 1100px); }
    .home-protection__inner,
    .home-story { width: min(100% - 64px, 1000px); }
}

@media (max-width: 820px) {
    .home-page .mobile-header {
        position: absolute;
        inset: 0 0 auto;
        z-index: 1000;
        border: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
        color: #fff;
    }

    .home-page .m-brand-logo { filter: brightness(0) invert(1); }
    .home-page #m-content { padding-top: 0; padding-bottom: 70px; }
    .home-hero { height: 82svh; min-height: 650px; }
    .home-hero__content { width: calc(100% - 56px); padding-top: 58px; }
    .home-hero h1,
    .home-hero h2 { max-width: 92%; font-size: clamp(2.45rem, 11vw, 4.2rem); }
    .home-hero__lead { font-size: 0.96rem; line-height: 1.7; }
    .home-hero__arrow { width: 44px; height: 44px; font-size: 1rem; }
    .home-hero__arrow--prev { left: 5px; }
    .home-hero__arrow--next { right: 5px; }
    .home-hero__counter { right: 24px; bottom: 22px; }
    .home-button { min-width: 124px; min-height: 45px; padding: 10px 20px; font-size: 0.75rem; }
    .home-products { padding: 82px 0 94px; }
    .home-products__heading h2 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
    .home-products__tabs { gap: 8px; }
    .home-products__tabs button { min-width: 0; min-height: 42px; padding: 9px 15px; font-size: 0.7rem; }
    .home-carousel { --card-width: 76vw; }
    .home-carousel::before,
    .home-carousel::after { width: 7vw; bottom: 42px; }
    .home-carousel__track { gap: 10px; padding-bottom: 22px; }
    .home-product-card { height: var(--card-width); aspect-ratio: 1 / 1; opacity: 0.76; }
    .home-product-card__details { padding: 86px 20px 18px; opacity: 1; transform: none; pointer-events: auto; }
    .home-product-card__img { filter: brightness(0.74); }
    .home-product-card__more { display: none; }
    .home-product-card__details h3 { font-size: 1.35rem; }
    .home-carousel__arrow { display: none; }
    .home-carousel__progress { margin-top: 13px; }
    .home-protection__visual { min-height: auto; }
    .home-protection__inner,
    .home-story { width: calc(100% - 40px); }
    .home-protection__inner { padding: 90px 0 70px; }
    .home-protection__inner > h2 { margin-bottom: 46px; font-size: 2.8rem; }
    .home-protection__cards { grid-template-columns: 1fr; gap: 14px; }
    .home-protection__cards article { min-height: 230px; padding: 28px; }
    .home-protection__cards i { margin-bottom: 42px; }
    .home-story { min-height: auto; padding: 105px 0 120px; }
    .home-story__intro h2 { font-size: clamp(2.7rem, 12vw, 4.4rem); }
    .home-story__intro > p:last-child { font-size: 1rem; }
    .home-story__values article { grid-template-columns: 48px 1fr; padding: 28px 0; }
    .home-ready { min-height: 520px; }
    .home-ready h2 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
    .site-footer { padding: 65px 28px 100px; }
    .site-footer__grid { grid-template-columns: 1fr; gap: 46px; }
    .site-footer__brand img { width: 190px; }
    .site-footer__bottom { display: block; margin-top: 55px; }
    .site-footer__legal { margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero__slide,
    .home-hero__image,
    .home-hero__content,
    .home-product-card,
    .home-product-card__img,
    .home-product-card__details,
    .home-product-card__more,
    .home-button,
    .home-protection__cards article {
        transition-duration: 0.01ms !important;
    }
}

/* Visual alignment refinements after browser comparison */
.home-hero__content {
    max-width: none;
    padding: 80px 0 0;
}

.home-products__tabs button,
.home-ready h2 {
    text-transform: uppercase;
}

.home-carousel.is-static .home-carousel__viewport {
    overflow: hidden;
    cursor: default;
}

.home-carousel.is-static .home-carousel__track {
    width: 100%;
    justify-content: center;
    padding: 18px 0 38px;
}

.home-carousel.is-static .home-carousel__arrow {
    display: none;
}

@media (max-width: 820px) {
    .home-hero__content {
        padding: 58px 0 0;
    }

    .home-carousel.is-static .home-carousel__track {
        padding: 18px 0 22px;
    }
}

/* Typography scale matched to the supplied 1824px design reference */
.home-page .brand-logo {
    width: clamp(126px, 10vw, 164px);
}

.home-page .nav-link {
    font-size: clamp(0.82rem, 0.95vw, 0.98rem);
}

.home-hero__content {
    width: min(74vw, 1360px);
}

.home-hero h1,
.home-hero h2 {
    max-width: 1000px;
    margin-bottom: 26px;
    font-size: clamp(2.35rem, 3vw, 3.45rem);
    line-height: 1.16;
    letter-spacing: -0.035em;
}

.home-hero__lead {
    max-width: 760px;
    font-size: clamp(1rem, 1.08vw, 1.18rem);
    line-height: 1.72;
}

.home-products__heading h2 {
    font-size: clamp(3rem, 4vw, 4.8rem);
    line-height: 1.04;
}

.home-products__heading > p {
    font-size: clamp(0.98rem, 1.1vw, 1.2rem);
}

.home-products__tabs button {
    font-size: clamp(0.84rem, 0.94vw, 1rem);
}

.home-protection__inner > h2 {
    font-size: clamp(2.9rem, 4.1vw, 5rem);
}

.home-protection__cards h3 {
    font-size: clamp(1.35rem, 1.55vw, 1.75rem);
}

.home-protection__cards p {
    font-size: clamp(0.94rem, 1vw, 1.08rem);
}

.home-story__intro h2 {
    font-size: clamp(3rem, 4.2vw, 5.2rem);
    line-height: 1.12;
}

.home-story__intro > p:last-child {
    font-size: clamp(1.04rem, 1.18vw, 1.28rem);
}

.home-story__values h3 {
    font-size: clamp(1.28rem, 1.4vw, 1.55rem);
}

.home-story__values p {
    font-size: clamp(0.94rem, 0.98vw, 1.04rem);
}

.home-ready h2 {
    font-size: clamp(2.8rem, 3.6vw, 4.5rem);
}

.home-ready p {
    font-size: clamp(0.98rem, 1.08vw, 1.18rem);
}

@media (max-width: 820px) {
    .home-hero__content {
        width: calc(100% - 56px);
    }

    .home-hero h1,
    .home-hero h2 {
        font-size: clamp(2.05rem, 8.8vw, 3rem);
        line-height: 1.16;
    }

    .home-hero__lead {
        font-size: 0.94rem;
    }

    .home-products__heading h2 {
        font-size: clamp(2.5rem, 11vw, 3.6rem);
    }

    .home-protection__inner > h2 {
        font-size: clamp(2.35rem, 10vw, 3.2rem);
    }

    .home-story__intro h2 {
        font-size: clamp(2.45rem, 10.8vw, 3.7rem);
    }

    .home-ready h2 {
        font-size: clamp(2.45rem, 10vw, 3.5rem);
    }
}

.home-hero__content {
    padding: 0;
}

@media (max-width: 820px) {
    .home-hero__content {
        padding: 58px 0 0;
    }
}

.home-hero h1,
.home-hero h2 {
    word-break: keep-all;
}

.home-product-card__image {
    border-radius: 0;
}

@media (max-width: 820px) {
    .home-page .mobile-header button {
        color: #fff;
    }
}
