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

:root {
    --header-height: 4.75rem;

    --primary: #e50914;
    --primary-dark: #a80710;
    --primary-light: #ff3b30;
    --primary-soft: #fff0f1;

    --black: #080808;
    --black-2: #101010;
    --black-3: #171717;
    --charcoal: #242424;

    --white: #ffffff;
    --off-white: #fafafa;
    --gray-50: #f5f5f5;
    --gray-100: #eeeeee;
    --gray-200: #dddddd;
    --gray-300: #c8c8c8;
    --gray-500: #777777;
    --gray-700: #3c3c3c;

    --title-color: #0a0a0a;
    --text-color: #555555;
    --light-text: #9b9b9b;
    --footer-color: #080808;

    --gradient-primary:
        linear-gradient(135deg, #ff3b30 0%, #e50914 48%, #9d0009 100%);

    --gradient-red:
        linear-gradient(135deg, #ff512f 0%, #dd0b18 55%, #850009 100%);

    --gradient-dark:
        linear-gradient(135deg, #171717 0%, #090909 55%, #000000 100%);

    --gradient-dark-red:
        linear-gradient(135deg, #1b0809 0%, #0b0b0b 50%, #180003 100%);

    --gradient-soft:
        linear-gradient(135deg, #ffffff 0%, #fff5f5 55%, #ffe9eb 100%);

    --gradient-glow:
        radial-gradient(circle at 70% 30%,
            rgba(229, 9, 20, 0.18),
            transparent 45%);

    --gradient-hero:
        radial-gradient(circle at 75% 35%,
            rgba(229, 9, 20, 0.16),
            transparent 35%),
        linear-gradient(135deg, #ffffff 0%, #fafafa 55%, #fff2f3 100%);

    --gradient-section:
        linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #fff6f6 100%);

    --gradient-border:
        linear-gradient(90deg, transparent, #e50914, transparent);

    --body-font: "Inter", sans-serif;
    --heading-font: "Montserrat", sans-serif;

    --h1-size: clamp(3rem, 6vw, 6.5rem);
    --h2-size: clamp(2.2rem, 4vw, 4.5rem);
    --h3-size: clamp(1.4rem, 2vw, 2rem);
    --h4-size: 1.2rem;

    --body-size: 1rem;
    --small-size: 0.875rem;
    --tiny-size: 0.75rem;

    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    --container: 1240px;
    --container-wide: 1400px;

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    --space-4xl: 7rem;
    --space-5xl: 9rem;

    --radius-sm: 0.5rem;
    --radius-md: 0.9rem;
    --radius-lg: 1.4rem;
    --radius-xl: 2rem;
    --radius-pill: 999px;

    --border-light: 1px solid rgba(0, 0, 0, 0.08);
    --border-dark: 1px solid rgba(255, 255, 255, 0.12);
    --border-red: 1px solid rgba(229, 9, 20, 0.35);

    --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.09);
    --shadow-lg: 0 25px 70px rgba(0, 0, 0, 0.14);
    --shadow-red: 0 15px 45px rgba(229, 9, 20, 0.22);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

    --transition-fast: 0.2s var(--ease);
    --transition: 0.4s var(--ease);
    --transition-slow: 0.8s var(--ease);

    --z-header: 100;
    --z-dropdown: 200;
    --z-overlay: 500;
    --z-modal: 1000;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--body-font);
    font-size: var(--body-size);
    font-weight: var(--font-regular);
    color: var(--text-color);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: var(--body-font);
}

button,
input,
textarea,
select {
    border: 0;
    outline: 0;
}

button {
    cursor: pointer;
}

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

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

img {
    height: auto;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--title-color);
    font-weight: var(--font-bold);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

.container {
    width: min(calc(100% - 3rem), var(--container));
    margin-inline: auto;
}

.container-wide {
    width: min(calc(100% - 3rem), var(--container-wide));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: var(--space-5xl);
}

.section--gray {
    background: var(--gray-50);
}

.section--soft {
    background: var(--gradient-section);
}

.section--dark {
    color: var(--white);
    background: var(--gradient-dark);
}

.section--red {
    color: var(--white);
    background: var(--gradient-red);
}

.section__head {
    max-width: 760px;
    margin-bottom: var(--space-3xl);
}

.section__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.1rem;
    color: var(--primary);
    font-size: var(--tiny-size);
    font-weight: var(--font-bold);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section__eyebrow::before {
    content: "";
    width: 32px;
    height: 2px;
    background: var(--primary);
}

.section__title {
    margin-bottom: 1.25rem;
    font-size: var(--h2-size);
}

.section__text {
    max-width: 680px;
    font-size: 1.05rem;
    color: var(--text-color);
}

.dark-section .section__title,
.section--dark .section__title,
.section--red .section__title {
    color: var(--white);
}

.dark-section .section__text,
.section--dark .section__text,
.section--red .section__text {
    color: rgba(255, 255, 255, 0.7);
}

.text-gradient {
    color: transparent;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
}

.text-red {
    color: var(--primary);
}

.text-white {
    color: var(--white);
}

.text-black {
    color: var(--black);
}

.gradient-bg {
    background: var(--gradient-primary);
}

.gradient-dark {
    background: var(--gradient-dark);
}

.gradient-dark-red {
    background: var(--gradient-dark-red);
}

.gradient-soft {
    background: var(--gradient-soft);
}

.glow-red {
    position: relative;
}

.glow-red::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(229, 9, 20, 0.12);
    filter: blur(80px);
    pointer-events: none;
}

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    min-height: 52px;
    padding: 0.9rem 1.7rem;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: var(--font-semibold);
    line-height: 1;
    overflow: hidden;
    isolation: isolate;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.btn i,
.btn svg {
    transition: transform var(--transition);
}

.btn:hover i,
.btn:hover svg {
    transform: translateX(4px);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn--primary {
    color: var(--white);
    background: var(--gradient-primary);
    box-shadow: var(--shadow-red);
}

.btn--primary:hover {
    box-shadow: 0 20px 50px rgba(229, 9, 20, 0.32);
}

.btn--dark {
    color: var(--white);
    background: var(--gradient-dark);
    box-shadow: var(--shadow-md);
}

.btn--dark:hover {
    background: var(--gradient-dark-red);
}

.btn--outline {
    color: var(--black);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn--outline:hover {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
}

.btn--outline-red {
    color: var(--primary);
    background: transparent;
    border: var(--border-red);
}

.btn--outline-red:hover {
    color: var(--white);
    background: var(--gradient-primary);
    border-color: transparent;
    box-shadow: var(--shadow-red);
}

.btn--white {
    color: var(--black);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    color: var(--white);
    background: var(--black);
}

.btn--glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--lg {
    min-height: 60px;
    padding-inline: 2.1rem;
}

.btn--sm {
    min-height: 44px;
    padding-inline: 1.35rem;
    font-size: 0.82rem;
}

.btn__icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.8rem;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: var(--font-semibold);
    letter-spacing: 0.05em;
}

.badge--red {
    color: var(--primary);
    background: var(--primary-soft);
}

.badge--dark {
    color: var(--white);
    background: var(--black);
}

.badge--glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: var(--border-dark);
    backdrop-filter: blur(10px);
}

.card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: var(--border-light);
    border-radius: var(--radius-lg);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 9, 20, 0.2);
    box-shadow: var(--shadow-lg);
}

.card--dark {
    color: var(--white);
    background: var(--gradient-dark);
    border-color: rgba(255, 255, 255, 0.1);
}

.card--dark h3,
.card--dark h4 {
    color: var(--white);
}

.card--red {
    color: var(--white);
    background: var(--gradient-red);
    border: 0;
    box-shadow: var(--shadow-red);
}

.card--red h3,
.card--red h4 {
    color: var(--white);
}

.border-line {
    position: relative;
}

.border-line::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--gradient-border);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.7s var(--ease);
}

.border-line:hover::after {
    transform: scaleX(1);
}

.hover-image {
    overflow: hidden;
}

.hover-image img {
    width: 100%;
    transition: transform 1s var(--ease);
}

.hover-image:hover img {
    transform: scale(1.06);
}

.parallax-image {
    will-change: transform;
    transition: transform 0.2s linear;
}

.reveal {
    opacity: 0;
    visibility: hidden;
    transform: translateY(45px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.9s var(--ease);
}

.reveal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-55px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.9s var(--ease);
}

.reveal-left.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    visibility: hidden;
    transform: translateX(55px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.9s var(--ease);
}

.reveal-right.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.94);
    transition:
        opacity 1s var(--ease),
        transform 1s var(--ease);
}

.reveal-scale.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.reveal-blur {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(25px);
    transition:
        opacity 1s var(--ease),
        filter 1s var(--ease),
        transform 1s var(--ease);
}

.reveal-blur.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.mask-reveal {
    overflow: hidden;
}

.mask-reveal>* {
    transform: translateY(115%);
    transition: transform 1s var(--ease);
}

.mask-reveal.active>* {
    transform: translateY(0);
}

.line-reveal {
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 1s var(--ease);
}

.line-reveal.active {
    width: 100%;
}

.clip-reveal {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.1s var(--ease);
}

.clip-reveal.active {
    clip-path: inset(0 0 0 0);
}

.stagger>* {
    opacity: 0;
    transform: translateY(25px);
}

.stagger.active>* {
    animation: staggerIn 0.7s var(--ease) forwards;
}

.stagger.active>*:nth-child(1) {
    animation-delay: 0.05s;
}

.stagger.active>*:nth-child(2) {
    animation-delay: 0.12s;
}

.stagger.active>*:nth-child(3) {
    animation-delay: 0.19s;
}

.stagger.active>*:nth-child(4) {
    animation-delay: 0.26s;
}

.stagger.active>*:nth-child(5) {
    animation-delay: 0.33s;
}

.stagger.active>*:nth-child(6) {
    animation-delay: 0.4s;
}

.float {
    animation: float 5s ease-in-out infinite;
}

.pulse {
    animation: pulse 2.5s ease-in-out infinite;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
}

.divider--dark {
    background: rgba(255, 255, 255, 0.12);
}

.red-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(229, 9, 20, 0.1);
}

.grid-bg {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
    background-size: 45px 45px;
}

.dark-grid-bg {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 50px 50px;
}

.section-transition {
    position: relative;
}

.section-transition::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 120px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 255, 255, 0.9));
    pointer-events: none;
}

.page-transition {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    background: var(--gradient-dark);
    transform: translateY(100%);
    pointer-events: none;
}

.page-transition.active {
    animation: pageTransition 0.9s var(--ease);
}

::selection {
    color: var(--white);
    background: var(--primary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #eeeeee;
}

::-webkit-scrollbar-thumb {
    background: #a8a8a8;
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes staggerIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes pageTransition {
    0% {
        transform: translateY(100%);
    }

    45%,
    55% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

@media screen and (max-width: 1100px) {
    :root {
        --space-5xl: 7rem;
    }

    .container,
    .container-wide {
        width: min(calc(100% - 2.5rem), var(--container));
    }
}

@media screen and (max-width: 768px) {
    :root {
        --header-height: 4rem;
        --space-4xl: 5rem;
        --space-5xl: 5.5rem;
    }

    .container,
    .container-wide {
        width: min(calc(100% - 2rem), 680px);
    }

    .section {
        padding-block: var(--space-4xl);
    }

    .section__head {
        margin-bottom: var(--space-2xl);
    }

    .btn--lg {
        min-height: 54px;
    }

    .section-transition::after {
        height: 70px;
    }
}

@media screen and (max-width: 480px) {
    :root {
        --h1-size: clamp(2.5rem, 12vw, 3.5rem);
        --h2-size: clamp(2rem, 10vw, 2.8rem);
    }

    .container,
    .container-wide {
        width: calc(100% - 1.5rem);
    }

    .section {
        padding-block: 4rem;
    }

    .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

*::-webkit-scrollbar {
    width: 0.7rem;
    height: 0.7rem;
}

*::-webkit-scrollbar-track {
    background: #eeeeee;
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg,
            var(--primary-light) 0%,
            var(--primary) 50%,
            var(--primary-dark) 100%);
    border-radius: 999px;
    border: 2px solid #eeeeee;
}

*::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-dark-red);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #eeeeee;
}


#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header, 9999);
    padding: 0.75rem 1.25rem;
    transition:
        padding 0.35s var(--ease, ease),
        background 0.35s var(--ease, ease);
}

body {
    padding-top: 0;
}

header .flex {
    width: min(100%, var(--container, 1240px));
    min-height: 72px;
    margin: 0 auto;
    padding: 0.65rem 1rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.07);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    transition:
        background 0.35s var(--ease, ease),
        box-shadow 0.35s var(--ease, ease),
        border-color 0.35s var(--ease, ease),
        transform 0.35s var(--ease, ease);
}

header .flex.active {
    width: min(100%, var(--container, 1240px));
    margin: 0 auto;

    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(229, 9, 20, 0.12);

    box-shadow:
        0 16px 45px rgba(0, 0, 0, 0.10),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

header .flex .logo {
    width: 170px;
    height: 58px;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    flex-shrink: 0;
}

header .flex .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

header .flex .logo .logo-txt {
    height: 48px;
}

header .logo img.brand-logo {
    display: none;
}

header .menu {
    display: none;
}

header .navbar {
    margin-left: auto;
}

header .flex .navbar ul {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0.25rem;
    margin: 0;
    padding: 0;

    position: relative;
    z-index: 999;
}

header .navbar ul li {
    position: relative;

    padding: 0;
    margin: 0;

    font-family: var(--body-font, "Inter", sans-serif);
    font-size: 0.9rem;
    font-weight: 600;

    color: var(--title-color, #0a0a0a);
    white-space: nowrap;

    border-radius: 8px;
    z-index: 1000;
}

header .navbar ul li a {
    position: relative;

    display: flex;
    align-items: center;
    gap: 0.4rem;

    padding: 0.7rem 0.75rem;

    color: inherit;
    text-decoration: none;
    border-radius: 8px;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}

header .navbar ul li a:hover {
    color: var(--primary, #e50914);
}

header .navbar ul li a.active {
    color: var(--primary, #e50914);
}

header .navbar ul li a::after {
    content: "";

    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.25rem;

    width: auto;
    height: 2px;

    background: var(--gradient-primary);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s var(--ease, ease);
}

header .navbar ul li a:hover::after,
header .navbar ul li a.active::after {
    transform: scaleX(1);
}

header .navbar ul .product:hover::after {
    content: "";

    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;
    height: 0.7rem;
}

.navbar .product {
    position: relative;
    overflow: visible;
}

.navbar .product>a {
    cursor: pointer;
}

.navbar .product>a .rotate {
    font-size: 0.65rem;
    transition: transform 0.3s var(--ease, ease);
}

.navbar .product:hover>a .rotate,
.navbar .product.open>a .rotate {
    transform: rotate(180deg);
}

.navbar .product>.dropdown {
    position: absolute;

    top: calc(100% + 0.7rem);
    left: 50%;

    transform: translateX(-50%) translateY(8px);

    width: max-content;
    min-width: 275px;
    max-width: 340px;

    padding: 0.45rem;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid rgba(229, 9, 20, 0.15);
    border-radius: 14px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.13),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.3s var(--ease, ease);
}

.navbar .product:hover>.dropdown,
.navbar .product.open>.dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}

.navbar .product>.dropdown>ul {
    display: flex;
    flex-direction: column;

    width: 100%;
    margin: 0;
    padding: 0;

    gap: 0;
    align-items: stretch;
}

.navbar .product>.dropdown>ul>li {
    position: relative;

    width: 100%;
    margin: 0;
    padding: 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.navbar .product>.dropdown>ul>li:last-child {
    border-bottom: none;
}

.navbar .product>.dropdown>ul>li>a,
.navbar .product>.dropdown>ul>li>.dropdown-parent {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0.8rem 0.95rem;

    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;

    color: var(--title-color, #0a0a0a);

    white-space: normal;
    border-radius: 9px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding 0.25s ease;
}

.navbar .product>.dropdown>ul>li:hover>a,
.navbar .product>.dropdown>ul>li:hover>.dropdown-parent {
    background: var(--primary, #e50914);
    color: #fff;
}

.navbar .product .has-child>a i,
.navbar .product .has-child>.dropdown-parent i {
    margin-left: 1rem;

    font-size: 0.7rem;

    flex-shrink: 0;

    transition:
        transform 0.25s var(--ease, ease);
}

.navbar .product .has-child:hover>a i,
.navbar .product .has-child:hover>.dropdown-parent i {
    transform: translateX(3px);
}

.navbar .product .has-child {
    position: relative;
}

.navbar .product .child-dropdown {
    position: absolute;

    top: -0.45rem;
    left: calc(100% + 0.35rem);

    width: max-content;
    min-width: 285px;
    max-width: 360px;

    padding: 0.45rem;

    background: rgba(255, 255, 255, 0.94);

    border: 1px solid rgba(229, 9, 20, 0.15);
    border-radius: 14px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.14),
        0 0 0 1px rgba(255, 255, 255, 0.7) inset;

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.3s var(--ease, ease);
}

.navbar .product .has-child:hover>.child-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
}

.navbar .product .child-dropdown>ul {
    display: flex;
    flex-direction: column;

    width: 100%;
    margin: 0;
    padding: 0;

    gap: 0;
    align-items: stretch;
}

.navbar .product .child-dropdown>ul>li {
    width: 100%;
    margin: 0;
    padding: 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.navbar .product .child-dropdown>ul>li:last-child {
    border-bottom: none;
}

.navbar .product .child-dropdown>ul>li>a {
    display: block;

    width: 100%;

    padding: 0.72rem 0.95rem;

    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.4;

    color: var(--title-color, #0a0a0a);

    white-space: normal;
    border-radius: 9px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        padding 0.25s ease;
}

.navbar .product .child-dropdown>ul>li:hover>a {
    background: var(--primary, #e50914);
    color: #fff;

    padding-left: 1.1rem;
}

header .header__actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;

    margin-left: 1rem;

    flex-shrink: 0;
}

header .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;

    min-height: 42px;

    padding: 0.65rem 1rem;

    background: var(--black, #080808);
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;

    font-family: var(--body-font, "Inter", sans-serif);
    font-size: 0.78rem;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    transition:
        background 0.3s ease,
        transform 0.3s var(--ease, ease),
        box-shadow 0.3s ease;
}

header .header__cta:hover {
    background: var(--gradient-primary);
    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(229, 9, 20, 0.25);
}

header .header__cta i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

header .header__cta:hover i {
    transform: translate(2px, -2px);
}

header .header__menu {
    width: 43px;
    height: 43px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;

    padding: 0;

    background: var(--black, #080808);
    border: none;
    border-radius: 10px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

header .header__menu span {
    display: block;

    width: 17px;
    height: 2px;

    background: #fff;
    border-radius: 10px;

    transition:
        transform 0.3s ease,
        width 0.3s ease;
}

header .header__menu:hover {
    background: var(--primary, #094fe5);
}

header .header__menu:hover span:first-child {
    width: 13px;
}

header .header__menu:hover span:last-child {
    width: 19px;
}

.visually-hidden {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}

@media (max-width: 1200px) {

    #header {
        padding: 0.65rem 1rem;
    }

    header .flex {
        min-height: 68px;
        padding: 0.55rem 0.85rem;
    }

    header .flex .logo {
        width: 145px;
        height: 52px;
    }

    header .flex .navbar ul {
        gap: 0.1rem;
    }

    header .navbar ul li {
        font-size: 0.82rem;
    }

    header .navbar ul li a {
        padding: 0.6rem 0.55rem;
    }

    header .header__actions {
        margin-left: 0.6rem;
    }

    header .header__cta {
        padding: 0.6rem 0.8rem;
        font-size: 0.72rem;
    }
}

@media (max-width: 1050px) {

    header .navbar {
        display: block;

        position: absolute;
        top: calc(100% + 0.7rem);
        left: 0;
        width: 100%;
        max-height: calc(100vh - 6rem);
        overflow-y: auto;
        margin: 0;
        padding: 0.65rem;

        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s var(--ease, ease);
    }

    header .navbar.active {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    header .flex .navbar>ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
    }

    header .flex .navbar>ul>li {
        opacity: 0;
        transform: translateY(-6px);
        transition:
            opacity 0.25s ease,
            transform 0.3s var(--ease, ease);
    }

    header .flex .navbar.active>ul>li {
        opacity: 1;
        transform: translateY(0);
    }

    header .flex .navbar.active>ul>li:nth-child(1) {
        transition-delay: 0.04s;
    }

    header .flex .navbar.active>ul>li:nth-child(2) {
        transition-delay: 0.08s;
    }

    header .flex .navbar.active>ul>li:nth-child(3) {
        transition-delay: 0.12s;
    }

    header .flex .navbar.active>ul>li:nth-child(4) {
        transition-delay: 0.16s;
    }

    header .flex .navbar.active>ul>li:nth-child(5) {
        transition-delay: 0.2s;
    }

    header .flex .navbar.active>ul>li:nth-child(6) {
        transition-delay: 0.24s;
    }

    header .navbar ul li,
    header .navbar ul li a {
        width: 100%;
    }

    header .navbar ul li a {
        justify-content: space-between;
        padding: 0.8rem 0.85rem;
    }

    header .navbar .product:hover>.dropdown,
    header .navbar .product.open>.dropdown {
        transform: none;
    }

    header .navbar .product>.dropdown {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        padding: 0.25rem 0 0.25rem 0.65rem;
        background: var(--gray-50, #f5f5f5);
        border: 0;
        border-radius: 8px;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    header .navbar .product.open>.dropdown {
        display: block;
    }

    header .navbar .product>.dropdown>ul {
        display: flex;
    }

    header .navbar .product .child-dropdown {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: none;
        padding: 0 0 0 0.65rem;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    header .navbar .product .has-child:hover>.child-dropdown {
        display: block;
    }

    header .header__cta {
        display: none;
    }

    header .header__menu {
        display: flex;
    }

    header .header__menu span {
        transform-origin: center;
    }

    header .header__menu.active span:first-child {
        transform: translateY(3.5px) rotate(45deg);
    }

    header .header__menu.active span:last-child {
        transform: translateY(-3.5px) rotate(-45deg);
    }

    header .menu {
        display: none;
    }

    header .flex {
        min-height: 64px;
    }

    header .flex .logo {
        width: 140px;
        height: 48px;
    }
}

@media (max-width: 768px) {

    #header {
        padding: 0.55rem 0.7rem;
    }

    header .flex {
        min-height: 62px;
        padding: 0.45rem 0.7rem;

        border-radius: 15px;
    }

    header .flex.active {
        width: 100%;
    }

    header .flex .logo {
        width: 130px;
        height: 45px;
    }

    header .header__actions {
        margin-left: auto;
    }

    header .header__menu {
        width: 40px;
        height: 40px;
        border-radius: 9px;
    }
}

@media (max-width: 480px) {

    #header {
        padding: 0.5rem;
    }

    header .flex {
        min-height: 58px;
        padding: 0.4rem 0.6rem;

        border-radius: 13px;
    }

    header .flex .logo {
        width: 115px;
        height: 40px;
    }

    header .header__menu {
        width: 38px;
        height: 38px;
    }
}

@media (prefers-reduced-motion: reduce) {

    header .flex,
    header .header__cta,
    header .header__menu,
    header .navbar ul li a,
    header .navbar ul li a::after,
    .navbar .product>.dropdown,
    .navbar .product .child-dropdown {
        transition: none;
    }
}


.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #080808;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.72) 42%,
            rgba(0, 0, 0, 0.32) 75%,
            rgba(0, 0, 0, 0.48) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            transparent 40%,
            rgba(0, 0, 0, 0.5) 100%);
}

.hero__noise {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.hero__content {
    width: min(1240px, calc(100% - 8rem));
    margin: 0 auto;
    padding-top: 5rem;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--heading-font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(25px);
    animation: heroReveal 0.8s var(--ease) 0.2s forwards;
}

.hero__eyebrow>span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(229, 9, 20, 0.15);
}

.hero__title {
    width: 100%;
    max-width: 1120px;
    margin: 0;
    color: var(--white);
    font-family: var(--heading-font);
    font-size: clamp(2.8rem, 4.8vw, 5.2rem);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.hero__line {
    display: block;
    overflow: hidden;
    opacity: 0;
    transform: translateY(100%);
    animation: heroLineReveal 1s var(--ease) forwards;
}

.hero__line:nth-child(1) {
    animation-delay: 0.35s;
}

.hero__line:nth-child(2) {
    animation-delay: 0.48s;
}

.hero__line:nth-child(3) {
    animation-delay: 0.61s;
}

.hero__line:nth-child(4) {
    animation-delay: 0.74s;
}

.hero__line:nth-child(5) {
    animation-delay: 0.87s;
}

.hero__line--dynamic {
    display: flex;
    align-items: baseline;
    gap: 0.25em;
}

.hero__word {
    position: relative;
    display: inline-block;
    min-width: 4.8ch;
    color: var(--primary);
    font-weight: 800;
}
.hero__word.title {

    color: var(--primary-soft);

}

.hero__cursor {
    width: 3px;
    height: 0.82em;
    margin-left: 0.08em;
    background: var(--primary);
    animation: heroCursor 0.8s ease-in-out infinite;
}

.hero__description {
    max-width: 650px;
    margin: 2rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(25px);
    animation: heroReveal 0.9s var(--ease) 1.15s forwards;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(25px);
    animation: heroReveal 0.9s var(--ease) 1.3s forwards;
}

.hero__actions .btn--white {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.hero__actions .btn--white:hover {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
}

.hero__bottom {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateX(-50%);
    opacity: 0;
    animation: heroReveal 0.8s var(--ease) 1.55s forwards;
}

.hero__scroll-line {
    position: relative;
    width: 45px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.25);
}

.hero__scroll-line span {
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: heroScrollLine 2s ease-in-out infinite;
}

.hero__side-label {
    position: absolute;
    right: 2rem;
    top: 50%;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--heading-font);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
}

@keyframes heroLineReveal {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroCursor {

    0%,
    45% {
        opacity: 1;
    }

    46%,
    100% {
        opacity: 0;
    }
}

@keyframes heroScrollLine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

@media (max-width: 900px) {

    .hero__content {
        width: min(100% - 3rem, 760px);
    }

    .hero__title {
        font-size: clamp(2.5rem, 6.5vw, 4.2rem);
    }

    .hero__side-label {
        display: none;
    }

}

@media (max-width: 600px) {

    .hero {
        min-height: 100svh;
    }

    .hero__content {
        width: calc(100% - 2rem);
        padding-top: 4rem;
    }

    .hero__eyebrow {
        margin-bottom: 1.4rem;
        font-size: 0.6rem;
    }

    .hero__title {
        font-size: clamp(2rem, 9vw, 3.2rem);
        line-height: 1.02;
    }

    .hero__line--dynamic {
        flex-wrap: wrap;
        gap: 0.15em 0.25em;
    }

    .hero__description {
        margin-top: 1.5rem;
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1.7rem;
    }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero__bottom {
        bottom: 1.25rem;
    }

}

@media (prefers-reduced-motion: reduce) {

    .hero__line,
    .hero__description,
    .hero__actions,
    .hero__eyebrow,
    .hero__bottom {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .hero__cursor,
    .hero__scroll-line span {
        animation: none;
    }

}