@charset "UTF-8";

:root {
    --lj-ink: #071936;
    --lj-text: #26364e;
    --lj-muted: #6f7b8d;
    --lj-blue: #5f82d8;
    --lj-blue-soft: #eaf0ff;
    --lj-coral: #ff544b;
    --lj-coral-soft: #fff0ee;
    --lj-line: #dfe5ee;
    --lj-surface: #f7f9fc;
    --lj-white: #ffffff;
    --lj-shell: 1360px;
    --lj-gutter: clamp(24px, 5vw, 72px);
    --lj-radius: 3px;
    --lj-shadow: 0 28px 80px rgba(10, 31, 63, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#about,
#product,
#responsibility,
#contact {
    scroll-margin-top: 72px;
}

body.lj-page {
    margin: 0;
    color: var(--lj-text);
    background: var(--lj-white);
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

.lj-page a {
    color: inherit;
    text-decoration: none;
}

.lj-page button,
.lj-page a {
    -webkit-tap-highlight-color: transparent;
}

.lj-page svg {
    display: block;
}

.lj-shell {
    width: min(100%, var(--lj-shell));
    margin: 0 auto;
    padding-inline: var(--lj-gutter);
}

.lj-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--lj-white);
    background: var(--lj-ink);
    transform: translateY(-160%);
}

.lj-skip-link:focus {
    transform: translateY(0);
}

.lj-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 88px;
    color: var(--lj-ink);
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: height .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.lj-header.is-scrolled {
    height: 72px;
    border-color: var(--lj-line);
    box-shadow: 0 8px 28px rgba(10, 31, 63, .06);
}

.lj-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lj-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.lj-brand__mark {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: var(--lj-ink);
    stroke-width: 2.3;
}

.lj-brand__mark rect:nth-child(2),
.lj-brand__mark path {
    stroke: var(--lj-coral);
}

.lj-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.lj-brand__text strong {
    color: var(--lj-ink);
    font-size: 20px;
    font-weight: 680;
    letter-spacing: .04em;
}

.lj-brand__text small {
    margin-top: 6px;
    color: var(--lj-muted);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .14em;
}

.lj-nav {
    display: flex;
    align-items: center;
    gap: clamp(24px, 3.2vw, 48px);
    height: 100%;
}

.lj-nav a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    color: #344056;
    font-size: 15px;
    font-weight: 500;
    transition: color .2s ease;
}

.lj-nav a::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: 18px;
    left: 50%;
    height: 2px;
    background: var(--lj-coral);
    transition: right .2s ease, left .2s ease;
}

.lj-nav a:hover,
.lj-nav a:focus-visible {
    color: var(--lj-ink);
}

.lj-nav a:hover::after,
.lj-nav a:focus-visible::after {
    right: 0;
    left: 0;
}

.lj-menu-button {
    display: none;
}

.lj-hero {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    padding-top: 88px;
    background:
        linear-gradient(90deg, rgba(247, 249, 252, .94) 0, rgba(255, 255, 255, 0) 52%),
        var(--lj-white);
}

.lj-hero__inner {
    min-height: calc(780px - 88px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
    align-items: center;
}

.lj-hero__copy {
    position: relative;
    z-index: 2;
    padding: 70px 0 42px;
}

.lj-hero h1 {
    max-width: 720px;
    margin: 0;
    color: var(--lj-ink);
    font-size: clamp(56px, 5.1vw, 82px);
    font-weight: 720;
    letter-spacing: -.055em;
    line-height: 1.12;
}

.lj-hero__copy > p {
    margin: 28px 0 0;
    color: #4f5c70;
    font-size: clamp(18px, 1.55vw, 24px);
    letter-spacing: .02em;
}

.lj-actions {
    display: flex;
    gap: 18px;
    margin-top: 44px;
}

.lj-button {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0 26px;
    border: 1px solid var(--lj-ink);
    border-radius: var(--lj-radius);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.lj-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s ease;
}

.lj-button:hover,
.lj-button:focus-visible {
    transform: translateY(-2px);
}

.lj-button:hover svg,
.lj-button:focus-visible svg {
    transform: translateX(4px);
}

.lj-button--primary {
    color: var(--lj-white) !important;
    background: var(--lj-coral);
    border-color: var(--lj-coral);
    box-shadow: 0 12px 30px rgba(255, 84, 75, .2);
}

.lj-button--primary:hover,
.lj-button--primary:focus-visible {
    background: #ef443c;
    border-color: #ef443c;
    box-shadow: 0 16px 34px rgba(255, 84, 75, .28);
}

.lj-button--secondary {
    color: var(--lj-ink);
    background: rgba(255, 255, 255, .64);
}

.lj-button--secondary:hover,
.lj-button--secondary:focus-visible {
    color: var(--lj-white);
    background: var(--lj-ink);
}

.lj-hero__company {
    display: block;
    margin-top: 112px;
    color: #7c8797;
    font-size: 13px;
    letter-spacing: .12em;
}

.lj-boundary-art {
    width: min(54vw, 690px);
    justify-self: end;
    transform: translate(3%, -3%);
}

.lj-boundary-art svg {
    width: 100%;
    overflow: visible;
}

.lj-boundary-art__blue,
.lj-boundary-art__coral {
    fill: none;
    stroke-width: 1.1;
}

.lj-boundary-art__blue {
    stroke: url(#blueLine);
}

.lj-boundary-art__coral {
    stroke: url(#coralLine);
}

.lj-boundary-art__bridge {
    fill: none;
    stroke: #9aaada;
    stroke-width: 1.5;
    stroke-dasharray: 4 7;
    animation: bridgePulse 3s ease-in-out infinite;
}

.lj-boundary-art__point--one {
    fill: var(--lj-blue);
}

.lj-boundary-art__point--two {
    fill: var(--lj-coral);
}

.lj-scroll-cue {
    position: absolute;
    bottom: 28px;
    left: 50%;
    width: 28px;
    height: 48px;
    display: flex;
    justify-content: center;
    border: 1px solid #bdc6d4;
    border-radius: 20px;
    transform: translateX(-50%);
}

.lj-scroll-cue span {
    width: 4px;
    height: 8px;
    margin-top: 10px;
    background: var(--lj-coral);
    border-radius: 4px;
    animation: scrollCue 1.7s ease-in-out infinite;
}

.lj-belief {
    padding: 100px 0;
    background: var(--lj-surface);
}

.lj-belief .lj-shell {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: 9vw;
    align-items: end;
}

.lj-belief__lead p,
.lj-belief__lead h2 {
    margin: 0;
    color: var(--lj-ink);
}

.lj-belief__lead p {
    font-size: 24px;
    font-weight: 620;
}

.lj-belief__lead h2 {
    position: relative;
    margin-top: 4px;
    padding-bottom: 24px;
    font-size: clamp(38px, 3.4vw, 56px);
    line-height: 1.24;
    letter-spacing: -.035em;
}

.lj-belief__lead h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 78px;
    height: 3px;
    background: var(--lj-coral);
}

.lj-belief__text {
    color: #435168;
    font-size: 19px;
    line-height: 1.9;
}

.lj-belief__text p {
    margin: 0;
}

.lj-belief__text p + p {
    margin-top: 12px;
}

.lj-story {
    padding: 112px 0 110px;
    overflow: hidden;
}

.lj-story__inner {
    display: grid;
    grid-template-columns: minmax(340px, .85fr) minmax(520px, 1.15fr);
    gap: 8vw;
    align-items: center;
}

.lj-story__copy h2 {
    margin: 0;
    color: var(--lj-ink);
    font-size: clamp(42px, 4.4vw, 68px);
    line-height: 1.24;
    letter-spacing: -.055em;
}

.lj-story__copy p {
    max-width: 520px;
    margin: 30px 0 0;
    color: #526076;
    font-size: 17px;
}

.lj-story__copy strong {
    display: block;
    margin-top: 34px;
    color: var(--lj-coral);
    font-size: 24px;
    font-weight: 650;
}

.lj-story__visual {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.lj-story__visual > svg {
    position: relative;
    z-index: 2;
    width: 38%;
    fill: none;
    stroke: #8ca6df;
    stroke-width: 1.5;
    stroke-dasharray: 6 8;
}

.lj-story__visual > svg circle {
    fill: var(--lj-coral);
    stroke: none;
}

.lj-person {
    position: relative;
    width: 220px;
    height: 320px;
    flex: 0 0 220px;
}

.lj-person i {
    position: absolute;
    inset: 50%;
    border: 1px solid;
    border-radius: 46% 54% 50% 50%;
    transform: translate(-50%, -50%);
}

.lj-person i:nth-child(1) {
    width: 110px;
    height: 174px;
}

.lj-person i:nth-child(2) {
    width: 150px;
    height: 220px;
}

.lj-person i:nth-child(3) {
    width: 190px;
    height: 270px;
}

.lj-person i:nth-child(4) {
    width: 230px;
    height: 320px;
}

.lj-person--blue i {
    border-color: rgba(95, 130, 216, .34);
}

.lj-person--coral i {
    border-color: rgba(255, 84, 75, .28);
}

.lj-person__figure {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    width: 36px;
    height: 92px;
    border-radius: 40% 40% 24% 24%;
    transform: translate(-50%, -36%);
}

.lj-person__figure::before {
    content: "";
    position: absolute;
    top: -38px;
    left: 50%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transform: translateX(-50%);
}

.lj-person--blue .lj-person__figure,
.lj-person--blue .lj-person__figure::before {
    background: #8aa3d8;
}

.lj-person--coral .lj-person__figure,
.lj-person--coral .lj-person__figure::before {
    background: #f29b95;
}

.lj-product {
    padding: 132px 0;
    background: var(--lj-surface);
    border-block: 1px solid #edf0f5;
}

.lj-product__inner {
    display: grid;
    grid-template-columns: minmax(330px, .78fr) minmax(560px, 1.22fr);
    gap: 8vw;
    align-items: center;
}

.lj-product__line {
    display: block;
    width: 4px;
    height: 52px;
    margin-bottom: 20px;
    background: var(--lj-coral);
}

.lj-product__copy h2 {
    margin: 0;
    color: var(--lj-ink);
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(54px, 5.5vw, 82px);
    font-weight: 720;
    letter-spacing: -.055em;
    line-height: 1;
}

.lj-product__copy > p {
    max-width: 500px;
    margin: 32px 0 38px;
    color: #46556b;
    font-size: 18px;
}

.lj-product__copy small {
    display: block;
    margin-top: 28px;
    color: var(--lj-muted);
    font-size: 13px;
}

.lj-product-window {
    overflow: hidden;
    background: var(--lj-white);
    border: 1px solid #cfd7e5;
    border-radius: 14px;
    box-shadow: var(--lj-shadow);
}

.lj-product-window__bar {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 18px;
    background: #f1f4f8;
    border-bottom: 1px solid #dfe5ee;
}

.lj-product-window__bar > span {
    width: 9px;
    height: 9px;
    background: #c6cfdb;
    border-radius: 50%;
}

.lj-product-window__bar > span:first-child {
    background: var(--lj-coral);
}

.lj-product-window__bar div {
    width: 44%;
    margin: 0 auto;
    padding: 5px 12px;
    color: #8b96a6;
    background: var(--lj-white);
    border-radius: 5px;
    font-size: 10px;
    text-align: center;
}

.lj-product-window__body {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    padding: 32px;
    background:
        radial-gradient(circle at 50% 130%, #e9efff 0, rgba(233, 239, 255, 0) 54%),
        var(--lj-white);
}

.lj-product-window__brand {
    color: var(--lj-ink);
    font-family: Inter, Arial, sans-serif;
    font-size: 20px;
    font-weight: 720;
}

.lj-product-window__message {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    text-align: center;
}

.lj-product-window__message strong {
    color: var(--lj-ink);
    font-size: 23px;
}

.lj-product-window__message p {
    margin: 4px 0 0;
    color: var(--lj-muted);
    font-size: 13px;
}

.lj-product-window__body > svg {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

.mk-path {
    fill: none;
    stroke-width: 1.2;
}

.mk-path--blue {
    stroke: rgba(95, 130, 216, .5);
}

.mk-path--coral {
    stroke: rgba(255, 84, 75, .42);
}

.mk-person--blue {
    fill: #b5c5e8;
}

.mk-person--coral {
    fill: #f5bbb7;
}

.mk-table {
    fill: none;
    stroke: #9ca9b9;
    stroke-width: 2;
}

.mk-dot--blue {
    fill: var(--lj-blue);
}

.mk-dot--coral {
    fill: var(--lj-coral);
}

.lj-responsibility {
    padding: 132px 0 116px;
}

.lj-section-heading h2 {
    margin: 0;
    color: var(--lj-ink);
    font-size: clamp(42px, 4.5vw, 68px);
    line-height: 1.2;
    letter-spacing: -.05em;
}

.lj-section-heading > span {
    display: block;
    width: 76px;
    height: 4px;
    margin-top: 28px;
    background: var(--lj-coral);
}

.lj-responsibility__rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 82px;
    border-top: 1px solid #8aa7ec;
}

.lj-responsibility__rail::before,
.lj-responsibility__rail::after {
    content: "";
    position: absolute;
    top: 0;
    width: 48px;
    height: 120px;
    border-top: 1px solid #8aa7ec;
}

.lj-responsibility__rail::before {
    left: 0;
    border-left: 1px solid #8aa7ec;
    border-top-left-radius: 44px;
}

.lj-responsibility__rail::after {
    right: 0;
    border-right: 1px solid #8aa7ec;
    border-top-right-radius: 44px;
}

.lj-responsibility__rail article {
    position: relative;
    z-index: 1;
    padding: 62px 28px 36px;
}

.lj-responsibility__rail article::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 28px;
    width: 14px;
    height: 14px;
    background: var(--lj-coral);
    border: 5px solid var(--lj-white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px #7f9ee1;
}

.lj-responsibility__number {
    color: #9aabc5;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
}

.lj-responsibility__rail h3 {
    margin: 14px 0 8px;
    color: var(--lj-ink);
    font-size: 23px;
}

.lj-responsibility__rail p {
    margin: 0;
    color: var(--lj-muted);
    font-size: 15px;
}

.lj-responsibility blockquote {
    position: relative;
    max-width: 880px;
    margin: 68px auto 0;
    color: var(--lj-ink);
    font-size: clamp(23px, 2.3vw, 34px);
    font-style: normal;
    font-weight: 650;
    text-align: center;
}

.lj-responsibility blockquote::before,
.lj-responsibility blockquote::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 14%;
    height: 1px;
    background: #d5deed;
}

.lj-responsibility blockquote::before {
    right: calc(100% + 28px);
}

.lj-responsibility blockquote::after {
    left: calc(100% + 28px);
}

.lj-footer {
    color: #d8e0eb;
    background: var(--lj-ink);
}

.lj-footer__top {
    display: grid;
    grid-template-columns: 1.3fr .65fr 1fr;
    gap: 7vw;
    padding: 76px 0 62px;
}

.lj-brand--footer .lj-brand__mark {
    stroke: var(--lj-white);
}

.lj-brand--footer .lj-brand__mark rect:nth-child(2),
.lj-brand--footer .lj-brand__mark path {
    stroke: var(--lj-coral);
}

.lj-brand--footer .lj-brand__text strong {
    color: var(--lj-white);
}

.lj-brand--footer .lj-brand__text small {
    color: #91a0b6;
    font-size: 9px;
}

.lj-footer__identity > p {
    max-width: 360px;
    margin: 26px 0 0;
    color: #91a0b6;
    font-size: 14px;
}

.lj-footer h2 {
    margin: 0 0 22px;
    color: var(--lj-white);
    font-size: 15px;
    font-weight: 650;
}

.lj-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lj-footer__links a {
    margin-bottom: 10px;
    color: #9eacbf;
    font-size: 14px;
    transition: color .2s ease;
}

.lj-footer__links a:hover {
    color: var(--lj-white);
}

.lj-footer__contact dl,
.lj-footer__contact dd {
    margin: 0;
}

.lj-footer__contact dl {
    display: grid;
    gap: 14px;
}

.lj-footer__contact dl > div {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
}

.lj-footer__contact dt {
    color: #718198;
    font-size: 13px;
}

.lj-footer__contact dd {
    color: #bdc8d7;
    font-size: 13px;
}

.lj-footer__bottom {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    border-top: 1px solid rgba(216, 224, 235, .18);
}

.lj-footer__policies {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    padding: 20px 0;
    border-top: 1px solid rgba(216, 224, 235, .18);
}

.lj-footer__policies a {
    color: #91a0b6;
    font-size: 13px;
    transition: color .2s ease;
}

.lj-footer__policies a:hover {
    color: var(--lj-white);
}

.lj-footer__records {
    display: flex;
    align-items: center;
    gap: 22px;
}

.lj-footer__records a,
.lj-footer__copyright {
    color: #7f8fa6;
    font-size: 12px;
}

.lj-footer__records a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lj-footer__records img {
    width: 16px;
    height: 16px;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes bridgePulse {
    0%, 100% { opacity: .45; stroke-dashoffset: 0; }
    50% { opacity: 1; stroke-dashoffset: 22; }
}

@keyframes scrollCue {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(18px); }
}

@media (min-width: 1101px) {
    .lj-hero h1 {
        max-width: none;
        font-size: clamp(56px, 4.6vw, 78px);
        white-space: nowrap;
    }
}

@media (max-width: 1100px) {
    .lj-hero {
        min-height: 720px;
    }

    .lj-hero__inner {
        min-height: calc(720px - 88px);
        grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    }

    .lj-hero h1 {
        font-size: 58px;
    }

    .lj-boundary-art {
        width: 560px;
        transform: translate(12%, -2%);
    }

    .lj-story__inner,
    .lj-product__inner {
        gap: 5vw;
    }

    .lj-story__visual {
        transform: scale(.86);
        transform-origin: center;
    }

    .lj-product__inner {
        grid-template-columns: .72fr 1.28fr;
    }
}

@media (max-width: 900px) {
    .lj-header,
    .lj-header.is-scrolled {
        height: 68px;
    }

    .lj-brand__mark {
        width: 38px;
        height: 38px;
    }

    .lj-header .lj-brand {
        position: relative;
        z-index: 102;
    }

    .lj-brand__text strong {
        font-size: 18px;
    }

    .lj-brand__text small {
        display: none;
    }

    .lj-menu-button {
        position: relative;
        z-index: 102;
        width: 44px;
        height: 44px;
        display: block;
        padding: 0;
        background: transparent;
        border: 0;
    }

    .lj-menu-button span {
        position: absolute;
        left: 10px;
        width: 24px;
        height: 2px;
        background: var(--lj-ink);
        transition: transform .25s ease, top .25s ease;
    }

    .lj-menu-button span:first-child {
        top: 16px;
    }

    .lj-menu-button span:last-child {
        top: 26px;
    }

    .lj-menu-button[aria-expanded="true"] span:first-child {
        top: 21px;
        transform: rotate(45deg);
    }

    .lj-menu-button[aria-expanded="true"] span:last-child {
        top: 21px;
        transform: rotate(-45deg);
    }

    .lj-menu-button:focus {
        outline: none;
    }

    .lj-menu-button:focus-visible {
        outline: 2px solid var(--lj-coral);
        outline-offset: 2px;
    }

    .lj-nav {
        position: fixed;
        inset: 0;
        z-index: 101;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        height: 100vh;
        padding: 88px var(--lj-gutter) 40px;
        background: rgba(255, 255, 255, .98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease;
    }

    .lj-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .lj-nav a {
        width: 100%;
        height: auto;
        padding: 10px 0;
        color: var(--lj-ink);
        font-size: 28px;
        font-weight: 650;
    }

    .lj-nav a::after {
        display: none;
    }

    body.has-open-menu {
        overflow: hidden;
    }

    .lj-hero {
        min-height: 760px;
        padding-top: 68px;
    }

    .lj-hero__inner {
        position: relative;
        min-height: 692px;
        display: block;
    }

    .lj-hero__copy {
        padding-top: 100px;
    }

    .lj-hero h1 {
        max-width: 580px;
        font-size: clamp(48px, 8vw, 66px);
    }

    .lj-hero__copy > p {
        max-width: 460px;
    }

    .lj-hero__company {
        margin-top: 72px;
    }

    .lj-boundary-art {
        position: absolute;
        top: 45px;
        right: -320px;
        z-index: 0;
        width: 720px;
        opacity: .4;
    }

    .lj-belief .lj-shell,
    .lj-story__inner,
    .lj-product__inner {
        grid-template-columns: 1fr;
    }

    .lj-belief .lj-shell {
        gap: 44px;
    }

    .lj-story {
        padding: 108px 0 92px;
    }

    .lj-story__inner {
        gap: 64px;
    }

    .lj-story__visual {
        transform: none;
    }

    .lj-product {
        padding: 96px 0;
    }

    .lj-product__inner {
        gap: 68px;
    }

    .lj-responsibility__rail {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }

    .lj-responsibility__rail article:nth-child(n+3) {
        border-top: 1px solid var(--lj-line);
    }

    .lj-responsibility__rail article:nth-child(n+3)::before {
        display: none;
    }

    .lj-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .lj-footer__identity {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    :root {
        --lj-gutter: 22px;
    }

    .lj-hero {
        min-height: 720px;
    }

    .lj-hero__inner {
        min-height: 652px;
    }

    .lj-hero__copy {
        padding-top: 82px;
    }

    .lj-hero h1 {
        max-width: 340px;
        font-size: 48px;
        line-height: 1.16;
    }

    .lj-hero__copy > p {
        max-width: 330px;
        margin-top: 22px;
        font-size: 17px;
    }

    .lj-actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 310px;
        margin-top: 34px;
    }

    .lj-button {
        min-height: 52px;
        justify-content: space-between;
        padding-inline: 20px;
    }

    .lj-hero__company {
        margin-top: 64px;
        font-size: 11px;
        letter-spacing: .06em;
    }

    .lj-boundary-art {
        top: 185px;
        right: -350px;
        width: 680px;
        opacity: .23;
    }

    .lj-scroll-cue {
        display: none;
    }

    .lj-belief {
        padding: 68px 0;
    }

    .lj-belief__lead p {
        font-size: 18px;
    }

    .lj-belief__lead h2 {
        font-size: 31px;
    }

    .lj-belief__text {
        font-size: 15px;
    }

    .lj-story {
        padding: 82px 0 72px;
    }

    .lj-story__copy h2 {
        font-size: 42px;
    }

    .lj-story__copy p {
        font-size: 15px;
    }

    .lj-story__copy strong {
        font-size: 21px;
    }

    .lj-story__visual {
        min-height: 300px;
        margin-inline: -40px;
    }

    .lj-person {
        width: 125px;
        height: 220px;
        flex-basis: 125px;
    }

    .lj-person i:nth-child(1) {
        width: 66px;
        height: 110px;
    }

    .lj-person i:nth-child(2) {
        width: 88px;
        height: 142px;
    }

    .lj-person i:nth-child(3) {
        width: 110px;
        height: 176px;
    }

    .lj-person i:nth-child(4) {
        width: 132px;
        height: 214px;
    }

    .lj-person__figure {
        width: 24px;
        height: 58px;
    }

    .lj-person__figure::before {
        top: -26px;
        width: 25px;
        height: 25px;
    }

    .lj-story__visual > svg {
        width: 31%;
    }

    .lj-product {
        padding: 78px 0;
    }

    .lj-product__copy h2 {
        font-size: 55px;
    }

    .lj-product__copy > p {
        margin: 24px 0 30px;
        font-size: 16px;
    }

    .lj-product-window {
        margin-inline: -8px;
        border-radius: 8px;
    }

    .lj-product-window__body {
        min-height: 325px;
        padding: 22px;
    }

    .lj-product-window__message {
        margin-top: 18px;
    }

    .lj-product-window__message strong {
        font-size: 18px;
    }

    .lj-responsibility {
        padding: 82px 0 72px;
    }

    .lj-section-heading h2 {
        font-size: 40px;
    }

    .lj-responsibility__rail {
        grid-template-columns: 1fr;
        margin-top: 62px;
        border-top: 0;
    }

    .lj-responsibility__rail::before,
    .lj-responsibility__rail::after {
        display: none;
    }

    .lj-responsibility__rail article {
        padding: 28px 0 28px 36px;
        border-top: 1px solid var(--lj-line);
    }

    .lj-responsibility__rail article::before {
        top: 34px;
        left: 0;
        width: 10px;
        height: 10px;
        border-width: 4px;
    }

    .lj-responsibility__rail article:nth-child(n+3)::before {
        display: block;
    }

    .lj-responsibility blockquote {
        margin-top: 46px;
        font-size: 23px;
        text-align: left;
    }

    .lj-responsibility blockquote::before,
    .lj-responsibility blockquote::after {
        display: none;
    }

    .lj-footer__top {
        grid-template-columns: 1fr;
        gap: 46px;
        padding: 58px 0 48px;
    }

    .lj-footer__identity {
        grid-column: auto;
    }

    .lj-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        padding: 24px 0;
    }

    .lj-footer__records {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* Compliance and policy pages */
.lj-legal-page {
    padding-top: 88px;
}

.lj-legal-hero {
    padding: 104px 0 84px;
    border-bottom: 1px solid var(--lj-line);
    background: linear-gradient(135deg, #fff 0%, #f7f9fc 100%);
}

.lj-legal-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 60px;
}

.lj-legal-hero h1 {
    margin: 0;
    color: var(--lj-ink);
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: -.055em;
}

.lj-legal-hero p {
    max-width: 560px;
    margin: 28px 0 0;
    color: var(--lj-muted);
    font-size: 18px;
    line-height: 1.8;
}

.lj-legal-hero time {
    color: var(--lj-muted);
    font-size: 13px;
}

.lj-legal-content {
    padding: 96px 0 120px;
}

.lj-legal-article {
    width: min(100%, 920px);
    margin: 0 auto;
    color: #3f4e64;
    font-size: 16px;
    line-height: 1.95;
}

.lj-legal-article section {
    padding: 0 0 44px;
    margin-bottom: 44px;
    border-bottom: 1px solid var(--lj-line);
}

.lj-legal-article section:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.lj-legal-article h2 {
    margin: 0 0 20px;
    color: var(--lj-ink);
    font-size: 28px;
    line-height: 1.35;
    letter-spacing: -.03em;
}

.lj-legal-article h3 {
    margin: 26px 0 10px;
    color: var(--lj-ink);
    font-size: 18px;
}

.lj-legal-article p {
    margin: 0 0 14px;
}

.lj-legal-article ul,
.lj-legal-article ol {
    margin: 12px 0 0;
    padding-left: 1.5em;
}

.lj-legal-article li + li {
    margin-top: 8px;
}

.lj-legal-article a {
    color: var(--lj-coral);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.lj-legal-article .lj-legal-notice {
    padding: 24px 28px;
    border-bottom: 0;
    border-left: 3px solid var(--lj-coral);
    background: var(--lj-surface);
}

@media (max-width: 700px) {
    .lj-legal-page {
        padding-top: 72px;
    }

    .lj-legal-hero {
        padding: 72px 0 58px;
    }

    .lj-legal-hero__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lj-legal-hero h1 {
        font-size: 44px;
    }

    .lj-legal-content {
        padding: 64px 0 78px;
    }

    .lj-legal-article {
        font-size: 15px;
    }

    .lj-legal-article h2 {
        font-size: 24px;
    }
}

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

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

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* Company detail pages */
.lj-subpage {
    padding-top: 88px;
    color: var(--lj-ink);
    background: #fff;
}

.lj-subpage .lj-header {
    top: 0;
}

.lj-subhero {
    min-height: 620px;
    border-bottom: 1px solid var(--lj-line);
    background: linear-gradient(135deg, #fff 0%, #fff 55%, #f8faff 100%);
}

.lj-subhero--compact {
    min-height: 560px;
}

.lj-subhero__grid {
    display: grid;
    min-height: inherit;
    grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
    align-items: center;
    gap: 7vw;
}

.lj-subhero__copy {
    position: relative;
    z-index: 2;
    padding: 86px 0;
}

.lj-eyebrow,
.lj-section-index {
    display: block;
    margin-bottom: 28px;
    color: var(--lj-coral);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.lj-subhero h1 {
    margin: 0;
    font-size: clamp(58px, 6vw, 88px);
    line-height: .98;
    letter-spacing: -.07em;
}

.lj-subhero__copy p {
    max-width: 560px;
    margin: 38px 0 0;
    color: var(--lj-muted);
    font-size: 19px;
    line-height: 1.9;
}

.lj-boundary-art,
.lj-contact-signal,
.lj-join-art {
    position: relative;
    height: 440px;
}

.lj-boundary-art__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.lj-boundary-art__orbit--one {
    width: 230px;
    height: 230px;
    border-color: #b8caff;
}

.lj-boundary-art__orbit--two {
    width: 340px;
    height: 340px;
    border-color: #d5def7;
}

.lj-boundary-art__orbit--three {
    width: 440px;
    height: 440px;
    border-color: #ffcfcc;
}

.lj-boundary-art__person {
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.lj-boundary-art__person--left {
    left: calc(50% - 58px);
    background: #7095e8;
}

.lj-boundary-art__person--right {
    left: calc(50% + 34px);
    background: var(--lj-coral);
}

.lj-boundary-art__bridge {
    position: absolute;
    top: 50%;
    left: calc(50% - 32px);
    width: 64px;
    border-top: 1px dashed #9eafd6;
}

.lj-page-section {
    padding: 120px 0;
}

.lj-page-section--tint {
    background: var(--lj-surface);
}

.lj-page-section--dark {
    color: #fff;
    background: var(--lj-ink);
}

.lj-statement,
.lj-origin,
.lj-contact-layout,
.lj-contact-note,
.lj-openings {
    display: grid;
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
    gap: 10vw;
}

.lj-statement h2,
.lj-origin h2,
.lj-contact-layout h2,
.lj-contact-note h2,
.lj-openings h2,
.lj-section-heading h2 {
    margin: 0;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.15;
    letter-spacing: -.05em;
}

.lj-statement p,
.lj-origin__words p,
.lj-contact-layout > div > p,
.lj-contact-note p,
.lj-openings p {
    margin: 0 0 22px;
    color: var(--lj-muted);
    font-size: 17px;
    line-height: 1.95;
}

.lj-statement a,
.lj-origin__words strong {
    color: var(--lj-coral);
}

.lj-origin__words {
    padding-top: 50px;
    border-top: 1px solid var(--lj-line);
}

.lj-origin__words strong {
    display: block;
    margin-top: 50px;
    font-size: 25px;
    letter-spacing: -.03em;
}

.lj-section-heading--light h2,
.lj-page-section--dark .lj-section-index {
    color: #fff;
}

.lj-values-rail,
.lj-traits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 72px;
    border-top: 1px solid rgba(255,255,255,.22);
}

.lj-values-rail article {
    min-height: 280px;
    padding: 32px 28px;
    border-right: 1px solid rgba(255,255,255,.22);
}

.lj-values-rail article:last-child {
    border-right: 0;
}

.lj-values-rail span,
.lj-traits span {
    color: var(--lj-coral);
    font-size: 12px;
}

.lj-values-rail h3,
.lj-traits h3 {
    margin: 72px 0 18px;
    font-size: 28px;
}

.lj-values-rail p {
    color: #aeb9cc;
    line-height: 1.8;
}

.lj-product-callout {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
}

.lj-product-callout h2 {
    margin: 0 0 16px;
    font-size: clamp(54px, 7vw, 96px);
    letter-spacing: -.06em;
}

.lj-product-callout p {
    max-width: 600px;
    color: var(--lj-muted);
    font-size: 17px;
    line-height: 1.8;
}

.lj-text-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 32px;
    padding-bottom: 10px;
    border-bottom: 1px solid currentColor;
    color: var(--lj-ink);
    font-weight: 700;
}

.lj-contact-signal span {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid #c8d5f8;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.lj-contact-signal span:nth-child(1) { width: 110px; height: 110px; }
.lj-contact-signal span:nth-child(2) { width: 210px; height: 210px; }
.lj-contact-signal span:nth-child(3) { width: 320px; height: 320px; }
.lj-contact-signal span:nth-child(4) { width: 420px; height: 420px; border-color: #ffd1ce; }
.lj-contact-signal i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--lj-coral);
    transform: translate(-50%, -50%);
}
.lj-contact-signal i:last-child {
    width: 22px;
    height: 22px;
    background: transparent;
    border: 1px solid var(--lj-coral);
    animation: ljPulse 2.4s ease-out infinite;
}

@keyframes ljPulse {
    0% { opacity: 1; transform: translate(-50%, -50%) scale(.6); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(5); }
}

.lj-contact-list {
    margin: 0;
    border-top: 1px solid var(--lj-line);
}

.lj-contact-list > div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--lj-line);
}

.lj-contact-list dt {
    color: var(--lj-muted);
    font-size: 13px;
}

.lj-contact-list dd {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
}

.lj-contact-list a {
    display: flex;
    justify-content: space-between;
    color: var(--lj-ink);
}

.lj-contact-note > div {
    max-width: 720px;
}

.lj-contact-note .lj-text-link {
    margin-top: 18px;
}

.lj-join-art {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
}

.lj-join-art__line {
    position: absolute;
    top: 50%;
    right: 8%;
    left: 8%;
    border-top: 1px dashed #afbeda;
}

.lj-join-art i {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    border: 5px solid #fff;
    border-radius: 50%;
    background: #91aceb;
    box-shadow: 0 0 0 1px #91aceb;
}

.lj-join-art i:nth-of-type(3) {
    width: 30px;
    height: 30px;
    background: var(--lj-coral);
    box-shadow: 0 0 0 1px var(--lj-coral), 0 0 0 24px #fff2f1;
}

.lj-openings p {
    color: #b9c3d4;
}

.lj-button--light {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    margin-top: 24px;
    padding: 18px 24px;
    color: var(--lj-ink);
    background: #fff;
}

.lj-traits {
    grid-template-columns: repeat(3, 1fr);
    border-color: var(--lj-line);
}

.lj-traits article {
    min-height: 280px;
    padding: 30px 36px 30px 0;
    border-right: 1px solid var(--lj-line);
}

.lj-traits article + article {
    padding-left: 36px;
}

.lj-traits article:last-child {
    border-right: 0;
}

.lj-traits p {
    color: var(--lj-muted);
    line-height: 1.8;
}

.lj-join-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    font-size: 18px;
}

.lj-join-note a {
    color: var(--lj-ink);
    font-size: clamp(22px, 3vw, 38px);
    font-weight: 700;
}

.lj-join-note b {
    color: var(--lj-coral);
}

@media (max-width: 900px) {
    .lj-subpage {
        padding-top: 72px;
    }

    .lj-subhero__grid,
    .lj-statement,
    .lj-origin,
    .lj-contact-layout,
    .lj-contact-note,
    .lj-openings {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .lj-subhero__grid {
        padding-top: 36px;
        padding-bottom: 42px;
    }

    .lj-subhero__copy {
        padding: 42px 0 0;
    }

    .lj-boundary-art,
    .lj-contact-signal,
    .lj-join-art {
        height: 330px;
    }

    .lj-boundary-art__orbit--three,
    .lj-contact-signal span:nth-child(4) {
        width: 320px;
        height: 320px;
    }

    .lj-values-rail {
        grid-template-columns: repeat(2, 1fr);
    }

    .lj-values-rail article:nth-child(2) {
        border-right: 0;
    }

    .lj-values-rail article:nth-child(n+3) {
        border-top: 1px solid rgba(255,255,255,.22);
    }
}

@media (max-width: 620px) {
    .lj-subhero {
        min-height: auto;
    }

    .lj-subhero h1 {
        font-size: 54px;
    }

    .lj-subhero__copy p {
        margin-top: 26px;
        font-size: 16px;
    }

    .lj-boundary-art,
    .lj-contact-signal,
    .lj-join-art {
        height: 280px;
    }

    .lj-boundary-art__orbit--one { width: 140px; height: 140px; }
    .lj-boundary-art__orbit--two { width: 210px; height: 210px; }
    .lj-boundary-art__orbit--three,
    .lj-contact-signal span:nth-child(4) { width: 270px; height: 270px; }
    .lj-contact-signal span:nth-child(1) { width: 70px; height: 70px; }
    .lj-contact-signal span:nth-child(2) { width: 140px; height: 140px; }
    .lj-contact-signal span:nth-child(3) { width: 210px; height: 210px; }

    .lj-page-section {
        padding: 78px 0;
    }

    .lj-statement h2,
    .lj-origin h2,
    .lj-contact-layout h2,
    .lj-contact-note h2,
    .lj-openings h2,
    .lj-section-heading h2 {
        font-size: 36px;
    }

    .lj-values-rail,
    .lj-traits {
        grid-template-columns: 1fr;
    }

    .lj-values-rail article,
    .lj-values-rail article:nth-child(2),
    .lj-traits article,
    .lj-traits article + article {
        min-height: auto;
        padding: 28px 0;
        border-top: 1px solid rgba(255,255,255,.22);
        border-right: 0;
    }

    .lj-traits article,
    .lj-traits article + article {
        border-top-color: var(--lj-line);
    }

    .lj-values-rail h3,
    .lj-traits h3 {
        margin-top: 28px;
    }

    .lj-product-callout,
    .lj-join-note {
        align-items: flex-start;
        flex-direction: column;
    }

    .lj-contact-list > div {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Detail-page specificity fixes */
.lj-page .lj-button--light {
    color: var(--lj-ink);
}

.lj-section-heading > .lj-section-index {
    width: auto;
    height: auto;
    margin: 0 0 28px;
    background: transparent;
}

.lj-subhero--join h1 {
    font-size: clamp(56px, 5vw, 74px);
}

@media (max-width: 620px) {
    .lj-subhero--join h1 {
        font-size: 48px;
    }
}
