/* ── Keyframes (moved from inline <style> blocks) ── */

@keyframes layerSlideUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.6); opacity: 0.6; }
}

@keyframes badgeReveal {
    from { opacity: 0; transform: scale(0.7); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Root ── */

.lp-root {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #0a0a0a;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* ── Shared layout ── */

.lp-section {
    padding: 96px 48px;
    width: 100%;
}

.lp-container {
    max-width: 1040px;
    margin: 0 auto;
    width: 100%;
}

/* ── Hero ── */

.lp-hero {
    aspect-ratio: 16 / 9;
    --lp-hero-h: 36.25vw; /* hero height = 16:9 of full-width hero; used to center intro text vs. the hero */
    background: linear-gradient(155deg, #181830 0%, #0f0f1e 40%, #0a0a0a 75%, #080808 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 96px;
}

.lp-hero__video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    padding-top: 56.25%;
}

.lp-hero__video-iframe {
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.lp-hero__video-iframe--visible {
    opacity: 1;
}

.lp-hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

.lp-hero__glow-top {
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(120,130,255,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.lp-hero__glow-bottom {
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(80,200,160,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.lp-hero__corner {
    position: absolute;
    bottom: 120px;
    z-index: 1;
    max-width: 48%;
    transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-hero__corner--left {
    left: 64px;
    text-align: left;
}

.lp-hero__corner--right {
    right: 64px;
    text-align: right;
}

.lp-hero__corner--right .lp-hero-sub {
    margin: 0 0 24px auto;
    text-align: right;
}

.lp-hero__corner--right .lp-hero__btns {
    justify-content: flex-end;
}

/* Intro: held centered & stacked, then released to glide into the corners */
.lp-hero__corner--intro {
    text-align: center;
}

.lp-hero__corner--left.lp-hero__corner--intro {
    transform: translateX(calc(50vw - 64px)) translateX(-50%) translateY(calc(var(--lp-hero-h) * -0.5 + 120px - 70px));
}

.lp-hero__corner--right.lp-hero__corner--intro {
    transform: translateX(calc(-50vw + 64px)) translateX(50%) translateY(calc(var(--lp-hero-h) * -0.5 + 120px + 30px));
}

.lp-hero__corner--right.lp-hero__corner--intro .lp-hero-sub {
    margin: 0 auto 24px;
    text-align: center;
}

.lp-hero__corner--right.lp-hero__corner--intro .lp-hero__btns {
    justify-content: center;
}

/* Split (non-intro): nudge both corner blocks higher, scaling with viewport width.
   -100px at >=1700px wide, easing 15px less per 100px narrower (155px - 15vw), floored at 0. */
.lp-hero__corner:not(.lp-hero__corner--intro) {
    transform: translateY(clamp(-100px, calc(150px + 70vw), 0px));
}

@media (prefers-reduced-motion: reduce) {
    .lp-hero__corner {
        transition: none;
    }
    .lp-hero__corner--intro {
        transform: none;
    }
}

/* Mobile: full-screen hero, video covers it, text stays centered & visible (no 16:9 strip, no corner split) */
@media (max-width: 768px) {
    .lp-hero {
        aspect-ratio: auto;
        min-height: 100vh;
        min-height: 100svh;
        padding: 100px 24px 64px;
    }

    .lp-hero__video-wrap {
        inset: 0;
        padding-top: 0;
    }

    .lp-hero .lp-hero__corner {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        max-width: 100%;
        text-align: center;
    }

    .lp-hero .lp-hero__corner--right .lp-hero-sub {
        margin: 0 auto 24px;
        text-align: center;
    }

    .lp-hero .lp-hero__corner--right .lp-hero__btns {
        justify-content: center;
    }
}

.wai-root .lp-hero-h1 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(42px, 6.5vw, 78px);
    font-weight: 700;
    color: #fff;
    line-height: 1.04;
    letter-spacing: -2.5px;
    margin: 0 0 24px;
}

.lp-hero-h1__dim {
    color: rgba(255,255,255,0.55);
}

.lp-hero__btns {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.lp-hero-sub {
    font-size: 18px;
    color: white;
    font-weight: 300;
    max-width: 440px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.lp-btn-primary {
    background: #fff;
    color: #0a0a0a;
    border: none;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.15s;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lp-btn-primary:hover {
    opacity: 0.88;
}

.lp-btn-secondary {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.13);
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.15s;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.lp-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.lp-hero__bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #fff);
}

/* ── Industries ── */

.lp-industries {
    background: #fff;
    padding-top: 96px;
    padding-bottom: 96px;
    overflow: hidden;
    width: 100%;
}

.lp-industries__header {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 48px;
    margin-bottom: 40px;
}

.wai-root .lp-section-h2 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(28px, 3.6vw, 48px);
    font-weight: 400;
    color: #0a0a0a;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.lp-section-sub {
    font-size: 15px;
    color: #888;
    line-height: 1.7;
    max-width: 420px;
    margin: 0;
}

.lp-section-sub--mb25 {
    margin-bottom: 25px;
}

.lp-industries__track-wrap {
    position: relative;
    overflow: hidden;
}

.lp-industries__track {
    display: flex;
    gap: 10px;
    padding-left: 48px;
    /* transform and transition are applied inline (state-driven) */
}

.lp-industry-card {
    flex: 0 0 340px;
    height: 520px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* background is per-card (dynamic) */
}

.lp-industry-card__text-area {
    position: relative;
    overflow: hidden;
    padding: 24px 24px 20px;
    flex-shrink: 0;
}

/*
  Blurred header backdrop. Same URL as .lp-industry-card__image, declared as a background so the browser fetches
  the file once instead of twice — the markup used to carry a second, decorative <img> for exactly this.
*/
.lp-industry-card__text-area.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--lp-card-img);
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    transform: scaleY(-1);
    filter: blur(1px) brightness(0.7);
}

.lp-industry-card__glass {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.lp-industry-card__name {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.3px;
    margin: 0 0 8px;
    position: relative;
    z-index: 1;
}

.lp-industry-card__desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    max-width: 260px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.lp-industry-card__image {
    flex: 1;
    width: 100%;
    object-fit: cover;
    display: block;
    min-height: 0;
}

.lp-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0a0a0a;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    z-index: 10;
}

.lp-carousel-btn--prev {
    left: 56px;
}

.lp-carousel-btn--next {
    right: 24px;
}

/* ── Architecture / 4Ds ── */

.lp-arch {
    /* background applied inline as a gradient override over s.section */
    padding: 96px 48px;
    width: 100%;
}

.lp-arch__badge {
    display: inline-block;
    background: #0a0a0a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.lp-arch__header {
    margin-bottom: 60px;
}

.wai-root .lp-arch-h2 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -1px;
    line-height: 1.08;
    margin-bottom: 14px;
}

.lp-arch__sub {
    font-size: 16px;
    color: #888;
}

.lp-arch__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.lp-arch__visual {
    position: relative;
    height: 420px;
}

/* Layer card: most styles are dynamic (isActive, dist, layer.color, etc.) — kept inline */

.lp-layer-card__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lp-layer-card__badge {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.lp-layer-card__badge-label {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.lp-layer-card__name {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    transition: color 0.25s;
}

.lp-layer-card__tagline {
    font-size: 11px;
    font-weight: 600;
    margin: 3px 0 0;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    animation: layerSlideUp 0.3s ease forwards;
}

.lp-layer-card__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.lp-arch__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-arch-list-item {
    padding: 18px 22px;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.2s;
}

.lp-arch-list-item:not(.lp-arch-list-item--active):hover {
    background: rgba(0,0,0,0.03);
}

.lp-arch-list-item--active {
    background: #fff;
    border-radius: 0 10px 10px 0;
}

.lp-arch-list-item__title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 4px;
    transition: color 0.15s;
}

.lp-arch-list-item__desc {
    font-size: 14px;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* ── Self-serve platform ── */

.lp-platform {
    position: relative;
    overflow: hidden;
    padding: 112px 48px;
}

.lp-platform__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lp-platform__video {
    border: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.lp-platform__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(2px);
    z-index: 1;
    pointer-events: none;
}

.lp-platform__content {
    max-width: 1040px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.lp-platform__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 24px;
}

.wai-root .lp-platform__h2 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.lp-platform__h2-dim { color: rgba(10,10,10,0.3); }

.lp-platform__sub {
    font-size: 16px;
    color: #888;
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 20px;
    text-align: center;
}

.lp-platform__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    margin-bottom: 52px;
    text-align: left;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.lp-platform__card:first-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.lp-platform__card {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 28px 26px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.lp-platform__card:hover {
    background: rgba(255,255,255,0.85);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.lp-platform__card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f0f0ee;
    color: #0a0a0a;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.wai-root .lp-platform__card-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.lp-platform__card-desc {
    font-size: 13.5px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

.lp-platform__cta {
    background: #0a0a0a;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.lp-platform__cta:hover { opacity: 0.82; }

.lp-bridge {
    background: #fff;
    text-align: center;
    font-size: clamp(32px, 4vw, 56px);
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: rgba(10,10,10,0.2);
    letter-spacing: -1px;
    padding: 96px 48px;
}

/* ── Team (dark video section) ── */

.lp-team {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-team__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    display: flex;
}

/*
  One video for the whole band. The source is 1454x1080 letterboxed into a 16:9 frame, so its content is
  1454/1920 = 75.72% of the frame width. Blowing the frame up to 100/0.7572 = 132.05vw and centring it puts that
  content edge to edge and pushes both black bars off-screen — which is what the three offset copies of the same
  MP4 used to achieve. The panels below are now overlays only.
*/
.lp-team__video-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 132.05vw;
    height: 74.28vw;
    min-height: 100%;
}

.lp-team__video {
    border: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.lp-team__panel {
    width: 12.14vw;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.lp-team__glass {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.04) 50%, rgba(120,120,180,0.08) 100%);
    -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.08);
    backdrop-filter: blur(24px) saturate(180%) brightness(1.08);
}

.lp-team__seam--right-edge {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.4) 20%, rgba(255,255,255,0.4) 80%, transparent 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.lp-team__seam--left-edge {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 0%, rgba(255,255,255,0.4) 20%, rgba(255,255,255,0.4) 80%, transparent 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
}

.lp-team__outer-fade--left {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to right, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.1) 60%, transparent 100%);
}

.lp-team__outer-fade--right {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to left, rgba(10,10,10,0.82) 0%, rgba(10,10,10,0.1) 60%, transparent 100%);
}

.lp-team__center {
    flex: 1;
    position: relative;
}

.lp-team__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.20) 0%, rgba(10,10,10,0.36) 100%);
    z-index: 1;
    pointer-events: none;
}

.lp-team__content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 112px 48px;
}

.wai-root .lp-team-h2 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.08;
    margin-bottom: 28px;
}

.lp-team__sub {
    font-size: 17px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto;
}

/* ── Use Cases ── */

.lp-use-cases {
    background: #fff;
    padding-top: 96px;
    padding-bottom: 96px;
    overflow: hidden;
    width: 100%;
}

.lp-use-cases__header {
    padding: 0 48px;
    margin-bottom: 40px;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 48px;
}

@media (max-width: 900px) {
    .use-cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-use-card {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* background is per-card (dynamic) */
}

.lp-use-card__icon {
    margin-bottom: 20px;
}

.lp-use-card__name {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    /* color is dynamic (cs.dark) */
}

.lp-use-card__desc {
    font-size: 14px;
    line-height: 1.65;
    /* color is dynamic (cs.dark) */
}

/* ── Clients ── */

.lp-clients {
    padding: 96px 48px 104px;
    background: linear-gradient(180deg, #fafafa 0%, #f2f4f8 100%);
}

.lp-clients__header {
    text-align: center;
    margin-bottom: 48px;
}

.lp-clients__badge {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #7b7b7b;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 999px;
    padding: 6px 15px;
    margin-bottom: 20px;
}

.lp-clients__header .lp-section-sub {
    max-width: 560px;
    margin: 0 auto;
}

.lp-clients__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.lp-client-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.09);
    border-radius: 16px;
    padding: 28px 26px 24px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.lp-client-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0,0,0,0.18);
    box-shadow: 0 14px 36px rgba(10,10,10,0.09);
}

.lp-client-card__top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.lp-client-card__logo {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 11px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px;
    overflow: hidden;
}

.lp-client-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.lp-client-card__sector {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--client-accent, #666);
    line-height: 1.4;
}

.wai-root .lp-client-card__quote {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: #0a0a0a;
    letter-spacing: -0.3px;
    margin: 0 0 14px;
}

.wai-root .lp-client-card__summary {
    font-size: 15px;
    color: #5c5c5c;
    line-height: 1.7;
    flex: 1;
    margin: 0 0 24px;
}

.lp-client-card__foot {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(0,0,0,0.07);
}

.lp-client-card__mark {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #fff;
    background: var(--client-accent, #0a0a0a);
}

.lp-client-card__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.lp-client-card__name {
    font-size: 14.5px;
    font-weight: 500;
    color: #0a0a0a;
}

.lp-client-card__url {
    font-size: 13px;
    color: #999;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-client-card__arrow {
    flex-shrink: 0;
    color: #bdbdbd;
    transition: color 0.15s, transform 0.15s;
}

.lp-client-card:hover .lp-client-card__arrow {
    color: var(--client-accent, #0a0a0a);
    transform: translate(2px, -2px);
}

.wai-root .lp-clients__more {
    text-align: center;
    font-size: 15px;
    color: #8a8a8a;
    margin-top: 36px;
}

.lp-clients__more a {
    color: #0a0a0a;
    font-weight: 500;
}

.lp-clients__more a:hover { opacity: 0.7; }

@media (max-width: 980px) {
    .lp-clients__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .lp-clients { padding: 64px 24px 72px; }
}

/* ── Observability ── */

@keyframes metalShine {
    0%        { transform: translateX(-100%) skewX(-15deg); }
    60%, 100% { transform: translateX(250%) skewX(-15deg); }
}

.lp-metal-silver {
    background:
        linear-gradient(160deg,
            #606060 0%,
            #888888 8%,
            #aaaaaa 18%,
            #c4c4c4 28%,
            #b2b2b2 36%,
            #909090 48%,
            #a8a8a8 58%,
            #c0c0c0 66%,
            #9a9a9a 76%,
            #707070 88%,
            #8e8e8e 100%
        );
    position: relative;
    overflow: hidden;
}

.lp-metal-silver::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.0) 30%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0.0) 70%,
        transparent 100%
    );
    animation: metalShine 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.lp-metal-silver > * {
    position: relative;
    z-index: 1;
}

.lp-obs {
    /* background: #f5f5f3 applied inline via s.section */
}

.lp-obs__header {
    text-align: center;
    margin-bottom: 64px;
}

.wai-root .lp-obs-h2 {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -1px;
    line-height: 1.08;
    margin-bottom: 16px;
}

.lp-obs__sub {
    font-size: 17px;
    color: #fff;
}

.lp-obs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 56px;
}

.lp-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
    border: 1px solid #eaeaea;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.lp-feature-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border-color: #d8d8d8;
}

.lp-feature-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0f0ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    margin-bottom: 22px;
}

.lp-feature-card__title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #0a0a0a;
    margin-bottom: 10px;
}

.lp-feature-card__desc {
    font-size: 15px;
    color: #777;
    line-height: 1.65;
}


/* ── Simplicity / Flow diagram ── */

.lp-flow {
    background: linear-gradient(180deg, #ffffff 0%, #f6f7fb 100%);
}

.lp-flow__header {
    text-align: center;
    margin-bottom: 56px;
}

.lp-flow__diagram {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
}

.lp-flow__step-wrap {
    display: flex;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
}

.lp-flow__step {
    flex: 1 1 0;
    min-width: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 12px 32px rgba(20, 24, 60, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.lp-flow__step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #0a0a0a;
    color: #fff;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.lp-flow__step-title {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #0a0a0a;
    letter-spacing: -0.4px;
    margin: 0 0 6px;
}

.lp-flow__step-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin: 0 0 22px;
}

.lp-flow__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.lp-flow__chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 8px 8px;
    border-radius: 12px;
    background: #f6f7fb;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.lp-flow__media {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-flow__media-img {
    width: 100%;
    max-width: 160px;
    height: auto;
    object-fit: contain;
}

.lp-flow__chip-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #0a0a0a;
    flex-shrink: 0;
}

.lp-flow__chip-label {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.lp-flow__arrow {
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c2c6d6;
    padding: 0 4px;
}

.lp-flow__arrow svg {
    width: 40px;
    height: 22px;
}

.lp-flow__arrow--spacer {
    visibility: hidden;
}

@media (max-width: 900px) {
    .lp-flow__diagram {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .lp-flow__step-wrap {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-flow__arrow {
        flex: 0 0 auto;
        padding: 14px 0;
        transform: rotate(90deg);
    }

    .lp-flow__arrow--spacer {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════════════════════
   Server-rendered additions.

   Everything below replaces a style React used to compute inline (state-driven
   props, per-index arrays). The resting state is the server-rendered HTML;
   landing.js only toggles classes and two custom properties on top of it.
   ══════════════════════════════════════════════════════════════════════════ */

/* Hero video fades in once it can play. Without JS nothing adds --visible, so
   reveal it up front — the browser still autoplays a muted inline video. */
html:not(.js) .lp-hero__video-iframe {
    opacity: 1;
}

/* Industries carousel. Was an inline transform + transition driven by React state;
   landing.js now only writes --lp-offset (the card index). */
.lp-industries__track {
    transform: translateX(calc(var(--lp-offset, 0) * -350px));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* React mounted/unmounted the arrows; both are always in the DOM now and toggled with [hidden]. */
.lp-carousel-btn[hidden] {
    display: none;
}

/* ── 4Ds layer cards ──
   --layer-index positions the card in the stack, --layer-color / --layer-accent carry the
   per-layer palette, and .is-active swaps to the raised white treatment. */
.lp-layer-card {
    position: absolute;
    top: calc(var(--layer-index) * 62px);
    left: calc(var(--layer-index) * 20px);
    right: calc(var(--layer-index) * -3px);
    height: 76px;
    background: var(--layer-accent);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 0 20px 0 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    transition: all 0.42s cubic-bezier(0.34, 1.45, 0.64, 1);
    z-index: calc(4 - var(--layer-index));
}

.lp-layer-card.is-active {
    background: #ffffff;
    border: 1.5px solid color-mix(in srgb, var(--layer-color) 21%, transparent);
    border-left: 4px solid var(--layer-color);
    box-shadow: 0 20px 56px color-mix(in srgb, var(--layer-color) 16%, transparent), 0 6px 16px rgba(0,0,0,0.07);
    transform: translateY(-14px) translateX(-4px) scale(1.025);
    z-index: 10;
}

.lp-layer-card__badge { background: rgba(0,0,0,0.06); }
.lp-layer-card.is-active .lp-layer-card__badge { background: color-mix(in srgb, var(--layer-color) 8%, transparent); animation: badgeReveal 0.35s cubic-bezier(0.34,1.5,0.64,1) forwards; }
.lp-layer-card__badge-label { color: #aaa; }
.lp-layer-card.is-active .lp-layer-card__badge-label { color: var(--layer-color); }
.lp-layer-card__name { color: #555; }
.lp-layer-card.is-active .lp-layer-card__name { color: #0a0a0a; }
.lp-layer-card__tagline { color: var(--layer-color); display: none; }
.lp-layer-card.is-active .lp-layer-card__tagline { display: block; }
.lp-layer-card__dot { background: rgba(0,0,0,0.15); }
.lp-layer-card.is-active .lp-layer-card__dot { background: var(--layer-color); animation: dotPulse 1.8s ease-in-out infinite; }

/* Was an inline borderLeft toggled on activeLayer. */
.lp-arch-list-item { border-left: 3px solid transparent; }
.lp-arch-list-item--active { border-left-color: #0a0a0a; }

/* ── Use-case cards ──
   Per-index background stays inline in the view (static data); only the light/dark text
   treatment is class-driven. The icon inherits `color`, which is how <use> picks it up. */
.lp-use-card__icon { color: #0a0a0a; }
.lp-use-card__name { color: #0a0a0a; }
.lp-use-card__desc { color: #666; }
.lp-use-card.is-dark .lp-use-card__icon { color: rgba(255,255,255,0.85); }
.lp-use-card.is-dark .lp-use-card__name { color: #fff; }
.lp-use-card.is-dark .lp-use-card__desc { color: rgba(255,255,255,0.55); }

/* Flow chip marks: brand symbols carry their own fill, capability marks follow currentColor. */
.lp-flow__chip-icon { display: inline-flex; color: #0a0a0a; }
.lp-flow__chip-icon img { object-fit: contain; }
.lp-flow__chip-emoji { font-size: 26px; line-height: 1; }

/* ── Ledger ── */

.bl-ledger-section { background: #fafafa; }
.bl-ledger__header { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.bl-ledger { max-width: 900px; margin: 0 auto; }
.bl-ledger__heads { display: grid; gap: 0 22px; grid-template-columns: minmax(0, 0.85fr) 112px minmax(0, 1.2fr); padding: 0 18px 12px; }
.bl-ledger__head { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; display: flex; align-items: center; }
.bl-ledger__head--record { color: #8a5c12; justify-content: flex-end; }
.bl-ledger__head--pub { color: #0c6e62; grid-column: 3; }
.bl-ledger__rows { background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 16px; list-style: none; margin: 0; padding: 6px; }
.bl-ledger__row { align-items: center; border-radius: 10px; display: grid; gap: 0 22px; grid-template-columns: minmax(0, 0.85fr) 112px minmax(0, 1.2fr); padding: 16px 14px; transition: background 0.2s ease; }
.bl-ledger__row:hover, .bl-ledger__row.is-on { background: #f4f6f8; }
.bl-ledger__row:focus-visible { outline: 2px solid #17998a; outline-offset: 2px; }
.bl-ledger__field { align-items: baseline; display: grid; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 13px; gap: 4px 18px; grid-template-columns: minmax(0, 1fr) auto; }
.bl-ledger__key { color: #888; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bl-ledger__val { color: #8a5c12; font-weight: 500; text-align: right; }
.bl-ledger__pub { font-size: 15px; line-height: 1.45; color: #444; transition: color 0.2s ease; }
.bl-ledger__row.is-on .bl-ledger__pub { color: #0c6e62; }
.bl-ledger__wire { align-items: center; display: flex; opacity: 0.6; transition: opacity 0.2s ease; }
.bl-ledger__row.is-on .bl-ledger__wire { opacity: 1; }
.bl-ledger__node { background: #c08a1e; flex: none; height: 6px; transform: rotate(45deg); width: 6px; }
.bl-ledger__node--end { background: #17998a; }
.bl-ledger__line { background: linear-gradient(90deg, #c08a1e, #17998a); flex: 1; height: 1px; }

@media (max-width: 760px) {
    .bl-ledger__heads { display: none; }
    .bl-ledger__row { gap: 10px; grid-template-columns: minmax(0, 1fr); padding: 16px 12px; }
    .bl-ledger__field { font-size: 12px; gap: 4px 12px; }
    .bl-ledger__key { overflow: visible; text-overflow: clip; white-space: normal; }
    .bl-ledger__wire { display: none; }
    .bl-ledger__pub { border-left: 2px solid #17998a; padding-left: 12px; }
}

/* site.css resets .wai-root h1..h5 at (0,1,1); these heading classes are declared bare at (0,1,0) and lose
   font-size/font-weight to it. Re-declaring them under .wai-root restores the intended scale. */
.wai-root .lp-flow__step-title { font-size: 20px; font-weight: 500; letter-spacing: -0.4px; }
.wai-root .lp-industry-card__name { font-size: 18px; font-weight: 500; letter-spacing: -0.3px; }
.wai-root .lp-arch-list-item__title { font-size: 15px; font-weight: 600; }
.wai-root .lp-use-card__name { font-size: 18px; font-weight: 500; letter-spacing: -0.3px; }
.wai-root .lp-feature-card__title { font-size: 17px; font-weight: 600; }
