/*
Theme Name: LingLink AI Service Theme
Theme URI: https://linglinkai.cn
Description: Service-first Blocksy child theme for LingLink AI.
Author: LingLink AI
Template: blocksy
Version: 1.1.5
Text Domain: linglink-ai
*/

:root {
    --ll-navy: #07164f;
    --ll-midnight: #030716;
    --ll-blue: #0a6bff;
    --ll-sky: #1397ff;
    --ll-cyan: #22d3ee;
    --ll-electric: #22d3ee;
    --ll-ice: #f7fbff;
    --ll-white: #ffffff;
    --ll-line: #d9e6f7;
    --ll-muted: #5f6f8d;
    --ll-soft: #edf6ff;
    --ll-green: #11a36a;
    --ll-shadow: 0 18px 48px rgba(7, 22, 79, 0.12);
}

* {
    box-sizing: border-box;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

html {
    scroll-behavior: smooth;
}

body.ll-site {
    margin: 0;
    color: var(--ll-navy);
    background: var(--ll-white);
    font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "Avenir Next", Manrope, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.72;
    letter-spacing: 0;
    overflow-x: hidden;
}

a {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.ll-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ll-skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 1000;
    padding: 10px 14px;
    color: var(--ll-white);
    background: var(--ll-blue);
    border-radius: 6px;
}

.ll-skip-link:focus {
    top: 16px;
}

.ll-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--ll-line);
    backdrop-filter: blur(14px);
}

.ll-header__inner {
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    gap: 20px;
    min-height: 76px;
}

.ll-logo {
    display: inline-flex;
    align-items: center;
    width: 176px;
    height: 58px;
    min-width: 0;
}

.ll-logo img {
    width: auto;
    max-width: 176px;
    height: 58px;
    object-fit: contain;
}

.ll-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 700;
}

.ll-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    text-decoration: none;
    color: rgba(7, 22, 79, 0.82);
    transition: color 160ms ease;
}

.ll-nav a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--ll-blue), var(--ll-cyan));
    border-radius: 999px;
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: center;
    transition: opacity 160ms ease, transform 160ms ease;
}

.ll-nav a:hover,
.ll-nav a:focus,
.ll-nav a[aria-current="page"] {
    color: var(--ll-blue);
}

.ll-nav a:hover::after,
.ll-nav a:focus::after,
.ll-nav a[aria-current="page"]::after {
    opacity: 1;
    transform: scaleX(1);
}

.ll-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
}

.ll-language-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(7, 22, 79, 0.06);
}

.ll-language-switch a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 62px;
    min-height: 34px;
    padding: 6px 11px;
    color: rgba(7, 22, 79, 0.74);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.ll-language-switch a:hover,
.ll-language-switch a:focus {
    color: var(--ll-blue);
}

body.ll-nav-open {
    overflow: hidden;
}

.ll-language-switch a.is-active {
    color: var(--ll-white);
    background: var(--ll-blue);
    box-shadow: 0 8px 18px rgba(10, 107, 255, 0.18);
}

.ll-header__cta,
.ll-button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.ll-header__cta::after,
.ll-button::after {
    position: absolute;
    inset: -2px auto -2px -42%;
    width: 38%;
    content: "";
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.44), transparent);
    transform: skewX(-18deg) translateX(-120%);
    transition: transform 360ms ease;
    pointer-events: none;
}

.ll-header__cta,
.ll-button--primary {
    color: var(--ll-white);
    background: linear-gradient(135deg, var(--ll-blue), var(--ll-sky));
    box-shadow: 0 10px 28px rgba(10, 107, 255, 0.22);
}

.ll-button--secondary {
    color: var(--ll-navy);
    background: var(--ll-white);
    border-color: var(--ll-line);
}

.ll-header__cta:hover,
.ll-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(10, 107, 255, 0.22);
}

.ll-header__cta:hover::after,
.ll-button:hover::after {
    transform: skewX(-18deg) translateX(420%);
}

.ll-button--secondary:hover,
.ll-button--secondary:focus {
    color: var(--ll-blue);
    border-color: rgba(34, 211, 238, 0.72);
    background: linear-gradient(135deg, var(--ll-white), var(--ll-soft));
}

.ll-header__cta:active,
.ll-button:active {
    transform: translateY(0);
}

.ll-header__cta:focus-visible,
.ll-button:focus-visible,
.ll-nav a:focus-visible,
.ll-quick-links a:focus-visible,
.ll-card-link:focus-visible,
.ll-language-switch a:focus-visible,
.ll-footer a:focus-visible,
.ll-form input:focus-visible,
.ll-form select:focus-visible,
.ll-form textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(34, 211, 238, 0.42);
    outline-offset: 3px;
}

.ll-nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    background: var(--ll-white);
}

.ll-nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ll-navy);
    border-radius: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.ll-nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.ll-nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.ll-nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.ll-main {
    overflow: clip;
}

.ll-hero__copy,
.ll-page-hero__copy {
    min-width: 0;
}

.ll-hero,
.ll-page-hero {
    background: var(--ll-ice);
    border-bottom: 1px solid var(--ll-line);
}

.ll-hero {
    padding: 86px 0 58px;
}

.ll-hero--image {
    --ll-hero-bg-position: 82% 8%;
    --ll-hero-bg-size: cover;
    --ll-hero-stage-position: 82% 8%;
    --ll-hero-stage-size: cover;
    position: relative;
    padding: 96px 0 70px;
    overflow: hidden;
    color: var(--ll-white);
    background:
        linear-gradient(90deg, rgba(3, 7, 22, 0.96) 0%, rgba(3, 7, 22, 0.88) 38%, rgba(3, 7, 22, 0.34) 68%, rgba(3, 7, 22, 0.08) 100%),
        var(--ll-hero-image) var(--ll-hero-bg-position) / var(--ll-hero-bg-size) no-repeat,
        var(--ll-midnight);
    border-bottom: 0;
}

.ll-hero--image .ll-hero__grid {
    min-height: 620px;
}

.ll-hero--image h1,
.ll-hero--image .ll-lede {
    color: var(--ll-white);
}

.ll-hero--image .ll-eyebrow {
    color: var(--ll-cyan);
}

.ll-hero--image .ll-lede {
    color: rgba(247, 251, 255, 0.9);
}

.ll-hero--image .ll-quick-links a {
    color: var(--ll-white);
    background: rgba(247, 251, 255, 0.12);
    border-color: rgba(247, 251, 255, 0.22);
    backdrop-filter: blur(12px);
}

.ll-hero--image .ll-quick-links a:hover,
.ll-hero--image .ll-quick-links a:focus {
    color: var(--ll-midnight);
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(34, 211, 238, 0.64);
}

.ll-hero--slider {
    position: relative;
    min-height: max(720px, calc(100svh - 76px));
    padding: 0;
    overflow: hidden;
    isolation: isolate;
    background: var(--ll-midnight);
}

.ll-hero--slider::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background:
        linear-gradient(90deg, rgba(3, 7, 22, 0.92) 0%, rgba(3, 7, 22, 0.78) 34%, rgba(3, 7, 22, 0.32) 64%, rgba(3, 7, 22, 0.12) 100%),
        linear-gradient(180deg, rgba(3, 7, 22, 0.36) 0%, rgba(3, 7, 22, 0.08) 48%, rgba(3, 7, 22, 0.82) 100%);
    pointer-events: none;
}

.ll-hero--slider .ll-container {
    min-height: inherit;
    width: min(1180px, calc(100% - 40px));
}

.ll-hero--slider .ll-hero__grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: inherit;
    gap: clamp(24px, 4vh, 44px);
    padding: clamp(72px, 10vh, 120px) 0 clamp(34px, 6vh, 72px);
    overflow: visible;
}

.ll-hero--slider .ll-hero__copy {
    position: relative;
    z-index: 3;
    align-self: flex-start;
    width: min(760px, 62vw);
    max-width: 100%;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.ll-hero-slider {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    background: rgba(3, 7, 22, 0.9);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 8px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.ll-hero--slider .ll-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    align-self: stretch;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    background: var(--ll-midnight);
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.ll-hero-slider__slides,
.ll-hero-slide,
.ll-hero-slide img {
    position: absolute;
    inset: 0;
}

.ll-hero-slide {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity 360ms ease, transform 540ms ease;
}

.ll-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.ll-hero-slide.is-active .ll-hero-slide__content {
    animation: ll-slide-content-in 520ms ease both;
}

.ll-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% center;
}

.ll-hero-slide__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(3, 7, 22, 0.46), transparent 34%, rgba(3, 7, 22, 0.1) 100%),
        linear-gradient(90deg, rgba(3, 7, 22, 0.22), transparent 42%);
    pointer-events: none;
}

.ll-hero--slider .ll-hero-slide__shade {
    background:
        linear-gradient(90deg, rgba(3, 7, 22, 0.36), transparent 48%),
        linear-gradient(180deg, rgba(3, 7, 22, 0.28), transparent 36%, rgba(3, 7, 22, 0.62));
}

.ll-hero-slide__content {
    position: absolute;
    right: clamp(20px, 4vw, 64px);
    bottom: clamp(184px, 24vh, 248px);
    z-index: 2;
    width: min(420px, 36vw);
    padding: 18px;
    color: var(--ll-white);
    background:
        linear-gradient(145deg, rgba(7, 22, 79, 0.82), rgba(3, 7, 22, 0.64)),
        rgba(3, 7, 22, 0.72);
    border: 1px solid rgba(247, 251, 255, 0.18);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.ll-hero-slide__content p,
.ll-hero-slide__content h2 {
    margin: 0;
}

.ll-hero-slide__content p {
    color: var(--ll-cyan);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ll-hero-slide__content h2 {
    margin-top: 8px;
    color: var(--ll-white);
    font-size: clamp(18px, 2.1vw, 26px);
    line-height: 1.16;
}

.ll-hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 14px;
    gap: 10px;
}

.ll-hero-slide__actions .ll-button {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 13px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.ll-hero-slider__controls {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: rgba(3, 7, 22, 0.64);
    border: 1px solid rgba(247, 251, 255, 0.18);
    border-radius: 8px;
    backdrop-filter: blur(14px);
}

.ll-hero--slider .ll-hero-slider__controls {
    top: auto;
    right: clamp(20px, 4vw, 54px);
    bottom: clamp(112px, 15vh, 176px);
}

.ll-hero-slider__arrow,
.ll-hero-slider__dot,
.ll-hero-slider__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ll-white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.ll-hero-slider__arrow {
    width: 34px;
    height: 34px;
    font-size: 16px;
    font-weight: 900;
}

.ll-hero-slider__toggle {
    width: 34px;
    height: 34px;
}

.ll-hero-slider__toggle span {
    position: relative;
    display: block;
    width: 14px;
    height: 16px;
}

.ll-hero-slider__toggle span::before,
.ll-hero-slider__toggle span::after {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    content: "";
    background: currentColor;
    border-radius: 999px;
}

.ll-hero-slider__toggle span::before {
    left: 1px;
}

.ll-hero-slider__toggle span::after {
    right: 1px;
}

.ll-hero-slider__toggle.is-paused span::before {
    inset: 1px auto auto 3px;
    width: 0;
    height: 0;
    background: transparent;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid currentColor;
    border-radius: 0;
}

.ll-hero-slider__toggle.is-paused span::after {
    display: none;
}

.ll-hero-slider__dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ll-hero-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
}

.ll-hero-slider__dot.is-active {
    width: 24px;
    background: var(--ll-cyan);
    border-color: rgba(255, 255, 255, 0.72);
}

.ll-hero-slider__arrow:hover,
.ll-hero-slider__arrow:focus,
.ll-hero-slider__dot:hover,
.ll-hero-slider__dot:focus,
.ll-hero-slider__toggle:hover,
.ll-hero-slider__toggle:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(34, 211, 238, 0.78);
    transform: translateY(-1px);
}

.ll-hero-avatars {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    margin-top: 20px;
    padding: 8px 12px 8px 8px;
    color: rgba(247, 251, 255, 0.86);
    background: rgba(247, 251, 255, 0.1);
    border: 1px solid rgba(247, 251, 255, 0.18);
    border-radius: 8px;
    backdrop-filter: blur(12px);
}

.ll-hero-avatars img {
    width: 42px;
    height: 42px;
    margin-left: -15px;
    object-fit: cover;
    background: var(--ll-white);
    border: 2px solid rgba(34, 211, 238, 0.88);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    animation: ll-avatar-pulse 5.2s ease-in-out infinite;
}

.ll-hero-avatars img:first-child {
    margin-left: 0;
}

.ll-hero-avatars img:nth-child(2) {
    animation-delay: 0.7s;
}

.ll-hero-avatars span {
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

@keyframes ll-slide-content-in {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

@keyframes ll-avatar-pulse {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    }

    50% {
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(34, 211, 238, 0.22);
    }
}

.ll-page-hero {
    padding: 76px 0 62px;
}

.ll-hero__grid,
.ll-page-hero__grid,
.ll-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 56px;
    align-items: center;
}

.ll-eyebrow {
    margin: 0 0 14px;
    color: var(--ll-blue);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ll-navy);
    line-height: 1.14;
    letter-spacing: 0;
}

h1 {
    max-width: 820px;
    font-size: 54px;
    font-weight: 900;
}

.ll-hero-title span {
    display: block;
}

h2 {
    font-size: 34px;
    font-weight: 900;
}

h3 {
    font-size: 20px;
    font-weight: 900;
}

.ll-lede {
    max-width: 740px;
    margin: 22px 0 0;
    color: var(--ll-muted);
    font-size: 20px;
    line-height: 1.75;
}

.ll-lede span {
    display: inline;
}

.ll-meta-line {
    margin: 16px 0 0;
    color: var(--ll-muted);
    font-size: 15px;
    font-weight: 700;
}

.ll-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.ll-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.ll-quick-links a {
    position: relative;
    overflow: hidden;
    padding: 9px 12px;
    color: var(--ll-navy);
    background: var(--ll-white);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.ll-quick-links a:hover,
.ll-quick-links a:focus {
    color: var(--ll-blue);
    border-color: rgba(34, 211, 238, 0.62);
    transform: translateY(-2px);
}

.ll-hero-service-rail {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
    padding: 4px 0 10px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}

.ll-hero--slider .ll-hero-service-rail {
    z-index: 3;
    margin-top: auto;
}

.ll-hero-service-rail::-webkit-scrollbar {
    height: 6px;
}

.ll-hero-service-rail::-webkit-scrollbar-track {
    background: rgba(247, 251, 255, 0.08);
    border-radius: 999px;
}

.ll-hero-service-rail::-webkit-scrollbar-thumb {
    background: rgba(34, 211, 238, 0.54);
    border-radius: 999px;
}

.ll-hero-service-rail a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: clamp(130px, 12vw, 188px);
    min-height: 46px;
    color: rgba(255, 255, 255, 0.94);
    background:
        linear-gradient(135deg, rgba(10, 107, 255, 0.24), rgba(34, 211, 238, 0.08)),
        rgba(247, 251, 255, 0.1);
    border-color: rgba(247, 251, 255, 0.24);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
    scroll-snap-align: start;
    backdrop-filter: blur(14px);
}

.ll-hero-service-rail a::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 72%);
    transform: translateX(-120%);
    transition: transform 520ms ease;
}

.ll-hero-service-rail a span {
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.ll-hero-service-rail a:hover,
.ll-hero-service-rail a:focus {
    color: var(--ll-white);
    background:
        linear-gradient(135deg, rgba(10, 107, 255, 0.82), rgba(34, 211, 238, 0.42)),
        rgba(247, 251, 255, 0.14);
    border-color: rgba(34, 211, 238, 0.82);
}

.ll-hero-service-rail a:hover::before,
.ll-hero-service-rail a:focus::before {
    transform: translateX(120%);
}

.ll-hero__stage {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    min-width: 0;
}

.ll-hero--slider .ll-hero__stage {
    grid-column: auto;
    grid-row: auto;
}

.ll-hero--image .ll-hero__stage:not(.ll-hero-slider) {
    align-self: stretch;
    min-height: 540px;
}

.ll-hero__image-reference {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.ll-hero__copy {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
}

.ll-hero__grid > .ll-quick-links {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
}

.ll-founder-scene {
    position: relative;
    min-height: 560px;
    isolation: isolate;
}

.ll-founder-scene::before {
    position: absolute;
    inset: 7% 11% 5% 18%;
    z-index: -2;
    content: "";
    background:
        linear-gradient(90deg, rgba(10, 107, 255, 0.09) 1px, transparent 1px),
        linear-gradient(0deg, rgba(10, 107, 255, 0.07) 1px, transparent 1px),
        var(--ll-white);
    background-size: 34px 34px;
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    box-shadow: var(--ll-shadow);
}

.ll-founder-scene::after {
    position: absolute;
    right: 13%;
    bottom: 6%;
    left: 24%;
    z-index: -1;
    height: 18px;
    content: "";
    background: rgba(7, 22, 79, 0.12);
    border-radius: 8px;
}

.ll-founder-scene__image {
    display: flex;
    justify-content: center;
    min-height: 560px;
    padding: 6px 0 0;
}

.ll-founder-scene__image img {
    width: min(88%, 390px);
    height: auto;
    max-height: 590px;
    object-fit: contain;
    object-position: center bottom;
}

.ll-founder-panel {
    position: absolute;
    width: min(270px, 48%);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    box-shadow: 0 18px 42px rgba(7, 22, 79, 0.13);
}

.ll-founder-panel span {
    display: block;
    color: var(--ll-blue);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.ll-founder-panel strong {
    display: block;
    margin-top: 6px;
    color: var(--ll-navy);
    font-size: 15px;
    line-height: 1.5;
}

.ll-founder-panel--top {
    top: 32px;
    right: -6px;
    width: min(244px, 44%);
}

.ll-founder-panel--left {
    top: 210px;
    left: 0;
    width: min(270px, 48%);
}

.ll-founder-panel--right {
    right: -10px;
    bottom: 174px;
    width: min(270px, 48%);
}

.ll-founder-panel--bottom {
    bottom: 24px;
    left: 52px;
    width: min(270px, 48%);
}

.ll-dashboard,
.ll-visual,
.ll-brand-panel,
.ll-contact-card {
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    background: var(--ll-white);
    box-shadow: var(--ll-shadow);
}

.ll-dashboard {
    padding: 24px;
}

.ll-dashboard__head,
.ll-dashboard__metric,
.ll-visual__item,
.ll-lane-list div,
.ll-contact-band {
    border: 1px solid var(--ll-line);
    border-radius: 8px;
}

.ll-dashboard__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    color: var(--ll-white);
    background: var(--ll-midnight);
}

.ll-dashboard__head span {
    font-size: 14px;
    font-weight: 800;
}

.ll-dashboard__head strong {
    color: var(--ll-cyan);
    font-size: 13px;
}

.ll-dashboard__metric {
    margin-top: 14px;
    padding: 16px;
    background: var(--ll-ice);
}

.ll-dashboard__metric small {
    display: block;
    color: var(--ll-muted);
    font-size: 13px;
}

.ll-dashboard__metric strong {
    display: block;
    margin-top: 6px;
    color: var(--ll-navy);
    font-size: 17px;
    line-height: 1.45;
}

.ll-dashboard__metric--wide {
    background: var(--ll-soft);
}

.ll-dashboard__pipeline {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.ll-dashboard__pipeline span {
    display: block;
    height: 10px;
    background: var(--ll-sky);
    border-radius: 8px;
}

.ll-section {
    padding: 78px 0;
    background: var(--ll-white);
}

.ll-section--ice {
    background: var(--ll-ice);
}

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

.ll-section--dark h2,
.ll-section--dark p,
.ll-section--dark .ll-eyebrow {
    color: var(--ll-white);
}

.ll-section-heading {
    max-width: 800px;
    margin-bottom: 34px;
}

.ll-section-heading p:not(.ll-eyebrow) {
    margin: 14px 0 0;
    color: var(--ll-muted);
    font-size: 18px;
}

.ll-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.ll-card-grid--services {
    align-items: stretch;
}

.ll-service-card,
.ll-blog-card,
.ll-article-panel,
.ll-simple-card,
.ll-mini-panel,
.ll-timeline__item {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 22px;
    background:
        linear-gradient(180deg, rgba(247, 251, 255, 0.88), rgba(255, 255, 255, 0.98)),
        var(--ll-white);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(7, 22, 79, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ll-service-card::before,
.ll-blog-card::before,
.ll-article-panel::before,
.ll-simple-card::before,
.ll-mini-panel::before,
.ll-timeline__item::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, var(--ll-blue), var(--ll-cyan));
    opacity: 0.72;
}

.ll-service-card:hover,
.ll-service-card:focus-within,
.ll-blog-card:hover,
.ll-blog-card:focus-within,
.ll-article-panel:hover,
.ll-article-panel:focus-within,
.ll-simple-card:hover,
.ll-simple-card:focus-within,
.ll-mini-panel:hover,
.ll-mini-panel:focus-within,
.ll-timeline__item:hover,
.ll-timeline__item:focus-within {
    border-color: rgba(34, 211, 238, 0.72);
    box-shadow: 0 18px 42px rgba(7, 22, 79, 0.12);
    transform: translateY(-4px);
}

.ll-service-card {
    display: flex;
    flex-direction: column;
    min-height: 438px;
    padding-top: 16px;
}

.ll-service-card__media,
.ll-blog-card__thumb {
    position: relative;
    overflow: hidden;
    margin: -6px -6px 18px;
    background:
        radial-gradient(circle at 78% 22%, rgba(34, 211, 238, 0.24), transparent 32%),
        var(--ll-midnight);
    border: 1px solid rgba(10, 107, 255, 0.16);
    border-radius: 8px;
}

.ll-service-card__media {
    aspect-ratio: 16 / 8.5;
}

.ll-service-card__media img,
.ll-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 34% 28%;
    transform: scale(1.01);
    transition: transform 520ms ease, filter 520ms ease;
}

.ll-service-card:hover .ll-service-card__media img,
.ll-service-card:focus-within .ll-service-card__media img,
.ll-blog-card:hover .ll-blog-card__thumb img,
.ll-blog-card:focus-within .ll-blog-card__thumb img {
    filter: saturate(1.12) contrast(1.04);
    transform: scale(1.06);
}

.ll-service-card__media::after,
.ll-blog-card__thumb::after {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    content: "";
    background: linear-gradient(0deg, rgba(3, 7, 22, 0.72), transparent);
}

.ll-service-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.ll-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.ll-blog-card {
    display: flex;
    flex-direction: column;
    min-height: 430px;
    padding-top: 16px;
}

.ll-blog-card__thumb {
    aspect-ratio: 16 / 7.5;
}

.ll-blog-card__thumb .ll-visual-icon {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    background: rgba(247, 251, 255, 0.92);
    box-shadow: 0 12px 24px rgba(3, 7, 22, 0.16);
}

.ll-blog-card__meta,
.ll-article-meta,
.ll-keyword-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.ll-blog-card__meta span,
.ll-article-meta span,
.ll-keyword-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    color: var(--ll-blue);
    background: var(--ll-soft);
    border: 1px solid rgba(10, 107, 255, 0.12);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.ll-blog-card h3 {
    margin-top: 18px;
}

.ll-blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.ll-blog-card h3 a:hover,
.ll-blog-card h3 a:focus {
    color: var(--ll-blue);
}

.ll-keyword-row {
    margin-top: 18px;
}

.ll-keyword-row--large {
    margin-top: 22px;
}

.ll-article-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
    gap: 34px;
    align-items: center;
    max-width: none;
}

.ll-article-visual {
    overflow: hidden;
    margin: 0;
    background: var(--ll-midnight);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 8px;
    box-shadow: var(--ll-shadow);
}

.ll-article-visual img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: 34% 28%;
}

.ll-article-visual figcaption {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    color: var(--ll-white);
    background:
        linear-gradient(90deg, rgba(10, 107, 255, 0.24), rgba(34, 211, 238, 0.08)),
        var(--ll-midnight);
    font-weight: 900;
}

.ll-section-mini-icon {
    margin-bottom: 14px;
}

.ll-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 34px;
    align-items: start;
}

.ll-article-body {
    min-width: 0;
    padding-right: 20px;
}

.ll-article-body section + section {
    margin-top: 42px;
}

.ll-article-body h2 {
    font-size: 30px;
}

.ll-article-body p {
    margin: 14px 0 0;
    color: rgba(7, 22, 79, 0.82);
    font-size: 18px;
}

.ll-article-checklist ul {
    display: grid;
    gap: 12px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.ll-article-checklist li {
    position: relative;
    padding: 15px 18px 15px 44px;
    background: var(--ll-ice);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    font-weight: 800;
}

.ll-article-checklist li::before {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 13px;
    height: 13px;
    content: "";
    background: linear-gradient(135deg, var(--ll-blue), var(--ll-cyan));
    border-radius: 999px;
}

.ll-article-faq details {
    margin-top: 12px;
    padding: 16px 18px;
    background: var(--ll-white);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
}

.ll-article-faq summary {
    cursor: pointer;
    color: var(--ll-navy);
    font-weight: 900;
}

.ll-article-faq summary:hover,
.ll-article-faq summary:focus {
    color: var(--ll-blue);
}

.ll-article-aside {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 16px;
}

.ll-article-panel {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.ll-article-panel a:not(.ll-button) {
    display: block;
    padding: 12px 0;
    color: var(--ll-navy);
    border-top: 1px solid var(--ll-line);
    font-weight: 850;
    text-decoration: none;
}

.ll-article-panel a:not(.ll-button):hover,
.ll-article-panel a:not(.ll-button):focus {
    color: var(--ll-blue);
}

.ll-article-panel--cta {
    color: var(--ll-white);
    background:
        linear-gradient(135deg, rgba(10, 107, 255, 0.28), rgba(34, 211, 238, 0.12)),
        var(--ll-midnight);
    border-color: rgba(34, 211, 238, 0.28);
}

.ll-article-panel--cta .ll-eyebrow,
.ll-article-panel--cta h2 {
    color: var(--ll-white);
}

.ll-article-panel--cta p {
    margin: 0;
    color: rgba(247, 251, 255, 0.76);
}

.ll-service-card__index,
.ll-mini-panel > span,
.ll-timeline__item > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 30px;
    margin-bottom: 18px;
    color: var(--ll-blue);
    background: var(--ll-soft);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.ll-visual-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    overflow: hidden;
    color: var(--ll-blue);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 246, 255, 0.82)),
        var(--ll-soft);
    border: 1px solid rgba(10, 107, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(7, 22, 79, 0.08);
}

.ll-visual-icon::before,
.ll-visual-icon::after,
.ll-visual-icon span {
    position: absolute;
    content: "";
    border-radius: 999px;
}

.ll-visual-icon::before {
    inset: 9px;
    border: 2px solid currentColor;
    opacity: 0.92;
}

.ll-visual-icon::after {
    width: 18px;
    height: 4px;
    background: linear-gradient(90deg, var(--ll-blue), var(--ll-cyan));
    transform: rotate(-36deg);
}

.ll-visual-icon span {
    right: 8px;
    top: 8px;
    width: 7px;
    height: 7px;
    background: var(--ll-cyan);
    box-shadow: -16px 13px 0 rgba(19, 151, 255, 0.56);
}

.ll-visual-icon--lead-generation,
.ll-visual-icon--paid-growth,
.ll-visual-icon--social-media-automation,
.ll-visual-icon--video-production,
.ll-visual-icon--ai-image-visuals {
    color: #7c3aed;
}

.ll-visual-icon--hosting-care,
.ll-visual-icon--support-workflows,
.ll-visual-icon--training-handover,
.ll-visual-icon--china-export-ops,
.ll-visual-icon--trust,
.ll-visual-icon--privacy,
.ll-visual-icon--terms {
    color: var(--ll-green);
}

.ll-visual-icon--website-catalog,
.ll-visual-icon--b2b-catalog-inquiry,
.ll-visual-icon--saas-software {
    color: var(--ll-sky);
}

.ll-visual-icon--ai-automation,
.ll-visual-icon--integrations-automation,
.ll-visual-icon--business-systems,
.ll-visual-icon--crm-dashboard {
    color: var(--ll-blue);
}

.ll-visual-icon--ecommerce,
.ll-visual-icon--china-sourcing-intelligence,
.ll-visual-icon--seo-content {
    color: #0f9f9b;
}

.ll-service-card__top .ll-service-card__index,
.ll-simple-card > .ll-visual-icon {
    margin-bottom: 0;
}

.ll-simple-card > .ll-visual-icon {
    margin-bottom: 16px;
}

.ll-service-card p,
.ll-blog-card p,
.ll-simple-card p,
.ll-mini-panel p,
.ll-timeline__item p,
.ll-copy-block p {
    margin: 12px 0 0;
    color: var(--ll-muted);
}

.ll-card-link,
.ll-service-card a {
    position: relative;
    width: fit-content;
    margin-top: auto;
    padding-top: 18px;
    color: var(--ll-blue);
    font-weight: 900;
    text-decoration: none;
}

.ll-card-link::after,
.ll-service-card a::after {
    display: inline-block;
    margin-left: 8px;
    content: ">";
    transform: translateX(0);
    transition: transform 160ms ease;
}

.ll-card-link:hover::after,
.ll-card-link:focus::after,
.ll-service-card a:hover::after,
.ll-service-card a:focus::after {
    transform: translateX(4px);
}

.ll-mini-panels {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.ll-mini-panel {
    min-height: 206px;
}

.ll-mini-panel h3 {
    font-size: 17px;
}

.ll-visual {
    padding: 22px;
}

.ll-service-stage {
    overflow: hidden;
    min-width: 0;
    background: var(--ll-white);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    box-shadow: var(--ll-shadow);
}

.ll-service-stage__image {
    aspect-ratio: 16 / 9;
    background: var(--ll-midnight);
}

.ll-service-stage__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 31% 24%;
}

.ll-service-stage__body {
    padding: 22px;
}

.ll-service-stage__label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    color: var(--ll-blue);
    background: var(--ll-soft);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.ll-service-stage__body h2 {
    margin-top: 12px;
    font-size: 24px;
}

.ll-service-stage__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.ll-service-stage__metrics div {
    display: grid;
    gap: 4px;
    min-height: 72px;
    padding: 12px;
    background: var(--ll-ice);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
}

.ll-service-stage__metrics small {
    color: var(--ll-blue);
    font-size: 12px;
    font-weight: 900;
}

.ll-service-stage__metrics strong {
    align-self: end;
    color: var(--ll-navy);
    font-size: 14px;
    line-height: 1.35;
}

.ll-visual__bar {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}

.ll-visual__bar span {
    width: 10px;
    height: 10px;
    background: var(--ll-line);
    border-radius: 999px;
}

.ll-visual__bar span:nth-child(2) {
    background: var(--ll-sky);
}

.ll-visual__bar span:nth-child(3) {
    background: var(--ll-cyan);
}

.ll-visual__title {
    margin-bottom: 18px;
    color: var(--ll-navy);
    font-size: 18px;
    font-weight: 900;
}

.ll-visual__grid {
    display: grid;
    gap: 10px;
}

.ll-visual__item {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    gap: 10px;
    align-items: center;
    min-height: 54px;
    padding: 12px;
    background: var(--ll-ice);
}

.ll-visual__dot {
    width: 10px;
    height: 10px;
    background: var(--ll-blue);
    border-radius: 999px;
}

.ll-visual__item strong {
    font-size: 15px;
}

.ll-visual__item small {
    color: var(--ll-muted);
    font-weight: 900;
}

.ll-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.ll-check-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 74px;
    padding: 18px;
    color: var(--ll-navy);
    background: var(--ll-ice);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    font-weight: 800;
}

.ll-check-item span {
    min-width: 0;
}

.ll-rich-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ll-rich-list li {
    padding: 16px 18px;
    color: var(--ll-navy);
    background: var(--ll-white);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    font-weight: 700;
    transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.ll-rich-list li:hover {
    border-color: rgba(34, 211, 238, 0.64);
    box-shadow: 0 10px 24px rgba(7, 22, 79, 0.08);
    transform: translateY(-2px);
}

.ll-contact-band {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px;
    background: var(--ll-white);
}

.ll-contact-band > * {
    position: relative;
    z-index: 1;
}

.ll-contact-band__avatar {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex: 0 0 94px;
    width: 94px;
    height: 94px;
    overflow: hidden;
    background:
        radial-gradient(circle at 58% 18%, rgba(34, 211, 238, 0.3), transparent 46%),
        rgba(247, 251, 255, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.34);
    border-radius: 8px;
}

.ll-contact-band__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.ll-section--dark .ll-contact-band {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.ll-contact-band p {
    max-width: 680px;
    margin: 12px 0 0;
    color: var(--ll-muted);
}

.ll-section--dark .ll-contact-band p {
    color: rgba(255, 255, 255, 0.74);
}

.ll-lane-list {
    display: grid;
    gap: 14px;
}

.ll-lane-list div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    align-items: center;
    padding: 18px;
    background: var(--ll-ice);
}

.ll-lane-list strong {
    color: var(--ll-blue);
    font-size: 20px;
}

.ll-lane-list span {
    color: var(--ll-muted);
    font-weight: 700;
}

.ll-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.ll-service-process {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    counter-reset: service-process;
}

.ll-process-card {
    position: relative;
    min-width: 0;
    min-height: 250px;
    padding: 22px;
    background: var(--ll-white);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(7, 22, 79, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ll-process-card::before {
    position: absolute;
    top: 36px;
    right: -15px;
    width: 16px;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, var(--ll-blue), var(--ll-cyan));
}

.ll-process-card:last-child::before {
    display: none;
}

.ll-process-card:hover,
.ll-process-card:focus-within {
    border-color: rgba(34, 211, 238, 0.72);
    box-shadow: 0 18px 42px rgba(7, 22, 79, 0.12);
    transform: translateY(-4px);
}

.ll-process-card__head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 34px;
    margin-bottom: 18px;
    color: var(--ll-white);
    background: linear-gradient(135deg, var(--ll-blue), var(--ll-cyan));
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.ll-process-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.ll-process-card__head span {
    margin-bottom: 0;
}

.ll-process-card p {
    margin: 12px 0 0;
    color: var(--ll-muted);
}

.ll-delivery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
    gap: 24px;
    align-items: stretch;
}

.ll-deliverable-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.ll-deliverable-list li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 62px;
    padding: 16px 18px;
    color: var(--ll-navy);
    background: var(--ll-white);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    font-weight: 800;
}

.ll-deliverable-list li::before {
    display: none;
}

.ll-proof-panel {
    min-width: 0;
    padding: 26px;
    color: var(--ll-white);
    background:
        linear-gradient(135deg, rgba(10, 107, 255, 0.26), rgba(34, 211, 238, 0.12)),
        var(--ll-midnight);
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 8px;
    box-shadow: var(--ll-shadow);
}

.ll-proof-panel .ll-eyebrow,
.ll-proof-panel h2 {
    color: var(--ll-white);
}

.ll-proof-panel p {
    margin: 14px 0 0;
    color: rgba(247, 251, 255, 0.78);
}

.ll-proof-list {
    display: grid;
    gap: 10px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.ll-proof-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 10px;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    color: rgba(247, 251, 255, 0.92);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    font-weight: 800;
}

.ll-proof-list li small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 28px;
    color: var(--ll-cyan);
    background: rgba(34, 211, 238, 0.1);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.ll-brand-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 30px;
    background: var(--ll-white);
}

.ll-brand-panel img {
    max-height: 340px;
    object-fit: contain;
}

.ll-info-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0;
}

.ll-info-list div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--ll-line);
}

.ll-info-list dt {
    color: var(--ll-muted);
    font-weight: 800;
}

.ll-info-list dd {
    margin: 0;
    color: var(--ll-navy);
    font-weight: 800;
}

.ll-faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
}

.ll-faq-list details {
    position: relative;
    padding: 18px 20px;
    background: var(--ll-white);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ll-faq-list details[open],
.ll-faq-list details:hover {
    border-color: rgba(34, 211, 238, 0.64);
    box-shadow: 0 14px 32px rgba(7, 22, 79, 0.08);
    transform: translateY(-2px);
}

.ll-faq-list summary {
    color: var(--ll-navy);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
}

.ll-faq-list p {
    margin: 12px 0 0;
    color: var(--ll-muted);
}

.ll-contact-card {
    display: grid;
    gap: 14px;
    padding: 26px;
}

.ll-contact-card div {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    align-items: center;
    padding: 14px;
    background: var(--ll-ice);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
}

.ll-contact-card p {
    margin: 0;
    color: var(--ll-muted);
    font-size: 14px;
    font-weight: 800;
}

.ll-contact-card strong {
    display: block;
    grid-column: 2;
    color: var(--ll-navy);
    font-size: 20px;
}

.ll-form-wrap {
    max-width: 920px;
}

.ll-form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 28px;
    background: var(--ll-white);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    box-shadow: var(--ll-shadow);
}

.ll-form label {
    display: grid;
    gap: 8px;
    min-width: 0;
    color: var(--ll-navy);
    font-weight: 900;
}

.ll-form span {
    font-size: 14px;
}

.ll-form input,
.ll-form select,
.ll-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 12px;
    color: var(--ll-navy);
    background: var(--ll-ice);
    border: 1px solid var(--ll-line);
    border-radius: 8px;
    font: inherit;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ll-form input:focus,
.ll-form select:focus,
.ll-form textarea:focus {
    background: var(--ll-white);
    border-color: rgba(34, 211, 238, 0.72);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.ll-form textarea {
    min-height: 138px;
    resize: vertical;
}

.ll-form__wide,
.ll-form__notice,
.ll-form button {
    grid-column: 1 / -1;
}

.ll-form__notice {
    padding: 12px 14px;
    color: var(--ll-navy);
    background: #fff7e8;
    border: 1px solid #f1d19b;
    border-radius: 8px;
    font-weight: 800;
}

.ll-form__notice--success {
    color: #07553b;
    background: #e9fff5;
    border-color: #a9e6cd;
}

.ll-form__assistive-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.ll-form__consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    font-weight: 700;
}

.ll-form__consent input {
    width: 18px;
    min-height: 18px;
    margin-top: 3px;
    padding: 0;
}

.ll-form__consent a {
    color: var(--ll-electric);
    font-weight: 900;
}

.ll-form button {
    justify-self: start;
}

.ll-copy-block {
    max-width: 860px;
}

.ll-copy-block h2 {
    margin-top: 28px;
    font-size: 26px;
}

.ll-copy-block h2:first-child {
    margin-top: 0;
}

.ll-footer {
    color: rgba(255, 255, 255, 0.82);
    background:
        radial-gradient(circle at 18% 0%, rgba(43, 139, 255, 0.18), rgba(43, 139, 255, 0) 34%),
        linear-gradient(180deg, #07164f 0%, #04102f 100%);
}

.ll-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1.25fr;
    gap: 34px;
    padding: 58px 0 38px;
}

.ll-footer__logo-link {
    display: inline-flex;
    width: fit-content;
    margin: 0;
}

.ll-footer__logo {
    width: 190px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.98;
}

.ll-footer__brand p {
    max-width: 330px;
    margin-top: 18px;
}

.ll-footer__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.ll-footer__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.ll-footer h2 {
    margin-bottom: 14px;
    color: var(--ll-white);
    font-size: 16px;
}

.ll-footer p,
.ll-footer a {
    display: block;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    text-decoration: none;
}

.ll-footer .ll-footer__logo-link {
    display: inline-flex;
    width: fit-content;
    margin: 0;
}

.ll-footer a:hover {
    color: var(--ll-white);
}

.ll-footer a:not(.ll-footer__logo-link):hover {
    text-decoration: underline;
    text-decoration-color: var(--ll-cyan);
    text-underline-offset: 4px;
}

.ll-footer__company-name {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

.ll-footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
}

.ll-footer__bottom-main,
.ll-footer__bottom-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    align-items: center;
}

.ll-footer__bottom-main {
    min-width: min(100%, 520px);
}

.ll-footer__bottom nav,
.ll-footer__language,
.ll-footer__filings {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
}

.ll-footer__language a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
}

.ll-footer__language a.is-active {
    color: var(--ll-white);
    background: rgba(255, 255, 255, 0.12);
}

.ll-footer__filing-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 32px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.ll-footer__filings {
    align-items: center;
}

.ll-footer__filings-label {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    font-weight: 800;
}

.ll-footer__filing-icon {
    width: 46px;
    height: 16px;
    object-fit: contain;
    flex: 0 0 auto;
}

.ll-reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 420ms ease, transform 420ms ease;
    transition-delay: var(--ll-reveal-delay, 0ms);
}

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

@media (max-width: 1080px) {
    .ll-header__inner {
        grid-template-columns: 178px minmax(0, 1fr) 44px;
        gap: 12px;
    }

    .ll-nav-toggle {
        display: block;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .ll-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px;
        background: var(--ll-white);
        border: 1px solid var(--ll-line);
        border-radius: 8px;
        box-shadow: var(--ll-shadow);
    }

    .ll-nav.is-open {
        display: flex;
    }

    .ll-nav a {
        width: 100%;
        padding: 12px;
    }

    .ll-header__actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .ll-language-switch--header {
        display: inline-flex;
        position: relative;
        z-index: 2;
    }

    .ll-header__actions .ll-header__cta {
        display: none;
    }

    .ll-card-grid,
    .ll-blog-grid,
    .ll-mini-panels,
    .ll-service-process,
    .ll-deliverable-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ll-process-card::before {
        display: none;
    }

    .ll-timeline,
    .ll-delivery-grid,
    .ll-article-hero,
    .ll-article-layout {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ll-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .ll-container {
        width: calc(100% - 28px);
        max-width: 1180px;
    }

    .ll-hero,
    .ll-page-hero,
    .ll-section {
        padding: 54px 0;
    }

    .ll-hero--image {
        --ll-hero-stage-position: 82% 8%;
        --ll-hero-stage-size: cover;
        padding: 46px 0 48px;
        background: var(--ll-midnight);
    }

    .ll-hero--image .ll-hero__grid {
        min-height: 0;
    }

    .ll-hero__grid,
    .ll-page-hero__grid,
    .ll-two-col {
        grid-template-columns: 1fr;
        gap: 32px;
        justify-items: stretch;
    }

    .ll-hero__copy,
    .ll-hero__stage,
    .ll-hero__grid > .ll-quick-links {
        grid-column: auto;
        grid-row: auto;
        align-self: auto;
    }

    .ll-hero--image .ll-hero__stage {
        min-height: 360px;
        background:
            linear-gradient(90deg, rgba(3, 7, 22, 0.18), rgba(3, 7, 22, 0)),
            var(--ll-hero-image) var(--ll-hero-stage-position) / var(--ll-hero-stage-size) no-repeat;
        border: 1px solid rgba(247, 251, 255, 0.16);
        border-radius: 8px;
        box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
    }

    .ll-hero--slider .ll-hero__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .ll-hero--slider .ll-hero-slider {
        min-height: 0;
        aspect-ratio: 16 / 9;
        background: rgba(3, 7, 22, 0.9);
    }

    .ll-hero-slider__controls {
        top: auto;
        right: 14px;
        bottom: 14px;
    }

    .ll-founder-scene {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        min-height: 0;
        padding: 18px;
        background: var(--ll-white);
        border: 1px solid var(--ll-line);
        border-radius: 8px;
        box-shadow: var(--ll-shadow);
    }

    .ll-founder-scene::before,
    .ll-founder-scene::after {
        display: none;
    }

    .ll-founder-scene__image {
        grid-column: 1 / -1;
        min-height: 420px;
        padding: 0;
    }

    .ll-founder-scene__image img {
        width: min(72%, 340px);
        max-height: 430px;
    }

    .ll-founder-panel {
        position: static;
        width: auto;
        box-shadow: none;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 28px;
    }

    .ll-lede {
        font-size: 17px;
    }

    .ll-check-grid,
    .ll-form,
    .ll-card-grid,
    .ll-blog-grid,
    .ll-mini-panels,
    .ll-timeline,
    .ll-service-process,
    .ll-delivery-grid,
    .ll-article-hero,
    .ll-article-layout,
    .ll-deliverable-list,
    .ll-footer__grid {
        grid-template-columns: 1fr;
    }

    .ll-article-body {
        padding-right: 0;
    }

    .ll-article-aside {
        position: static;
    }

    .ll-service-stage__metrics {
        grid-template-columns: 1fr;
    }

    .ll-process-card {
        min-height: 0;
    }

    .ll-process-card::before {
        display: block;
        top: auto;
        right: auto;
        bottom: -15px;
        left: 32px;
        width: 2px;
        height: 16px;
    }

    .ll-contact-band,
    .ll-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .ll-contact-band__avatar {
        order: -1;
    }

    .ll-lane-list div,
    .ll-info-list div {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 520px) {
    .ll-container {
        width: calc(100% - 32px);
    }

    .ll-header__inner {
        grid-template-columns: 128px minmax(84px, 1fr) 44px;
        gap: 8px;
        min-height: 68px;
    }

    .ll-logo img {
        max-width: 128px;
        height: 52px;
    }

    .ll-logo {
        width: 128px;
        height: 52px;
    }

    .ll-language-switch {
        padding: 2px;
    }

    .ll-language-switch a {
        min-width: 40px;
        min-height: 32px;
        padding: 6px 7px;
        font-size: 12px;
    }

    .ll-nav {
        top: 68px;
    }

    .ll-hero {
        padding: 34px 0 42px;
    }

    .ll-hero--image {
        --ll-hero-stage-position: 100% 8%;
        --ll-hero-stage-size: auto 148%;
        padding: 34px 0 38px;
        background: var(--ll-midnight);
    }

    .ll-hero__grid {
        justify-items: start;
        overflow: hidden;
    }

    .ll-hero__copy,
    .ll-hero__stage,
    .ll-hero__grid > .ll-quick-links {
        width: calc(100vw - 32px);
        max-width: calc(100vw - 32px);
    }

    h1 {
        font-size: 29px;
        line-height: 1.2;
    }

    .ll-lede {
        font-size: 16px;
        line-height: 1.72;
    }

    .ll-lede span {
        display: block;
    }

    .ll-header__cta {
        width: 100%;
    }

    .ll-button-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
        width: min(100%, 342px);
        max-width: 100%;
        min-width: 0;
    }

    .ll-button-row .ll-button {
        width: auto;
        min-width: 0;
        min-height: 44px;
        padding: 10px 8px;
        font-size: 14px;
        text-align: center;
    }

    .ll-quick-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        width: min(100%, 342px);
        max-width: 100%;
        min-width: 0;
        margin-top: 0;
    }

    .ll-quick-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        min-width: 0;
        min-height: 44px;
        padding: 9px 8px;
        font-size: 13px;
        line-height: 1.25;
        text-align: center;
    }

    .ll-dashboard,
    .ll-visual,
    .ll-founder-scene,
    .ll-form,
    .ll-contact-band,
    .ll-service-card,
    .ll-mini-panel,
    .ll-simple-card {
        padding: 18px;
    }

    .ll-founder-scene {
        grid-template-columns: 1fr;
        width: min(100%, 342px);
        max-width: 100%;
    }

    .ll-founder-scene__image {
        min-height: 320px;
    }

    .ll-founder-scene__image img {
        width: min(82%, 285px);
        max-height: 330px;
    }

    .ll-hero--image .ll-hero__stage {
        min-height: clamp(300px, 76vw, 390px);
    }

    .ll-hero--slider .ll-hero-slider {
        aspect-ratio: 16 / 9;
        min-height: 0;
    }

    .ll-hero-slide__actions {
        top: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        gap: 7px;
    }

    .ll-slide-button {
        min-height: 32px;
        padding: 7px 9px;
        font-size: 11px;
    }

    .ll-hero-slider__controls {
        right: auto;
        bottom: 10px;
        left: 10px;
        gap: 5px;
        padding: 5px;
    }

    .ll-hero-slider__arrow {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .ll-hero-slider__dot {
        width: 8px;
        height: 8px;
    }

    .ll-hero-slider__dot.is-active {
        width: 18px;
    }

    .ll-service-stage__image {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 680px) {
    .ll-hero--slider {
        position: relative;
        min-height: max(760px, calc(100svh - 68px));
        padding: 0;
        background: var(--ll-midnight);
        isolation: isolate;
    }

    .ll-hero--slider::after {
        position: absolute;
        inset: 0;
        z-index: 1;
        content: "";
        background:
            linear-gradient(180deg, rgba(3, 7, 22, 0.82) 0%, rgba(3, 7, 22, 0.7) 34%, rgba(3, 7, 22, 0.34) 62%, rgba(3, 7, 22, 0.9) 100%),
            linear-gradient(90deg, rgba(3, 7, 22, 0.74) 0%, rgba(3, 7, 22, 0.28) 62%, rgba(3, 7, 22, 0.12) 100%);
        pointer-events: none;
    }

    .ll-hero--slider .ll-container {
        position: static;
        z-index: auto;
        width: calc(100% - 28px);
    }

    .ll-hero--slider .ll-hero__grid {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: inherit;
        gap: 22px;
        padding: 32px 0;
        overflow: visible;
    }

    .ll-hero--slider .ll-hero__copy,
    .ll-hero--slider .ll-hero__grid > .ll-quick-links {
        position: relative;
        z-index: 3;
        width: 100%;
        max-width: 100%;
    }

    .ll-hero--slider .ll-hero-slider {
        position: absolute;
        inset: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        min-height: 100%;
        aspect-ratio: auto;
        background: var(--ll-midnight);
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .ll-hero--slider .ll-hero-slide img {
        object-fit: cover;
        object-position: 70% center;
    }

    .ll-hero--slider .ll-hero-slide__shade {
        background: linear-gradient(180deg, rgba(3, 7, 22, 0.64), rgba(3, 7, 22, 0.08) 52%, rgba(3, 7, 22, 0.78));
    }

    .ll-hero--slider .ll-hero-slide__content {
        right: 14px;
        bottom: 142px;
        left: 14px;
        width: auto;
        max-width: none;
        padding: 12px;
    }

    .ll-hero--slider .ll-hero-slide__content p {
        font-size: 10px;
    }

    .ll-hero--slider .ll-hero-slide__content h2 {
        margin-top: 5px;
        font-size: 14px;
        line-height: 1.2;
    }

    .ll-hero--slider .ll-hero-slide__actions {
        margin-top: 9px;
        gap: 8px;
    }

    .ll-hero--slider .ll-hero-slide__actions .ll-button {
        min-height: 34px;
        padding: 8px 10px;
        font-size: 12px;
    }

    .ll-hero--slider .ll-hero-slider__controls {
        top: auto;
        right: auto;
        bottom: 96px;
        left: 14px;
        z-index: 4;
        background: rgba(3, 7, 22, 0.58);
    }

    .ll-hero--slider .ll-button-row {
        width: min(100%, 330px);
    }

    .ll-hero-avatars {
        width: 100%;
        margin-top: 16px;
        backdrop-filter: none;
    }

    .ll-hero-avatars img {
        animation: none;
    }

    .ll-hero-avatars span {
        font-size: 12px;
    }

    .ll-quick-links.ll-hero-service-rail {
        display: flex;
        grid-template-columns: none;
        flex-wrap: nowrap;
        width: 100%;
        max-width: 100%;
        margin-top: auto;
        padding: 8px 0 10px;
        gap: 9px;
    }

    .ll-quick-links.ll-hero-service-rail a {
        width: auto;
        min-width: 128px;
        max-width: none;
        min-height: 42px;
        padding: 9px 11px;
        font-size: 12px;
        background: rgba(3, 7, 22, 0.62);
        border-color: rgba(247, 251, 255, 0.24);
        backdrop-filter: none;
    }

    .ll-quick-links.ll-hero-service-rail a::before {
        display: none;
    }

    .ll-hero--slider .ll-hero-slide__content,
    .ll-hero--slider .ll-hero-slider__controls,
    .ll-operator-visual figcaption {
        backdrop-filter: none;
    }
}

/* Dynamic service directory and focused landing pages. */
.ll-directory-hero,
.ll-cluster-hero {
    padding: 158px 0 88px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 30%, rgba(21, 127, 255, 0.26), transparent 28%),
        linear-gradient(130deg, #020817, #061a3b);
    border-bottom: 1px solid rgba(94, 171, 255, 0.16);
}

.ll-directory-hero__grid,
.ll-cluster-hero__grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    align-items: center;
    min-height: 470px;
    gap: clamp(50px, 8vw, 120px);
}

.ll-directory-hero h1,
.ll-cluster-hero h1 {
    max-width: 900px;
    margin: 10px 0 24px;
    color: #fff;
    font-size: clamp(46px, 5.8vw, 78px);
    letter-spacing: -0.045em;
    line-height: 1.03;
}

.ll-directory-hero .ll-lede,
.ll-cluster-hero .ll-lede {
    max-width: 840px;
    color: rgba(226, 238, 252, 0.8);
    font-size: 19px;
}

.ll-directory-hero__note {
    max-width: 760px;
    color: #69d6ff;
    font-size: 14px;
}

.ll-directory-hero__grid > img {
    justify-self: center;
    width: 250px;
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.42));
}

.ll-service-directory,
html[data-ll-theme="dark"] .ll-service-directory,
.ll-section--cluster-list,
html[data-ll-theme="dark"] .ll-section--cluster-list,
.ll-section--work-page,
html[data-ll-theme="dark"] .ll-section--work-page,
.ll-section--partner-steps,
html[data-ll-theme="dark"] .ll-section--partner-steps {
    padding: 90px 0 120px;
    color: var(--ll-universe-ink);
    background: #f7fbff;
}

.ll-service-directory__tools {
    position: sticky;
    top: 18px;
    z-index: 12;
    padding: 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #dbe8f8;
    border-radius: 22px;
    box-shadow: 0 16px 42px rgba(7, 32, 79, 0.11);
    backdrop-filter: blur(18px);
}

.ll-service-search {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    min-height: 62px;
    padding: 0 20px;
    color: #086cff;
    background: #f1f7ff;
    border: 1px solid #cfe2fa;
    border-radius: 16px;
    gap: 12px;
}

.ll-service-search i {
    font-size: 24px;
}

.ll-service-search input,
html[data-ll-theme="dark"] .ll-service-search input {
    min-width: 0;
    width: 100%;
    padding: 12px 0;
    color: var(--ll-universe-ink);
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 17px;
}

.ll-service-filters {
    display: flex;
    flex-wrap: wrap;
    margin-top: 14px;
    gap: 8px;
}

.ll-service-filters button {
    min-height: 38px;
    padding: 8px 12px;
    color: #47607e;
    background: #fff;
    border: 1px solid #d5e3f3;
    border-radius: 999px;
    font: inherit;
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
}

.ll-service-filters button span {
    margin-left: 4px;
    color: #086cff;
}

.ll-service-filters button.is-active {
    color: #fff;
    background: #086cff;
    border-color: #086cff;
}

.ll-service-filters button.is-active span {
    color: #fff;
}

.ll-service-directory__status {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    gap: 5px;
    color: #61728d;
    font-size: 12px;
}

.ll-service-directory__status strong {
    color: #086cff;
}

.ll-service-directory__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 26px;
    gap: 16px;
}

.ll-service-item {
    min-height: 250px;
    padding: 26px;
    color: var(--ll-universe-ink);
    background: #fff;
    border: 1px solid #dce8f6;
    border-radius: 19px;
    box-shadow: 0 12px 30px rgba(10, 42, 90, 0.05);
}

.ll-service-item[hidden] {
    display: none;
}

.ll-service-item > span {
    color: #0871f9;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ll-service-item h2 {
    margin: 11px 0 12px;
    color: var(--ll-universe-ink);
    font-size: 21px;
    line-height: 1.22;
}

.ll-service-item p {
    color: #61728d;
    font-size: 14px;
    line-height: 1.6;
}

.ll-service-item a {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    gap: 8px;
    color: #086cff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.ll-service-directory__empty {
    padding: 70px 20px;
    text-align: center;
}

.ll-service-directory__empty > i {
    color: #086cff;
    font-size: 56px;
}

.ll-service-directory__empty h2 {
    color: var(--ll-universe-ink);
}

.ll-service-directory__empty p {
    color: #61728d;
}

.ll-cluster-hero__visual {
    position: relative;
    display: grid;
    place-items: end center;
    min-height: 470px;
}

.ll-cluster-hero__visual > i {
    position: absolute;
    top: 30px;
    right: 10px;
    display: grid;
    place-items: center;
    width: 150px;
    height: 150px;
    color: #71dcff;
    background: rgba(7, 75, 173, 0.28);
    border: 1px solid rgba(86, 195, 255, 0.36);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(0, 113, 255, 0.22);
    font-size: 72px;
}

.ll-cluster-hero__visual img {
    position: relative;
    z-index: 2;
    width: 270px;
    max-height: 460px;
    object-fit: contain;
    filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.4));
}

.ll-cluster-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
    gap: 16px;
}

.ll-cluster-service-grid article {
    padding: 27px;
    color: var(--ll-universe-ink);
    background: #fff;
    border: 1px solid #dbe8f7;
    border-radius: 18px;
}

.ll-cluster-service-grid article > i {
    color: #086cff;
    font-size: 29px;
}

.ll-cluster-service-grid h3 {
    margin: 16px 0 10px;
    color: var(--ll-universe-ink);
    font-size: 20px;
}

.ll-cluster-service-grid p {
    color: #62728e;
    font-size: 14px;
}

.ll-cluster-service-grid a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #086cff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.ll-center-action {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.ll-work-case {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #061a3b, #0a438e);
    border-radius: 26px;
}

.ll-work-case + .ll-work-case {
    margin-top: 22px;
}

.ll-work-case--owned {
    background: #072b63;
}

.ll-work-case > div,
.ll-work-case > ul {
    padding: clamp(34px, 6vw, 72px);
}

.ll-work-case > div > span {
    color: #5bd6ff;
    font-weight: 800;
}

.ll-work-case h2 {
    margin: 8px 0 16px;
    color: #fff;
    font-size: clamp(42px, 5vw, 66px);
}

.ll-work-case p {
    color: rgba(232, 242, 255, 0.8);
}

.ll-work-case ul {
    display: grid;
    margin: 0;
    list-style: none;
    background: rgba(0, 0, 0, 0.16);
    border-left: 1px solid rgba(100, 186, 255, 0.24);
    gap: 12px;
}

.ll-work-case li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ll-work-case li i {
    color: #58d4ff;
    font-size: 24px;
}

.ll-section--greta {
    background: #f3f8ff;
}

.ll-portfolio-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 34px;
    gap: 18px;
}

.ll-portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.ll-portfolio-filters button {
    min-height: 42px;
    padding: 9px 15px;
    color: #38516f;
    background: #fff;
    border: 1px solid #cfdef0;
    border-radius: 12px;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.ll-portfolio-filters button:hover,
.ll-portfolio-filters button:focus-visible {
    color: #086cff;
    border-color: #086cff;
}

.ll-portfolio-filters button.is-active {
    color: #fff;
    background: #086cff;
    border-color: #086cff;
}

.ll-portfolio-status {
    margin: 0;
    color: #61728d;
    font-size: 13px;
    white-space: nowrap;
}

.ll-portfolio-status strong {
    color: #086cff;
}

.ll-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
    gap: 14px;
}

.ll-portfolio-card {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 210px;
    padding: 22px;
    background: #fff;
    border: 1px solid #d9e7f7;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(10, 42, 90, 0.05);
    gap: 14px;
}

.ll-portfolio-card[hidden] {
    display: none;
}

.ll-portfolio-card__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #086cff;
    background: #eaf3ff;
    border-radius: 15px;
    font-size: 25px;
}

.ll-portfolio-card span {
    color: #086cff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.ll-portfolio-card h3 {
    margin: 7px 0 8px;
    color: var(--ll-universe-ink);
    font-size: 20px;
    line-height: 1.2;
}

.ll-portfolio-card p {
    margin: 0;
    color: #61728d;
    font-size: 13px;
    line-height: 1.5;
}

.ll-portfolio-card > a {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    align-self: end;
    width: fit-content;
    gap: 7px;
    color: #086cff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.ll-portfolio-card > a:hover,
.ll-portfolio-card > a:focus-visible {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .ll-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .ll-portfolio-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .ll-portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.ll-partner-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 48px 0 0;
    padding: 0;
    list-style: none;
    gap: 14px;
}

.ll-partner-steps li {
    min-height: 230px;
    padding: 28px;
    background: #fff;
    border: 1px solid #dbe8f7;
    border-radius: 19px;
}

.ll-partner-steps span {
    color: #086cff;
    font-size: 12px;
    font-weight: 900;
}

.ll-partner-steps i {
    display: block;
    margin: 30px 0 20px;
    color: #086cff;
    font-size: 40px;
}

.ll-partner-steps h3 {
    color: var(--ll-universe-ink);
    font-size: 18px;
}

@media (max-width: 980px) {
    .ll-directory-hero,
    .ll-cluster-hero {
        padding-top: 126px;
    }

    .ll-directory-hero__grid,
    .ll-cluster-hero__grid,
    .ll-work-case {
        grid-template-columns: 1fr;
    }

    .ll-directory-hero__grid > img {
        width: 200px;
        max-height: 320px;
    }

    .ll-service-directory__grid,
    .ll-cluster-service-grid,
    .ll-partner-steps {
        grid-template-columns: 1fr 1fr;
    }

    .ll-work-case > ul {
        border-top: 1px solid rgba(100, 186, 255, 0.24);
        border-left: 0;
    }
}

@media (max-width: 680px) {
    .ll-directory-hero,
    .ll-cluster-hero {
        padding: 104px 0 68px;
    }

    .ll-directory-hero h1,
    .ll-cluster-hero h1 {
        font-size: 42px;
    }

    .ll-service-directory,
    .ll-section--cluster-list,
    .ll-section--work-page,
    .ll-section--partner-steps {
        padding: 60px 0 80px;
    }

    .ll-service-directory__tools {
        position: static;
    }

    .ll-service-directory__grid,
    .ll-cluster-service-grid,
    .ll-partner-steps {
        grid-template-columns: 1fr;
    }

    .ll-service-filters {
        flex-wrap: nowrap;
        padding-bottom: 8px;
        overflow-x: auto;
    }

    .ll-service-filters button {
        flex: 0 0 auto;
    }

    .ll-cluster-hero__visual {
        min-height: 340px;
    }

    .ll-cluster-hero__visual img {
        width: 210px;
        max-height: 340px;
    }

    .ll-work-case > div,
    .ll-work-case > ul {
        padding: 30px;
    }
}

.ll-theme-switch {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    background: rgba(10, 107, 255, 0.08);
    border: 1px solid rgba(10, 107, 255, 0.18);
    border-radius: 8px;
}

.ll-theme-switch button {
    min-height: 34px;
    padding: 6px 10px;
    color: rgba(7, 22, 79, 0.72);
    background: transparent;
    border: 0;
    border-radius: 6px;
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
}

.ll-theme-switch button:hover,
.ll-theme-switch button:focus-visible {
    color: var(--ll-blue);
}

.ll-theme-switch button:focus-visible {
    outline: 3px solid rgba(34, 211, 238, 0.42);
    outline-offset: 2px;
}

.ll-theme-switch button.is-active {
    color: var(--ll-white);
    background: linear-gradient(135deg, var(--ll-blue), var(--ll-sky));
    box-shadow: 0 8px 18px rgba(10, 107, 255, 0.18);
}

.ll-blueprint-console {
    width: min(100%, 610px);
    margin-top: 24px;
    padding: 14px;
    color: rgba(247, 251, 255, 0.92);
    background:
        linear-gradient(135deg, rgba(10, 107, 255, 0.22), rgba(34, 211, 238, 0.08)),
        rgba(3, 7, 22, 0.54);
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(18px);
}

.ll-blueprint-console__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ll-blueprint-console__head strong {
    color: #71f6ff;
}

.ll-blueprint-console__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.ll-blueprint-console__grid div {
    min-height: 76px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(247, 251, 255, 0.14);
    border-radius: 8px;
}

.ll-blueprint-console__grid span {
    display: block;
    margin-bottom: 8px;
    color: #7cf5ff;
    font-size: 11px;
    font-weight: 900;
}

.ll-blueprint-console__grid b {
    display: block;
    color: var(--ll-white);
    font-size: 12px;
    line-height: 1.24;
}

.ll-section--operators {
    position: relative;
    overflow: hidden;
    padding-top: 48px;
    padding-bottom: 48px;
    background:
        radial-gradient(circle at 84% 20%, rgba(34, 211, 238, 0.18), transparent 34%),
        linear-gradient(135deg, #07164f, #03102d 56%, #020815);
    border-top: 0;
}

.ll-section--operators::before {
    position: absolute;
    inset: 0;
    content: "";
    background-image:
        linear-gradient(rgba(247, 251, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 251, 255, 0.055) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none;
}

.ll-operator-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 34px;
    align-items: center;
}

.ll-operator-copy h2,
.ll-operator-copy p {
    color: var(--ll-white);
}

.ll-operator-copy p:not(.ll-eyebrow) {
    max-width: 560px;
    margin-top: 16px;
    color: rgba(247, 251, 255, 0.78);
}

.ll-operator-visual {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 8px;
    background: rgba(3, 7, 22, 0.42);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.ll-operator-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.ll-operator-visual picture {
    display: block;
    aspect-ratio: 16 / 9;
}

.ll-operator-visual figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    max-width: min(420px, calc(100% - 28px));
    padding: 10px 12px;
    color: var(--ll-white);
    background: rgba(3, 7, 22, 0.68);
    border: 1px solid rgba(247, 251, 255, 0.16);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(12px);
}

html[data-ll-theme="dark"] {
    --ll-navy: #f4faff;
    --ll-midnight: #020815;
    --ll-line: rgba(126, 196, 255, 0.18);
    --ll-muted: #a9bdd2;
    --ll-soft: #07182f;
    --ll-ice: #061323;
}

html[data-ll-theme="dark"] body.ll-site {
    color: #eaf4ff;
    background:
        radial-gradient(circle at 70% 0%, rgba(10, 107, 255, 0.2), transparent 32%),
        linear-gradient(180deg, #020815 0%, #061226 58%, #020815 100%);
}

html[data-ll-theme="dark"] .ll-header {
    background: rgba(2, 8, 21, 0.78);
    border-bottom-color: rgba(126, 196, 255, 0.18);
}

html[data-ll-theme="dark"] .ll-nav a,
html[data-ll-theme="dark"] .ll-language-switch a,
html[data-ll-theme="dark"] .ll-theme-switch button {
    color: rgba(234, 244, 255, 0.78);
}

html[data-ll-theme="dark"] .ll-language-switch,
html[data-ll-theme="dark"] .ll-theme-switch,
html[data-ll-theme="dark"] .ll-nav-toggle {
    background: rgba(247, 251, 255, 0.08);
    border-color: rgba(126, 196, 255, 0.18);
    box-shadow: none;
}

html[data-ll-theme="dark"] .ll-nav-toggle span {
    background: #eaf4ff;
}

html[data-ll-theme="dark"] .ll-section,
html[data-ll-theme="dark"] .ll-page-hero,
html[data-ll-theme="dark"] .ll-card,
html[data-ll-theme="dark"] .ll-service-card,
html[data-ll-theme="dark"] .ll-mini-panel,
html[data-ll-theme="dark"] .ll-process-card,
html[data-ll-theme="dark"] .ll-proof-panel,
html[data-ll-theme="dark"] .ll-contact-card,
html[data-ll-theme="dark"] .ll-faq-list details,
html[data-ll-theme="dark"] .ll-footer {
    background-color: rgba(5, 18, 40, 0.72);
    border-color: rgba(126, 196, 255, 0.18);
}

html[data-ll-theme="dark"] .ll-section--ice {
    background:
        radial-gradient(circle at 20% 0%, rgba(34, 211, 238, 0.12), transparent 28%),
        #061323;
}

html[data-ll-theme="dark"] .ll-button--secondary {
    color: #eaf4ff;
    background: rgba(247, 251, 255, 0.1);
    border-color: rgba(247, 251, 255, 0.18);
}

html[data-ll-theme="dark"] .ll-button--secondary:hover,
html[data-ll-theme="dark"] .ll-button--secondary:focus {
    color: var(--ll-white);
    background: rgba(10, 107, 255, 0.24);
}

html[data-ll-theme="dark"] input,
html[data-ll-theme="dark"] select,
html[data-ll-theme="dark"] textarea {
    color: #061323;
}

html[data-ll-theme="light"] .ll-hero--slider {
    background: #eaf6ff;
}

html[data-ll-theme="light"] .ll-hero--slider::after {
    background:
        linear-gradient(90deg, rgba(7, 22, 79, 0.88) 0%, rgba(7, 22, 79, 0.68) 34%, rgba(7, 22, 79, 0.2) 64%, rgba(7, 22, 79, 0.08) 100%),
        linear-gradient(180deg, rgba(10, 107, 255, 0.24) 0%, rgba(255, 255, 255, 0.04) 44%, rgba(237, 246, 255, 0.78) 100%);
}

html[data-ll-theme="light"] .ll-blueprint-console {
    color: var(--ll-white);
    background:
        linear-gradient(135deg, rgba(10, 107, 255, 0.68), rgba(34, 211, 238, 0.34)),
        rgba(7, 22, 79, 0.68);
}

@media (max-width: 1080px) {
    .ll-theme-switch {
        order: 3;
    }

    .ll-blueprint-console__grid,
    .ll-operator-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .ll-theme-switch {
        width: 100%;
        justify-content: center;
    }

    .ll-theme-switch button {
        flex: 1 1 0;
    }

    .ll-blueprint-console {
        padding: 12px;
    }

    .ll-blueprint-console__grid,
    .ll-operator-grid {
        grid-template-columns: 1fr;
    }

    .ll-blueprint-console__grid div {
        min-height: 62px;
    }

    .ll-operator-visual figcaption {
        position: static;
        max-width: none;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        border-radius: 0;
    }
}

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

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

    .ll-reveal {
        opacity: 1;
        transform: none;
    }

    .ll-header__cta:hover,
    .ll-button:hover,
    .ll-quick-links a:hover,
    .ll-service-card:hover,
    .ll-mini-panel:hover,
    .ll-process-card:hover,
    .ll-rich-list li:hover {
        transform: none !important;
    }
}

/* Service Universe redesign — selected 2026-08-08 reference. */
:root {
    --ll-universe-bg: #020817;
    --ll-universe-bg-soft: #07152f;
    --ll-universe-blue: #086cff;
    --ll-universe-cyan: #52d9ff;
    --ll-universe-ink: #06122f;
    --ll-universe-muted: #637394;
    --ll-universe-paper: #f7fbff;
}

.ll-container {
    width: min(1360px, calc(100% - 64px));
}

.ll-header {
    position: absolute;
    inset: 0 0 auto;
    color: #fff;
    background: linear-gradient(180deg, rgba(2, 8, 23, 0.98), rgba(2, 8, 23, 0.74));
    border-bottom: 1px solid rgba(95, 166, 255, 0.12);
    backdrop-filter: blur(18px);
}

body:not(.home) .ll-header {
    position: sticky;
}

.ll-header__inner {
    grid-template-columns: 176px minmax(420px, 1fr) auto;
    min-height: 86px;
    gap: 24px;
}

.ll-logo,
.ll-logo img {
    width: 108px;
    height: 76px;
}

.ll-logo img {
    object-fit: contain;
}

.ll-nav {
    gap: clamp(18px, 2.3vw, 36px);
}

.ll-nav a,
html[data-ll-theme="dark"] .ll-nav a {
    min-height: 46px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 720;
}

.ll-nav a:hover,
.ll-nav a:focus,
.ll-nav a[aria-current="page"] {
    color: #fff;
}

.ll-language-switch,
html[data-ll-theme="dark"] .ll-language-switch {
    padding: 0;
    overflow: hidden;
    background: rgba(5, 16, 39, 0.78);
    border-color: rgba(113, 164, 231, 0.36);
    border-radius: 12px;
}

.ll-language-switch a,
html[data-ll-theme="dark"] .ll-language-switch a {
    min-width: 68px;
    min-height: 42px;
    color: rgba(234, 244, 255, 0.78);
    border-radius: 10px;
}

.ll-language-switch a.is-active,
html[data-ll-theme="dark"] .ll-language-switch a.is-active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(141, 183, 245, 0.14);
}

.ll-header__cta {
    min-height: 48px;
    padding-inline: 22px;
    border-radius: 11px;
    white-space: nowrap;
}

.ll-universe-hero {
    position: relative;
    min-height: 770px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 72% 44%, rgba(0, 104, 255, 0.27), transparent 28%),
        radial-gradient(circle at 40% 110%, rgba(0, 72, 190, 0.2), transparent 38%),
        linear-gradient(120deg, #020715 0%, #030a1c 48%, #03132e 100%);
}

.ll-universe-stars {
    position: absolute;
    inset: 0;
    opacity: 0.65;
    background-image:
        radial-gradient(circle, rgba(81, 182, 255, 0.9) 0 1px, transparent 1.5px),
        radial-gradient(circle, rgba(255, 255, 255, 0.46) 0 1px, transparent 1.5px);
    background-position: 12px 18px, 56px 72px;
    background-size: 116px 116px, 173px 173px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 42%, #000 100%);
    pointer-events: none;
}

.ll-universe-hero::after {
    position: absolute;
    right: -12%;
    bottom: -70%;
    width: 80%;
    aspect-ratio: 1;
    content: "";
    border: 1px solid rgba(42, 147, 255, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 120px rgba(15, 116, 255, 0.12);
    pointer-events: none;
}

.ll-universe-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(540px, 1fr) minmax(650px, 1.25fr);
    align-items: center;
    min-height: 770px;
    padding-top: 106px;
    gap: clamp(18px, 3vw, 48px);
}

.ll-universe-copy {
    position: relative;
    z-index: 4;
    max-width: 570px;
    padding: 52px 0 58px;
}

.ll-universe-copy .ll-eyebrow {
    margin-bottom: 18px;
    color: var(--ll-universe-cyan);
    font-size: 14px;
    letter-spacing: 0.04em;
}

.ll-universe-copy h1 {
    max-width: 570px;
    margin: 0;
    color: #fff;
    font-size: clamp(46px, 3.75vw, 58px);
    font-weight: 780;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.ll-universe-copy h1 span {
    display: block;
}

.ll-universe-lede {
    max-width: 540px;
    margin: 26px 0 30px;
    color: rgba(224, 235, 251, 0.82);
    font-size: clamp(18px, 1.65vw, 23px);
    line-height: 1.55;
}

.ll-goal-form {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(100%, 540px);
    min-height: 76px;
    padding: 8px 9px 8px 22px;
    background: rgba(6, 20, 50, 0.76);
    border: 1px solid #2a8cff;
    border-radius: 24px;
    box-shadow: 0 0 0 1px rgba(77, 190, 255, 0.18), 0 0 32px rgba(0, 112, 255, 0.24);
    backdrop-filter: blur(16px);
}

.ll-goal-form > i {
    color: #b7d9ff;
    font-size: 25px;
}

.ll-goal-form input,
html[data-ll-theme="dark"] .ll-goal-form input {
    min-width: 0;
    padding: 10px 16px;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 18px;
}

.ll-goal-form input::placeholder {
    color: rgba(225, 235, 251, 0.7);
}

.ll-goal-form button {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #071735;
    background: #fff;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
    cursor: pointer;
}

.ll-universe-actions {
    display: flex;
    flex-wrap: wrap;
    margin-top: 28px;
    gap: 16px;
}

.ll-universe-actions .ll-button {
    min-height: 58px;
    padding-inline: 26px;
    gap: 18px;
    border-radius: 10px;
}

.ll-button--outline {
    color: #fff;
    background: rgba(3, 12, 30, 0.58);
    border-color: rgba(106, 163, 235, 0.5);
    box-shadow: none;
}

.ll-button--outline:hover,
.ll-button--outline:focus {
    color: #fff;
    background: rgba(15, 91, 215, 0.2);
    border-color: #48b8ff;
}

.ll-universe-visual {
    position: relative;
    align-self: stretch;
    min-height: 664px;
    isolation: isolate;
}

.ll-universe-rings {
    position: absolute;
    top: 50%;
    right: 0;
    width: 520px;
    aspect-ratio: 1;
    border: 1px solid rgba(46, 132, 255, 0.56);
    border-radius: 50%;
    box-shadow: inset 0 0 58px rgba(15, 94, 255, 0.05), 0 0 52px rgba(0, 81, 255, 0.09);
    transform: translateY(-48%);
}

.ll-universe-rings::before,
.ll-universe-rings::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(51, 154, 255, 0.38);
    border-radius: 50%;
}

.ll-universe-rings::before {
    inset: 54px;
}

.ll-universe-rings::after {
    inset: 112px;
    background: radial-gradient(circle, rgba(6, 74, 187, 0.09), transparent 68%);
}

.ll-universe-center {
    position: absolute;
    top: 50%;
    right: 138px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 244px;
    min-height: 98px;
    padding: 18px;
    color: #fff;
    text-align: center;
    background: rgba(4, 28, 76, 0.88);
    border: 1px solid #258dff;
    border-radius: 34px;
    box-shadow: 0 0 28px rgba(0, 109, 255, 0.42), inset 0 0 25px rgba(8, 93, 255, 0.18);
    transform: translateY(-47%);
}

.ll-universe-center span {
    font-size: 16px;
    font-weight: 750;
    line-height: 1.2;
}

.ll-universe-center small {
    color: rgba(231, 242, 255, 0.75);
    font-size: 13px;
}

.ll-universe-node {
    position: absolute;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 112px;
    min-height: 112px;
    padding: 13px 8px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background: radial-gradient(circle at 50% 35%, rgba(24, 84, 175, 0.82), rgba(2, 20, 54, 0.94));
    border: 1px solid #329cff;
    border-radius: 50%;
    box-shadow: 0 0 26px rgba(0, 111, 255, 0.34), inset 0 0 18px rgba(51, 149, 255, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.ll-universe-node:hover,
.ll-universe-node:focus-visible {
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 0 38px rgba(0, 154, 255, 0.56), inset 0 0 24px rgba(51, 149, 255, 0.24);
}

.ll-universe-node > i {
    font-size: 31px;
}

.ll-universe-node > span {
    max-width: 86px;
    font-size: 13px;
    font-weight: 760;
    line-height: 1.12;
}

.ll-universe-node > small {
    position: absolute;
    right: 2px;
    bottom: 6px;
    display: grid;
    place-items: center;
    min-width: 25px;
    height: 25px;
    padding: 0 5px;
    color: #fff;
    background: #086cff;
    border: 2px solid #071530;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 850;
}

.ll-universe-node--web { top: 56px; right: 202px; }
.ll-universe-node--ai-agents { top: 176px; right: 4px; }
.ll-universe-node--automation { right: 4px; bottom: 72px; }
.ll-universe-node--growth { right: 204px; bottom: 6px; }
.ll-universe-node--business-setup { bottom: 82px; left: 300px; }
.ll-universe-node--ongoing-support { top: 184px; left: 292px; }

.ll-universe-hamza {
    position: absolute;
    bottom: -4px;
    left: -42px;
    z-index: 4;
    width: 340px;
    max-width: none;
    height: 620px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.46));
    pointer-events: none;
}

.ll-lingqi-launch {
    position: absolute;
    top: 270px;
    right: -12px;
    z-index: 6;
    display: grid;
    grid-template-columns: 68px;
    justify-items: center;
    padding: 0;
    color: #dff4ff;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.ll-lingqi-launch img {
    width: 68px;
    height: 82px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(82, 217, 255, 0.44));
    transition: transform 180ms ease;
}

.ll-lingqi-launch:hover img,
.ll-lingqi-launch:focus-visible img {
    transform: translateY(-4px) scale(1.04);
}

.ll-lingqi-launch span {
    margin-top: -3px;
    padding: 4px 8px;
    background: rgba(1, 10, 29, 0.78);
    border: 1px solid rgba(72, 184, 255, 0.36);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    white-space: nowrap;
}

.ll-goal-path,
html[data-ll-theme="dark"] .ll-goal-path {
    padding: 62px 0;
    color: var(--ll-universe-ink);
    background:
        radial-gradient(circle at 74% 14%, rgba(58, 155, 255, 0.12), transparent 25%),
        linear-gradient(120deg, #fff, #f0f7ff);
    border-bottom: 1px solid #dce8f7;
}

.ll-goal-path__grid {
    display: grid;
    grid-template-columns: 0.72fr 1.55fr;
    align-items: center;
    gap: clamp(46px, 6vw, 100px);
}

.ll-goal-path__intro h2 {
    margin: 0 0 14px;
    color: var(--ll-universe-ink);
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 1.15;
}

.ll-goal-path__intro p {
    margin: 0;
    color: var(--ll-universe-muted);
    font-size: 17px;
}

.ll-goal-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 34px;
}

.ll-goal-steps li {
    position: relative;
    display: grid;
    justify-items: center;
    text-align: center;
}

.ll-goal-steps li:not(:last-child)::after {
    position: absolute;
    top: 40px;
    left: calc(50% + 48px);
    width: calc(100% - 64px);
    height: 1px;
    content: "";
    background: repeating-linear-gradient(90deg, #9abbe7 0 5px, transparent 5px 10px);
}

.ll-goal-steps > li > i {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    color: #086cff;
    background: rgba(13, 107, 255, 0.07);
    border-radius: 50%;
    font-size: 37px;
}

.ll-goal-steps > li > span {
    position: absolute;
    top: 58px;
    left: calc(50% + 25px);
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    color: #fff;
    background: #086cff;
    border: 2px solid #f6faff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
}

.ll-goal-steps strong {
    margin-top: 15px;
    color: var(--ll-universe-ink);
    font-size: 16px;
}

.ll-goal-steps small {
    margin-top: 6px;
    color: var(--ll-universe-muted);
    font-size: 13px;
    line-height: 1.45;
}

.ll-section--service-families,
html[data-ll-theme="dark"] .ll-section--service-families {
    padding: 100px 0;
    color: var(--ll-universe-ink);
    background: #fff;
}

.ll-section-heading--split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 48px;
}

.ll-section-heading--split h2 {
    max-width: 760px;
    margin: 8px 0 0;
    color: var(--ll-universe-ink);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.06;
}

.ll-section-heading--split > p {
    margin: 0;
    color: var(--ll-universe-muted);
    font-size: 17px;
}

.ll-family-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 46px;
    gap: 18px;
}

.ll-family-card {
    position: relative;
    min-height: 230px;
    padding: 30px;
    overflow: hidden;
    color: var(--ll-universe-ink);
    text-decoration: none;
    background: linear-gradient(145deg, #f7fbff, #edf5ff);
    border: 1px solid #d9e8fb;
    border-radius: 22px;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ll-family-card:hover,
.ll-family-card:focus-visible {
    color: var(--ll-universe-ink);
    border-color: #5bb8ff;
    box-shadow: 0 22px 50px rgba(6, 31, 82, 0.12);
    transform: translateY(-4px);
}

.ll-family-card > i {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    background: linear-gradient(135deg, #086cff, #26b9f6);
    border-radius: 17px;
    font-size: 28px;
    box-shadow: 0 13px 26px rgba(8, 108, 255, 0.22);
}

.ll-family-card__count {
    position: absolute;
    top: 28px;
    right: 28px;
    color: #086cff;
    font-size: 22px;
    font-weight: 850;
}

.ll-family-card h3 {
    margin: 30px 0 18px;
    color: var(--ll-universe-ink);
    font-size: 24px;
}

.ll-family-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #49617f;
    font-size: 14px;
    font-weight: 750;
}

.ll-section--subscription,
html[data-ll-theme="dark"] .ll-section--subscription {
    padding: 96px 0;
    color: #fff;
    background:
        radial-gradient(circle at 18% 46%, rgba(29, 158, 255, 0.18), transparent 24%),
        linear-gradient(135deg, #03102a, #071d43);
}

.ll-subscription-story {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    align-items: center;
    gap: clamp(40px, 8vw, 112px);
}

.ll-subscription-story__visual {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 440px;
}

.ll-subscription-story__visual::before {
    position: absolute;
    width: 360px;
    aspect-ratio: 1;
    content: "";
    background: radial-gradient(circle, rgba(22, 143, 255, 0.28), transparent 68%);
    border: 1px solid rgba(79, 181, 255, 0.2);
    border-radius: 50%;
}

.ll-subscription-story__visual img {
    position: relative;
    z-index: 2;
    width: 280px;
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.38));
}

.ll-subscription-story__copy h2 {
    max-width: 760px;
    margin: 8px 0 22px;
    color: #fff;
    font-size: clamp(36px, 4vw, 60px);
    line-height: 1.08;
}

.ll-subscription-story__copy > p:not(.ll-eyebrow) {
    max-width: 780px;
    color: rgba(224, 235, 251, 0.8);
    font-size: 17px;
}

.ll-subscription-story__copy ul {
    display: grid;
    margin: 26px 0 34px;
    padding: 0;
    list-style: none;
    gap: 13px;
}

.ll-subscription-story__copy li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(242, 248, 255, 0.92);
}

.ll-subscription-story__copy li i {
    color: #4ed5ff;
    font-size: 22px;
}

.ll-section--work-preview,
html[data-ll-theme="dark"] .ll-section--work-preview {
    padding: 96px 0 120px;
    color: var(--ll-universe-ink);
    background: #f4f8fd;
}

.ll-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #086cff;
    font-weight: 800;
    text-decoration: none;
}

.ll-case-card {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    margin-top: 42px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #071a3b, #0a3474);
    border: 1px solid rgba(66, 161, 255, 0.38);
    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(8, 35, 81, 0.16);
}

.ll-case-card__copy {
    padding: clamp(34px, 5vw, 70px);
}

.ll-case-card__copy > span {
    color: #5ad7ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ll-case-card__copy h3 {
    margin: 10px 0 18px;
    color: #fff;
    font-size: clamp(38px, 4vw, 58px);
}

.ll-case-card__copy p {
    max-width: 620px;
    color: rgba(231, 240, 253, 0.8);
    font-size: 17px;
}

.ll-case-card__copy a {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.ll-case-card__modules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: clamp(32px, 5vw, 66px);
    background: rgba(2, 10, 26, 0.28);
    border-left: 1px solid rgba(101, 178, 255, 0.22);
    gap: 14px;
}

.ll-case-card__modules span {
    display: grid;
    place-items: center;
    min-height: 126px;
    padding: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(112, 185, 255, 0.22);
    border-radius: 18px;
    font-size: 13px;
    font-weight: 750;
}

.ll-case-card__modules i {
    color: #56d6ff;
    font-size: 34px;
}

.ll-assistant {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    width: min(430px, 100%);
    color: #eaf4ff;
    background: #06152f;
    border-left: 1px solid rgba(91, 180, 255, 0.28);
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.36);
    transform: translateX(104%);
    transition: transform 240ms ease;
}

.ll-assistant.is-open {
    transform: translateX(0);
}

.ll-assistant__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(91, 180, 255, 0.2);
}

.ll-assistant__head > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ll-assistant__head img {
    width: 54px;
    height: 64px;
    object-fit: contain;
}

.ll-assistant__head span {
    display: grid;
}

.ll-assistant__head small {
    color: rgba(222, 237, 255, 0.68);
}

.ll-assistant__head button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    cursor: pointer;
}

.ll-assistant__body {
    padding: 26px;
}

.ll-assistant__body > p {
    margin-top: 0;
    color: rgba(224, 235, 251, 0.78);
}

.ll-assistant__choices {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 24px 0 30px;
    gap: 10px;
}

.ll-assistant__choices a {
    min-height: 54px;
    padding: 13px;
    color: #eaf4ff;
    text-align: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(101, 181, 255, 0.22);
    border-radius: 12px;
}

.ll-assistant-backdrop {
    position: fixed;
    inset: 0;
    z-index: 490;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(0, 4, 14, 0.66);
    border: 0;
    transition: opacity 200ms ease, visibility 200ms ease;
}

.ll-assistant-backdrop.is-open {
    visibility: visible;
    opacity: 1;
}

body.ll-assistant-open {
    overflow: hidden;
}

@media (max-width: 1180px) {
    .ll-header__inner {
        grid-template-columns: 124px 1fr auto;
    }

    .ll-nav {
        gap: 16px;
    }

    .ll-nav a {
        font-size: 13px;
    }

    .ll-header__cta {
        display: none;
    }

    .ll-universe-hero__grid {
        grid-template-columns: minmax(360px, 0.88fr) minmax(540px, 1.12fr);
    }

    .ll-universe-hamza {
        left: -126px;
        width: 330px;
        height: 580px;
    }

    .ll-universe-rings {
        right: -60px;
        width: 500px;
    }

    .ll-universe-center {
        right: 64px;
    }

    .ll-universe-node--web { right: 122px; }
    .ll-universe-node--ai-agents,
    .ll-universe-node--automation { right: -42px; }
    .ll-universe-node--growth { right: 124px; }
    .ll-universe-node--business-setup { left: 64px; }
    .ll-universe-node--ongoing-support { left: 52px; }
    .ll-lingqi-launch { right: -48px; }
}

@media (max-width: 980px) {
    .ll-container {
        width: min(100% - 40px, 760px);
    }

    .ll-header__inner {
        grid-template-columns: 112px auto auto;
    }

    .ll-nav-toggle {
        display: block;
        justify-self: end;
        order: 3;
    }

    .ll-header__actions {
        margin-left: auto;
    }

    .ll-nav {
        position: fixed;
        top: 86px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        background: rgba(3, 12, 30, 0.98);
        border: 1px solid rgba(103, 173, 255, 0.24);
        border-radius: 18px;
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
    }

    .ll-nav.is-open {
        display: flex;
    }

    .ll-nav a {
        justify-content: center;
        font-size: 15px;
    }

    .ll-universe-hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 116px;
    }

    .ll-universe-copy {
        max-width: 680px;
        padding-bottom: 0;
    }

    .ll-universe-copy h1,
    .ll-universe-lede {
        max-width: 680px;
    }

    .ll-universe-visual {
        min-height: 640px;
    }

    .ll-universe-hamza {
        left: 50%;
        width: 340px;
        height: 590px;
        transform: translateX(-80%);
    }

    .ll-universe-rings {
        right: 2%;
    }

    .ll-universe-center { right: calc(2% + 138px); }
    .ll-universe-node--web { right: calc(2% + 204px); }
    .ll-universe-node--ai-agents,
    .ll-universe-node--automation { right: 2%; }
    .ll-universe-node--growth { right: calc(2% + 204px); }
    .ll-universe-node--business-setup { left: calc(48% - 144px); }
    .ll-universe-node--ongoing-support { left: calc(48% - 164px); }
    .ll-lingqi-launch { right: 0; }

    .ll-goal-path__grid,
    .ll-subscription-story,
    .ll-case-card {
        grid-template-columns: 1fr;
    }

    .ll-goal-steps {
        margin-top: 14px;
    }

    .ll-family-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ll-case-card__modules {
        border-top: 1px solid rgba(101, 178, 255, 0.22);
        border-left: 0;
    }
}

@media (max-width: 680px) {
    .ll-container {
        width: min(100% - 28px, 560px);
    }

    .ll-header__inner {
        grid-template-columns: 84px 1fr 44px;
        min-height: 74px;
        gap: 10px;
    }

    .ll-logo,
    .ll-logo img {
        width: 70px;
        height: 62px;
    }

    .ll-language-switch a {
        min-width: 52px;
        min-height: 38px;
        padding: 6px 8px;
        font-size: 11px;
    }

    .ll-nav {
        top: 74px;
    }

    .ll-universe-hero__grid {
        padding-top: 88px;
    }

    .ll-universe-copy {
        padding: 48px 0 12px;
    }

    .ll-universe-copy h1 {
        font-size: clamp(42px, 13vw, 58px);
    }

    .ll-universe-copy h1 span {
        display: inline;
    }

    .ll-universe-copy h1 span + span::before {
        content: " ";
    }

    .ll-universe-lede {
        margin-block: 20px 24px;
        font-size: 17px;
    }

    .ll-goal-form {
        min-height: 64px;
        padding-left: 15px;
        border-radius: 19px;
    }

    .ll-goal-form input {
        padding-inline: 10px;
        font-size: 14px;
    }

    .ll-goal-form button {
        width: 46px;
        height: 46px;
    }

    .ll-universe-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ll-universe-actions .ll-button {
        width: 100%;
    }

    .ll-universe-visual {
        min-height: 590px;
        margin-inline: -14px;
    }

    .ll-universe-rings {
        top: 52%;
        right: 50%;
        width: 390px;
        transform: translate(50%, -50%);
    }

    .ll-universe-rings::before { inset: 43px; }
    .ll-universe-rings::after { inset: 90px; }

    .ll-universe-center {
        top: 52%;
        right: calc(50% - 60px);
        z-index: 4;
        width: 190px;
        min-height: 82px;
        transform: translate(50%, -50%);
    }

    .ll-universe-node {
        z-index: 5;
        width: 88px;
        min-height: 88px;
        padding: 9px 6px;
    }

    .ll-universe-node > i { font-size: 24px; }
    .ll-universe-node > span { font-size: 10px; }
    .ll-universe-node > small { min-width: 22px; height: 22px; font-size: 9px; }

    .ll-universe-node--web { top: 51px; right: calc(50% - 44px); }
    .ll-universe-node--ai-agents { top: 160px; right: 4px; }
    .ll-universe-node--automation { right: 4px; bottom: 102px; }
    .ll-universe-node--growth { right: calc(50% - 44px); bottom: 44px; }
    .ll-universe-node--business-setup { bottom: 102px; left: 4px; }
    .ll-universe-node--ongoing-support { top: 160px; left: 4px; }

    .ll-universe-hamza {
        bottom: -2px;
        left: 50%;
        width: 235px;
        height: 430px;
        transform: translateX(-88%);
        z-index: 3;
    }

    .ll-lingqi-launch {
        top: 126px;
        right: 8px;
        grid-template-columns: 40px;
    }

    .ll-lingqi-launch img {
        width: 40px;
        height: 50px;
    }

    .ll-lingqi-launch span {
        display: none;
    }

    .ll-goal-path,
    .ll-section--service-families,
    .ll-section--subscription,
    .ll-section--work-preview {
        padding: 70px 0;
    }

    .ll-goal-path__grid,
    .ll-section-heading--split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ll-goal-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ll-goal-steps li:not(:last-child)::after {
        display: none;
    }

    .ll-family-grid {
        grid-template-columns: 1fr;
    }

    .ll-subscription-story__visual {
        min-height: 320px;
    }

    .ll-subscription-story__visual::before {
        width: 290px;
    }

    .ll-subscription-story__visual img {
        width: 210px;
        max-height: 320px;
    }

    .ll-subscription-story__copy h2,
    .ll-section-heading--split h2 {
        font-size: 36px;
    }

    .ll-case-card__modules,
    .ll-assistant__choices {
        grid-template-columns: 1fr;
    }

    .ll-case-card__modules span {
        min-height: 88px;
    }
}

.ll-assistant__messages {
    display: grid;
    max-height: 260px;
    padding-right: 4px;
    overflow-y: auto;
    gap: 10px;
}

.ll-assistant-message {
    max-width: 88%;
    padding: 12px 14px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.ll-assistant-message--bot {
    justify-self: start;
    color: #dbeaff;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(101, 181, 255, 0.18);
    border-bottom-left-radius: 4px;
}

.ll-assistant-message--user {
    justify-self: end;
    color: #fff;
    background: #086cff;
    border-bottom-right-radius: 4px;
}

.ll-assistant__form {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin-top: 16px;
    padding: 6px 6px 6px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(102, 185, 255, 0.28);
    border-radius: 15px;
}

.ll-assistant__form input,
html[data-ll-theme="dark"] .ll-assistant__form input {
    min-width: 0;
    padding: 10px 4px;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 14px;
}

.ll-assistant__form input::placeholder {
    color: rgba(221, 235, 252, 0.52);
}

.ll-assistant__form button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: #086cff;
    border: 0;
    border-radius: 11px;
    cursor: pointer;
}

.ll-assistant__form button:disabled {
    opacity: 0.5;
    cursor: wait;
}

html[data-ll-theme="dark"] .ll-section.ll-section--cluster-list,
html[data-ll-theme="dark"] .ll-section.ll-section--work-page,
html[data-ll-theme="dark"] .ll-section.ll-section--partner-steps {
    color: var(--ll-universe-ink);
    background: #f7fbff;
}

html[data-ll-theme="dark"] .ll-section.ll-section--greta {
    color: var(--ll-universe-ink);
    background: #f3f8ff;
}
