/*
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.9
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;
}

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;
    }
}

.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;
    }
}

/* LINGLINK-V116-PATCH — appended 2026-08-04 */
/* ==========================================================================
   LingLink AI Service Theme — contrast + layout repair pack
   Target version: 1.1.6   (append to the end of style.css, bump the header
   `Version:` to 1.1.6 so the ?ver= cache-buster changes)

   Fixes, in order:
     1. Headings invisible on dark sections (Blocksy parent CSS wins)
     2. Cards stay white in dark theme -> body copy 1.78:1
     3. Mid-word line breaks in CJK + Latin headings
     4. Dead vertical space inside service cards
     5. Header nav items wrapping one character per line
     6. Duplicate "skip to content" link
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HEADING COLOUR
   Blocksy's main.min.css is enqueued AFTER this child theme, so its
   `h1..h6 { color: var(--theme-heading-color) }` (#192a3d) overrides the
   child theme's `h1,h2,h3 { color: var(--ll-navy) }`. On dark sections that
   renders 1.28:1 — effectively invisible.

   The real fix is the enqueue dependency in functions.php (see
   functions-enqueue-fix.md). These rules make the theme correct even if the
   parent stylesheet is still loaded last.
   -------------------------------------------------------------------------- */
body.ll-site h1,
body.ll-site h2,
body.ll-site h3,
body.ll-site h4 {
    color: var(--ll-navy);
}

/* Keep the explicitly-inverted sections inverted (these must stay after the
   block above, they were previously relying on source order). */
body.ll-site .ll-section--dark h2,
body.ll-site .ll-section--dark h3,
body.ll-site .ll-section--dark p,
body.ll-site .ll-section--dark .ll-eyebrow,
body.ll-site .ll-hero h1,
body.ll-site .ll-hero h2,
body.ll-site .ll-hero-slide__content h1,
body.ll-site .ll-hero-slide__content h2 {
    color: var(--ll-white);
}

/* --------------------------------------------------------------------------
   2. DARK-THEME CARD SURFACES
   The base card rule paints a white gradient via the `background` shorthand
   (that sets background-image). The dark-theme rule only overrode
   `background-color`, so the white gradient kept painting on top: the card
   stayed white while --ll-muted flipped to #a9bdd2 -> 1.78:1 body copy.
   Override the image layer, not just the colour.
   -------------------------------------------------------------------------- */
html[data-ll-theme="dark"] .ll-service-card,
html[data-ll-theme="dark"] .ll-blog-card,
html[data-ll-theme="dark"] .ll-article-panel,
html[data-ll-theme="dark"] .ll-simple-card,
html[data-ll-theme="dark"] .ll-mini-panel,
html[data-ll-theme="dark"] .ll-timeline__item,
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 {
    background-image: linear-gradient(180deg, rgba(10, 26, 52, 0.94), rgba(5, 18, 40, 0.98));
    background-color: rgba(5, 18, 40, 0.72);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

/* Card copy: #a9bdd2 on the dark surface above is 7.4:1. Card titles inherit
   --ll-navy (#f4faff in dark) from rule 1. The number badge needs to stop
   being a dark square on a dark card. */
html[data-ll-theme="dark"] .ll-service-card > span,
html[data-ll-theme="dark"] .ll-mini-panel > span,
html[data-ll-theme="dark"] .ll-timeline__item > span {
    color: #7ec4ff;
    background: rgba(10, 107, 255, 0.18);
}

/* Light theme: the base card is near-white, so the muted token must stay dark
   enough to pass AA. #5f6f8d on #f7fbff is 4.9:1. */
html:not([data-ll-theme="dark"]) .ll-service-card p,
html:not([data-ll-theme="dark"]) .ll-blog-card p,
html:not([data-ll-theme="dark"]) .ll-simple-card p,
html:not([data-ll-theme="dark"]) .ll-mini-panel p,
html:not([data-ll-theme="dark"]) .ll-timeline__item p {
    color: #4a5a76;
}

/* --------------------------------------------------------------------------
   3. LINE BREAKING
   `overflow-wrap: anywhere` breaks inside words: "AI 自动化" rendered as
   "AI 自动" / "化", "SaaS、MVP 与定制软件" split mid-token, and every header
   nav item broke one character per line.
   -------------------------------------------------------------------------- */
body.ll-site h1,
body.ll-site h2,
body.ll-site h3,
body.ll-site h4,
body.ll-site p,
body.ll-site li {
    overflow-wrap: break-word;
    word-break: normal;
    line-break: strict;
}

/* --------------------------------------------------------------------------
   4. SERVICE CARD HEIGHT
   `min-height: 438px` left ~200px of empty space under the description on
   every card. Let the grid equalise heights instead and pin the CTA.
   -------------------------------------------------------------------------- */
.ll-service-card {
    min-height: 0;
}

.ll-service-card > a:last-child,
.ll-service-card > .ll-card-link:last-child {
    margin-top: auto;
    padding-top: 18px;
}

/* --------------------------------------------------------------------------
   5. HEADER NAV
   Nine Chinese nav items + two toggles + the CTA do not fit the 1fr column at
   1440px, so each <a> shrank and wrapped. Stop the wrap, tighten the gap, and
   collapse to the hamburger before the squeeze starts (was 1080px).
   -------------------------------------------------------------------------- */
.ll-nav {
    flex-wrap: nowrap;
    gap: 14px;
}

.ll-nav a {
    white-space: nowrap;
    flex: 0 0 auto;
}

@media (max-width: 1400px) {
    .ll-nav {
        gap: 10px;
        font-size: 13px;
    }
}

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

    .ll-nav-toggle {
        display: block;
    }

    .ll-nav,
    .ll-header__cta {
        display: none;
    }
}

/* Stop the hero pill row and the overflowing logo card from creating a
   horizontal scrollbar at 1440px. */
body.ll-site {
    overflow-x: hidden;
}

.ll-quick-links {
    overflow-x: auto;
    scrollbar-width: none;
}

.ll-quick-links::-webkit-scrollbar {
    display: none;
}

/* --------------------------------------------------------------------------
   6. DUPLICATE SKIP LINK
   Blocksy prints `.skip-link.screen-reader-text` ("跳至内容") and the child
   theme prints `.ll-skip-link` ("跳到主要内容"). Both point at #main. Keep the
   theme's own one.
   -------------------------------------------------------------------------- */
body.ll-site > a.skip-link.screen-reader-text {
    display: none;
}

/* ==========================================================================
   LINGLINK-V117-PATCH — 2026-08-04
   Follow-up to the v1.1.6 contrast/layout pack.

     1. Hero: mask the text baked into the hero artwork so it stops competing
        with the real H1
     2. Hero: stop the floating logo card overflowing the viewport
     3. Mobile: cut the homepage scroll length
     4. New homepage lead-capture section (.ll-home-start)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO ARTWORK TEXT
   The hero images have headline text rendered into the picture itself
   ("Websites, Catalogs & SaaS", "网站、目录与 SaaS 软件", plus mock UI panels).
   The section background already dims the left side hard, but each slide
   paints over it with only a 0.22 shade, so the baked-in text shows through
   behind the real H1 and reads as a rendering fault.

   Match the slide shade to the section gradient: heavy on the left where the
   copy sits, clear on the right where the mascot is.

   NOTE: the correct long-term fix is to re-export the hero artwork without
   baked-in text. This only stops it competing with the live copy.
   -------------------------------------------------------------------------- */
.ll-hero-slide__shade {
    background:
        linear-gradient(180deg, rgba(3, 7, 22, 0.5), transparent 34%, rgba(3, 7, 22, 0.12) 100%),
        linear-gradient(90deg,
            rgba(3, 7, 22, 0.95) 0%,
            rgba(3, 7, 22, 0.88) 36%,
            rgba(3, 7, 22, 0.34) 64%,
            rgba(3, 7, 22, 0.06) 100%);
}

/* --------------------------------------------------------------------------
   2. HERO OVERFLOW
   The floating brand card sits partly outside the viewport at 1280–1500px.
   -------------------------------------------------------------------------- */
.ll-hero--image {
    overflow: hidden;
}

.ll-hero__stage,
.ll-hero__brand-card,
.ll-hero-slide__badge {
    max-width: 100%;
}

/* --------------------------------------------------------------------------
   3. MOBILE LENGTH
   The homepage stacks 20 service cards and 15 module panels. At 390px every
   one of them was full width, which produced a page tens of screens long.
   Two columns for the short module panels, tighter cards and section padding
   for the rest.
   -------------------------------------------------------------------------- */
@media (max-width: 680px) {
    .ll-section {
        padding: 40px 0;
    }

    .ll-section-heading {
        margin-bottom: 22px;
    }

    /* short title + one line of copy — these pair up fine at 390px */
    .ll-mini-panels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .ll-mini-panel {
        padding: 14px 12px;
    }

    .ll-mini-panel h3 {
        font-size: 15px;
        line-height: 1.3;
    }

    .ll-mini-panel p {
        font-size: 13px;
        line-height: 1.5;
    }

    .ll-mini-panel > span {
        width: 30px;
        height: 24px;
        margin-bottom: 10px;
        font-size: 11px;
    }

    /* service cards stay one per row — they carry a description and a CTA —
       but lose the generous desktop spacing */
    .ll-card-grid {
        gap: 12px;
    }

    .ll-service-card {
        padding: 16px 16px 14px;
    }

    .ll-service-card h3 {
        font-size: 17px;
        line-height: 1.32;
    }

    .ll-service-card p {
        margin-top: 8px;
        font-size: 14px;
        line-height: 1.55;
    }

    .ll-service-card > a:last-child,
    .ll-service-card > .ll-card-link:last-child {
        padding-top: 12px;
    }

    .ll-service-card > span {
        width: 32px;
        height: 26px;
        margin-bottom: 10px;
    }
}

@media (max-width: 400px) {
    /* below ~400px two columns of Chinese copy get too tight */
    .ll-mini-panels {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .ll-mini-panel p {
        font-size: 12px;
    }
}

/* --------------------------------------------------------------------------
   4. HOMEPAGE LEAD SECTION
   The homepage previously had no form at all — every call to action pushed
   the visitor to /contact/. This styles the inline form block.
   -------------------------------------------------------------------------- */
.ll-home-start {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
    gap: 36px;
    align-items: start;
}

.ll-home-start__intro {
    position: relative;
}

.ll-home-start__intro h2 {
    margin-bottom: 12px;
}

.ll-home-start__intro > p {
    max-width: 46ch;
    color: rgba(247, 251, 255, 0.86);
}

.ll-home-start__direct {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.ll-home-start__direct li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ll-home-start__direct span {
    color: rgba(247, 251, 255, 0.62);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ll-home-start__direct b,
.ll-home-start__direct a {
    color: var(--ll-white);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.ll-home-start__direct a:hover,
.ll-home-start__direct a:focus {
    color: var(--ll-sky);
}

.ll-home-start__avatar {
    width: 132px;
    margin-top: 26px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0.92;
}

.ll-home-start__avatar img {
    display: block;
    width: 100%;
    height: auto;
}

.ll-home-start__form {
    padding: 24px;
    background: rgba(247, 251, 255, 0.06);
    border: 1px solid rgba(126, 196, 255, 0.22);
    border-radius: 12px;
    backdrop-filter: blur(8px);
}

.ll-home-start__form h3 {
    margin-bottom: 16px;
    color: var(--ll-white);
    font-size: 19px;
}

.ll-home-start__form .ll-form label,
.ll-home-start__form .ll-form span {
    color: rgba(247, 251, 255, 0.82);
}

.ll-home-start__form .ll-form input,
.ll-home-start__form .ll-form select,
.ll-home-start__form .ll-form textarea {
    color: var(--ll-white);
    background: rgba(3, 7, 22, 0.5);
    border-color: rgba(126, 196, 255, 0.28);
}

.ll-home-start__form .ll-form input::placeholder,
.ll-home-start__form .ll-form textarea::placeholder {
    color: rgba(247, 251, 255, 0.45);
}

.ll-home-start__form .ll-form a {
    color: var(--ll-sky);
}

@media (max-width: 980px) {
    .ll-home-start {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .ll-home-start__avatar {
        display: none;
    }
}

@media (max-width: 680px) {
    .ll-home-start__form {
        padding: 18px 16px;
    }

    .ll-home-start__direct {
        gap: 10px 18px;
    }
}

/* ==========================================================================
   LINGLINK-V118-PATCH — 2026-08-04
   Hero artwork text masking, done at the right specificity this time.

   The hero images have headline text rendered into the picture
   ("Websites, Catalogs & SaaS", "网站、目录与 SaaS 软件") plus mock UI panels.
   Two layers sit over them:

     .ll-hero--slider::after            0.92 at the left edge   (0,1,1)
     .ll-hero--slider .ll-hero-slide__shade   0.36 to 48%       (0,2,0)

   At 0.92 the baked-in headline still reads through at roughly 8% and lands
   directly behind the real H1, which looks like a rendering fault. The v1.1.7
   attempt targeted `.ll-hero-slide__shade` (0,1,0) and was outranked by both.

   Take the copy column to effectively opaque and let it fall away before the
   mascot, so the right-hand artwork is untouched.

   The proper fix remains re-exporting the hero artwork without baked-in text.
   ========================================================================== */

.ll-hero--slider::after {
    background:
        linear-gradient(90deg,
            rgba(3, 7, 22, 0.99) 0%,
            rgba(3, 7, 22, 0.98) 32%,
            rgba(3, 7, 22, 0.74) 52%,
            rgba(3, 7, 22, 0.3) 70%,
            rgba(3, 7, 22, 0.1) 100%),
        linear-gradient(180deg,
            rgba(3, 7, 22, 0.4) 0%,
            rgba(3, 7, 22, 0.1) 48%,
            rgba(3, 7, 22, 0.84) 100%);
}

.ll-hero--image.ll-hero--slider .ll-hero-slide__shade {
    background:
        linear-gradient(90deg,
            rgba(3, 7, 22, 0.92) 0%,
            rgba(3, 7, 22, 0.86) 32%,
            rgba(3, 7, 22, 0.4) 56%,
            rgba(0, 0, 0, 0) 74%),
        linear-gradient(180deg,
            rgba(3, 7, 22, 0.28),
            rgba(0, 0, 0, 0) 36%,
            rgba(3, 7, 22, 0.62));
}

/* On phones the copy sits over the full width, so mask the whole frame. */
@media (max-width: 680px) {
    .ll-hero--slider::after {
        background:
            linear-gradient(180deg,
                rgba(3, 7, 22, 0.9) 0%,
                rgba(3, 7, 22, 0.72) 40%,
                rgba(3, 7, 22, 0.9) 100%);
    }

    .ll-hero--image.ll-hero--slider .ll-hero-slide__shade {
        background: linear-gradient(180deg,
            rgba(3, 7, 22, 0.7),
            rgba(3, 7, 22, 0.14) 52%,
            rgba(3, 7, 22, 0.8));
    }
}

/* ==========================================================================
   LINGLINK-V119-PATCH — 2026-08-04
   Fixes a regression introduced by the v1.1.7 homepage lead section.

   `.ll-form` carries its own white card (background var(--ll-white), border,
   padding, shadow) because everywhere else it sits on a light page. Dropping
   it inside the dark `.ll-home-start__form` panel left near-white labels on a
   white surface — unreadable — and the semi-transparent input fill rendered
   as flat grey blocks.

   Inside the homepage panel the form is now a plain layout container and the
   panel supplies the surface.
   ========================================================================== */

.ll-home-start__form .ll-form {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.ll-home-start__form .ll-form label,
.ll-home-start__form .ll-form__consent,
.ll-home-start__form .ll-form__consent span {
    color: rgba(240, 248, 255, 0.92);
}

.ll-home-start__form .ll-form input:not([type="checkbox"]),
.ll-home-start__form .ll-form select,
.ll-home-start__form .ll-form textarea {
    color: #ffffff;
    background: rgba(2, 9, 24, 0.78);
    border: 1px solid rgba(126, 196, 255, 0.34);
}

.ll-home-start__form .ll-form input:not([type="checkbox"]):focus,
.ll-home-start__form .ll-form select:focus,
.ll-home-start__form .ll-form textarea:focus {
    border-color: var(--ll-sky);
    outline: 2px solid rgba(19, 151, 255, 0.35);
    outline-offset: 1px;
}

.ll-home-start__form .ll-form input::placeholder,
.ll-home-start__form .ll-form textarea::placeholder {
    color: rgba(233, 243, 255, 0.55);
}

/* the select's own option list is drawn by the OS — keep it readable */
.ll-home-start__form .ll-form select option {
    color: #0b1220;
    background: #ffffff;
}

.ll-home-start__form .ll-form__consent a {
    color: #7ec4ff;
}

.ll-home-start__form .ll-form__notice {
    color: #eaf4ff;
    background: rgba(10, 107, 255, 0.16);
    border: 1px solid rgba(126, 196, 255, 0.34);
}

.ll-home-start__form .ll-form__notice--success {
    background: rgba(17, 163, 106, 0.18);
    border-color: rgba(17, 163, 106, 0.5);
}

/* the honeypot must stay invisible to people, visible to bots */
.ll-home-start__form .ll-form__assistive-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

