:root {
    --olj-black: #0b131c;
    --olj-text: #111111;
    --olj-muted: #808080;
    --olj-yellow: #fed91f;
    --olj-footer: #2f2e2e;
    --olj-border: #929292;
    --olj-light: #f3f3f3;
    --olj-container: min(1660px, calc(100vw - 80px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body.olj-site {
    margin: 0;
    color: var(--olj-text);
    font-family: "Poppins", Arial, "Microsoft YaHei", sans-serif;
    background: #ffffff;
}

.olj-floating-actions {
    position: fixed;
    z-index: 80;
    right: clamp(5px, 1vw, 40px);
    bottom: clamp(18px, 2.1vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.olj-floating-action {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 68px;
    height: 68px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: var(--olj-yellow);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    color: #000000;
    font: 600 16px/1.2 inherit;
    overflow: hidden;
    transition: width 220ms ease, background-color 180ms ease;
}

.olj-floating-action > span {
    position: absolute;
    left: 20px;
    opacity: 0;
    white-space: nowrap;
    transform: translateX(10px);
    transition: opacity 140ms ease, transform 180ms ease;
}

.olj-floating-action > i {
    position: absolute;
    right: 22px;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.olj-floating-action--mail > i {
    background-image: url("../images/home/eamil.png");
}

.olj-floating-action--whatsapp > i {
    background-image: url("../images/whatsapp.svg");
}

.olj-floating-action--top > i {
    width: 24px;
    height: 11px;
    right: 22px;
    background: url("../images/black.png") center / contain no-repeat;
    transform: rotate(-90deg);
}

.olj-floating-action:not(.olj-floating-action--top):hover,
.olj-floating-action:not(.olj-floating-action--top):focus-visible {
    width: 178px;
}

.olj-floating-action:not(.olj-floating-action--top):hover > span,
.olj-floating-action:not(.olj-floating-action--top):focus-visible > span {
    opacity: 1;
    transform: translateX(0);
}

.olj-floating-action--top {
    transition: background-color 180ms ease;
}

body.admin-bar .olj-header {
    top: 32px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.olj-container {
    width: var(--olj-container);
    margin: 0 auto;
}

.olj-header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    right: 0;
    height: 102px;
    background: transparent;
    transition: transform 260ms ease, opacity 220ms ease;
    will-change: transform;
}

.olj-header__utility {
    height: 44px;
    background: var(--olj-yellow);
}

.olj-header__utility-inner {
    width: min(1810px, calc(100% - 80px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(22px, 2.6vw, 50px);
    font-size: 13px;
}

.olj-header__search {
    position: relative;
    width: 190px;
    height: 30px;

}

.olj-header__search input {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 42px 0 18px;
    border: 1px solid rgba(0, 0, 0, 0.72);
    border-radius: 20px;
    background: transparent;
    color: #000000;
    font: inherit;
    line-height: 28px;
}

.olj-header__search button {
    position: absolute;
    top: 50%;
    right: 13px;
    width: 17px;
    height: 17px;
    padding: 0;
    border: 2px solid #000000;
    border-radius: 50%;
    background: transparent;
    transform: translateY(-50%);
}

.olj-header__search button::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 7px;
    height: 2px;
    background: #000000;
    transform: rotate(48deg);
}

.olj-language-switcher {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.olj-language-switcher__toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #000000;
    font: inherit;
    cursor: pointer;
}

.olj-language-switcher__toggle img,
.olj-language-switcher__menu img {
    width: 19px;
    height: 19px;
    object-fit: contain;
}

.olj-language-switcher__toggle i {
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
}

.olj-language-switcher.is-open .olj-language-switcher__toggle i {
    transform: translateY(2px) rotate(225deg);
}

.olj-language-switcher__menu {
    position: absolute;
    z-index: 5;
    top: calc(100% - 1px);
    left: 50%;
    min-width: 142px;
    padding: 9px 8px;
    background: var(--olj-yellow);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -6px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.olj-language-switcher.is-open .olj-language-switcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.olj-language-switcher__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 37px;
    padding: 5px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
    font-size: 17px;
    white-space: nowrap;
}

.olj-language-switcher__menu a:last-child {
    border-bottom: 0;
}

.olj-language-switcher__menu a:hover,
.olj-language-switcher__menu a:focus-visible {
    background: rgba(255, 255, 255, 0.24);
}

.olj-header__contact {
    position: relative;
    padding-left: 24px;
    white-space: nowrap;
}

.olj-header__contact::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 16px;
    height: 16px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.olj-header__contact--phone::before {
    content: "\260E";
    background: none;
    font-size: 17px;
    line-height: 16px;
}

.olj-header__contact--mail::before {
    background-image: url("../images/home/eamil.png");
}

.olj-header__main {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(28px, calc((100vw - 1820px) / 2));
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.olj-header.is-main-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
}

.olj-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 168px;
    height: 42px;
}

.olj-logo-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
}

.olj-logo-text {
    width: 118px;
    height: 27px;
    object-fit: contain;
}

.olj-nav {
    display: flex;
    align-items: center;
    gap: clamp(28px, 4.4vw, 84px);
    font-size: clamp(13px, 0.86vw, 16px);
}

.olj-nav a,
.olj-nav button {
    position: relative;
    padding-top: 18px;
    padding-bottom: 17px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.olj-nav__item {
    position: relative;
}

.olj-nav__parent {
    padding-right: 18px;
}

.olj-nav__parent::before {
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: translateY(-65%) rotate(45deg);
}

.olj-nav__submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 10;
    min-width: 220px;
    padding: 10px 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.olj-nav__submenu::before {
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
    content: "";
}

.olj-nav__item:hover .olj-nav__submenu,
.olj-nav__item:focus-within .olj-nav__submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.olj-nav__submenu a {
    display: grid;
    gap: 3px;
    padding: 10px 18px;
    white-space: nowrap;
}

.olj-nav__submenu a:hover,
.olj-nav__submenu a:focus-visible,
.olj-nav__submenu a.is-active {
    background: #f5f5f5;
}

.olj-nav__submenu a.is-active {
    color: #000000;
    font-weight: 600;
}

.olj-nav__submenu a.is-active::after {
    display: none;
}

.olj-nav a.is-active::after,
.olj-nav button.is-active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 44px;
    height: 2px;
    background: var(--olj-yellow);
    transform: translateX(-50%);
}

.olj-nav li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.olj-nav .current-menu-item > a::after,
.olj-nav .current_page_item > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 44px;
    height: 2px;
    background: var(--olj-yellow);
    transform: translateX(-50%);
}

.olj-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 8px;
}

.olj-menu-toggle span {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: #111111;
}

.olj-hero {
    position: relative;
    min-height: clamp(620px, 49.43vw, 949px);
    margin-top: 24px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.olj-hero__image,
.olj-scenes__image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.olj-hero__shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.olj-hero__content {
    position: relative;
    z-index: 2;
    width: min(1270px, calc(100vw - 48px));
    padding-top: 90px;
}

.olj-hero .olj-hero__title {
    margin: 0;
    font-size: clamp(45px, 3.9vw, 75px);
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
}

.olj-hero p {
    margin: 235px 0 0;
    font-size: clamp(18px, 1.45vw, 28px);
    line-height: 1.5;
}

.olj-scenes {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 955;
    overflow: hidden;
}

.olj-scenes__media {
    position: absolute;
    inset: 0;
}

.olj-scenes__image {
    opacity: 0;
    transition: opacity 0.45s ease;
}

.olj-scenes__image.is-active {
    opacity: 1;
}

.olj-scenes__inner {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
}

.olj-scenes__tabs {
    position: relative;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    width: 100%;
    height: 9.8%;
    padding: 0;
    background: transparent;
}

.olj-scenes__tabs::before {
    content: '';
    position: absolute;
    top: 0;
    right: 9%;
    left: 8.6%;
    height: 1px;
    background: rgba(0, 0, 0, 0.72);
}

.olj-scenes__tabs button {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    height: 100%;
    padding: 0 12px clamp(16px, 1.25vw, 24px);
    border: 0;
    background: transparent;
    color: #0a0a0a;
    font-size: clamp(14px, 1.04vw, 20px);
    font-weight: 500;
    font-family: inherit;
    line-height: normal;
    text-align: center;
    cursor: pointer;
    transform: translateX(-1.2vw);
}

.olj-scenes__tabs button:focus {
    outline: none;
}

.olj-scenes__tabs button.is-active {
    color: #0a0a0a;
}

.olj-scenes__tabs button span {
    position: relative;
    display: inline-block;
}

.olj-scenes__tabs button.is-active span::before {
    content: '';
    position: absolute;
    top: calc(-1 * clamp(10px, 0.99vw, 19px));
    left: 50%;
    width: calc(100% + 28px);
    height: clamp(5px, 0.52vw, 10px);
    background: #0a0a0a;
    transform: translate(-50%, -50%);
}

.olj-scenes .olj-button {
    position: absolute;
    left: 8.3%;
    bottom: 15.9%;
    width: auto;
}

.olj-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 159px;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
}

.olj-button::after {
    content: "";
    flex: 0 0 auto;
    width: 22px;
    height: 10px;
    margin-left: 14px;
    background: url("../images/black.png") center / contain no-repeat;
}

.olj-button--yellow {
    background: var(--olj-yellow);
    color: #000000;
    transition: background-color 180ms ease, color 180ms ease;
}

.olj-button--yellow:hover,
.olj-button--yellow:focus-visible {
    background: #000000;
    color: var(--olj-yellow);
}

.olj-button--yellow:hover::after,
.olj-button--yellow:focus-visible::after {
    background-image: url("../images/yellow.png");
}

.olj-button--outline {
    border: 1px solid #ffffff;
    color: #ffffff;
}

.olj-button--outline::after {
    background-image: url("../images/awrit.png");
}

.olj-button--large {
    min-width: 420px;
    min-height: 114px;
    border-radius: 22px;
    font-size: 32px;
    font-weight: 600;
}

.olj-feature-product {
    min-height: 955px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 40%);
    align-items: center;
    background: var(--olj-black);
    color: #ffffff;
    overflow: hidden;
}

.olj-feature-product__image {
    width: 100%;
    height: 955px;
    object-fit: cover;
}

.olj-feature-product__content {
    max-width: 748px;
    padding: 40px 66px;
}

.olj-feature-product h2 {
    margin: 0;
    font-size: clamp(46px, 3.4vw, 65px);
    line-height: 1.24;
    font-weight: 700;
}

.olj-feature-product p {
    margin: 36px 0 58px;
    font-size: clamp(22px, 1.45vw, 28px);
    line-height: 1.4;
}

.olj-rack-showcase {
    position: relative;
    height: 500vh;
    min-height: 3600px;
    background: #07131d;
}

.olj-rack-showcase__sticky {
    position: sticky;
    top: 0;
    height: clamp(560px, 49.74vw, 955px);
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 25% 52%, rgba(16, 110, 176, 0.16), transparent 36%),
        linear-gradient(115deg, #061722 0%, #07141e 54%, #08151f 100%);
}

.olj-rack-showcase__sticky::after {
    content: none;
}

.olj-rack-showcase__grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: 0.28;
    background-image:
        linear-gradient(rgba(116, 166, 199, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 166, 199, 0.055) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(90deg, #000000, rgba(0, 0, 0, 0.28) 62%, transparent);
}

.olj-rack-showcase__brand {
    position: absolute;
    z-index: 5;
    top: clamp(26px, 3.2vw, 60px);
    left: 50%;
    width: clamp(260px, 22vw, 422px);
    height: auto;
    opacity: var(--olj-rack-brand-opacity, 0);
    transform: translate3d(-50%, var(--olj-rack-brand-y, 18vh), 0) scale(var(--olj-rack-brand-scale, 7.6));
    transform-origin: center top;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.2));
    will-change: opacity, transform;
}

.olj-rack-showcase__model {
    position: absolute;
    z-index: 2;
    left: 2vw;
    top: 0;
    width: 60vw;
    height: 100%;
    min-height: 450px;
}

.olj-rack-showcase__canvas {
    position: absolute;
    inset: 0;
    z-index: 3;
    cursor: grab;
}

.olj-rack-showcase__canvas:active {
    cursor: grabbing;
}

.olj-rack-showcase__canvas canvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: pan-y;
}

.olj-rack-showcase__glow {
    position: absolute;
    z-index: 1;
    left: 8%;
    right: 5%;
    bottom: 7%;
    height: 16%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(14, 102, 164, 0.2), rgba(0, 0, 0, 0) 67%);
    filter: blur(12px);
}

.olj-rack-showcase__drag-cue {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 6.2%;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(225, 239, 248, 0.58);
    font-size: 11px;
    letter-spacing: 0.08em;
    transform: translateX(-50%);
    animation: olj-drag-cue-pulse 2.2s ease-in-out infinite;
    pointer-events: none;
    white-space: nowrap;
}

.olj-rack-showcase__drag-cue img {
    width: 15px;
    height: 15px;
    object-fit: contain;
    opacity: 0.86;
}

@keyframes olj-drag-cue-pulse {
    0%,
    100% {
        opacity: 0.58;
    }

    50% {
        opacity: 0.95;
    }
}

@keyframes olj-drag-wheel {
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 4px);
    }
}

@keyframes olj-drag-ring {
    0% {
        opacity: 0.35;
        transform: translate(-50%, -50%) scale(0.78);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.28);
    }
}

.olj-rack-showcase__loader {
    position: absolute;
    z-index: 5;
    inset: 0;
    display: grid;
    place-content: center;
    justify-items: center;
    color: rgba(230, 242, 250, 0.65);
    font-size: 11px;
    letter-spacing: 0.12em;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.olj-rack-showcase__loader.is-ready {
    opacity: 0;
}

.olj-rack-showcase__loader span {
    width: 34px;
    height: 34px;
    border: 2px solid rgba(72, 159, 219, 0.25);
    border-top-color: #178ad8;
    border-radius: 50%;
    animation: olj-spin 0.8s linear infinite;
}

.olj-rack-showcase__loader p {
    margin: 16px 0 0;
}

@keyframes olj-spin {
    to {
        transform: rotate(360deg);
    }
}

.olj-rack-showcase__content {
    position: absolute;
    z-index: 10;
    top: 22%;
    left: 63.6vw;
    width: 31.2vw;
    color: #ffffff;
}

.olj-rack-showcase__copy {
    position: relative;
    min-height: clamp(200px, 20vw, 520px);
    margin-bottom: 100px;
}

.olj-rack-showcase__panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    overflow: visible;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(28px, 0, 0) scale(0.985);
    transform-origin: left center;
    transition: opacity 820ms ease, transform 980ms cubic-bezier(0.16, 1, 0.3, 1), clip-path 1060ms cubic-bezier(0.16, 1, 0.3, 1);
}

.olj-rack-showcase__panel.is-active {
    pointer-events: auto;
}

.olj-rack-showcase__panel::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    width: min(260px, 72%);
    height: 1px;
    background: linear-gradient(90deg, rgba(61, 178, 255, 0), rgba(61, 178, 255, 0.8), rgba(254, 217, 31, 0.55), rgba(61, 178, 255, 0));
    opacity: 0;
    transform: translateX(-36px);
}

.olj-rack-showcase__panel.is-active::before {
    animation: olj-rack-panel-scan 720ms ease both 90ms;
}

@keyframes olj-rack-panel-scan {
    0% {
        opacity: 0;
        transform: translateX(-36px) scaleX(0.72);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 0.48;
        transform: translateX(36px) scaleX(1);
    }
}

.olj-rack-showcase__title {
    margin: 0;
    font-size: clamp(30px, 3.1vw, 60px);
    font-weight: 700;
    line-height: 1.18;
}

.olj-rack-showcase__panel .olj-rack-showcase__title,
.olj-rack-showcase__panel .olj-rack-showcase__intro,
.olj-rack-showcase__panel .olj-rack-showcase__intro p {
    opacity: 0;
    transform: translate3d(34px, 0, 0);
    transition: opacity 920ms ease, transform 1120ms cubic-bezier(0.16, 1, 0.3, 1);
}

.olj-rack-showcase__panel.is-active .olj-rack-showcase__title,
.olj-rack-showcase__panel.is-active .olj-rack-showcase__intro,
.olj-rack-showcase__panel.is-active .olj-rack-showcase__intro p {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.olj-rack-showcase__panel.is-active .olj-rack-showcase__intro {
    transition-delay: 220ms;
}

.olj-rack-showcase__panel.is-active .olj-rack-showcase__intro p {
    transition-delay: 360ms;
}

.olj-rack-showcase__intro {
    max-width: 30vw;
    margin: 12px 0 0;
    color: #ffffff;
    font-size: clamp(13px, 1.02vw, 19px);
    line-height: 1.55;
}

.olj-rack-showcase__intro p {
    margin: 0 0 8px;
}

.olj-rack-showcase__content .olj-button {
    min-width: 159px;
    min-height: 46px;
    padding: 12px 24px;
    border-color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
}

.olj-rack-showcase__rail {
    position: absolute;
    z-index: 12;
    top: 31.62%;
    right: 2.03vw;
    display: flex;
    flex-direction: column;
    gap: clamp(36px, 4.22vw, 81px);
    transform: translateY(-50%);
}

.olj-rack-showcase__track {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.38);
    transform: translateX(-50%);
}

.olj-rack-showcase__track i {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--olj-yellow);
}

.olj-rack-showcase__rail button {
    position: relative;
    z-index: 1;
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: #0b1119;
    cursor: pointer;
}

.olj-rack-showcase__rail button.is-active {
    border-color: var(--olj-yellow);
    background: var(--olj-yellow);
    box-shadow: 0 0 0 4px rgba(254, 217, 31, 0.16);
}

.olj-home-products {
    width: min(1810px, calc(100% - 80px));
    margin: clamp(110px, 8.3vw, 160px) auto 0;
}

.olj-home-product {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
    gap: clamp(70px, 5.7vw, 110px);
    align-items: start;
}

.olj-home-product + .olj-home-product {
    margin-top: clamp(150px, 11.5vw, 220px);
}

.olj-home-product--reverse .olj-home-product__image {
    order: 2;
}

.olj-home-product__image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.olj-home-product__image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 300ms ease;
}

.olj-home-product__image-hover {
    opacity: 0;
}

.olj-home-product__image:hover .olj-home-product__image-default {
    opacity: 0;
}

.olj-home-product__image:hover .olj-home-product__image-hover {
    opacity: 1;
}

.olj-home-product__content {
    padding-top: 2px;
}

.olj-home-product__content h2 {
    margin: 0;
    font-size: clamp(38px, 3.02vw, 58px);
    line-height: 1.08;
    font-weight: 700;
}

.olj-home-product__summary {
    margin: 12px 0 0;
    color: #8d8d8d;
    font-size: clamp(12px, 0.72vw, 14px);
    line-height: 1.5;
}

.olj-home-product__content h3 {
    margin: clamp(64px, 5.1vw, 98px) 0 20px;
    font-size: clamp(21px, 1.35vw, 26px);
    line-height: 1.25;
}

.olj-home-product__content > p:not(.olj-home-product__summary) {
    max-width: 760px;
    margin: 0;
    font-size: clamp(13px, 0.83vw, 16px);
    line-height: 1.85;
}

.olj-home-product__tags {
    max-width: 760px;
    margin-top: clamp(62px, 5.2vw, 100px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.olj-home-product__tags span {
    min-height: 58px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a9a9a9;
    border-radius: 14px;
    font-size: clamp(12px, 0.78vw, 15px);
    line-height: 1.2;
    text-align: center;
}

.olj-home-product__content .olj-button {
    margin-top: clamp(70px, 6.1vw, 118px);
    min-width: 159px;
    min-height: 46px;
    padding: 12px 24px;
    font-size: 16px;
}

.olj-product-block {
    width: var(--olj-container);
    margin: 180px auto 0;
    display: grid;
    grid-template-columns: 0.95fr 0.9fr;
    gap: clamp(70px, 5.5vw, 105px);
    align-items: start;
}

.olj-product-block--reverse {
    grid-template-columns: 0.9fr 0.95fr;
}

.olj-product-block--reverse .olj-product-block__image {
    order: 2;
}

.olj-product-block__image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.olj-product-block__content h2 {
    margin: 0 0 12px;
    font-size: clamp(44px, 3.4vw, 65px);
    line-height: 1.08;
    font-weight: 700;
}

.olj-muted {
    color: var(--olj-muted);
}

.olj-product-block__content h3 {
    margin: 82px 0 18px;
    font-size: 32px;
    line-height: 1.25;
}

.olj-product-block__content p {
    font-size: 17px;
    line-height: 2.05;
}

.olj-tags {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 14px;
    margin: 70px 0 92px;
}

.olj-tags span {
    min-height: 92px;
    border: 1px solid var(--olj-border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-size: 22px;
    font-weight: 500;
}

.olj-about {
    width: min(1840px, calc(100% - 80px));
    margin: clamp(130px, 9.4vw, 180px) auto 0;
    display: grid;
    grid-template-columns: minmax(0, 0.99fr) minmax(0, 0.96fr);
    gap: clamp(60px, 3.4vw, 66px);
    align-items: start;
}

.olj-about__image img {
    display: block;
    width: 100%;
    aspect-ratio: 0.985 / 1;
    object-fit: cover;
}

.olj-about h2,
.olj-partners h2 {
    margin: 0 0 88px;
    font-size: clamp(58px, 5.2vw, 100px);
    line-height: 0.95;
    font-weight: 700;
}

.olj-about__content > p {
    margin: 0 0 clamp(70px, 6.2vw, 118px);
    font-size: clamp(14px, 0.94vw, 18px);
    line-height: 1.48;
}

.olj-advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 1.8vw, 35px) clamp(24px, 1.5vw, 29px);
}

.olj-advantage {
    position: relative;
    min-height: clamp(154px, 9.43vw, 181px);
    border: 1px solid var(--olj-muted);
    border-radius: 20px;
    padding: 10px 20px 18px;
}

.olj-advantage strong {
    color: var(--olj-yellow);
    font-size: 50px;
    line-height: 1;
}

.olj-advantage h3 {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 58%;
    margin: 0;
    text-align: right;
    font-size: 15px;
    line-height: 1.4;
}

.olj-advantage p {
    margin: 16px 0 0;
    font-size: 10px;
    line-height: 1.55;
    text-align: justify;
}

.olj-partners {
    margin: 270px auto 0;
    text-align: center;
    overflow: hidden;
}

.olj-partners h2 {
    margin-bottom: 140px;
}

.olj-partners__logos {
    display: flex;
    align-items: center;
    width: max-content;
    animation: olj-partner-marquee 24s linear infinite;
    will-change: transform;
}

.olj-partners__marquee {
    width: 100%;
    overflow: hidden;
}

.olj-partners__group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: clamp(70px, 5.52vw, 106px);
    padding: 0 clamp(35px, 2.76vw, 53px);
}

.olj-partners__logos img {
    width: auto;
    max-height: 148px;
    object-fit: contain;
}

.olj-partners__marquee:hover .olj-partners__logos {
    animation-play-state: paused;
}

@keyframes olj-partner-marquee {
    to {
        transform: translateX(-50%);
    }
}

.olj-inquiry {
    margin-top: 310px;
    background: #d9d9d9;
}

.olj-inquiry__inner {
    width: calc(100vw - 160px);
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.olj-inquiry h2 {
    margin: 0;
    font-size: clamp(20px, 1.55vw, 30px);
    line-height: 1.2;
}

.olj-inquiry__email {
    min-width: 170px;
    width: 170px;
    min-height: 48px;
    height: 48px;
    padding: 0 20px;
    border-radius: 7px;
    justify-content: space-between;
    font-size: 14px;
    line-height: 1.2;
    color: #000000;
    text-indent: 0;
}

.olj-inquiry__email::after {
    width: 24px;
    height: 24px;
    margin: 0;
    background-image: url("../images/home/eamil.png");
    transition: filter 180ms ease;
}

.olj-inquiry__email:hover::after,
.olj-inquiry__email:focus-visible::after {
    background-image: url("../images/home/eamil.png");
    filter: invert(84%) sepia(100%) saturate(1035%) hue-rotate(345deg) brightness(104%);
}

.olj-inquiry__email:hover,
.olj-inquiry__email:focus-visible {
    background: #000000;
}

.olj-inquiry__inner p {
    display: none;
}

.olj-footer {
    background: var(--olj-footer);
    color: #ffffff;
}

.olj-footer__inner {
    width: min(1600px, calc(100vw - 120px));
    margin: 0 auto;
    padding: 50px 0 54px;
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(150px, 1fr));
    column-gap: clamp(48px, 4.5vw, 86px);
    row-gap: 34px;
}

.olj-footer__logo {
    display: block;
    width: clamp(165px, 11vw, 205px);
    margin-bottom: 22px;
}

.olj-footer__logo img {
    display: block;
    width: 100%;
    height: auto;
}

.olj-footer__brand p {
    margin: 0 0 20px;
    font-size: clamp(13px, 1vw, 16px);
    line-height: 1.45;
}

.olj-socials {
    display: flex;
    gap: 11px;
    margin-bottom: 20px;
}

.olj-socials a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.olj-socials img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.olj-footer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 36px;
    padding: 8px 18px;
    border-radius: 3px;
    background: #d9d9d9;
    color: #515151;
    font-size: 13px;
}

.olj-footer__column h2 {
    margin: 7px 0 16px;
    font-size: 16px;
    line-height: 1.3;
}

.olj-footer__column a {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.45;
}

.olj-page--basic {
    padding-top: 220px;
}

.olj-basic-content {
    min-height: 50vh;
    padding: 80px 0;
}

.olj-basic-title {
    margin: 0 0 28px;
    font-size: clamp(40px, 3vw, 58px);
    line-height: 1.16;
    font-weight: 700;
}

.olj-editable-content {
    max-width: 1120px;
    margin-top: 90px;
}

.olj-editable-content > *:first-child {
    margin-top: 0;
}

.olj-editable-content > *:last-child {
    margin-bottom: 0;
}

.olj-editable-content h2,
.olj-simple-card h2,
.olj-contact-layout h2 {
    margin: 0 0 20px;
    font-size: clamp(34px, 2.8vw, 52px);
    line-height: 1.16;
}

.olj-simple-card {
    padding: 34px;
}

.olj-simple-card p,
.olj-contact-layout p {
    margin: 0;
}

.olj-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.55fr);
    gap: 72px;
    align-items: start;
}

.olj-contact-panel {
    padding: 38px;
    border: 1px solid var(--olj-border);
    border-radius: 8px;
}

.olj-contact-panel p {
    margin-bottom: 28px;
}

.olj-page {
    padding-top: 24px;
}

.olj-subhero {
    position: relative;
    min-height: 646px;
    overflow: hidden;
}

.olj-subhero img {
    width: 100%;
    height: 100%;
    min-height: 646px;
    object-fit: cover;
}

.olj-subhero > div {
    position: absolute;
    z-index: 2;
}

.olj-subhero--split {
    display: grid;
    grid-template-columns: 39% 61%;
    background: #111111;
}

.olj-subhero--split img {
    grid-column: 2;
}

.olj-subhero__panel {
    inset: 0 auto 0 0;
    width: 39%;
    padding: 110px 70px;
    background: #111111;
    color: #ffffff;
}

.olj-subhero__panel .olj-subhero__title {
    color: var(--olj-yellow);
}

.olj-subhero--center > div,
.olj-subhero--dark > div {
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.58);
}

.olj-subhero--left > div {
    align-items: flex-start;
    text-align: left;
    padding-left: max(70px, calc((100vw - 1660px) / 2));
}

.olj-subhero .olj-subhero__title {
    max-width: 1100px;
    margin: 0 0 34px;
    font-size: clamp(54px, 5vw, 96px);
    line-height: 1.05;
}

.olj-subhero p {
    max-width: 1100px;
    margin: 0;
    font-size: 22px;
    line-height: 1.55;
}

.olj-section {
    width: var(--olj-container);
    margin: 150px auto 0;
}

.olj-insights-page {
    padding-top: 24px;
}

.olj-insights-hero {
    position: relative;
    height: clamp(280px, 44.43vw, 854px);
    overflow: hidden;
    background: #111111;
}

.olj-insights-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.olj-insights-hero > div {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    background: rgba(0, 0, 0, 0.46);
}

.olj-insights-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(50px, 4.2vw, 82px);
    line-height: 1.08;
    font-weight: 700;
}

.olj-news-list,
.olj-faq-list,
.olj-news-detail {
    width: min(1480px, calc(100vw - 120px));
    margin: 0 auto;
}

.olj-news-list {
    padding: clamp(92px, 8vw, 150px) 0 clamp(64px, 6vw, 110px);
    display: grid;
    gap: clamp(54px, 4.2vw, 82px);
}

.olj-news-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 1fr);
    gap: clamp(42px, 3.7vw, 70px);
    align-items: center;
    min-height: clamp(270px, 16.4vw, 315px);
    padding: clamp(34px, 2.2vw, 42px) clamp(44px, 3vw, 58px);
    border: 1px solid #111111;
    border-radius: 12px;
    background: #ffffff;
}

.olj-news-card__image {
    display: block;
    overflow: hidden;
}

.olj-news-card__image img {
    width: 100%;
    height: clamp(190px, 11.4vw, 220px);
    object-fit: cover;
}

.olj-news-card__content h2 {
    max-width: 850px;
    margin: 0 0 20px;
    font-size: clamp(28px, 2vw, 38px);
    line-height: 1.2;
    font-weight: 700;
}

.olj-news-card__content time,
.olj-news-detail time {
    display: block;
    margin-bottom: clamp(30px, 2.6vw, 50px);
    color: #808080;
    font-size: 14px;
}

.olj-news-card__content p {
    max-width: 900px;
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.55;
}

.olj-news-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 2px;
    background: var(--olj-yellow);
    font-size: 12px;
    font-weight: 600;
}

.olj-news-card__button::after {
    content: "";
    width: 22px;
    height: 10px;
    margin-left: 14px;
    background: url("../images/black.png") center / contain no-repeat;
}

.olj-news-card__button:hover::after,
.olj-news-card__button:focus-visible::after {
    background-image: url("../images/yellow.png");
}

.olj-news-pagination {
    width: min(1480px, calc(100vw - 120px));
    margin: 0 auto;
}

.olj-news-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.olj-news-pagination a,
.olj-news-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid #111111;
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 180ms ease, color 180ms ease;
}

.olj-news-pagination .current,
.olj-news-pagination a:hover,
.olj-news-pagination a:focus-visible {
    background: var(--olj-yellow);
    color: #111111;
}

.olj-news-page .olj-inquiry {
    margin-top: clamp(80px, 7vw, 130px);
}

.olj-faq-list {
    padding: clamp(118px, 7.5vw, 144px) 0 clamp(96px, 6.6vw, 128px);
    display: grid;
    gap: clamp(26px, 1.5vw, 30px);
}

.olj-faq-item {
    border: 1px solid #111111;
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
}

.olj-faq-item button {
    width: 100%;
    min-height: clamp(118px, 6.2vw, 120px);
    padding: 0 clamp(40px, 3vw, 58px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border: 0;
    background: transparent;
    color: #000000;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.olj-faq-item button span {
    font-size: clamp(28px, 2vw, 40px);
    line-height: 1.25;
    font-weight: 700;
}

.olj-faq-item button i {
    flex: 0 0 30px;
    width: 30px;
    height: 38px;
    background: url("../images/Insights/img_2.png") center / 30px 30px no-repeat;
}

.olj-faq-item.is-open button i {
    background-image: url("../images/Insights/img_3.png");
    background-size: 30px 38px;
}

.olj-faq-item__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 220ms ease;
}

.olj-faq-item__answer p {
    overflow: hidden;
    width: min(1220px, calc(100% - 88px));
    margin: 0 auto;
    padding: 0;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.55;
}

.olj-faq-item__answer strong {
    margin-right: 12px;
    font-size: clamp(22px, 1.45vw, 28px);
}

.olj-faq-item.is-open .olj-faq-item__answer {
    grid-template-rows: 1fr;
}

.olj-faq-item.is-open .olj-faq-item__answer p {
    padding: 34px 0 56px;
}

@media (max-width: 640px) {
    .olj-insights-page {
        padding-top: 24px;
    }

    .olj-insights-hero {
        height: 260px;
    }

    .olj-insights-hero h1 {
        font-size: 42px;
    }

    .olj-news-list,
    .olj-faq-list,
    .olj-news-pagination {
        width: calc(100vw - 40px);
    }

    .olj-news-list {
        gap: 24px;
        padding: 44px 0 64px;
    }

    .olj-news-card {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: 0;
        padding: 16px;
        border-radius: 6px;
    }

    .olj-news-card__image img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .olj-news-card__content h2 {
        margin-bottom: 12px;
        font-size: 24px;
        line-height: 1.3;
    }

    .olj-news-card__content time {
        margin-bottom: 16px;
    }

    .olj-news-card__content p {
        margin-bottom: 18px;
        line-height: 1.65;
    }

    .olj-news-card__button {
        min-height: 42px;
    }

    .olj-news-pagination .page-numbers {
        flex-wrap: wrap;
    }

    .olj-news-pagination a,
    .olj-news-pagination span {
        min-width: 40px;
        min-height: 40px;
        padding: 0 10px;
    }

    .olj-faq-list {
        gap: 16px;
        padding: 44px 0 64px;
    }

    .olj-faq-item {
        border-radius: 6px;
    }

    .olj-faq-item button {
        min-height: 72px;
        padding: 18px;
        gap: 16px;
    }

    .olj-faq-item button span {
        font-size: 19px;
        line-height: 1.35;
    }

    .olj-faq-item button i {
        flex-basis: 24px;
        width: 24px;
        height: 30px;
        background-size: 24px 24px;
    }

    .olj-faq-item.is-open button i {
        background-size: 24px 30px;
    }

    .olj-faq-item__answer p {
        width: calc(100% - 36px);
        font-size: 14px;
        line-height: 1.65;
    }

    .olj-faq-item__answer strong {
        margin-right: 6px;
        font-size: 16px;
    }

    .olj-faq-item.is-open .olj-faq-item__answer p {
        padding: 0 0 24px;
    }
}

.olj-news-detail-page {
    background: #f5f5f2;
}

.olj-news-detail__hero {
    padding: clamp(78px, 7vw, 132px) 0 clamp(70px, 6vw, 112px);
    background: #111111;
    color: #ffffff;
}

.olj-news-detail__hero-inner {
    width: min(1180px, calc(100vw - 120px));
    margin: 0 auto;
}

.olj-news-detail__breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: clamp(54px, 5vw, 86px);
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.olj-news-detail__breadcrumb a {
    transition: color 180ms ease;
}

.olj-news-detail__breadcrumb a:hover,
.olj-news-detail__breadcrumb a:focus-visible {
    color: var(--olj-yellow);
}

.olj-news-detail__eyebrow {
    margin: 0 0 24px;
    color: var(--olj-yellow);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.olj-news-detail__hero h1 {
    max-width: 1080px;
    margin: 0;
    font-size: clamp(42px, 4.25vw, 76px);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.olj-news-detail__lead {
    max-width: 850px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(17px, 1.3vw, 21px);
    line-height: 1.65;
}

.olj-news-detail__meta {
    display: flex;
    gap: 26px;
    margin-top: 42px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 13px;
}

.olj-news-detail__meta span {
    position: relative;
    padding-left: 27px;
}

.olj-news-detail__meta span::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--olj-yellow);
    content: "";
    transform: translateY(-50%);
}

.olj-news-detail {
    padding: 0 0 clamp(88px, 7vw, 136px);
}

.olj-news-detail-page .olj-inquiry {
    margin-top: 0;
}

.olj-news-detail__cover {
    width: min(1380px, calc(100vw - 120px));
    margin: clamp(56px, 5vw, 92px) auto 0;
    overflow: hidden;
    border-radius: 18px;
    background: #deded9;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.olj-news-detail__cover img {
    display: block;
    width: 100%;
    max-height: 720px;
    aspect-ratio: 16 / 8.2;
    object-fit: cover;
}

.olj-news-detail__article {
    width: min(980px, calc(100vw - 120px));
    margin: clamp(58px, 5vw, 92px) auto 0;
    padding: clamp(42px, 4vw, 72px) clamp(38px, 5vw, 86px);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.06);
}

.olj-news-detail__content {
    color: #303030;
    font-size: clamp(17px, 1.08vw, 19px);
    line-height: 1.88;
}

.olj-news-detail__content > :first-child {
    margin-top: 0;
}

.olj-news-detail__content > :last-child {
    margin-bottom: 0;
}

.olj-news-detail__content p {
    margin: 0 0 1.55em;
}

.olj-news-detail__content p:first-child::first-letter {
    float: left;
    margin: 0.11em 0.12em 0 0;
    color: #111111;
    font-size: 3.75em;
    line-height: 0.78;
    font-weight: 700;
}

.olj-news-detail__content strong {
    color: #111111;
    font-weight: 700;
}

.olj-news-detail__content a {
    border-bottom: 1px solid var(--olj-yellow);
}

.olj-news-detail__content img {
    max-width: calc(100% + 80px);
    height: auto;
    margin: 34px -40px;
    border-radius: 10px;
}

.olj-news-recommendations {
    width: min(1380px, calc(100vw - 120px));
    margin: clamp(74px, 6vw, 112px) auto 0;
}

.olj-news-recommendations__heading {
    margin-bottom: 34px;
}

.olj-news-recommendations__heading p {
    margin: 0 0 12px;
    color: #9b7900;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.olj-news-recommendations__heading h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(30px, 2.7vw, 48px);
    line-height: 1.12;
}

.olj-news-recommendations__heading h2::after {
    display: block;
    width: 54px;
    height: 4px;
    margin-top: 18px;
    border-radius: 4px;
    background: var(--olj-yellow);
    content: "";
}

.olj-news-recommendations__products,
.olj-news-recommendations__articles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.olj-news-recommendations__articles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.olj-news-recommendations__products .olj-catalog-card {
    min-height: 280px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px #deded8;
}

.olj-news-recommendations__products .olj-catalog-card:hover,
.olj-news-recommendations__products .olj-catalog-card:focus-within {
    background: var(--olj-yellow);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.olj-news-recommendations--articles {
    width: min(1180px, calc(100vw - 120px));
}

.olj-news-recommendations--products {
    margin-top: clamp(66px, 5vw, 92px);
    padding-top: clamp(58px, 5vw, 82px);
    border-top: 1px solid #d8d8d2;
}

.olj-related-article-card {
    display: grid;
    grid-template-columns: minmax(190px, 0.86fr) minmax(0, 1fr);
    min-height: 250px;
    overflow: hidden;
    border: 1px solid #deded8;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.olj-related-article-card:hover,
.olj-related-article-card:focus-within {
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.11);
    transform: translateY(-4px);
}

.olj-related-article-card__image {
    display: block;
    overflow: hidden;
    background: #deded9;
}

.olj-related-article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.olj-related-article-card:hover .olj-related-article-card__image img,
.olj-related-article-card:focus-within .olj-related-article-card__image img {
    transform: scale(1.035);
}

.olj-related-article-card__body {
    display: flex;
    min-width: 0;
    padding: 28px 28px 26px;
    flex-direction: column;
}

.olj-related-article-card__body time {
    color: #858585;
    font-size: 12px;
}

.olj-related-article-card__body h3 {
    margin: 14px 0 22px;
    font-size: clamp(18px, 1.25vw, 22px);
    line-height: 1.4;
}

.olj-related-article-card__link {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: auto;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
}

.olj-related-article-card__link::after {
    width: 18px;
    height: 9px;
    margin-left: 10px;
    background: url("../images/black.png") center / contain no-repeat;
    content: "";
    transition: transform 180ms ease;
}

.olj-related-article-card__link:hover::after,
.olj-related-article-card__link:focus-visible::after {
    transform: translateX(4px);
}

.olj-news-detail__body-grid {
    width: min(1380px, calc(100vw - 120px));
    margin: clamp(58px, 5vw, 92px) auto 0;
    display: grid;
    grid-template-columns: minmax(220px, 0.82fr) minmax(0, 2fr) minmax(220px, 0.82fr);
    grid-template-areas: "articles content products";
    gap: clamp(22px, 2.2vw, 38px);
    align-items: start;
}

.olj-news-detail__body-grid .olj-news-detail__article {
    grid-area: content;
    width: auto;
    margin: 0;
    padding: clamp(36px, 3.5vw, 62px) clamp(30px, 4vw, 66px);
}

.olj-news-detail__sidebar {
    position: sticky;
    top: 132px;
    min-width: 0;
}

.olj-news-detail__sidebar--articles {
    grid-area: articles;
}

.olj-news-detail__sidebar--products {
    grid-area: products;
}

.olj-news-detail__sidebar-heading {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #d6d6d0;
}

.olj-news-detail__sidebar-heading p {
    margin: 0 0 8px;
    color: #9b7900;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.olj-news-detail__sidebar-heading h2 {
    margin: 0;
    color: #111111;
    font-size: clamp(20px, 1.55vw, 27px);
    line-height: 1.2;
}

.olj-news-detail__sidebar-list,
.olj-news-detail__sidebar-products {
    display: grid;
    gap: 16px;
}

.olj-news-detail__sidebar .olj-related-article-card {
    display: block;
    min-height: 0;
    border-radius: 8px;
}

.olj-news-detail__sidebar .olj-related-article-card__image {
    aspect-ratio: 16 / 9;
}

.olj-news-detail__sidebar .olj-related-article-card__body {
    padding: 18px 18px 20px;
}

.olj-news-detail__sidebar .olj-related-article-card__body h3 {
    margin: 9px 0 16px;
    font-size: clamp(15px, 1.05vw, 18px);
    line-height: 1.35;
}

.olj-news-detail__sidebar .olj-related-article-card__body time,
.olj-news-detail__sidebar .olj-related-article-card__link {
    font-size: 11px;
}

.olj-news-detail__sidebar-products .olj-catalog-card {
    min-height: 0;
    display: block;
    padding: 18px;
    border: 1px solid #deded8;
    background: #ffffff;
    cursor: pointer;
}

.olj-news-detail__sidebar-products .olj-catalog-card h3 {
    max-width: none;
    padding-right: 28px;
    font-size: clamp(16px, 1.1vw, 19px);
    line-height: 1.25;
}

.olj-news-detail__sidebar-products .olj-catalog-card__arrow {
    position: absolute;
    top: 17px;
    right: 12px;
    margin: 0;
}

.olj-news-detail__sidebar-products .olj-catalog-card__actions {
    display: none;
}

.olj-news-detail__sidebar-products .olj-catalog-card__media {
    margin: 14px 0 0;
}

.olj-news-detail__sidebar-products .olj-catalog-card__media img {
    height: 145px;
}

@media (max-width: 1024px) {
    .olj-news-detail__body-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "content content"
            "articles products";
    }

    .olj-news-detail__sidebar {
        position: static;
    }
}

.olj-news-detail__pagination {
    width: min(1180px, calc(100vw - 120px));
    margin: clamp(42px, 4vw, 72px) auto 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(48px, 9vw, 150px);
    padding: 32px 0;
    background: transparent;
}

.olj-news-detail__pagination a {
    position: relative;
    min-height: 58px;
    padding: 0 0 0 52px;
    color: #269a9d;
    transition: color 180ms ease, transform 180ms ease;
}

.olj-news-detail__pagination a:last-child {
    grid-column: 2;
    padding: 0 52px 0 0;
    text-align: right;
}

.olj-news-detail__pagination a:hover,
.olj-news-detail__pagination a:focus-visible {
    color: #111111;
    transform: translateX(-4px);
}

.olj-news-detail__pagination a:last-child:hover,
.olj-news-detail__pagination a:last-child:focus-visible {
    transform: translateX(4px);
}

.olj-news-detail__pagination a::before {
    position: absolute;
    left: 0;
    top: 50%;
    content: "\2190";
    font-size: 29px;
    line-height: 1;
    font-weight: 300;
    transform: translateY(-50%);
}

.olj-news-detail__pagination a:last-child::before {
    left: auto;
    right: 0;
    content: "\2192";
}

.olj-news-detail__pagination span {
    display: block;
    margin-bottom: 6px;
    color: inherit;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
}

.olj-news-detail__pagination strong {
    display: block;
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 767px) {
    .olj-news-detail {
        width: 100%;
    }

    .olj-news-detail__hero-inner,
    .olj-news-detail__cover,
    .olj-news-detail__article,
    .olj-news-detail__body-grid,
    .olj-news-recommendations,
    .olj-news-recommendations--articles,
    .olj-news-detail__pagination {
        width: calc(100vw - 36px);
    }

    .olj-news-detail__hero {
        padding: 52px 0 68px;
    }

    .olj-news-detail__breadcrumb {
        margin-bottom: 44px;
    }

    .olj-news-detail__cover {
        margin-top: 32px;
        border-radius: 10px;
    }

    .olj-news-detail__cover img {
        aspect-ratio: 4 / 3;
    }

    .olj-news-detail__article {
        margin-top: 28px;
        padding: 32px 24px;
        border-radius: 10px;
    }

    .olj-news-detail__body-grid {
        margin-top: 28px;
        grid-template-columns: 1fr;
        grid-template-areas:
            "content"
            "articles"
            "products";
        gap: 52px;
    }

    .olj-news-detail__body-grid .olj-news-detail__article {
        margin: 0;
    }

    .olj-news-detail__content img {
        max-width: 100%;
        margin: 24px 0;
    }

    .olj-news-recommendations {
        margin-top: 64px;
    }

    .olj-news-recommendations__heading p {
        margin: 0 0 10px;
    }

    .olj-news-recommendations__products,
    .olj-news-recommendations__articles {
        grid-template-columns: 1fr;
    }

    .olj-related-article-card {
        display: block;
        min-height: 0;
    }

    .olj-related-article-card__image {
        aspect-ratio: 16 / 9;
    }

    .olj-news-detail__pagination {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 18px 0;
    }

    .olj-news-detail__pagination a:last-child {
        grid-column: 1;
    }
}

@media (max-width: 640px) {
    .olj-news-detail__hero {
        padding: 40px 0 48px;
    }

    .olj-news-detail__hero-inner,
    .olj-news-detail__article,
    .olj-news-detail__pagination {
        width: calc(100vw - 40px);
    }

    .olj-news-detail__eyebrow {
        margin-bottom: 16px;
        font-size: 11px;
    }

    .olj-news-detail__hero h1 {
        font-size: 34px;
        line-height: 1.18;
        letter-spacing: 0;
    }

    .olj-news-detail__lead {
        margin-top: 20px;
        font-size: 16px;
        line-height: 1.6;
    }

    .olj-news-detail__meta {
        flex-wrap: wrap;
        gap: 10px 20px;
        margin-top: 24px;
    }

    .olj-news-detail__cover {
        width: calc(100% - 40px);
        margin: 24px 20px 0;
        overflow: hidden;
        border-radius: 6px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

    .olj-news-detail__body-grid {
        width: calc(100% - 40px);
        max-width: none;
        gap: 44px;
        margin: 24px 20px 0;
    }

    .olj-news-detail__body-grid .olj-news-detail__article {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 24px 18px;
        border-radius: 6px;
    }

    .olj-news-detail__content {
        font-size: 16px;
        line-height: 1.75;
    }

    .olj-news-detail__content img {
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
        border-radius: 4px;
    }

    .olj-news-detail__sidebar-heading {
        margin-bottom: 16px;
        padding-bottom: 12px;
    }

    .olj-news-detail__sidebar-heading h2 {
        font-size: 22px;
    }

    .olj-news-detail__sidebar-list,
    .olj-news-detail__sidebar-products {
        gap: 12px;
    }

    .olj-news-detail__sidebar .olj-related-article-card {
        border-radius: 6px;
    }

    .olj-news-detail__sidebar .olj-related-article-card__body {
        padding: 16px;
    }

    .olj-news-detail__sidebar .olj-related-article-card__body h3 {
        font-size: 17px;
    }

    .olj-news-detail__sidebar-products .olj-catalog-card {
        padding: 16px;
        border-radius: 6px;
    }

    .olj-news-detail__sidebar-products .olj-catalog-card__media img {
        height: 128px;
    }

    .olj-news-detail__cover img {
        height: auto;
        max-height: none;
        aspect-ratio: auto;
        object-fit: contain;
    }

    .olj-news-detail__pagination {
        gap: 20px;
        margin-top: 40px;
        padding: 12px 0;
    }

    .olj-news-detail__pagination a {
        min-height: 48px;
        padding-left: 42px;
    }

    .olj-news-detail__pagination a:last-child {
        padding-right: 42px;
    }
}

.olj-anchor-target {
    position: relative;
    top: -136px;
    height: 0;
}

.olj-section h2,
.olj-home-grid h2 {
    margin: 0 0 28px;
    font-size: clamp(44px, 3.4vw, 64px);
    line-height: 1.12;
}

.olj-section p,
.olj-home-grid p {
    font-size: 18px;
    line-height: 1.7;
}

.olj-two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.olj-section-image {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.olj-number-list {
    display: grid;
    gap: 28px;
}

.olj-number-list article {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 20px;
}

.olj-number-list span {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #111111;
    color: #ffffff;
    font-size: 28px;
}

.olj-number-list h3 {
    margin: 0 0 10px;
    font-size: 30px;
}

.olj-centered-title {
    text-align: center;
}

.olj-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.olj-card-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.olj-card {
    border-radius: 8px;
    background: #f1f1f1;
}

.olj-product-card {
    min-height: 314px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42%;
    gap: 18px;
    padding: 28px;
    overflow: hidden;
}

.olj-product-card h3 {
    margin: 0 0 70px;
    font-size: 24px;
    line-height: 1.35;
}

.olj-product-card img {
    align-self: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.olj-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.olj-chip-row span {
    border-radius: 20px;
    background: #515151;
    color: #ffffff;
    padding: 7px 12px;
    font-size: 12px;
}

.olj-advice {
    margin-top: 150px;
    padding: 110px max(40px, calc((100vw - 1660px) / 2));
    background: var(--olj-yellow);
    text-align: center;
}

.olj-advice h2 {
    margin: 0 0 70px;
    font-size: clamp(44px, 3.4vw, 64px);
}

.olj-advice > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 70px;
    text-align: left;
}

.olj-category-tabs {
    display: flex;
    gap: 28px;
    margin-bottom: 110px;
    overflow-x: auto;
}

.olj-category-tabs a {
    white-space: nowrap;
    padding: 14px 28px;
    border-radius: 6px;
}

.olj-category-tabs .is-active {
    background: var(--olj-yellow);
}

.olj-product-category {
    margin-top: 110px;
}

.olj-home-grid {
    margin-top: 150px;
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    gap: 60px;
    align-items: start;
}

.olj-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.olj-stat-grid article {
    min-height: 210px;
    padding: 30px;
    border: 1px solid #f1f1f1;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}

.olj-stat-grid p {
    min-height: 54px;
    margin: 0 0 28px;
    font-size: 18px;
}

.olj-stat-grid strong {
    font-size: clamp(52px, 5vw, 92px);
    line-height: 1;
}

.olj-stat-grid span {
    margin-left: 8px;
    font-size: 28px;
}

.olj-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 32px;
}

.olj-process-grid article {
    min-height: 220px;
    padding: 34px 24px;
    border: 1px solid var(--olj-border);
    border-radius: 8px;
    text-align: center;
}

.olj-process-grid span {
    display: block;
    margin-bottom: 28px;
    color: var(--olj-muted);
}

.olj-process-grid h3 {
    margin: 0;
    font-size: 24px;
}

.olj-partner-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
}

.olj-partner-strip article {
    min-height: 277px;
    padding: 30px 16px;
    border: 1px solid var(--olj-border);
    border-radius: 8px;
    text-align: center;
}

.olj-partner-strip img {
    width: 180px;
    height: 76px;
    margin: 0 auto 34px;
    object-fit: contain;
}

.olj-case-list {
    display: grid;
    gap: 90px;
}

.olj-case-list article {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 80px;
    align-items: center;
}

.olj-case-list article.is-reverse > div {
    order: 2;
}

.olj-case-list img {
    width: 100%;
    aspect-ratio: 1.22 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.olj-case-list h2 {
    font-size: clamp(32px, 2.5vw, 48px);
}

.olj-inquiry__inner p {
    margin: 16px 0 0;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 1180px) {
    :root {
        --olj-container: min(100% - 40px, 980px);
    }

    body.admin-bar .olj-header {
        top: 46px;
    }

    .olj-header {
        height: 74px;
    }

    .olj-header__utility {
        display: none;
    }

    .olj-header__main {
        height: 74px;
        padding: 0 20px;
    }

    .olj-menu-toggle {
        display: block;
    }

    .olj-nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 24px;
        background: #ffffff;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .olj-nav.is-open {
        display: flex;
    }

    .olj-nav a,
    .olj-nav button {
        padding: 14px 0;
        text-align: left;
    }

    .olj-nav__parent {
        padding-right: 0;
    }

    .olj-nav__parent::before {
        display: none;
    }

    .olj-nav__submenu {
        position: static;
        min-width: 0;
        padding: 0 0 8px 16px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .olj-nav__submenu::before {
        display: none;
    }

    .olj-nav__submenu a {
        padding: 8px 0;
        font-size: 14px;
    }

    .olj-nav a.is-active::after,
    .olj-nav button.is-active::after {
        width: 40px;
    }

    .olj-hero {
        min-height: 680px;
        margin-top: 18px;
    }

    .olj-hero p {
        margin-top: 160px;
    }

    .olj-feature-product {
        min-height: 680px;
        height: auto;
    }

    .olj-scenes {
        aspect-ratio: 4 / 3;
    }

    .olj-scenes__inner {
        padding: 0;
    }

    .olj-scenes__tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        height: auto;
        min-height: 96px;
        padding: 0;
    }

    .olj-scenes__tabs button {
        height: auto;
        min-height: 44px;
        padding: 8px;
        font-size: 14px;
        transform: none;
    }

    .olj-scenes .olj-button {
        left: 8.3%;
        bottom: 112px;
        width: auto;
    }

    .olj-feature-product,
    .olj-product-block,
    .olj-product-block--reverse,
    .olj-about,
    .olj-two-column,
    .olj-home-grid,
    .olj-contact-layout,
    .olj-case-list article {
        grid-template-columns: 1fr;
    }

    .olj-home-products {
        width: min(920px, calc(100% - 40px));
    }

    .olj-home-product {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .olj-home-product + .olj-home-product {
        margin-top: 110px;
    }

    .olj-home-product--reverse .olj-home-product__image {
        order: 0;
    }

    .olj-home-product__content h3,
    .olj-home-product__tags,
    .olj-home-product__content .olj-button {
        margin-top: 42px;
    }

    .olj-feature-product__image {
        height: 520px;
    }

    .olj-feature-product__content {
        padding: 60px 20px 80px;
    }

    .olj-rack-showcase {
        height: 430vh;
        min-height: 3000px;
    }

    .olj-rack-showcase__sticky {
        top: 0;
        height: calc(100vh - 74px);
        min-height: 620px;
    }

    .olj-rack-showcase__model {
        left: -10vw;
        top: 5vh;
        width: 120vw;
        height: 62vh;
        min-height: 380px;
    }

    .olj-rack-showcase__content {
        left: 22px;
        right: 22px;
        top: auto;
        bottom: 34px;
        width: auto;
        padding: 22px;
        transform: none;
        border: 1px solid rgba(180, 211, 231, 0.16);
        border-radius: 8px;
        background: rgba(5, 16, 24, 0.72);
        backdrop-filter: blur(12px);
    }

    .olj-rack-showcase__copy {
        min-height: 220px;
        margin-bottom: 24px;
    }

    .olj-rack-showcase__title {
        font-size: clamp(32px, 7vw, 52px);
    }

    .olj-rack-showcase__intro {
        font-size: 15px;
        line-height: 1.5;
    }

    .olj-rack-showcase__rail {
        display: none;
    }

    .olj-rack-showcase__drag-cue {
        bottom: 1%;
        font-size: 12px;
    }

    .olj-product-block,
    .olj-about {
        margin-top: 90px;
    }

    .olj-product-block--reverse .olj-product-block__image {
        order: 0;
    }

    .olj-tags,
    .olj-advantage-grid,
    .olj-card-grid,
    .olj-stat-grid,
    .olj-process-grid,
    .olj-partner-strip,
    .olj-advice > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .olj-page {
        padding-top: 18px;
    }

    .olj-subhero--split {
        display: block;
    }

    .olj-subhero__panel {
        position: relative;
        width: 100%;
    }

    .olj-case-list article.is-reverse > div {
        order: 0;
    }

    .olj-partners {
        margin-top: 110px;
    }

    .olj-partners h2 {
        margin-bottom: 70px;
    }

    .olj-partners__logos {
        width: max-content;
        animation-duration: 18s;
    }

    .olj-partners__group {
        gap: 42px;
        padding: 0 21px;
    }

    .olj-partners__logos img {
        max-width: 180px;
    }

    .olj-inquiry {
        margin-top: 120px;
    }

    .olj-inquiry__inner {
        min-height: 82px;
        flex-direction: row;
        align-items: center;
        padding: 16px 0;
    }

    .olj-inquiry--home .olj-inquiry__inner {
        flex-direction: row;
        align-items: center;
    }

    .olj-inquiry__email {
        min-width: 170px;
        width: 170px;
        min-height: 48px;
        height: 48px;
        padding: 0 20px;
        font-size: 14px;
    }

    .olj-inquiry__email::after {
        width: 24px;
        height: 24px;
    }

    .olj-button--large {
        min-width: 260px;
        min-height: 74px;
        font-size: 24px;
    }

    .olj-footer__inner {
        grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(120px, 1fr));
        column-gap: 38px;
    }
}

@media (max-width: 900px) {
    .olj-footer__inner {
        width: calc(100vw - 48px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
        padding: 44px 0 48px;
    }

    .olj-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    :root {
        --olj-container: calc(100% - 28px);
    }

    .olj-header {
        height: 64px;
    }

    .olj-header__main {
        height: 64px;
    }

    .olj-floating-actions {
        right: 14px;
        bottom: 14px;
        gap: 8px;
    }

    .olj-floating-action {
        width: 54px;
        height: 54px;
        border-radius: 10px;
        font-size: 14px;
    }

    .olj-floating-action > i {
        right: 16px;
        width: 22px;
        height: 22px;
    }

    .olj-floating-action--top > i {
        right: 16px;
        width: 22px;
        height: 10px;
    }

    .olj-floating-action:not(.olj-floating-action--top):hover,
    .olj-floating-action:not(.olj-floating-action--top):focus-visible {
        width: 156px;
    }

    .olj-floating-action > span {
        left: 16px;
    }

    .olj-nav {
        top: 64px;
    }

    .olj-logo {
        width: 156px;
        height: 40px;
    }

    .olj-logo-mark {
        width: 40px;
        height: 40px;
    }

    .olj-logo-text {
        width: 108px;
        height: 24px;
    }

    .olj-hero {
        min-height: 560px;
        margin-top: 14px;
    }

    .olj-hero .olj-hero__title {
        font-size: 36px;
    }

    .olj-hero p {
        margin-top: 100px;
        font-size: 16px;
    }

    .olj-scenes {
        aspect-ratio: 390 / 310;
    }

    .olj-scenes__tabs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: 58px;
    }

    .olj-scenes__tabs::before {
        right: 14px;
        left: 14px;
    }

    .olj-scenes__tabs button {
        min-width: 0;
        min-height: 58px;
        padding: 14px 3px 8px;
        font-size: 11px;
        line-height: 1.2;
    }

    .olj-scenes__tabs button.is-active span::before {
        top: -14px;
        width: calc(100% + 8px);
        height: 5px;
    }

    .olj-scenes .olj-button {
        left: 18px;
        bottom: 72px;
        min-width: 142px;
        min-height: 44px;
        padding: 10px 16px;
        font-size: 15px;
    }

    .olj-tags,
    .olj-advantage-grid,
    .olj-footer__inner,
    .olj-card-grid,
    .olj-stat-grid,
    .olj-process-grid,
    .olj-partner-strip,
    .olj-advice > div {
        grid-template-columns: 1fr;
    }

    .olj-page {
        padding-top: 14px;
    }

    .olj-subhero .olj-subhero__title {
        font-size: 42px;
    }

    .olj-subhero p {
        font-size: 16px;
    }

    .olj-product-card {
        grid-template-columns: 1fr;
    }

    .olj-rack-showcase__sticky {
        top: 0;
        height: calc(100vh - 64px);
        min-height: 580px;
    }

    .olj-rack-showcase__model {
        left: -5vw;
        top: 1vh;
        width: 110vw;
        height: 48vh;
        min-height: 320px;
    }

    .olj-rack-showcase__copy {
        min-height: 230px;
        margin-bottom: 16px;
    }

    .olj-rack-showcase__content {
        bottom: 18px;
        padding: 18px 22px;
    }

    .olj-rack-showcase__title {
        font-size: 29px;
        line-height: 1.16;
    }

    .olj-rack-showcase__intro {
        max-width: none;
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.42;
    }

    .olj-rack-showcase__intro p {
        margin-bottom: 5px;
    }

    .olj-rack-showcase__content .olj-button {
        min-width: 150px;
        min-height: 44px;
        padding: 10px 18px;
        font-size: 15px;
    }

    .olj-rack-showcase__drag-cue {
        display: none;
    }

    .olj-home-products {
        width: calc(100% - 28px);
        margin-top: 72px;
    }

    .olj-home-product {
        gap: 28px;
    }

    .olj-home-product + .olj-home-product {
        margin-top: 76px;
    }

    .olj-home-product__content h2 {
        font-size: 38px;
    }

    .olj-home-product__content h3,
    .olj-home-product__tags {
        margin-top: 28px;
    }

    .olj-home-product__content .olj-button {
        margin-top: 34px;
    }

    .olj-home-product__tags {
        gap: 10px;
    }

    .olj-home-product__tags span {
        min-height: 58px;
        padding: 8px 5px;
        border-radius: 10px;
        font-size: 12px;
    }

    .olj-product-block__content h3 {
        margin-top: 42px;
    }

    .olj-tags {
        margin: 42px 0 54px;
    }

    .olj-tags span {
        min-height: 70px;
        font-size: 18px;
    }

    .olj-about h2,
    .olj-partners h2 {
        font-size: 42px;
        margin-bottom: 42px;
    }

    .olj-footer__inner,
    .olj-inquiry__inner {
        width: calc(100vw - 28px);
    }

    .olj-about {
        width: calc(100% - 28px);
        margin-top: 84px;
        gap: 40px;
    }

    .olj-advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .olj-about__content > p {
        margin-bottom: 42px;
        font-size: 14px;
    }

    .olj-advantage {
        min-height: 188px;
        padding: 12px 12px 14px;
        border-radius: 12px;
    }

    .olj-advantage strong {
        font-size: 36px;
    }

    .olj-advantage h3 {
        top: 15px;
        right: 11px;
        width: 58%;
        font-size: 11px;
    }

    .olj-advantage p {
        margin-top: 18px;
        font-size: 9px;
        line-height: 1.45;
        text-align: left;
    }

    .olj-partners {
        margin-top: 84px;
    }

    .olj-partners h2 {
        margin-bottom: 48px;
    }

    .olj-partners__group {
        gap: 30px;
        padding: 0 15px;
    }

    .olj-partners__logos img {
        max-width: 130px;
        max-height: 86px;
    }

    .olj-inquiry--home .olj-inquiry__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .olj-inquiry--home h2 {
        font-size: 32px;
    }

    .olj-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 20px;
        padding: 38px 0 42px;
    }

    .olj-footer__brand {
        grid-column: 1 / -1;
    }

    .olj-footer__logo {
        width: 155px;
        margin-bottom: 18px;
    }

    .olj-socials {
        margin-bottom: 20px;
    }

    .olj-footer__column h2 {
        margin: 0 0 14px;
        font-size: 16px;
    }

    .olj-footer__column a {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .olj-footer__brand p {
        font-size: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .olj-floating-action {
        transition: none;
    }
}

/* Home redesign based on the updated long-screen layout. */
.olj-home-hero {
    min-height: clamp(520px, 46vw, 760px);
    margin-top: 24px;
    align-items: center;
}

.olj-home-hero .olj-hero__shade {
    background: rgba(0, 0, 0, 0.43);
}

.olj-home-hero .olj-hero__content {
    width: min(980px, calc(100vw - 48px));
    padding-top: clamp(40px, 6vw, 112px);
}

.olj-home-hero .olj-hero__title {
    font-size: clamp(42px, 4.2vw, 78px);
    line-height: 1.16;
    letter-spacing: 0;
}

.olj-home-hero p {
    width: fit-content;
    margin: clamp(120px, 14vw, 240px) auto 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.52);
    font-size: clamp(14px, 1vw, 18px);
    line-height: 1.4;
}

.olj-solutions-intro {
    width: min(920px, calc(100% - 48px));
    margin: 0 auto;
    padding: clamp(78px, 7vw, 132px) 0 clamp(64px, 5.2vw, 100px);
    text-align: center;
}

.olj-solutions-intro p {
    margin: 0 0 10px;
    color: #777777;
    font-size: clamp(11px, 0.82vw, 14px);
    font-weight: 600;
    letter-spacing: 0;
    transform-origin: center;
}

.olj-solutions-intro h2 {
    margin: 0;
    color: #0a0a0a;
    font-size: clamp(34px, 3.2vw, 58px);
    line-height: 1.02;
    font-weight: 800;
    transform-origin: center;
}

.olj-solutions-intro div {
    max-width: 610px;
    margin: clamp(24px, 2.1vw, 40px) auto 0;
    color: #505050;
    font-size: clamp(12px, 0.76vw, 14px);
    line-height: 1.7;
    will-change: opacity, transform;
}

.olj-solutions-intro span {
    display: block;
}

.olj-solutions-intro.is-ready p,
.olj-solutions-intro.is-ready h2,
.olj-solutions-intro.is-ready div {
    opacity: 0;
}

.olj-solutions-intro.is-visible p {
    animation: olj-solutions-title-pop 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.olj-solutions-intro.is-visible h2 {
    animation: olj-solutions-title-pop 820ms cubic-bezier(0.16, 1, 0.3, 1) both 120ms;
}

.olj-solutions-intro.is-visible div {
    animation: olj-solutions-copy-rise 760ms cubic-bezier(0.16, 1, 0.3, 1) both 280ms;
}

@keyframes olj-solutions-title-pop {
    0% {
        opacity: 0;
        transform: scale(0.88);
    }

    58% {
        opacity: 1;
        transform: scale(1.08);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes olj-solutions-copy-rise {
    0% {
        opacity: 0;
        transform: translateY(42px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.olj-home-scenes {
    position: relative;
    z-index: 0;
    height: 185vh;
    min-height: calc(clamp(520px, 49.7vw, 955px) + 72vh);
    aspect-ratio: auto;
    background: #ffffff;
    overflow: visible;
}

.olj-home-scenes__sticky {
    position: sticky;
    top: 0;
    height: clamp(560px, 100vh, 955px);
    min-height: clamp(520px, 49.7vw, 955px);
    overflow: hidden;
    background: #ffffff;
}

.olj-home-scenes .olj-scenes__media {
    inset: 0;
}

.olj-home-scenes .olj-scenes__image {
    object-fit: cover;
}

.olj-scenes__copy {
    position: absolute;
    z-index: 3;
    top: 18.8%;
    right: 8.5%;
    width: min(520px, 34vw);
    color: #0a0a0a;
}

.olj-scenes__copy h2 {
    margin: 0 0 10px;
    font-size: clamp(32px, 3vw, 58px);
    line-height: 1.05;
    font-weight: 800;
}

html[lang^="zh"] .olj-en-line-break {
    display: none;
}

html[lang^="zh"] .olj-solutions-intro h2,
html[lang^="zh"] .olj-global-network h2 {
    letter-spacing: 0.02em;
}

html[lang^="zh"] .olj-global-network h2 {
    font-size: clamp(48px, 4.4vw, 84px);
    white-space: nowrap;
}

html[lang^="zh"] .olj-home-about__facts span {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    max-width: none;
    min-width: 0;
    white-space: nowrap;
}

html[lang^="zh"] .olj-home-about__facts span i {
    position: absolute;
    left: 44px;
    bottom: -8px;
}

html[lang^="zh"] :is(h1, h2, h3, .olj-subhero__title) {
    line-break: strict;
    text-wrap: balance;
    letter-spacing: 0.01em;
}

html[lang^="zh"] :is(.olj-subhero__title, .olj-insights-hero h1) {
    line-height: 1.14;
}

.olj-scenes__eyebrow {
    max-width: 420px;
    margin: 0 0 clamp(48px, 5vw, 96px);
    color: #4e4e4e;
    font-size: clamp(12px, 0.76vw, 15px);
    line-height: 1.55;
}

.olj-scenes__copy h3 {
    margin: 0 0 16px;
    font-size: clamp(20px, 1.55vw, 30px);
    line-height: 1.15;
}

.olj-scenes__copy h3 + p {
    max-width: 470px;
    margin: 0;
    color: #333333;
    font-size: clamp(12px, 0.8vw, 15px);
    line-height: 1.7;
}

.olj-scenes__copy .olj-button {
    position: static;
    margin-top: clamp(34px, 3.4vw, 65px);
}

.olj-home-scenes .olj-scenes__tabs {
    height: 8.8%;
    min-height: 56px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
}

.olj-home-scenes .olj-scenes__tabs::before {
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.18);
}

.olj-home-scenes .olj-scenes__tabs button {
    padding-bottom: clamp(13px, 1.04vw, 20px);
    font-size: clamp(13px, 0.92vw, 17px);
    transform: none;
}

.olj-home-scenes .olj-scenes__tabs button.is-active span::before {
    top: calc(-1 * clamp(12px, 0.9vw, 17px));
    width: calc(100% + 30px);
    height: clamp(4px, 0.42vw, 8px);
}

.olj-home-rack {
    --olj-rack-cover: 0;
    --olj-rack-intro: 0;
    --olj-rack-brand-opacity: 0;
    --olj-rack-brand-scale: 8.6;
    --olj-rack-brand-y: 34vh;
    --olj-rack-model-x: 21vw;
    --olj-rack-model-y: 66vh;
    --olj-rack-model-scale: 1.58;
    --olj-rack-model-opacity: 0;
    --olj-rack-content-opacity: 0;
    --olj-rack-rail-y: 24px;
    --olj-rack-drag-opacity: 0;
    position: relative;
    z-index: 2;
    height: 560vh;
    min-height: 4100px;
    background: #061520;
}

.olj-home-rack .olj-rack-showcase__sticky {
    position: sticky;
    top: 0;
    height: clamp(560px, 49.7vw, 955px);
    min-height: 0;
    background: radial-gradient(circle at 28% 62%, rgba(12, 104, 166, 0.22), transparent 34%), linear-gradient(180deg, #020608 0%, #061018 44%, #081923 100%);
}

.olj-home-rack .olj-rack-showcase__brand {
    top: clamp(81px, 13.2vw, 160px);
}

.olj-home-rack .olj-rack-showcase__model {
    left: 1vw;
    top: 9%;
    width: 60vw;
    height: 82%;
    opacity: var(--olj-rack-model-opacity);
    transform: translate3d(var(--olj-rack-model-x), var(--olj-rack-model-y), 0) scale(var(--olj-rack-model-scale));
    transform-origin: center;
    will-change: opacity, transform;
}

.olj-home-rack .olj-rack-showcase__content {
    top: 23%;
    left: auto;
    right: 13vw;
    width: min(500px, 30vw);
    opacity: var(--olj-rack-content-opacity);
    transform: translateY(calc((1 - var(--olj-rack-content-opacity)) * 42px));
    transition: opacity 360ms linear, transform 360ms linear;
    will-change: opacity, transform;
}

.olj-home-rack .olj-rack-showcase__copy {
    min-height: clamp(190px, 14vw, 260px);
}

.olj-home-rack .olj-rack-showcase__title {
    font-size: clamp(35px, 3.1vw, 60px);
    line-height: 1.12;
}

.olj-home-rack .olj-rack-showcase__intro {
    max-width: 420px;
    margin-top: 12px;
    font-size: clamp(12px, 0.82vw, 15px);
    line-height: 1.5;
}

.olj-home-rack .olj-rack-showcase__rail {
    top: 26%;
    right: 5.6vw;
    gap: clamp(34px, 3.8vw, 72px);
    opacity: var(--olj-rack-intro);
    transform: translateY(var(--olj-rack-rail-y));
    will-change: opacity, transform;
}

.olj-home-rack .olj-rack-showcase__drag-cue {
    left: 31vw;
    bottom: 8%;
    visibility: hidden;
}

.olj-home-rack.is-rack-model-visible .olj-rack-showcase__drag-cue {
    visibility: visible;
}

.olj-home-about {
    --olj-about-ground: clamp(38px, 4.3vw, 82px);
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 82vh;
    margin: 0;
    padding: clamp(60px, 5vw, 96px) min(4.6vw, 88px) 0;
    display: grid;
    grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
    gap: clamp(24px, 4.3vw, 82px);
    align-items: stretch;
    background: #ffffff;
    overflow: hidden;
}

.olj-home-about::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    height: var(--olj-about-ground);
    background: #5b5b5b;
}

.olj-home-about__copy {
    position: relative;
    z-index: 3;
    align-self: start;
    padding-top: clamp(12px, 2.2vw, 42px);
}

.olj-home-about__text {
    min-height: clamp(120px, 10vw, 192px);
}

.olj-home-about__copy p {
    max-width: 340px;
    min-height: 4.9em;
    margin: 0 0 clamp(22px, 2vw, 38px);
    color: #111111;
    font-size: clamp(11px, 0.66vw, 13px);
    line-height: 1.55;
}

.olj-home-about.is-about-reveal-ready .olj-home-about__copy p {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease, transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.olj-home-about.is-about-reveal-ready.is-about-visible .olj-home-about__copy p {
    opacity: 1;
    transform: translateY(0);
}

.olj-home-about.is-about-reveal-ready.is-about-visible .olj-home-about__copy p:nth-child(2) {
    transition-delay: 220ms;
}

.olj-home-about__copy p::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 1em;
    margin-left: 2px;
    background: #111111;
    opacity: 0;
    transform: translateY(2px);
    animation: none;
}

.olj-home-about.is-about-visible .olj-home-about__copy p::after {
    opacity: 0;
    animation: none;
}

.olj-home-about.is-about-visible .olj-home-about__copy p:last-child::after {
    animation-delay: 900ms;
}

.olj-home-about__facts {
    display: grid;
    gap: clamp(18px, 1.9vw, 36px);
    margin-top: clamp(34px, 4vw, 76px);
}

.olj-home-about__facts span {
    position: relative;
    display: grid;
    gap: 4px;
    width: max-content;
    max-width: 170px;
    color: #111111;
    font-size: clamp(10px, 0.66vw, 13px);
    line-height: 1.15;
    opacity: 0;
    transform: translateY(18px);
}

.olj-home-about.is-about-facts-visible .olj-home-about__facts span {
    animation: olj-about-fact-in 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.olj-home-about.is-about-facts-visible .olj-home-about__facts span:nth-child(2) {
    animation-delay: 140ms;
}

.olj-home-about.is-about-facts-visible .olj-home-about__facts span:nth-child(3) {
    animation-delay: 280ms;
}

.olj-home-about__facts img {
    width: clamp(24px, 1.85vw, 36px);
    height: clamp(24px, 1.85vw, 36px);
    object-fit: contain;
}

.olj-home-about__facts strong {
    color: #111111;
    font-size: clamp(14px, 0.96vw, 18px);
    line-height: 1;
}

.olj-home-about__facts i {
    display: block;
    width: 0;
    height: 2px;
    margin-top: 4px;
    background: var(--olj-yellow);
}

.olj-home-about.is-about-facts-visible .olj-home-about__facts i {
    animation: olj-about-yellow-line 720ms cubic-bezier(0.16, 1, 0.3, 1) both 480ms;
}

.olj-home-about__image {
    position: relative;
    z-index: 2;
    min-height: min(670px, calc(100vh - clamp(60px, 5vw, 96px)));
}

.olj-home-about__image h2 {
    position: absolute;
    z-index: 5;
    left: clamp(0px, 10.4vw, 183px);
    top: clamp(94px, -0.8vw, 0px);
    margin: 0;
    color: #0a0a0a;
    font-size: clamp(94px, 8.6vw, 166px);
    line-height: 0.93;
    font-weight: 800;
    letter-spacing: 0;
    transform: translateY(-82px);
    opacity: 0;
}

.olj-home-about__image h2 span {
    display: block;
}

.olj-home-about.is-about-visible .olj-home-about__image h2 {
    animation: olj-about-title-drop 980ms cubic-bezier(0.16, 1, 0.3, 1) both 1260ms;
}

.olj-home-about__image img {
    position: absolute;
    z-index: 2;
    right: max(-79px, -5.35vw);
    bottom: clamp(-281px, -21vw, 82px);
    width: min(1120px, 72vw);
    max-width: none;
    object-fit: contain;
    transform: translateY(44%);
    opacity: 0;
}

.olj-home-about.is-about-visible .olj-home-about__image img {
    animation: olj-about-building-rise 1080ms cubic-bezier(0.16, 1, 0.3, 1) both 120ms;
}

@keyframes olj-about-building-rise {
    0% {
        opacity: 0;
        transform: translateY(44%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes olj-about-title-drop {
    0% {
        opacity: 0;
        transform: translateY(-82px);
    }

    62% {
        opacity: 1;
        transform: translateY(12px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes olj-about-fact-in {
    0% {
        opacity: 0;
        transform: translateX(-26px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes olj-about-yellow-line {
    0% {
        width: 0;
    }

    100% {
        width: 48px;
    }
}

@keyframes olj-about-caret {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.olj-global-network {
    position: relative;
    z-index: 4;
    min-height: clamp(620px, 48.8vw, 900px);
    padding: clamp(40px, 3.2vw, 62px) min(4.8vw, 92px) 0;
    background: #d9d9d9;
    overflow: hidden;
}

.olj-global-network__head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(390px, 0.36fr) minmax(0, 0.64fr);
    gap: clamp(40px, 5vw, 96px);
    align-items: start;
}

.olj-global-network h2 {
    margin: 0;
    color: #0a0a0a;
    font-size: clamp(56px, 5.05vw, 97px);
    line-height: 0.98;
    font-weight: 800;
    opacity: 0;
    transform: translateY(26px);
}

.olj-global-network.is-network-head-visible h2 {
    animation: olj-network-title-in 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.olj-global-network p {
    max-width: 790px;
    margin: 0 0 20px;
    color: #232323;
    font-size: clamp(12px, 0.78vw, 15px);
    line-height: 1.45;
    opacity: 0;
    transform: translateY(18px);
}

.olj-global-network.is-network-head-visible p {
    animation: olj-network-copy-in 720ms ease both 180ms;
}

.olj-global-network p + p {
    margin-bottom: 0;
    animation-delay: 320ms;
}

.olj-global-network__map {
    position: absolute;
    z-index: 1;
    top: clamp(46px, 4vw, 76px);
    right: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1846 / 892;
    margin: 0;
    opacity: 0;
    transform: translateY(34px) scale(1.018);
}

.olj-global-network.is-network-visible .olj-global-network__map {
    animation: olj-network-map-in 980ms cubic-bezier(0.16, 1, 0.3, 1) both 380ms;
}

.olj-global-network__map > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.94;
    filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.25));
}

.olj-map-pin {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 21px;
    padding: 3px 0;
    border-radius: 999px;
    color: #3d3d3d;
    font-size: clamp(10px, 0.64vw, 12px);
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    opacity: 0;
    transform: translateY(-34px) scale(0.96);
    transform-origin: center bottom;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    isolation: isolate;
}

.olj-map-pin > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 21px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(245, 245, 245, 0.82);
    line-height: 1;
    text-align: center;
    transition: background 180ms ease, box-shadow 180ms ease;
}

.olj-global-network.is-network-pins-visible .olj-map-pin {
    animation: olj-network-pin-in 760ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.olj-map-pin::before {
    content: "";
    position: relative;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #777777;
    box-shadow: 0 0 0 3px rgba(119, 119, 119, 0.13);
    transition: background 180ms ease, box-shadow 180ms ease;
}

.olj-map-pin::after {
    content: none;
}

.olj-map-pin:hover,
.olj-map-pin:focus-visible {
    color: #111111;
    font-size: clamp(16px, 1.12vw, 22px);
    transform: translateY(-2px);
}

.olj-map-pin:hover > span,
.olj-map-pin:focus-visible > span {
    padding: 0 12px;
    background: var(--olj-yellow);
    box-shadow: 0 8px 18px rgba(254, 217, 31, 0.28);
}

.olj-map-pin:hover::before,
.olj-map-pin:focus-visible::before {
    width: 12px;
    height: 12px;
    background: var(--olj-yellow);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.86), 0 0 0 7px rgba(254, 217, 31, 0.26);
}

.olj-map-pin--mexico {
    left: 16.8%;
    top: 40.2%;
    animation-delay: 80ms;
}

.olj-map-pin--dubai {
    left: 60.2%;
    top: 48.6%;
    animation-delay: 160ms;
}

.olj-map-pin--oulangjie {
    left: 77.3%;
    top: 31.8%;
    animation-delay: 120ms;
}

.olj-map-pin--japan {
    left: 85.2%;
    top: 31.5%;
    animation-delay: 220ms;
}

.olj-map-pin--vietnam {
    left: 78.5%;
    top: 47.7%;
    animation-delay: 280ms;
}

.olj-map-pin--philippines {
    left: 82.8%;
    top: 49.2%;
    animation-delay: 340ms;
}

.olj-map-pin--cambodia {
    flex-direction: row-reverse;
    padding-right: 0;
    padding-left: 8px;
    left: 73%;
    top: 47.6%;
    animation-delay: 400ms;
}

.olj-map-pin--malaysia {
    left: 76.5%;
    top: 52.6%;
    animation-delay: 460ms;
}

.olj-map-pin--singapore {
    left: 77%;
    top: 55.2%;
    animation-delay: 520ms;
}

.olj-map-pin--brunei {
    left: 81.2%;
    top: 53%;
    animation-delay: 580ms;
}

.olj-map-pin--indonesia {
    left: 82.8%;
    top: 59.4%;
    animation-delay: 640ms;
}

@keyframes olj-network-title-in {
    0% {
        opacity: 0;
        transform: translateY(26px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes olj-network-copy-in {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes olj-network-map-in {
    0% {
        opacity: 0;
        transform: translateY(34px) scale(1.018);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes olj-network-pin-in {
    0% {
        opacity: 0;
        transform: translateY(-38px) scale(0.94);
    }

    58% {
        opacity: 1;
        transform: translateY(5px) scale(1.04, 0.96);
    }

    76% {
        transform: translateY(-3px) scale(0.99, 1.02);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.olj-home-partners {
    position: relative;
    z-index: 5;
    margin: 0;
    padding: clamp(92px, 8.4vw, 160px) 0 clamp(78px, 6.2vw, 118px);
    background: #ffffff;
}

.olj-home-partners h2 {
    margin-bottom: clamp(58px, 5.2vw, 100px);
    font-size: clamp(44px, 4.6vw, 88px);
}

.olj-home-partners .olj-partners__logos img {
    max-height: clamp(58px, 5vw, 96px);
}

.olj-home .olj-inquiry {
    position: relative;
    z-index: 6;
    margin-top: 0;
}

.olj-home .olj-inquiry__inner {
    min-height: 82px;
}

.olj-home .olj-inquiry h2 {
    font-size: clamp(22px, 1.55vw, 30px);
}

.olj-home .olj-inquiry__email {
    min-width: 170px;
    width: 170px;
    min-height: 48px;
    height: 48px;
    border-radius: 7px;
    font-size: 14px;
}

.olj-home .olj-inquiry__email::after {
    width: 24px;
    height: 24px;
}

@media (max-width: 1180px) {
    .olj-home-hero {
        margin-top: 18px;
        min-height: 560px;
    }

    .olj-home-scenes {
        aspect-ratio: auto;
        height: 175vh;
        min-height: 1280px;
    }

    .olj-home-scenes__sticky {
        height: 720px;
        min-height: 620px;
    }

    .olj-scenes__copy {
        top: 12%;
        right: 32px;
        width: min(430px, calc(100% - 64px));
    }

    .olj-home-rack {
        height: 420vh;
        min-height: 2800px;
    }

    .olj-home-rack .olj-rack-showcase__sticky {
        height: 720px;
    }

    .olj-home-rack .olj-rack-showcase__brand {
        top: 54px;
        width: 260px;
    }

    .olj-home-rack .olj-rack-showcase__model {
        left: -4vw;
        top: 17%;
        width: 78vw;
        height: 52%;
    }

    .olj-home-rack .olj-rack-showcase__content {
        left: 32px;
        right: 32px;
        top: auto;
        bottom: 42px;
        width: auto;
    }

    .olj-home-rack .olj-rack-showcase__drag-cue {
        left: 35vw;
        bottom: 43%;
    }

    .olj-home-about {
        grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
        min-height: 760px;
        padding: 72px 28px 0;
        gap: 24px;
    }

    .olj-home-about__copy {
        padding-top: 0;
    }

    .olj-home-about__image h2 {
        left: 34px;
        top: 6px;
        font-size: clamp(76px, 9.4vw, 112px);
    }

    .olj-home-about__image img {
        right: -42px;
        width: min(880px, 82vw);
    }

    .olj-global-network {
        padding-left: 28px;
        padding-right: 28px;
    }

    .olj-global-network__head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .olj-global-network__map {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 112vw;
        margin-top: 34px;
        margin-left: 50%;
        transform: translateX(-50%);
    }

    .olj-map-pin {
        font-size: 10px;
    }
}

@media (max-width: 640px) {
    .olj-home-hero {
        margin-top: 14px;
        min-height: 520px;
    }

    .olj-home-hero .olj-hero__content {
        padding-top: 28px;
    }

    .olj-home-hero p {
        margin-top: 92px;
    }

    .olj-solutions-intro {
        width: calc(100% - 28px);
        padding: 58px 0 48px;
    }

    .olj-home-scenes {
        height: 170vh;
        min-height: 1120px;
    }

    .olj-home-scenes__sticky {
        height: 680px;
        min-height: 610px;
    }

    .olj-scenes__copy {
        top: 34px;
        right: 18px;
        left: 18px;
        width: auto;
        padding: 18px;
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(8px);
    }

    .olj-scenes__eyebrow {
        margin-bottom: 24px;
    }

    .olj-scenes__copy .olj-button {
        margin-top: 22px;
    }

    .olj-home-scenes .olj-scenes__tabs {
        min-height: 64px;
    }

    .olj-home-rack {
        height: 380vh;
        min-height: 2300px;
    }

    .olj-home-rack .olj-rack-showcase__sticky {
        height: 680px;
        min-height: 0;
    }

    .olj-home-rack .olj-rack-showcase__brand {
        top: 44px;
        width: 190px;
    }

    .olj-home-rack .olj-rack-showcase__model {
        left: -10vw;
        top: 14%;
        width: 120vw;
        height: 43%;
    }

    .olj-home-rack .olj-rack-showcase__content {
        left: 16px;
        right: 16px;
        bottom: 22px;
        width: auto;
        padding: 18px;
    }

    .olj-home-rack .olj-rack-showcase__drag-cue {
        left: 50%;
        bottom: 51%;
    }

    .olj-home-about {
        grid-template-columns: 1fr;
        min-height: 820px;
        padding: 42px 14px 0;
        gap: 18px;
    }

    .olj-home-about__copy {
        z-index: 5;
    }

    .olj-home-about__copy p {
        max-width: 290px;
        min-height: 0;
        font-size: 11px;
    }

    .olj-home-about__facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        margin-top: 28px;
    }

    .olj-home-about__image {
        min-height: 430px;
    }

    .olj-home-about__image h2 {
        left: 0;
        top: -12px;
        font-size: 64px;
    }

    .olj-home-about__image img {
        right: -78px;
        bottom: 30px;
        width: 620px;
    }

    .olj-global-network {
        padding: 44px 14px 58px;
    }

    .olj-global-network__map {
        width: 156vw;
        aspect-ratio: 1846 / 892;
    }

    .olj-map-pin--dubai {
        padding: 6px 10px;
    }

    .olj-map-pin {
        font-size: 9px;
    }

    .olj-map-pin--philippines,
    .olj-map-pin--brunei,
    .olj-map-pin--singapore,
    .olj-map-pin--cambodia {
        display: none;
    }

    .olj-home-partners {
        padding: 64px 0 56px;
    }

    .olj-home-partners .olj-partners__group {
        gap: 32px;
    }

    .olj-home .olj-inquiry__inner {
        align-items: center;
        gap: 16px;
        min-height: 90px;
    }
}

.olj-home-rack .olj-rack-showcase__panel.is-active {
    opacity: 1;
}

.olj-home-scenes .olj-scenes__image {
    transform: scale(1.035);
    filter: saturate(0.9) contrast(1.02);
    transition: opacity 680ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 680ms ease;
}

.olj-home-scenes .olj-scenes__image.is-active {
    transform: scale(1);
    filter: saturate(1) contrast(1);
}

.olj-home-scenes__sticky::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 45%;
    pointer-events: none;
    opacity: var(--olj-scene-content, 1);
    background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0%, rgba(250, 250, 250, 1) 100%);
    transition: opacity 120ms linear;
}

.olj-home-scenes__sticky::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, 0.42) 49%, transparent 56%);
    opacity: 0;
    transform: translateX(-32%);
}

.olj-home-scenes.is-animating .olj-home-scenes__sticky::after {
    animation: olj-home-scene-sweep 720ms ease both;
}

@keyframes olj-home-scene-sweep {
    0% {
        opacity: 0;
        transform: translateX(-42%);
    }

    35% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform: translateX(42%);
    }
}

.olj-scenes__copies {
    position: absolute;
    z-index: 3;
    top: 18.5%;
    right: 8.3%;
    width: min(535px, 34vw);
    min-height: clamp(330px, 26vw, 500px);
}

.olj-scenes__copy {
    z-index: 1;
    top: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(34px, 18px, 0) scale(0.985);
    filter: blur(6px);
    transition: opacity 420ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1), filter 460ms ease;
}

.olj-scenes__copy.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    transition-delay: 120ms;
}

.olj-scenes__copy h2,
.olj-scenes__copy .olj-scenes__eyebrow,
.olj-scenes__copy h3,
.olj-scenes__copy h3 + p,
.olj-scenes__copy .olj-button {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 460ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.olj-scenes__copy.is-active h2,
.olj-scenes__copy.is-active .olj-scenes__eyebrow,
.olj-scenes__copy.is-active h3,
.olj-scenes__copy.is-active h3 + p,
.olj-scenes__copy.is-active .olj-button {
    opacity: 1;
    transform: translateY(0);
}

.olj-scenes__copy.is-active .olj-scenes__eyebrow {
    transition-delay: 90ms;
}

.olj-scenes__copy.is-active h3 {
    transition-delay: 170ms;
}

.olj-scenes__copy.is-active h3 + p {
    transition-delay: 240ms;
}

.olj-scenes__copy.is-active .olj-button {
    transition-delay: 310ms;
}

.olj-home-scenes .olj-scenes__tabs {
    z-index: 4;
}

.olj-home-scenes .olj-scenes__tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 0.48vw, 9px);
    overflow: hidden;
    transition: color 220ms ease, background-color 220ms ease;
}

.olj-home-scenes .olj-scenes__tabs button::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: clamp(8px, 0.62vw, 12px);
    width: min(90px, 46%);
    height: 2px;
    background: #0a0a0a;
    opacity: 0;
    transform: translateX(-50%) scaleX(0.2);
    transform-origin: center;
    transition: opacity 260ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.olj-home-scenes .olj-scenes__tabs button.is-active::after {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.olj-home-scenes .olj-scenes__tabs button img {
    width: clamp(14px, 1vw, 20px);
    height: clamp(14px, 1vw, 20px);
    object-fit: contain;
    transition: transform 260ms ease, opacity 220ms ease;
}

.olj-home-scenes .olj-scenes__tabs button:hover img,
.olj-home-scenes .olj-scenes__tabs button.is-active img {
    transform: translateY(-2px) scale(1.08);
}

.olj-home-scenes .olj-scenes__tabs button.is-active span::before {
    display: none;
}

@media (max-width: 1180px) {
    .olj-scenes__copies {
        top: 11%;
        right: 32px;
        width: min(440px, calc(100% - 64px));
    }
}

@media (max-width: 640px) {
    .olj-scenes__copies {
        top: 34px;
        right: 18px;
        left: 18px;
        width: auto;
        min-height: 0;
    }

    .olj-home-scenes__sticky::before {
        content: none;
    }

    .olj-scenes__copy {
        padding: 18px;
        background: rgba(255, 255, 255, 0.78);
        backdrop-filter: blur(8px);
    }

    .olj-home-scenes .olj-scenes__tabs button {
        flex-direction: column;
        gap: 4px;
    }

    .olj-home-scenes .olj-scenes__tabs button img {
        width: 16px;
        height: 16px;
    }

    .olj-home-scenes .olj-scenes__tabs button::after {
        bottom: 7px;
        width: 42px;
    }
}

.olj-home-scenes .olj-scenes__learn {
    position: absolute;
    z-index: 5;
    left: 8.4%;
    bottom: calc(8.8% + clamp(22px, 2.25vw, 43px));
    min-width: clamp(118px, 7.8vw, 150px);
    min-height: clamp(34px, 2.4vw, 46px);
    padding: 8px clamp(13px, 1vw, 18px);
    border-radius: 2px;
    font-size: clamp(11px, 0.72vw, 14px);
    font-weight: 500;
}

.olj-home-scenes .olj-scenes__learn::after {
    width: clamp(14px, 1vw, 19px);
    height: clamp(7px, 0.5vw, 10px);
    margin-left: 9px;
}

.olj-home-scenes .olj-scenes__tabs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: clamp(54px, 5.1vw, 98px);
    min-height: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.78);
    border-top: 1px solid rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(7px);
}

.olj-home-scenes .olj-scenes__tabs::before {
    display: none;
}

.olj-home-scenes .olj-scenes__tabs button {
    height: 100%;
    min-height: 0;
    padding: clamp(10px, 0.9vw, 17px) 8px clamp(15px, 1.15vw, 22px);
    color: #0a0a0a;
    font-size: clamp(13px, 1.05vw, 20px);
    font-weight: 500;
    line-height: 1;
    background: transparent;
}

.olj-home-scenes .olj-scenes__tabs button:hover,
.olj-home-scenes .olj-scenes__tabs button:focus-visible {
    background: rgba(255, 255, 255, 0.34);
}

.olj-home-scenes .olj-scenes__tabs button::after {
    bottom: clamp(8px, 0.64vw, 12px);
    width: clamp(66px, 6.5vw, 125px);
    height: 2px;
    background: #0a0a0a;
}

.olj-home-scenes .olj-scenes__tabs button img {
    width: clamp(15px, 1.15vw, 22px);
    height: clamp(15px, 1.15vw, 22px);
}

.olj-scenes__copy .olj-button {
    display: none;
}

.olj-scenes__copy h2 {
    margin-bottom: clamp(6px, 0.7vw, 13px);
}

.olj-scenes__eyebrow {
    margin-bottom: clamp(45px, 4.4vw, 84px);
}

@media (max-width: 1180px) {
    .olj-home-scenes .olj-scenes__learn {
        left: 32px;
        bottom: 92px;
    }

    .olj-home-scenes .olj-scenes__tabs {
        height: 74px;
    }
}

@media (max-width: 640px) {
    .olj-home-scenes .olj-scenes__learn {
        left: 18px;
        bottom: 78px;
        min-width: 112px;
        min-height: 36px;
        font-size: 11px;
    }

    .olj-home-scenes .olj-scenes__tabs {
        height: 64px;
    }

    .olj-home-scenes .olj-scenes__tabs button {
        flex-direction: column;
        gap: 4px;
        padding: 8px 3px 12px;
        font-size: 11px;
    }

    .olj-home-scenes .olj-scenes__tabs button::after {
        bottom: 7px;
        width: 42px;
    }
}

.olj-home-scenes .olj-scenes__tabs {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    width: 100%;
    height: 9.8%;
    min-height: clamp(58px, 5vw, 94px);
    padding: 0;
    background: transparent;
    border-top: 0;
    backdrop-filter: none;
}

.olj-home-scenes .olj-scenes__tabs::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    right: 9%;
    left: 8.6%;
    height: 1px;
    background: rgba(0, 0, 0, 0.72);
}

.olj-home-scenes .olj-scenes__tabs button {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 0.48vw, 9px);
    height: 100%;
    min-height: 0;
    padding: 0 12px clamp(16px, 1.25vw, 24px);
    border: 0;
    background: transparent;
    color: #0a0a0a;
    font-size: clamp(14px, 1.04vw, 20px);
    font-weight: 500;
    font-family: inherit;
    line-height: normal;
    text-align: center;
    cursor: pointer;
    transform: translateX(-1.2vw);
    overflow: visible;
}

.olj-home-scenes .olj-scenes__tabs button:hover,
.olj-home-scenes .olj-scenes__tabs button:focus-visible {
    background: transparent;
}

.olj-home-scenes .olj-scenes__tabs button::after {
    display: none;
}

.olj-home-scenes .olj-scenes__tabs button span {
    position: relative;
    display: inline-block;
}

.olj-home-scenes .olj-scenes__tabs button.is-active span::before {
    display: block;
    content: "";
    position: absolute;
    top: calc(-1 * clamp(10px, 0.99vw, 19px));
    left: 40%;
    width: calc(100% + 60px);
    height: clamp(5px, 0.52vw, 10px);
    background: #0a0a0a;
    transform: translate(-50%, -50%);
}

.olj-home-scenes .olj-scenes__tabs button img {
    width: clamp(14px, 1vw, 20px);
    height: clamp(14px, 1vw, 20px);
    object-fit: contain;
    transform: none;
}

.olj-home-scenes .olj-scenes__tabs button:hover img,
.olj-home-scenes .olj-scenes__tabs button.is-active img {
    transform: translateY(-1px);
}

.olj-home-scenes .olj-scenes__learn {
    left: 8.3%;
    bottom: 15.9%;
    min-width: 159px;
    min-height: 46px;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 16px;
}

.olj-home-scenes .olj-scenes__learn::after {
    width: 22px;
    height: 10px;
    margin-left: 14px;
}

.olj-home-scenes.is-reveal-ready {
    --olj-scene-reveal: 0;
    --olj-scene-content: 0;
    --olj-scene-radius: 30vmin;
    --olj-scene-scale: 0.94;
    --olj-scene-content-y: 46px;
    --olj-scene-item-y: 18px;
    --olj-scene-button-y: 24px;
    background: #ffffff;
    overflow: visible;
}

.olj-home-scenes.is-reveal-ready .olj-scenes__media {
    z-index: 1;
    clip-path: circle(var(--olj-scene-radius) at 50% 45%);
    transform: scale(var(--olj-scene-scale));
    transform-origin: center;
    transition: clip-path 80ms linear, transform 80ms linear;
    will-change: clip-path, transform;
}

.olj-home-scenes.is-reveal-ready .olj-scenes__inner {
    z-index: 2;
}

.olj-home-scenes.is-reveal-ready .olj-scenes__copies {
    opacity: var(--olj-scene-content);
    transform: translate3d(0, var(--olj-scene-content-y), 0);
    transition: opacity 120ms linear, transform 120ms linear;
    will-change: opacity, transform;
}

.olj-home-scenes.is-reveal-ready .olj-scenes__copy.is-active {
    opacity: var(--olj-scene-content);
    pointer-events: auto;
}

.olj-home-scenes.is-reveal-ready .olj-scenes__copy.is-active h2,
.olj-home-scenes.is-reveal-ready .olj-scenes__copy.is-active .olj-scenes__eyebrow,
.olj-home-scenes.is-reveal-ready .olj-scenes__copy.is-active h3,
.olj-home-scenes.is-reveal-ready .olj-scenes__copy.is-active h3 + p {
    opacity: var(--olj-scene-content);
    transform: translateY(var(--olj-scene-item-y));
}

.olj-home-scenes.is-reveal-ready .olj-scenes__learn {
    opacity: var(--olj-scene-content);
    pointer-events: none;
    transform: translateY(var(--olj-scene-button-y));
    transition: opacity 120ms linear, transform 120ms linear, background 180ms ease;
}

.olj-home-scenes.is-reveal-ready.is-revealed .olj-scenes__learn {
    pointer-events: auto;
}

@media (max-width: 1180px) {
    .olj-home-scenes .olj-scenes__tabs {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        min-height: 96px;
    }

    .olj-home-scenes .olj-scenes__tabs button {
        height: auto;
        min-height: 44px;
        padding: 8px;
        font-size: 14px;
        transform: none;
    }

    .olj-home-scenes .olj-scenes__learn {
        left: 8.3%;
        bottom: 112px;
        width: auto;
    }
}

@media (max-width: 640px) {
    .olj-home-scenes .olj-scenes__tabs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: 58px;
    }

    .olj-home-scenes .olj-scenes__tabs::before {
        right: 14px;
        left: 14px;
    }

    .olj-home-scenes .olj-scenes__tabs button {
        flex-direction: column;
        gap: 3px;
        min-width: 0;
        min-height: 58px;
        padding: 14px 3px 8px;
        font-size: 11px;
        line-height: 1.2;
        transform: none;
    }

    .olj-home-scenes .olj-scenes__tabs button img {
        width: 14px;
        height: 14px;
    }

    .olj-home-scenes .olj-scenes__tabs button.is-active span::before {
        top: -14px;
        width: calc(100% + 8px);
        height: 5px;
    }

    .olj-home-scenes .olj-scenes__learn {
        left: 18px;
        bottom: 72px;
        min-width: 142px;
        min-height: 44px;
        padding: 10px 16px;
        font-size: 15px;
    }
}



.olj-home-hero .olj-hero__title {
    position: relative;
    display: grid;
    justify-items: center;
    gap: clamp(4px, 0.35vw, 7px);
    overflow: hidden;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
}

.olj-home-hero .olj-hero__title::after {
    content: "";
    position: absolute;
    inset: -10% -18%;
    background: linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.42) 48%, transparent 58%);
    opacity: 0;
    transform: translateX(-62%);
    animation: olj-hero-title-glint 1650ms ease both 760ms;
    pointer-events: none;
}

.olj-home-hero .olj-hero__title span {
    display: block;
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
    clip-path: inset(0 0 100% 0);
    animation: olj-hero-title-line 920ms cubic-bezier(0.16, 1, 0.3, 1) both;
    animation-delay: calc(260ms + var(--olj-line-index, 0) * 150ms);
}

.olj-home-hero p {
    opacity: 0;
    transform: translateY(22px);
    animation: olj-hero-copy-in 780ms ease both 820ms;
}



@keyframes olj-hero-title-line {
    0% {
        opacity: 0;
        transform: translate3d(0, 34px, 0) scale(0.985);
        clip-path: inset(0 0 100% 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes olj-hero-title-glint {
    0% {
        opacity: 0;
        transform: translateX(-62%);
    }

    38% {
        opacity: 0.55;
    }

    100% {
        opacity: 0;
        transform: translateX(62%);
    }
}

@keyframes olj-hero-copy-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .olj-home-hero .olj-hero__title::after,
    .olj-home-hero .olj-hero__title span,
    .olj-home-hero p,
    .olj-solutions-intro.is-ready p,
    .olj-solutions-intro.is-ready h2,
    .olj-solutions-intro.is-ready div {
        animation: none;
        opacity: 1;
        transform: none;
        clip-path: none;
    }
}
