:root {
    --sleek-background: #000000;
    --sleek-text: #ffffff;
    /* Brand green — logos, UI, intro WebGL ring ripples (see sleek-mesh-gradient.js) */
    --sleek-primary: #00b451;
    --sleek-secondary: #006241;
    --sleek-card: #212121;
}

/* Go to top (Lenis: scrollTo(0) in sleek.js — GoToTop) — brand: dark glass + primary ring */
.sleek-go-to-top {
    --sleek-gtt-ring: rgba(0, 180, 81, 0.28);
    --sleek-gtt-glow: rgba(0, 180, 81, 0.12);
    position: fixed;
    z-index: 10050;
    right: clamp(1.2rem, 3vw, 2.4rem);
    bottom: clamp(1.2rem, 3vw, 2.4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    height: 4.8rem;
    padding: 0;
    margin: 0;
    border: 0.1rem solid var(--sleek-gtt-ring);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.92);
    background: linear-gradient(
        155deg,
        rgba(8, 18, 12, 0.88) 0%,
        rgba(4, 8, 6, 0.9) 100%
    );
    -webkit-backdrop-filter: blur(0.8rem);
    backdrop-filter: blur(0.8rem);
    box-shadow:
        0 0 0 0.1rem rgba(0, 0, 0, 0.35) inset,
        0 0.2rem 0 var(--sleek-gtt-glow) inset,
        0 0.6rem 2.2rem rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.sleek-go-to-top:hover {
    color: var(--sleek-primary);
    border-color: rgba(0, 180, 81, 0.62);
    background: linear-gradient(
        160deg,
        rgba(0, 28, 16, 0.92) 0%,
        rgba(4, 10, 7, 0.95) 100%
    );
    box-shadow:
        0 0 0 0.1rem rgba(0, 0, 0, 0.4) inset,
        0 0 1.2rem rgba(0, 180, 81, 0.28),
        0 0.5rem 2.4rem rgba(0, 0, 0, 0.5);
    transform: translateY(-0.2rem);
}

.sleek-go-to-top:focus-visible {
    outline: 0.2rem solid var(--sleek-primary);
    outline-offset: 0.2rem;
}

.sleek-go-to-top__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 1.4rem;
}

/* Sleek — utility: product razor drop shadow (lineup, hero imgs, etc.) */
.sleek-u-drop-shadow {
    filter: drop-shadow(10px 16px 8px rgba(0, 0, 0, 0.25));
}

html {
    font-size: 62.5%;
    line-height: 1.15;
}

body {
    font-size: 1.6rem;
    color: var(--sleek-text);
    background: var(--sleek-background);
}

/* 인트로 오토플레이 동안 스크롤 방지 */
body.sleek-page.sleek-page--intro-lock {
    overflow: hidden;
    height: 100vh;
    touch-action: none;
}

.no-heading-lg {
    font-size: 6.4rem;
    font-weight: 600;
}
.no-heading-md {
    font-size: 4.8rem;
    font-weight: 600;
}
.no-heading-sm {
    font-size: 3.2rem;
    font-weight: 600;
}
.no-heading-xs {
    font-size: 2.4rem;
    font-weight: 600;
}

.no-body-xl {
    font-size: 2rem;
}
.no-body-lg {
    font-size: 1.8rem;
}
.no-body-md {
    font-size: 1.6rem;
}
.no-body-sm {
    font-size: 1.4rem;
}
.no-body-xs {
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .no-heading-lg {
        font-size: 5.6rem;
    }
    .no-heading-md {
        font-size: 4.2rem;
    }
    .no-heading-sm {
        font-size: 2.8rem;
    }
    .no-heading-xs {
        font-size: 2.2rem;
    }
    .no-body-xl {
        font-size: 1.85rem;
    }
    .no-body-lg {
        font-size: 1.7rem;
    }
    .no-body-md {
        font-size: 1.55rem;
    }
    .no-body-sm {
        font-size: 1.35rem;
    }
    .no-body-xs {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .no-heading-lg {
        font-size: 4.6rem;
    }
    .no-heading-md {
        font-size: 3.5rem;
    }
    .no-heading-sm {
        font-size: 2.4rem;
    }
    .no-heading-xs {
        font-size: 1.9rem;
    }
    .no-body-xl {
        font-size: 1.7rem;
    }
    .no-body-lg {
        font-size: 1.6rem;
    }
    .no-body-md {
        font-size: 1.5rem;
    }
    .no-body-sm {
        font-size: 1.3rem;
    }
    .no-body-xs {
        font-size: 1.1rem;
    }
}

@media (max-width: 544px) {
    .no-heading-lg {
        font-size: 3.6rem;
    }
    .no-heading-md {
        font-size: 2.8rem;
    }
    .no-heading-sm {
        font-size: 2rem;
    }
    .no-heading-xs {
        font-size: 1.6rem;
    }
    .no-body-xl {
        font-size: 1.6rem;
    }
    .no-body-lg {
        font-size: 1.5rem;
    }
    .no-body-md {
        font-size: 1.4rem;
    }
    .no-body-sm {
        font-size: 1.2rem;
    }
    .no-body-xs {
        font-size: 1.1rem;
    }
}

/* 
===============================
Utils
===============================
*/
.no-container {
    max-width: 164rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 2.4rem;
}

.--blind {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.sleek-logo {
    max-width: 64rem;
    width: 100%;
}

.sleek-logo svg {
    width: 100%;
}

.sleek-logo__frag {
    will-change: clip-path;
}

/* 
===============================
Sleek Intro
===============================
*/
.sleek-intro {
    position: relative;
    z-index: 2;
    background-color: var(--sleek-card);
}

.sleek-intro__view {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

.sleek-intro__sequence {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.sleek-intro__sequence.is-active {
    visibility: visible;
}

.sleek-intro__sequence.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 8;
}

.sleek-intro__sequence-pin {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.sleek-intro__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.sleek-intro__bg--dim {
    opacity: 0.45;
}

.sleek-intro__canvas {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sleek-intro__opening {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    /* Solid under the WebGL layer (canvas paints on top of this) */
    background: var(--sleek-background);
    isolation: isolate;
}

.sleek-mesh-gradient {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: block;
    pointer-events: none;
}

.sleek-mesh-gradient-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    /* Slight bottom soften — black + green ring canvas reads clearly */
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.07) 100%
    );
}

/* SLEEK_CONFIG.webgl / data-sleek-webgl="0" — skip SleekMeshGradient (see sleek.js) */
.sleek-page--no-mesh .sleek-mesh-gradient,
.sleek-page--no-mesh .sleek-mesh-gradient-veil {
    display: none;
}

.sleek-intro__opening-inner {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

/* Intro: 중앙 비주얼 — 은은한 타원 라인 리플(스케일·투명도만, 과하지 않게) */
.sleek-intro__ripples {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
    width: min(140rem, 185vw);
    max-width: none;
    height: min(90rem, 90vh);
    z-index: 0;
    pointer-events: none;
    color: color-mix(
        in srgb,
        var(--sleek-primary) 32%,
        rgba(0, 200, 120, 0.04)
    );
    opacity: 0.75;
}

.sleek-intro__ripples-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: blur(0.25px);
}

.sleek-intro__ripples-g {
    transform-origin: 0px 0px;
}

.sleek-intro__ripple-line {
    stroke-width: 1.05;
    vector-effect: non-scaling-stroke;
    transform-origin: 0px 0px;
    transform-box: fill-box;
    animation: sleek-intro-ripple-soft 5.2s ease-in-out infinite;
}

.sleek-intro__ripple-line--1 {
    animation-delay: 0s;
    opacity: 0.2;
}
.sleek-intro__ripple-line--2 {
    animation-delay: 0.6s;
    opacity: 0.18;
}
.sleek-intro__ripple-line--3 {
    animation-delay: 1.1s;
    opacity: 0.16;
}
.sleek-intro__ripple-line--4 {
    animation-delay: 1.65s;
    opacity: 0.14;
}
.sleek-intro__ripple-line--5 {
    animation-delay: 2.15s;
    opacity: 0.12;
}

@keyframes sleek-intro-ripple-soft {
    0%,
    100% {
        transform: scale(0.98);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.2;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sleek-intro__ripple-line {
        animation: none;
        transform: none;
    }
    .sleek-intro__ripples {
        opacity: 0.35;
        filter: none;
    }
    .sleek-intro__ripple-line--1,
    .sleek-intro__ripple-line--2,
    .sleek-intro__ripple-line--3,
    .sleek-intro__ripple-line--4,
    .sleek-intro__ripple-line--5 {
        opacity: 0.2;
    }
}

.sleek-intro__razor {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: min(100%, 192rem);
    height: 100%;
    min-height: 100%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.sleek-intro__razor img {
    width: 100%;
    height: auto;
}

/* 레퍼런스: 좌하단에서 중앙을 향해 올라오는 면도기 */
.sleek-intro__razor--left {
    position: absolute;
    left: 0;
    bottom: 0;
    top: auto;
    max-width: 92rem;
    width: 78%;
    transform: translate(-32%, 2%);
    will-change: transform, opacity;
}

/* 우상단에서 중앙을 향해 내려오는 면도기 */
.sleek-intro__razor--right {
    position: absolute;
    right: 0;
    top: 14%;
    bottom: auto;
    max-width: 78rem;
    width: 68%;
    transform: translateX(40%);
    will-change: transform, opacity;
}

.sleek-intro__logo-mask {
    overflow: hidden;
    width: 100%;
    max-width: 64rem;
    display: flex;
    justify-content: center;
    will-change: clip-path, transform;
}

.sleek-intro__brand {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
    flex-direction: column;
    text-align: center;
    will-change: transform, opacity;
    pointer-events: auto;
}

/* Intro responsive tuning (layout switch is at 1024; intro keeps structure, scales/positions only) */
@media (max-width: 1919px) and (min-width: 1440px) {
    /* Keep razors further apart as width shrinks from 1920 */
    .sleek-intro__razor--left {
        width: 74%;
        transform: translate(-36%, 3%);
    }
    .sleek-intro__razor--right {
        width: 64%;
        top: 15%;
        transform: translateX(44%);
    }
}

@media (max-width: 1439px) and (min-width: 1025px) {
    .sleek-intro__razor--left {
        width: 68%;
        transform: translate(-40%, 4%);
    }
    .sleek-intro__razor--right {
        width: 56%;
        top: 16%;
        transform: translateX(50%);
    }
    .sleek-intro__logo-mask {
        max-width: 58rem;
    }
}

@media (max-width: 1024px) {
    .sleek-intro__razor--left {
        width: 78%;
        transform: translate(-46%, 8%);
    }
    .sleek-intro__razor--right {
        width: 66%;
        top: 18%;
        transform: translateX(56%);
    }
    .sleek-intro__logo-mask {
        max-width: 52rem;
    }
    .sleek-intro__brand {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Mobile browsers (Samsung Internet etc.) can visually shift center due to bottom bars.
       Add safe-area padding + nudge the brand block slightly up without touching GSAP transforms. */
    .sleek-intro__opening-inner {
        min-height: 100dvh;
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
    .sleek-intro__razor--left {
        width: 102%;
        transform: translate(-54%, 10%);
    }
    .sleek-intro__razor--right {
        width: 84%;
        top: 18%;
        transform: translateX(48%);
    }
    .sleek-intro__logo-mask {
        max-width: 32rem;
        margin-bottom: -0.6rem;
    }

    .sleek-intro__brand .sleek-intro__tagline,
    .sleek-finish__copy .sleek-intro__tagline {
        font-size: clamp(2rem, 2.8vw, 2.8rem);
        font-weight: 600;
        line-height: 1.25;
        letter-spacing: 0.04em;
        transform: translateY(-2.4rem);
    }

    .sleek-intro__brand {
        gap: 0.6rem;
    }

    /* Pull tagline closer to the SVG logo */
    .sleek-intro__tagline {
        margin-top: -0.8rem;
    }
}

@media (max-width: 544px) {
    .sleek-intro__opening-inner {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
    .sleek-intro__razor--left {
        width: 128%;
        transform: translate(-48%, 12%);
    }
    .sleek-intro__razor--right {
        width: 100%;
        top: 13%;
        transform: translateX(50%);
    }
    .sleek-intro__logo-mask {
        max-width: 27.5rem;
        margin-bottom: -0.8rem;
    }

    .sleek-lineup__images {
        max-width: 20rem;
        aspect-ratio: 4/5;
    }
}

.sleek-intro__dorco {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--sleek-primary);
    line-height: 1;
}

.sleek-intro__tagline {
    text-align: center;
    color: var(--sleek-text);
    margin: 0;
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.sleek-intro__scroll-hint {
    position: absolute;
    left: 50%;
    bottom: clamp(2rem, 3.5vh, 3.6rem);
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.85);
}

.sleek-intro__scroll-mouse {
    position: relative;
    width: 2rem;
    height: 3.2rem;
    box-sizing: border-box;
    border: 0.1rem solid rgba(255, 255, 255, 0.55);
    border-radius: 1.1rem;
    margin-bottom: 0.65rem;
    overflow: hidden;
}

.sleek-intro__scroll-dot {
    position: absolute;
    left: 50%;
    top: 0.55rem;
    width: 0.4rem;
    height: 0.4rem;
    margin-left: -0.2rem;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0.35rem rgba(255, 255, 255, 0.45);
}

.sleek-intro__scroll-label {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.42em;
    text-indent: 0.42em;
    text-transform: uppercase;
    opacity: 0.88;
}

.sleek-intro__tagline .char,
.sleek-intro__headline .char {
    display: inline-block;
    will-change: opacity;
}

.sleek-intro__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.4rem;
    color: var(--sleek-text);
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 2;
}

.sleek-intro__overlay.is-visible {
    pointer-events: auto;
}

.sleek-intro__headline {
    margin: 0;
    max-width: 90rem;
}

/* 
===============================
Sleek Features
v2 마크업(`.sleek-feature__*`) 기준
===============================
*/
.sleek-features {
    position: relative;
    z-index: 1;
    background: #000;
    color: #fff;
    overflow: hidden;
    padding: 0;
    --sleek-feature-card-bg: #212121;
    --sleek-feature-card-border: rgba(255, 255, 255, 0.08);
    --sleek-feature-desc: rgba(255, 255, 255, 0.78);
    --sleek-header-h: var(--sleek-fixed-header-h, 0px);
    --sleek-header-shift: calc(var(--sleek-header-h) / 2);
    /* fine-tune for "visual center" on some widths */
    --sleek-features-center-tune: 0px;
}

/* JS가 pin할 기준 — fixed(pin) 시에도 dot-nav는 이 박스 하단·가로 중앙에 붙음 */
.sleek-features .no-container {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(2.4rem, 4vw, 6.4rem);
    padding-top: 0;
    padding-bottom: 0;
    isolation: isolate;
}

.sleek-features .sleek-feature {
    position: relative;
    min-width: 0;
}

/* 좌측 카드 스택 */
.sleek-feature:first-child {
    min-height: clamp(42rem, 58vh, 64rem);
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 72rem;
    justify-self: center;
}

/* Feature steps: pin(.no-container)과 함께 — 섹션 가로 중앙·하단, Sleek 톤 */
.sleek-features .no-container > .dot-nav {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: clamp(1.2rem, 3.2vh, 2.4rem);
    width: max-content;
    max-width: min(100%, calc(100vw - 2.4rem));
    transform: translateX(-50%);
    z-index: 55;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

/* 기술 제목 HUD: 툴팁 대신 pill 위에 고정 영역(호버/포커스 시 문구 전환) — 임시 비표시 */
.dot-nav__hud {
    display: none !important;
    position: relative;
    text-align: center;
    max-width: min(40rem, 90vw);
    padding: 0.55rem 1.2rem 0.75rem;
    background: linear-gradient(
        160deg,
        color-mix(in srgb, var(--sleek-primary) 12%, #0a0a0a) 0%,
        rgba(20, 22, 20, 0.96) 100%
    );
    border: 0.1rem solid
        color-mix(in srgb, var(--sleek-primary) 35%, transparent);
    border-radius: 0.5rem;
    box-shadow:
        0 0.2rem 0 color-mix(in srgb, var(--sleek-primary) 25%, transparent),
        0 0.6rem 2.4rem rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.dot-nav__hud::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 0.5rem solid transparent;
    border-top-color: color-mix(in srgb, var(--sleek-primary) 18%, #121412);
    border-bottom-width: 0;
    filter: drop-shadow(
        0 0.1rem 0 color-mix(in srgb, var(--sleek-primary) 20%, transparent)
    );
}

.dot-nav__hud.is-pop {
    animation: dot-nav-hud-breathe 0.5s ease-out 1;
}

.dot-nav__hud-kicker {
    margin: 0 0 0.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--sleek-primary) 92%, #fff);
    line-height: 1.2;
}

.dot-nav__hud-title {
    margin: 0;
    font-size: clamp(1.2rem, 1.1vw + 0.8rem, 1.5rem);
    font-weight: 700;
    line-height: 1.25;
    color: #f4fff8;
    letter-spacing: -0.02em;
    text-shadow: 0 0.1rem 0.4rem rgba(0, 0, 0, 0.45);
}

@keyframes dot-nav-hud-breathe {
    0% {
        box-shadow: 0 0 0 0
            color-mix(in srgb, var(--sleek-primary) 0%, transparent);
    }
    40% {
        box-shadow: 0 0 0 0.3rem
            color-mix(in srgb, var(--sleek-primary) 20%, transparent);
    }
    100% {
        box-shadow: 0 0.2rem 0
            color-mix(in srgb, var(--sleek-primary) 25%, transparent);
    }
}

.dot-nav__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.15rem;
    padding: 0.75rem 1.4rem;
    min-height: 3.6rem;
    border-radius: 9rem;
    overflow: hidden;
    will-change: transform, opacity, filter, border-radius;
    backface-visibility: hidden;
    transform: translateZ(0);
    background: linear-gradient(
        180deg,
        rgba(40, 44, 40, 0.72) 0%,
        rgba(16, 18, 16, 0.72) 100%
    );
    backdrop-filter: blur(7px);
    border: 0.12rem solid
        color-mix(in srgb, var(--sleek-primary) 22%, rgba(255, 255, 255, 0.06));
    box-shadow:
        0 0.2rem 0 color-mix(in srgb, var(--sleek-primary) 12%, transparent),
        inset 0 1px 0 rgba(255, 255, 255, 0.07),
        0 0.5rem 2.2rem rgba(0, 0, 0, 0.5);
}

.dot-nav__btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 2.2rem;
    width: 2.2rem;
    min-height: 2.2rem;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.28);
    line-height: 0;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.dot-nav__btn:hover,
.dot-nav__btn:focus-visible {
    color: color-mix(in srgb, var(--sleek-primary) 42%, rgba(255, 255, 255, 0.45));
    transform: scale(1.06);
    outline: none;
}

.dot-nav__btn:focus-visible {
    box-shadow: 0 0 0 0.18rem
        color-mix(in srgb, var(--sleek-primary) 42%, transparent);
}

/* Inactive: small hollow-ish dot */
.dot-nav__mark {
    display: block;
    box-sizing: border-box;
    width: 0.52rem;
    height: 0.52rem;
    border-radius: 50%;
    border: 0.1rem solid currentColor;
    background: transparent;
    opacity: 1;
    box-shadow: none;
    transition:
        width 0.24s ease,
        height 0.24s ease,
        border-width 0.24s ease,
        background 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.28s ease,
        transform 0.24s ease;
}

/* Active: larger solid dot + soft ring (shape stays circular) */
.dot-nav__btn.is-active {
    color: var(--sleek-primary);
}

.dot-nav__btn.is-active .dot-nav__mark {
    width: 0.88rem;
    height: 0.88rem;
    border-width: 0;
    border-color: transparent;
    background: var(--sleek-primary);
    box-shadow:
        0 0 0 0.22rem color-mix(in srgb, var(--sleek-primary) 22%, transparent),
        0 0 0.75rem color-mix(in srgb, var(--sleek-primary) 38%, transparent);
}

@media (max-width: 1024px) {
    [data-sleek-dot-nav] {
        display: none !important;
    }
}

/* 가로: left 50% + translateX(-50%) + GSAP y 는 투명도/진입 애니에 깨짐 — width 100% + left 0, 세로만 GSAP yPercent */
.sleek-feature__card {
    position: absolute;
    left: 0;
    top: calc(
        50% + var(--sleek-header-shift) + var(--sleek-features-center-tune)
    );
    width: 100%;
    /* 라인 앵커(자식 absolute) 기준 */
    box-sizing: border-box;
    padding: 0;
    background: var(--sleek-feature-card-bg);
    border: 0.1rem solid var(--sleek-feature-card-border);
    border-radius: 0.4rem;
    box-shadow: 0 0.8rem 4.8rem rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: opacity, transform;
}

.sleek-feature__line-anchor {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 0.1rem;
    height: 0.1rem;
    opacity: 0;
    pointer-events: none;
}

.sleek-feature__card.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sleek-feature__card-content {
    padding: 4rem;
}

.sleek-feature__card-title {
    margin: 0 0 1.2rem;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.sleek-feature__card-body {
    margin: 0 0 0.5rem;
    color: var(--sleek-feature-desc);
    line-height: 1.6;
}

.sleek-feature__card-body:last-child {
    margin-bottom: 2rem;
}

.sleek-feature__card-small {
    display: block;
    margin: 0 0 2rem;
    line-height: 1.45;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.01em;
}

.sleek-feature__card-video {
    position: relative;
    width: 100%;
    border-radius: 0.3rem;
    background: #050505;
    aspect-ratio: 16 / 10;
}

.sleek-feature__card-video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 45%;
}

/* 우측 면도기 이미지 스택 */
.sleek-feature__image-container {
    position: relative;
    width: 100%;
    height: min(78vh, 80rem);
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
    perspective: 1200px;
    transform-style: preserve-3d;
    transform: translateY(
        calc(var(--sleek-header-shift) + var(--sleek-features-center-tune))
    );
    max-width: 62rem;
    justify-self: center;
}

.sleek-feature__image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: clamp(0.8rem, 2vh, 2.4rem);
    opacity: 0;
    visibility: hidden;
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.sleek-feature__image.is-active {
    opacity: 1;
    visibility: visible;
}

.sleek-feature__image .no-sleek-image {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    width: clamp(32rem, 26vw, 44rem);
    max-width: 92%;
    height: auto;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    transform-style: preserve-3d;
}

/* Desktop optimization: 1280~1439px */
@media (max-width: 1439px) and (min-width: 1025px) {
    .sleek-features .no-container {
        gap: clamp(1.6rem, 3vw, 4.8rem);
    }
    .sleek-feature:first-child {
        max-width: 66rem;
    }
    .sleek-feature__image-container {
        max-width: 56rem;
        height: min(74vh, 72rem);
    }
    .sleek-feature__image .no-sleek-image {
        width: clamp(30rem, 26vw, 40rem);
    }
    /* visually center slightly lower on narrower desktops */
    .sleek-features {
        --sleek-features-center-tune: 8px;
    }
}

/* Desktop optimization: 1440~1599px */
@media (max-width: 1599px) and (min-width: 1440px) {
    .sleek-feature:first-child {
        max-width: 70rem;
    }
    .sleek-feature__image-container {
        max-width: 60rem;
    }
}

.sleek-feature__image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: 50% 0%;
    display: block;
    filter: drop-shadow(10px 16px 8px rgba(0, 0, 0, 0.25));
}

/* blade/front/back는 outline 위에 얹는 이미지 — wrapper width(=outline)와 동일하게 유지 */
.sleek-feature__image .--blade-front,
.sleek-feature__image .--blade-back {
    top: 0;
}

.sleek-feature__image .no-sleek-image.--blade-front {
    z-index: 3;
}

.sleek-feature__image[data-feature-scene="seamless"]
    .no-sleek-image.--blade-front {
    overflow: visible;
    isolation: isolate;
}

.sleek-feature__image .no-sleek-image.--blade-handle {
    z-index: 4;
}

/* Seamless: handle base position slightly lowered for smoother transition */
.sleek-feature__image[data-feature-scene="seamless"] .--blade-handle {
    top: 9rem;
}

/* Seamless: ensure blend-mode halo is visible on black */
.sleek-feature__image[data-feature-scene="seamless"] {
    isolation: isolate;
}

/* Seamless: ripple halo behind cartridge (GSAP toggles visibility only) */
.sleek-feature__image[data-feature-scene="seamless"] .sleek-seamless-halo {
    position: absolute;
    left: var(--halo-x, 50%);
    top: var(--halo-y, 22%);
    width: clamp(34rem, 26vw, 46rem);
    height: clamp(34rem, 26vw, 46rem);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity, filter;
    filter: blur(0px);
    mix-blend-mode: screen;
    background: none;
}

.sleek-feature__image[data-feature-scene="seamless"]
    .sleek-seamless-halo::before,
.sleek-feature__image[data-feature-scene="seamless"]
    .sleek-seamless-halo::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 180, 81, 0.76);
    box-shadow:
        0 0 26px rgba(0, 180, 81, 0.36),
        0 0 78px rgba(0, 180, 81, 0.26);
    opacity: 0;
    transform: scale(0.58);
    will-change: transform, opacity;
    animation: sleek-seamless-halo-ripple 1.55s ease-out infinite;
}

.sleek-feature__image[data-feature-scene="seamless"]
    .sleek-seamless-halo::after {
    animation-delay: 0.52s;
    border-color: rgba(0, 180, 81, 0.58);
    box-shadow:
        0 0 22px rgba(0, 180, 81, 0.3),
        0 0 64px rgba(0, 180, 81, 0.22);
}

@keyframes sleek-seamless-halo-ripple {
    0% {
        opacity: 0.9;
        transform: scale(0.62);
    }
    65% {
        opacity: 0.32;
    }
    100% {
        opacity: 0;
        transform: scale(1.28);
    }
}

@media (prefers-reduced-motion: reduce) {
    .sleek-feature__image[data-feature-scene="seamless"]
        .sleek-seamless-halo::before,
    .sleek-feature__image[data-feature-scene="seamless"]
        .sleek-seamless-halo::after {
        animation: none;
        opacity: 0.22;
        transform: scale(1);
    }
}

/* Cartridge flex: SVG double-arrow (GSAP seamless) — H on blade, V above/below image */
.sleek-feature__image[data-feature-scene="seamless"] .sleek-flex-arrows {
    color: var(--sleek-primary);
    filter: drop-shadow(0 0 0.35rem rgba(0, 180, 81, 0.5));
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}

.sleek-feature__image[data-feature-scene="seamless"] .sleek-flex-arrows--h {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 0;
    width: auto;
    height: 52%;
    box-sizing: border-box;
}

.sleek-feature__image[data-feature-scene="seamless"] .sleek-flex-arrows--v {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: clamp(3.6rem, 4.6vw, 4.8rem);
    z-index: 2;
    pointer-events: none;
    overflow: visible;
}

.sleek-feature__image[data-feature-scene="seamless"] .sleek-flex-arrows--v-top {
    bottom: 100%;
    height: clamp(2.2rem, 2.6vw, 3.2rem);
    margin-bottom: 0.3rem;
}

.sleek-feature__image[data-feature-scene="seamless"]
    .sleek-flex-arrows--v-below {
    top: 100%;
    height: clamp(2.2rem, 2.6vw, 3.2rem);
    margin-top: 0.3rem;
}

.sleek-feature__image[data-feature-scene="seamless"] .sleek-flex-arrows__svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}
.sleek-flex-arrows__g--h,
.sleek-flex-arrows__g--v {
    opacity: 0;
    visibility: hidden;
    will-change: opacity, transform;
}

/* Flex pivot: lime motion streaks (opacity driven by GSAP) */
.sleek-feature__image[data-feature-scene="seamless"] .sleek-flex-fx {
    position: absolute;
    left: 50%;
    top: 0;
    width: clamp(32rem, 26vw, 44rem);
    max-width: 92%;
    height: 55%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 2;
    overflow: visible;
}

.sleek-flex-fx__g {
    position: absolute;
    left: 50%;
    top: 38%;
    width: 70%;
    height: 32%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    opacity: 0;
    visibility: hidden;
}

.sleek-flex-fx__g--v {
    top: 34%;
    width: 45%;
    height: 40%;
    flex-direction: row;
    gap: 1.6rem;
}

.sleek-flex-fx__g--h .sleek-flex-fx__streak {
    width: 38%;
    height: 0.2rem;
    min-width: 3rem;
    border-radius: 0.1rem;
    background: linear-gradient(
        90deg,
        transparent 0%,
        color-mix(in srgb, var(--sleek-primary) 88%, transparent) 50%,
        transparent 100%
    );
    box-shadow: 0 0 0.8rem
        color-mix(in srgb, var(--sleek-primary) 45%, transparent);
    animation: sleek-flex-fx-sweep-h 0.9s ease-in-out infinite;
}

.sleek-flex-fx__g--h .sleek-flex-fx__streak:nth-child(1) {
    animation-delay: 0s;
}
.sleek-flex-fx__g--h .sleek-flex-fx__streak:nth-child(2) {
    animation-delay: 0.12s;
    width: 52%;
}
.sleek-flex-fx__g--h .sleek-flex-fx__streak:nth-child(3) {
    animation-delay: 0.24s;
}

.sleek-flex-fx__g--v .sleek-flex-fx__streak {
    width: 0.2rem;
    min-height: 2.4rem;
    height: 42%;
    border-radius: 0.1rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        color-mix(in srgb, var(--sleek-primary) 88%, transparent) 50%,
        transparent 100%
    );
    box-shadow: 0 0 0.9rem
        color-mix(in srgb, var(--sleek-primary) 45%, transparent);
    animation: sleek-flex-fx-sweep-v 0.85s ease-in-out infinite;
}

.sleek-flex-fx__g--v .sleek-flex-fx__streak:nth-child(2) {
    animation-delay: 0.16s;
    height: 52%;
}

@keyframes sleek-flex-fx-sweep-h {
    0%,
    100% {
        transform: translateX(-32%);
        opacity: 0.35;
    }
    50% {
        transform: translateX(32%);
        opacity: 0.85;
    }
}

@keyframes sleek-flex-fx-sweep-v {
    0%,
    100% {
        transform: translateY(-32%);
        opacity: 0.3;
    }
    50% {
        transform: translateY(32%);
        opacity: 0.9;
    }
}
.sleek-feature__card-anchor {
    position: absolute;
    /* NOTE: jqSimpleConnect uses jQuery offset() (layout coords).
       Avoid CSS transforms on anchor points to prevent mismatch. */
    right: -0.6rem;
    top: 50%;
    margin-top: -0.6rem;
    width: 1.2rem;
    height: 1.2rem;
    opacity: 1;
    pointer-events: none;
    border-radius: 50%;
    background: var(--sleek-primary);
}

/* ripple: 3개의 링이 퍼지는 형태 */
.sleek-feature__ripple {
    --ripple-x: 58%;
    --ripple-y: 16%;
    position: absolute;
    left: var(--ripple-x);
    top: var(--ripple-y);
    /* z + translateZ: 캐트리지(3D z) 위로 올려 겹침 */
    z-index: 50;
    transform: translate3d(-50%, -50%, 90px);
    width: 6.8rem;
    height: 6.8rem;
    pointer-events: none;
    transform-style: preserve-3d;
    isolation: isolate;
}

.sleek-feature__line-point {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0.1rem;
    height: 0.1rem;
    margin-left: -0.05rem;
    margin-top: -0.05rem;
    opacity: 0;
    pointer-events: none;
}

.sleek-feature__ripple-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.5rem;
    height: 1.5rem;
    margin-left: -0.75rem;
    margin-top: -0.75rem;
    background: var(--sleek-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.25),
        0 0 0.4rem rgba(0, 180, 81, 0.65),
        0 0 1.2rem rgba(0, 180, 81, 0.45);
    opacity: 0;
}

.sleek-feature__ripple span {
    position: absolute;
    inset: 0;
    border: 3.5px solid color-mix(in srgb, var(--sleek-primary) 92%, #ffffff 8%);
    border-radius: 50%;
    background: color-mix(in srgb, var(--sleek-primary) 16%, transparent);
    opacity: 0;
    transform: scale(0.25);
    animation: sleek-feature-ripple 2.1s ease-out infinite;
    z-index: 1;
    box-shadow:
        0 0 0 1px rgba(0, 180, 81, 0.25),
        0 0 1.2rem rgba(0, 180, 81, 0.45),
        0 0 2.2rem rgba(0, 180, 81, 0.28);
}

.sleek-feature__ripple span:nth-child(2) {
    animation-delay: 0.55s;
}
.sleek-feature__ripple span:nth-child(3) {
    animation-delay: 1.1s;
}

/* Desktop: make the cartridge ripple easier to read */
@media (min-width: 1025px) {
    .sleek-feature__ripple-dot {
        box-shadow:
            0 0 0 2px rgba(255, 255, 255, 0.32),
            0 0 0.6rem rgba(0, 180, 81, 0.75),
            0 0 1.6rem rgba(0, 180, 81, 0.6);
    }
    .sleek-feature__ripple span {
        border-color: color-mix(in srgb, var(--sleek-primary) 96%, #ffffff 4%);
        background: color-mix(in srgb, var(--sleek-primary) 22%, transparent);
        box-shadow:
            0 0 0 1px rgba(0, 180, 81, 0.32),
            0 0 1.5rem rgba(0, 180, 81, 0.6),
            0 0 2.8rem rgba(0, 180, 81, 0.42);
    }
}

@keyframes sleek-feature-ripple {
    0% {
        opacity: 1;
        transform: scale(0.24);
    }
    55% {
        opacity: 0.65;
    }
    72% {
        opacity: 0;
        transform: scale(1.26);
    }
    100% {
        opacity: 0;
        transform: scale(1.26);
    }
}

/* jqSimpleConnect 생성 라인 레이어 */
.jqSimpleConnect {
    z-index: 4 !important;
    box-shadow: 0 0 18px rgba(0, 180, 81, 0.22);
}

.sleek-feature__connect-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .sleek-features .no-container {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }
    .sleek-feature__image-container {
        height: min(56vh, 56rem);
    }
    /* 모바일에서는 라인을 숨길 예정(JS에서도 제거) */
    .jqSimpleConnect {
        display: none !important;
    }

    .sleek-feature__card-anchor {
        display: none;
    }
}

@media (max-width: 768px) {
    .sleek-feature__card-content {
        padding: 2.4rem;
    }

    .sleek-feature__card-body:last-child {
        margin-bottom: 0;
    }

    /* Mobile: card-first layout. Hide the razor column to reduce clutter. */
    .sleek-features .no-container {
        align-items: start;
        padding-top: clamp(2.4rem, 4vh, 4.8rem);
        padding-bottom: clamp(2.4rem, 4vh, 4.8rem);
    }
    .sleek-features .sleek-feature:nth-child(2) {
        display: none;
    }
    .sleek-feature:first-child {
        max-width: 100%;
        min-height: 0;
    }
    .sleek-feature__card {
        width: min(100%, 72rem);
    }
    .sleek-feature__card-video {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet: also hide the razor column; keep it content-first. */
    .sleek-features .sleek-feature:nth-child(2) {
        display: none;
    }
    .sleek-features .no-container {
        align-items: start;
        padding-top: clamp(3.2rem, 4vh, 6.4rem);
        padding-bottom: clamp(3.2rem, 4vh, 6.4rem);
    }
}

/* Features mobile mode: cards become a normal list (no absolute stacking). */
.sleek-features--mobile .sleek-feature:first-child {
    display: block;
}
.sleek-features--mobile .sleek-feature__mobile-razor,
.sleek-features--tablet .sleek-feature__mobile-razor {
    position: relative;
    width: 100%;
    margin: 0 auto;
    height: var(--sleek-mr-h, min(42vh, 40rem));
    background: rgba(5, 5, 5, 0.35);
    overflow: hidden;
}
.sleek-features--mobile .sleek-feature__mobile-razor {
    height: var(--sleek-mr-h, min(40vh, 38rem));
}
.sleek-features--mobile .sleek-feature__mobile-razor .sleek-feature__image,
.sleek-features--tablet .sleek-feature__mobile-razor .sleek-feature__image {
    position: relative;
    inset: auto;
    opacity: 1;
    visibility: visible;
    padding-top: var(--sleek-mr-pt, 1.2rem);
    transform: none !important;
}
.sleek-features--mobile
    .sleek-feature__mobile-razor
    .sleek-feature__image
    .no-sleek-image,
.sleek-features--tablet
    .sleek-feature__mobile-razor
    .sleek-feature__image
    .no-sleek-image {
    width: var(--sleek-mr-img-w, clamp(20rem, 44vw, 32rem));
    max-width: 62%;
}

/* Mobile only: nudge razor artwork slightly down */
.sleek-features--mobile
    .sleek-feature__mobile-razor
    .sleek-feature__image
    .no-sleek-image {
    top: 2.4rem;
}

/* Mobile only: seamless handle layer position */
.sleek-features--mobile .no-sleek-image.--blade-handle {
    top: 8.125rem !important;
}

/* Mobile only: seamless ripple should sit behind the razor and be larger */
.sleek-features--mobile
    .sleek-feature__mobile-razor
    .sleek-feature__image[data-feature-scene="seamless"]
    .sleek-feature__ripple {
    width: 25.6rem;
    height: 25.6rem;
    z-index: 0;
    transform: translate3d(-50%, -50%, 0);
    opacity: 0.95;
}
.sleek-features--mobile .sleek-feature__card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 0 auto 4.8rem;
    max-width: 72rem;
}
.sleek-features--mobile .sleek-feature__card:last-child {
    margin-bottom: 0;
}

/* Features tablet mode (769~1024): same clean list UX, slightly roomier. */
.sleek-features--tablet .sleek-feature:first-child {
    display: block;
}
.sleek-features--tablet .sleek-feature__card {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 0 auto 3.2rem;
    max-width: 76rem;
}
.sleek-features--tablet .sleek-feature__card:last-child {
    margin-bottom: 0;
}
.sleek-features--tablet .sleek-feature__card-video {
    aspect-ratio: 16 / 10;
}

@media (max-width: 544px) {
    .sleek-feature__card-title {
        font-size: 2.4rem;
    }
    .sleek-feature__card-video {
        aspect-ratio: 5/4;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sleek-feature__ripple span {
        animation: none !important;
        opacity: 0.35;
        transform: scale(1);
    }
}

/* 
===============================
Sleek Award
===============================
*/
.sleek-award {
    --sleek-award-bg: #08100a;
    /* Point green — award names only; body copy stays white */
    --sleek-award-point: #30c85b;
    --sleek-award-sub: rgba(255, 255, 255, 0.82);
    position: relative;
    background: var(--sleek-award-bg);
    color: var(--sleek-text);
    overflow: hidden;
    padding: clamp(8rem, 8vw, 16rem) 0;
}

.sleek-award__inner {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(6.4rem, 8vw, 12.8rem);
}

.sleek-award__visual {
    position: relative;
    z-index: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    pointer-events: none;
    will-change: transform;
}

.sleek-award__visual--front {
    order: 0;
    margin-bottom: -1%;
}

.sleek-award__visual--back {
    order: 2;
    margin-top: -1%;
}

.sleek-award__visual img {
    display: block;
    height: auto;
    object-fit: contain;
}

/* Award responsive (layout stays vertical; scale/padding only) */
@media (max-width: 1024px) {
    .sleek-award {
        padding: clamp(7.2rem, 9vw, 12rem) 0;
    }
    .sleek-award__inner {
        gap: clamp(4.8rem, 6vw, 9.6rem);
    }
    .sleek-award__visual img {
        width: min(92vw, 86rem);
    }
}

@media (max-width: 768px) {
    .sleek-award {
        padding: 8rem 0;
        --sleek-award-bg: transparent;
        background:
            radial-gradient(
                115% 78% at 50% 10%,
                color-mix(in srgb, var(--sleek-primary) 22%, transparent) 0%,
                transparent 48%
            ),
            radial-gradient(
                88% 52% at 50% 90%,
                color-mix(in srgb, var(--sleek-primary) 11%, transparent) 0%,
                transparent 40%
            ),
            linear-gradient(168deg, #05100b 0%, #030a07 42%, #010302 100%);
    }
    .sleek-award__visual img {
        width: min(96vw, 72rem);
    }
    .sleek-award__badges {
        gap: 0.6rem;
    }
}

@media (max-width: 544px) {
    .sleek-award {
        padding: 6.4rem 0;
    }
    .sleek-award__inner {
        gap: 4.8rem;
    }
    .sleek-award__visual--front {
        justify-content: flex-start;
    }
    .sleek-award__visual--back {
        justify-content: flex-end;
    }
    .sleek-award__visual img {
        width: 150%;
    }
    .sleek-award__badge img {
        height: 5.6rem;
    }
}

.sleek-award__content {
    order: 1;
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.6rem, 4.5vw, 4.8rem);
}

.sleek-award__title {
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.sleek-award__leads {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2.4rem, 4.2vw, 4.4rem);
    margin: 0;
    width: 100%;
}

.sleek-award__highlights {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
}

.sleek-award__taglines {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: 100%;
}

.sleek-award__lead {
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
    color: #fff;
}

.sleek-award__em {
    font-weight: 600;
    color: var(--sleek-award-point);
}

.sleek-award__lead-rest,
.sleek-award__lead-sep {
    color: #fff;
    font-weight: 500;
}

.sleek-award__sub {
    margin: 0;
    line-height: 1.5;
    color: var(--sleek-award-sub);
}

.sleek-award__taglines .sleek-award__sub {
    color: #fff;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.sleek-award__sub + .sleek-award__sub {
    margin-top: 0;
}

.sleek-award__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0;
}

.sleek-award__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.2rem;
    overflow: hidden;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.35);
}

.sleek-award__badge img {
    display: block;
    width: auto;
    height: clamp(6rem, 6vw, 8rem);
}

@media (max-width: 600px) {
    .sleek-award__inner {
        min-height: 0;
        padding-bottom: 4.8rem;
    }

    .sleek-award__visual--front,
    .sleek-award__visual--back {
        margin: 0;
    }

    .sleek-award__taglines .sleek-award__sub {
        font-size: 1.7rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sleek-award__visual {
        will-change: auto;
    }
}

/* 
===============================
Sleek Lineup
===============================
*/
.sleek-lineup {
    --sleek-lineup-bg: #0d0d0d;
    --sleek-lineup-card: #212121;
    --sleek-lineup-card-hover: #252525;
    --sleek-lineup-cta: #006843;
    --sleek-lineup-cta-hover: #008f58;
    --sleek-lineup-img-spread: min(52%, 11rem);
    background: var(--sleek-lineup-bg);
    color: var(--sleek-text);
    padding: clamp(12.8rem, 16vw, 25.6rem) 0;
}

.sleek-lineup__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(4.8rem, 8vw, 9.6rem);
}

.sleek-lineup__heading {
    margin: 0;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #fff;
}

.sleek-lineup__swiper {
    width: 100%;
    overflow: visible;
    padding-bottom: 3.2rem;
}

.sleek-lineup__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Desktop: 4-column grid (Swiper not initialized) */
@media (min-width: 1025px) {
    .sleek-lineup__swiper {
        overflow: visible;
        padding-bottom: 0;
    }

    .sleek-lineup .sleek-lineup__swiper .sleek-lineup__list.swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(1rem, 1.6vw, 1.6rem);
        transform: none !important;
    }

    .sleek-lineup .sleek-lineup__swiper .sleek-lineup__item.swiper-slide {
        width: auto !important;
        margin: 0 !important;
        height: auto;
    }

    .sleek-lineup__pagination {
        display: none !important;
    }
}

.sleek-lineup__item {
    height: auto;
    box-sizing: border-box;
    overflow: visible;
}

.sleek-lineup__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(1.6rem, 2vw, 2rem);
    min-height: 100%;
    padding: clamp(2rem, 2.4vw, 2.8rem) clamp(1.2rem, 1.6vw, 1.6rem)
        clamp(3.2rem, 3.6vw, 4.4rem);
    background: var(--sleek-lineup-card);
    border-radius: 0.4rem;
    color: inherit;
    text-decoration: none;
    outline: 2px solid transparent;
    outline-offset: 0;
    transition:
        background 0.35s ease,
        outline-color 0.35s ease,
        box-shadow 0.35s ease;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.25);
}

.sleek-lineup__card:hover {
    background: var(--sleek-lineup-card-hover);
    outline-color: var(--sleek-secondary);
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.25);
}

.sleek-lineup__images {
    position: relative;
    width: 100%;
    max-width: 24rem;
    aspect-ratio: 3 / 5;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sleek-lineup__img {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 92%;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.45s ease;
    pointer-events: none;
}

.sleek-lineup__img--front {
    z-index: 2;
    transform: translate(-50%, -50%);
}

.sleek-lineup__img--back {
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.sleek-lineup__card:hover .sleek-lineup__img--front {
    transform: translate(-50%, -50%)
        translateX(calc(-1 * var(--sleek-lineup-img-spread)));
}

.sleek-lineup__card:hover .sleek-lineup__img--back {
    opacity: 1;
    transform: translate(-50%, -50%) translateX(var(--sleek-lineup-img-spread));
}

.sleek-lineup__model {
    margin: 0;
    text-align: center;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}

.sleek-lineup__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 11rem;
    padding: 0.85rem 1.6rem;
    margin-top: auto;
    background: var(--sleek-lineup-cta);
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.02em;
    border-radius: 0.3rem;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.sleek-lineup__card:hover .sleek-lineup__cta {
    background: var(--sleek-lineup-cta-hover);
    box-shadow: 0 0 1.2rem rgba(0, 132, 79, 0.45);
}

.sleek-lineup__pagination.swiper-pagination {
    position: relative;
    margin-top: 3.2rem;
}

.sleek-lineup__pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
}

.sleek-lineup__pagination .swiper-pagination-bullet-active {
    background: var(--sleek-lineup-cta-hover);
}

@media (max-width: 767px) {
    .sleek-lineup__swiper {
        padding-bottom: 0;
    }

    .sleek-lineup__swiper .sleek-lineup__list {
        align-items: stretch;
    }

    .sleek-lineup__item {
        width: 100%;
    }
}

/* Tablet: swiper layout (<=1024), roomier spacing */
@media (max-width: 1024px) and (min-width: 768px) {
    .sleek-lineup {
        padding: 12rem 0;
    }
    .sleek-lineup__swiper {
        padding-bottom: 2.4rem;
    }
    .sleek-lineup__card {
        padding: 2.4rem 1.6rem 3.6rem;
    }
}

@media (max-width: 544px) {
    .sleek-lineup {
        padding: 9.6rem 0;
    }
    .sleek-lineup__card {
        padding: 2.2rem 1.4rem 3.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sleek-lineup__card,
    .sleek-lineup__img,
    .sleek-lineup__cta {
        transition-duration: 0.01ms;
    }

    /* Fan-out visible without relying on hover animation */
    .sleek-lineup__img--front {
        transform: translate(-50%, -50%)
            translateX(calc(-1 * var(--sleek-lineup-img-spread)));
    }

    .sleek-lineup__img--back {
        opacity: 1;
        transform: translate(-50%, -50%)
            translateX(var(--sleek-lineup-img-spread));
    }
}

/* 
===============================
Sleek Finish
===============================
*/
.sleek-finish {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
}

.sleek-finish__pin {
    position: relative;
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
}

.sleek-finish__video,
.sleek-finish__canvas,
.sleek-finish__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.sleek-finish__video {
    object-fit: cover;
    object-position: 50% 50%;
    z-index: 0;
}

.sleek-finish__canvas {
    z-index: 1;
}

.sleek-finish__bg {
    z-index: 2;
}

.sleek-finish__copy {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--sleek-text);
    z-index: 3;
    padding: 2.4rem;
}

/* Finish responsive: keep copy readable on smaller screens */
@media (max-width: 1024px) {
    .sleek-finish__copy .sleek-intro__logo-mask {
        max-width: 52rem;
    }
}

@media (max-width: 768px) {
    .sleek-finish__video {
        object-position: 55% 50%;
    }
    .sleek-finish__copy .sleek-intro__logo-mask {
        max-width: 32rem;
    }
}

@media (max-width: 544px) {
    .sleek-finish__video {
        object-position: 58% 50%;
    }
    .sleek-finish__copy .sleek-intro__logo-mask {
        max-width: 27.5rem;
    }
}
