/**
 * /landing — dark theme overrides for ambassador Squish components.
 * Do not edit ambassador/css/main.css — color flips live here only.
 */

.landing-page {
    scroll-padding-top: 76px;
    --bg-primary: #0a0a0a;
    --bg-secondary: #0e1013;
    --bg-tertiary: #16181d;
    --bg-card: #121418;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-hover: rgba(255, 255, 255, 0.06);

    --text-primary: #ffffff;
    /* Option A: white opacity ladder (no Squish gray in copy) */
    --text-nav: rgba(255, 255, 255, 0.58);
    --text-nav-hover: #ffffff;
    --text-quiet: rgba(255, 255, 255, 0.82);
    --text-soft: rgba(255, 255, 255, 0.72);
    --text-meta: rgba(255, 255, 255, 0.65);
    --text-secondary: #9ba1ab;
    --text-tertiary: #6b7280;
    --text-muted: #4b5563;

    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.18);
    --lp-lime: #e0f782;
    --accent-primary: #e0f782;
    --accent-secondary: #e0f782;
    --accent-gradient: linear-gradient(135deg, #e0f782 0%, #e0f782 100%);
    --accent-glow: rgba(224, 247, 130, 0.3);
    --success: #e0f782;
    --landing-micro-size: 11px;
    --landing-micro-weight: 400;
    --landing-micro-tracking: 0.12em;
    --landing-nav-size: 15px;
    --landing-nav-tracking: 0.04em;
    --landing-cta-size: 14px;
    --landing-cta-tracking: 0.02em;
    --landing-cta-weight: 600;
    --landing-chrome-btn-height: 44px;

    margin: 0;
    color: var(--text-primary);
    background:
        radial-gradient(ellipse 128rem 102rem at 100% 0%,
            rgba(255, 255, 255, 0.028) 0%,
            rgba(255, 255, 255, 0.012) 42%,
            transparent 81%),
        #0a0a0a;
    font-family: var(--font-primary, "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
}

.landing-page #app {
    min-height: 100vh;
    background: transparent;
}

/* Header — logo left, nav centered, actions right (screenshot layout) */

.landing-page #landing-header .header__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 24px;
}

.landing-page #landing-header .logo,
.landing-page #landing-header .landing-logo-wrap {
    grid-column: 1;
    justify-self: start;
    position: relative;
}

.landing-page #landing-header .header__nav {
    grid-column: 2;
    margin-left: 0;
    margin-right: 0;
    justify-self: center;
    gap: 8px;
}

.landing-page #landing-header .header__actions {
    grid-column: 3;
    margin-left: 0;
    justify-self: end;
}

.landing-page #landing-header .burger {
    grid-column: 3;
    justify-self: end;
    color: #fff;
}

.landing-page #landing-header .burger__line,
.landing-page #landing-header .burger__line::before,
.landing-page #landing-header .burger__line::after {
    background: #fff;
    transition: transform 0.2s ease, top 0.2s ease;
}

/* Open state: hide the middle bar. Landing #fff on .burger__line beats
   ambassador .burger.active { background: transparent }, which left a
   third stroke and made an asterisk instead of an X. */
.landing-page #landing-header .burger.active .burger__line {
    background: transparent;
}

.landing-page #landing-header .burger.active .burger__line::before,
.landing-page #landing-header .burger.active .burger__line::after {
    background: #fff;
}

.landing-page #landing-header .header__nav a {
    padding: 10px 18px;
    font-size: var(--landing-nav-size);
    font-weight: var(--landing-micro-weight);
    letter-spacing: var(--landing-nav-tracking);
    color: var(--text-nav);
    transition: color 0.15s ease;
}

.landing-page #landing-header .header__nav a:hover,
.landing-page #landing-header .header__nav a:focus-visible {
    color: var(--text-nav-hover);
    font-weight: var(--landing-micro-weight);
}

.landing-page .header {
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
}

.landing-page .header.scrolled {
    background: rgba(10, 10, 10, 0.96);
    border-bottom-color: var(--border-color);
}

.landing-page #landing-header .logo-img {
    filter: brightness(0) invert(1);
}

.landing-page #landing-header .landing-logo-btn {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.landing-page #landing-header .landing-logo-btn:focus-visible {
    outline: 2px solid var(--lp-lime, #e0f782);
    outline-offset: 3px;
    border-radius: 4px;
}

.landing-page #landing-header .landing-logo-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 12050;
    min-width: 220px;
    padding: 10px 8px;
    border-radius: 14px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.landing-page #landing-header .landing-logo-menu__link,
.landing-page #landing-header .landing-logo-menu__tools-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font: 600 14px/1.2 system-ui, -apple-system, sans-serif;
    text-align: left;
    cursor: pointer;
}

.landing-page #landing-header .landing-logo-menu__link:hover,
.landing-page #landing-header .landing-logo-menu__tools-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.landing-page #landing-header .landing-logo-menu__chevron {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid rgba(255, 255, 255, 0.55);
    transition: transform 0.15s ease;
}

.landing-page #landing-header .landing-logo-menu__tools-toggle[aria-expanded="false"] .landing-logo-menu__chevron {
    transform: rotate(-90deg);
}

.landing-page #landing-header .landing-logo-menu__tools {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 4px;
}

.landing-page #landing-header .landing-logo-menu__auth {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    padding: 8px 12px 4px;
}

.landing-page #landing-header .landing-logo-menu__auth-link {
    border: 0;
    background: transparent;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    font: 500 14px/1.2 system-ui, -apple-system, sans-serif;
    cursor: pointer;
}

.landing-page #landing-header .landing-logo-menu__auth-link:hover {
    color: #fff;
}

.landing-page #landing-header .landing-logo-menu__auth-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.28);
}

/* Hero block */

.landing-page .landing-hero {
    padding-top: clamp(108px, 14vw, 160px);
    padding-bottom: clamp(48px, 8vw, 96px);
    background: #0a0a0a;
}

/* Fluid two-column hero — no hard 360/590 mins that blow out phones */
.landing-page .landing-hero .hero__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 4.5vw, 66px);
    align-items: start;
}

.landing-page .landing-hero .hero__content.lp-hero__copy {
    max-width: min(650px, 100%);
    min-width: 0;
}

.landing-page .award-laurel {
    filter: invert(1) brightness(1.6);
}

.landing-page .award-title,
.landing-page .award-subtitle,
.landing-page .award-stars {
    color: #fff;
}

.landing-page .landing-hero .hero__award {
    margin-bottom: clamp(20px, 3.5vw, 44px);
}

/* Wreath and copy must share one scale. Shrinking only .award-laurel (140px on
   phones) left 15px title * scale(1.14) sitting on the leaf tips. */
.landing-page .landing-hero .award-badge {
    container-type: inline-size;
    width: clamp(140px, 28vw, 200px);
}

.landing-page .landing-hero .award-laurel {
    width: 100%;
    height: auto;
    display: block;
}

.landing-page .landing-hero .award-content {
    transform: translate(-50%, calc(-50% + 2.5cqw)) scale(1.14);
}

.landing-page .landing-hero .award-title {
    font-size: 7.5cqw;
}

.landing-page .landing-hero .award-subtitle {
    font-size: 5.5cqw;
}

.landing-page .landing-hero .award-stars {
    font-size: 6cqw;
    letter-spacing: 1cqw;
}

.landing-page .landing-hero .landing-hero__eyebrow.badge-gray {
    margin-top: 0;
    margin-bottom: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--text-quiet);
    font-size: var(--landing-micro-size);
    font-weight: var(--landing-micro-weight);
    letter-spacing: var(--landing-micro-tracking);
    text-transform: uppercase;
}

.landing-page .landing-hero__workspace-meta {
    width: 100%;
    margin-top: 16px;
}

.landing-page .hero__image .hero__subtitle.landing-hero__workspace-caption {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    color: var(--text-quiet);
    font-size: var(--landing-micro-size);
    font-weight: var(--landing-micro-weight);
    letter-spacing: var(--landing-micro-tracking);
    line-height: 1.5;
    text-align: center;
    text-transform: none;
    white-space: nowrap;
}

.landing-page .landing-lab-trust {
    margin-top: clamp(72px, 9vw, 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 3vw, 32px);
}

.landing-page .landing-lab-trust__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3vw, 36px);
    width: auto;
    max-width: min(100%, 920px);
    margin-inline: auto;
    text-align: left;
}

.landing-page .landing-lab-trust__logo {
    display: block;
    width: min(38vw, 320px);
    flex: 0 0 auto;
    height: auto;
}

.landing-page .landing-lab-trust__tagline {
    margin: 0;
    flex: 0 1 auto;
    min-width: 0;
    max-width: none;
    padding: 0;
    color: var(--text-quiet);
    font-size: clamp(1.125rem, 1.55vw, 1.375rem);
    font-weight: 500;
    letter-spacing: 0.03em;
    line-height: 1.45;
}

.landing-page .landing-powered-by {
    width: 100%;
    display: flex;
    justify-content: center;
}

.landing-page .landing-powered-by img {
    display: block;
    width: min(100%, 920px);
    height: auto;
    opacity: 0.88;
}

@media (max-width: 768px) {
    .landing-page .landing-lab-trust__brand {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .landing-page .landing-lab-trust__logo {
        width: min(100%, 240px);
    }

    .landing-page .landing-lab-trust__tagline {
        font-size: 1.0625rem;
        line-height: 1.45;
    }

    .landing-page .landing-powered-by img {
        width: min(100%, 640px);
    }
}

/* Rubber H1 — scales down on phone without horizontal overflow */
.landing-page .lp-hero__copy h1 {
    color: var(--text-primary);
    font-size: clamp(2.6rem, 1.1rem + 7.2vw, 8.19rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-top: 6px;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

/* strap: same size as test-landing, lime accent on dark */
.landing-page .lp-hero__copy .lp-hero__strap {
    color: var(--lp-lime);
    margin-bottom: clamp(28px, 4vw, 44px);
    font-size: clamp(1rem, 0.85rem + 1.1vw, 1.35rem);
}

.landing-page .landing-hero .hero__actions {
    margin-top: 4px;
    margin-bottom: clamp(28px, 4.5vw, 52px);
    flex-wrap: wrap;
    gap: 12px;
}

.landing-page .hero__subtitle {
    max-width: 520px;
    color: var(--text-soft);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
}

/* ambassador btn-black slide, lime fill + black label (hero + header) */
.landing-page .btn-black.landing-lime-cta {
    height: var(--landing-chrome-btn-height);
    line-height: var(--landing-chrome-btn-height);
    padding: 0 26px;
    font-size: var(--landing-cta-size);
    font-weight: var(--landing-cta-weight);
    letter-spacing: var(--landing-cta-tracking);
    background: var(--accent-primary);
    color: #000;
}

.landing-page .btn-black.landing-lime-cta .btn-black__text span {
    height: var(--landing-chrome-btn-height);
    line-height: var(--landing-chrome-btn-height);
    font-size: var(--landing-cta-size);
    font-weight: var(--landing-cta-weight);
    letter-spacing: var(--landing-cta-tracking);
    color: #000;
}

.landing-page .btn-black.landing-lime-cta:hover .btn-black__text {
    transform: translateY(calc(-1 * var(--landing-chrome-btn-height)));
}

.landing-page .btn-black.landing-lime-cta:hover {
    background: var(--accent-primary);
    color: #000;
    box-shadow: none;
    transform: none;
}

/* Hero/header chrome buttons — same label typography as lime CTA */
.landing-page .landing-hero .hero__actions .landing-lime-cta,
.landing-page .landing-hero .hero__actions .landing-lime-cta .btn-black__text span,
.landing-page .landing-hero .hero__actions .product-card__btn,
.landing-page #landing-header .header__actions .landing-lime-cta,
.landing-page #landing-header .header__actions .landing-lime-cta .btn-black__text span,
.landing-page #landing-header .header__actions .product-card__btn {
    font-size: var(--landing-cta-size);
    font-weight: var(--landing-cta-weight);
    letter-spacing: var(--landing-cta-tracking);
}

.landing-page .product-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: var(--landing-chrome-btn-height);
    height: var(--landing-chrome-btn-height);
    padding: 0 26px;
    font-size: var(--landing-cta-size);
    font-weight: var(--landing-cta-weight);
    letter-spacing: var(--landing-cta-tracking);
    line-height: var(--landing-chrome-btn-height);
}

.landing-page .product-card__btn--secondary {
    color: var(--text-nav);
    border-color: rgba(255, 255, 255, 0.18);
}

.landing-page .product-card__btn--secondary:hover {
    color: var(--text-primary);
    font-weight: var(--landing-cta-weight);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.24);
}

.landing-page .hero__rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.landing-page .hero__rating span {
    color: var(--text-nav);
    font-size: var(--landing-micro-size);
    font-weight: var(--landing-micro-weight);
    letter-spacing: var(--landing-micro-tracking);
}

.landing-page .hero__stars {
    color: #fff;
}

.landing-page .hero__stars svg {
    fill: currentColor;
}

/* Creator proof stack (lab mechanic, landing row layout) */

.landing-page .hero__social-proof.landing-creator-proof-wrap {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.landing-page .landing-creator-proof__inline {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.landing-page .landing-creator-stack-anchor {
    position: relative;
    flex-shrink: 0;
}

.landing-page .testimonials-avatars.landing-creator-stack {
    display: inline-flex;
    align-items: center;
    position: relative;
    isolation: isolate;
}

.landing-page .landing-creator-stack__face,
.landing-page .landing-creator-stack__toggle {
    appearance: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.landing-page .landing-creator-stack__face {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-left: -14px;
    border-radius: 50%;
}

.landing-page .landing-creator-stack__face:first-child {
    margin-left: 0;
}

.landing-page .landing-creator-stack__face img {
    display: block;
    width: 40px;
    height: 40px;
    margin-left: 0;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    object-fit: cover;
    transition: transform 180ms ease, border-color 180ms ease;
}

.landing-page .landing-creator-stack__face:hover img,
.landing-page .landing-creator-stack__face:focus-visible img {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.28);
}

.landing-page .landing-creator-stack__tip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%) translateY(4px);
    padding: 5px 8px;
    border-radius: 8px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    z-index: 20;
}

.landing-page .landing-creator-stack__face:hover .landing-creator-stack__tip,
.landing-page .landing-creator-stack__face:focus-visible .landing-creator-stack__tip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.landing-page .landing-creator-stack__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    margin-left: -14px;
    border-radius: 50%;
    border: 3px solid var(--bg-primary);
    background: #121212;
    color: var(--text-nav);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    transition: transform 220ms ease, color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.landing-page .landing-creator-stack--open .landing-creator-stack__toggle {
    transform: rotate(180deg);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.28);
}

.landing-page .landing-creator-stack__toggle:hover,
.landing-page .landing-creator-stack__toggle:focus-visible {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.28);
}

.landing-page .landing-creator-list-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 60;
    width: min(340px, calc(100vw - 48px));
    max-width: 340px;
    padding: 12px 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: #121418;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.48);
    animation: landing-creator-list-open 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-page .landing-creator-list-panel:not([hidden]) {
    display: block;
}

.landing-page .landing-creator-list-panel__scroll {
    max-height: min(280px, 42vh);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
}

.landing-page .landing-creator-list-panel__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
    gap: 6px 4px;
}

.landing-page .landing-creator-list-panel__cell {
    position: relative;
    display: flex;
    justify-content: center;
}

.landing-page .landing-creator-list-panel__cell img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg-primary);
    background: #141414;
    transition: transform 180ms ease, border-color 180ms ease;
}

.landing-page .landing-creator-list-panel__cell:hover img,
.landing-page .landing-creator-list-panel__cell:focus-within img {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.28);
}

.landing-page .landing-creator-list-panel__name {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 6px);
    transform: translateX(-50%) translateY(4px);
    padding: 5px 8px;
    border-radius: 8px;
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    z-index: 5;
}

.landing-page .landing-creator-list-panel__cell:hover .landing-creator-list-panel__name,
.landing-page .landing-creator-list-panel__cell:focus-within .landing-creator-list-panel__name {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.landing-page .landing-creator-list-panel__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 0 2px;
}

.landing-page .landing-creator-list-panel__sentinel {
    width: 100%;
    height: 1px;
}

.landing-page .landing-creator-list-panel__end {
    margin: 0;
    font-size: 12px;
    font-weight: 400;
    color: var(--text-meta);
    text-align: center;
}

@keyframes landing-creator-list-open {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

@keyframes landing-creator-list-open-center {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.landing-page .hero__image {
    min-width: 0;
    align-self: start;
    animation: none;
}

/* Hero media — same structure as /ambassador, dark landing tokens */
.landing-page .hero__image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-2xl, 24px);
    border: 8px solid rgba(255, 255, 255, 0.1);
    background: #0e1013;
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.landing-page .hero__image-wrapper img,
.landing-page .hero__image-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bleed video 1px sides; +3px extra down to hide bottom seam */
.landing-page .hero__image-wrapper video {
    width: calc(100% + 2px);
    height: calc(100% + 5px);
    max-width: none;
    margin: -1px -1px -4px -1px;
}

/* Testimonials — ambassador markup, dark colors (lp-workspace tokens) */

.landing-page .testimonials-section {
    background: #0a0a0a;
}

.landing-page .testimonials-section .presets-sticky-title {
    color: var(--lp-lime);
}

.landing-page .testimonials-section .presets-sticky-desc {
    color: var(--text-quiet);
}

.landing-page .testimonials-section .testimonials-stars {
    color: #fff;
}

.landing-page .testimonials-section .testimonials-count {
    color: var(--text-secondary);
}

.landing-page .testimonials-section .testimonials-avatars img {
    border-color: #0a0a0a;
}

.landing-page .testimonials-section .testimonials-slide-inner {
    /* lp-workspace outer shell: #0e1013 + 8px rgba(255,255,255,0.12) frame */
    background: color-mix(in srgb, #ffffff 12%, #0e1013);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.landing-page .testimonials-section .testimonials-content {
    /* dark twin of ambassador white content panel */
    background: #0e1013;
}

.landing-page .testimonials-section .testimonials-rating,
.landing-page .testimonials-section .testimonials-quote,
.landing-page .testimonials-section .testimonials-author span {
    color: #fff;
}

.landing-page .testimonials-section .testimonials-nav__btn {
    background: #fff;
    color: #000;
}

.landing-page .testimonials-section .testimonials-nav__btn:hover {
    background: var(--lp-lime);
    color: #000;
}

/* Gallery — ambassador markup, dark colors, 3 columns x 2 rows */

.landing-page .gallery-section {
    background: #0a0a0a;
}

.landing-page .gallery-section .gallery-title {
    color: var(--lp-lime);
}

.landing-page .gallery-section .gallery-subtitle {
    color: var(--text-quiet);
}

.landing-page .gallery-section .gallery-header .badge-gray {
    color: var(--text-quiet);
    background: transparent;
    border: 0;
    padding: 0;
}

.landing-page .gallery-section .gallery-more-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(28px, 4vw, 40px);
}

.landing-page .gallery-section .gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.landing-page .gallery-section .gallery-more:hover,
.landing-page .gallery-section .gallery-more:focus-visible {
    background: var(--lp-lime);
    border-color: var(--lp-lime);
    color: #000;
    outline: none;
}

/* Base SVG points right (→); 45deg = ↘, hover 90deg = ↓ */
.landing-page .gallery-section .gallery-more__arrow {
    display: block;
    flex: 0 0 auto;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.landing-page .gallery-section .gallery-more:hover .gallery-more__arrow,
.landing-page .gallery-section .gallery-more:focus-visible .gallery-more__arrow {
    transform: rotate(90deg);
}

.landing-page .gallery-section .cards {
    grid-template-columns: repeat(3, 1fr);
}

.landing-page .gallery-section .gallery-card {
    /* same outer shell as testimonials-slide-inner */
    border-color: color-mix(in srgb, #ffffff 12%, #0e1013);
    background: color-mix(in srgb, #ffffff 12%, #0e1013);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.landing-page .gallery-section .gallery-card__image,
.landing-page .gallery-section .gallery-card__image--compare,
.landing-page .gallery-section .gallery-card-slider-wrapper,
.landing-page .gallery-section .gallery-card-slider-wrapper .comparison-before,
.landing-page .gallery-section .gallery-card-slider-wrapper .comparison-after {
    background: #0e1013;
}

.landing-page .gallery-section .gallery-card__body {
    background: #0e1013;
}

.landing-page .gallery-section .gallery-card--compare {
    gap: 8px;
}

.landing-page .gallery-section .gallery-card__title {
    color: #fff;
}

.landing-page .gallery-section .gallery-card__desc {
    display: none;
}

.landing-page .gallery-section .gallery-card__badge {
    background: var(--lp-lime);
    color: #000;
}

/* Empty cards first, then fade media in */
.landing-page .gallery-section .gallery-card--skeleton {
    pointer-events: none;
    cursor: default;
}

.landing-page .gallery-section .gallery-card__skeleton-media {
    background: linear-gradient(
        90deg,
        #16181c 25%,
        #22262c 50%,
        #16181c 75%
    );
    background-size: 200% 100%;
    animation: lpGalleryShimmer 1.4s ease-in-out infinite;
}

.landing-page .gallery-section .gallery-card__skeleton-line {
    display: block;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        #1a1d22 25%,
        #2a2f36 50%,
        #1a1d22 75%
    );
    background-size: 200% 100%;
    animation: lpGalleryShimmer 1.4s ease-in-out infinite;
}

.landing-page .gallery-section .gallery-card__skeleton-line--badge {
    width: 96px;
    height: 28px;
}

.landing-page .gallery-section .gallery-card__skeleton-line--title {
    width: 56%;
    height: 24px;
    margin-top: 4px;
}

@keyframes lpGalleryShimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.landing-page .gallery-section .gallery-card--appear {
    animation: lpGalleryCardIn 0.45s ease both;
}

@keyframes lpGalleryCardIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.landing-page .gallery-section .gallery-card img,
.landing-page .gallery-section .gallery-card video {
    opacity: 0;
    transition: opacity 0.45s ease;
}

.landing-page .gallery-section .gallery-card img.is-media-ready,
.landing-page .gallery-section .gallery-card video.is-media-ready {
    opacity: 1;
}

.landing-page .gallery-section .gallery-motion-masonry.is-skeleton {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    height: auto !important;
}

.landing-page .gallery-section .gallery-motion-masonry.is-skeleton .gallery-card--motion {
    position: static !important;
    width: auto !important;
    left: auto !important;
    top: auto !important;
    margin: 0;
}

.landing-page .gallery-section .gallery-motion-masonry.is-skeleton .gallery-card--motion-wide {
    grid-column: span 2;
}

@media (max-width: 900px) {
    .landing-page .gallery-section .gallery-motion-masonry.is-skeleton {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .landing-page .gallery-section .gallery-motion-masonry.is-skeleton {
        grid-template-columns: 1fr;
    }

    .landing-page .gallery-section .gallery-motion-masonry.is-skeleton .gallery-card--motion-wide {
        grid-column: auto;
    }
}

/* In Motion — 9:16 + 16:9 masonry (JS column packer, no dead gaps) */
.landing-page .gallery-section .gallery-motion {
    margin-top: clamp(48px, 7vw, 72px);
}

.landing-page .gallery-section .gallery-motion__title.gallery-title {
    margin: 0 0 clamp(20px, 3vw, 28px);
    color: var(--lp-lime);
}

.landing-page .gallery-section .gallery-motion-masonry {
    position: relative;
    display: block;
    width: 100%;
    min-height: 1px;
}

.landing-page .gallery-section .gallery-card--motion {
    display: flex;
    flex-direction: column;
    height: auto;
    margin: 0;
    cursor: pointer;
    min-width: 0;
    box-sizing: border-box;
}

/* Strict boxes: landscape 16:9, portrait 9:16. Body width = card width. */
.landing-page .gallery-section .gallery-card__image--motion {
    position: relative;
    overflow: hidden;
    background: #0e1013;
    flex: 0 0 auto;
    width: 100%;
    min-height: 0;
}

.landing-page .gallery-section .gallery-card--motion-wide .gallery-card__image--motion {
    aspect-ratio: 16 / 9;
}

.landing-page .gallery-section .gallery-card--motion-tall .gallery-card__image--motion {
    aspect-ratio: 9 / 16;
}

.landing-page .gallery-section .gallery-card--motion .gallery-card__body {
    flex: 0 0 auto;
    width: 100%;
}

.landing-page .gallery-section .gallery-card__image--motion::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(14, 16, 19, 0.42);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.landing-page .gallery-section .gallery-card--motion:hover .gallery-card__image--motion::after,
.landing-page .gallery-section .gallery-card--motion:focus-within .gallery-card__image--motion::after {
    opacity: 1;
}

.landing-page .gallery-section .gallery-card__image--motion video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #0e1013;
}

.landing-page .gallery-section .gallery-card__motion-cta {
    --motion-cta-h: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) scale(0.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    height: var(--motion-cta-h);
    min-height: var(--motion-cta-h);
    line-height: 1;
    padding: 0 18px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: none;
}

.landing-page .gallery-section .gallery-card__motion-cta .btn-black__text {
    height: var(--motion-cta-h);
    line-height: var(--motion-cta-h);
}

.landing-page .gallery-section .gallery-card__motion-cta .btn-black__text span {
    height: var(--motion-cta-h);
    line-height: var(--motion-cta-h);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page .gallery-section .gallery-card__motion-cta:hover .btn-black__text {
    transform: translateY(calc(-1 * var(--motion-cta-h)));
}

.landing-page .gallery-section .gallery-card--motion:hover .gallery-card__motion-cta,
.landing-page .gallery-section .gallery-card--motion:focus-within .gallery-card__motion-cta {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

/* Presets assets — ambassador markup, same 8px shell as gallery/why */

.landing-page .presets-section {
    background: #0a0a0a;
}

.landing-page .presets-section .presets-title {
    color: var(--lp-lime);
}

.landing-page .presets-section .presets-subtitle {
    color: var(--text-quiet);
}

.landing-page .presets-section .stat-badge {
    background: var(--lp-lime);
    color: #000;
}

.landing-page .presets-section .preset-card {
    background: #0e1013;
    border: 8px solid color-mix(in srgb, #ffffff 12%, #0e1013);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.landing-page .presets-section .preset-title {
    color: #fff;
}

.landing-page .presets-section .preset-desc {
    color: var(--text-quiet);
}

/* The problem — legacy workflow (how-it-works card shell, screenshot copy) */

.landing-page .landing-problem-section {
    background: #0a0a0a;
    padding: var(--space-3xl) 0;
}

.landing-page .landing-problem-section .landing-problem-eyebrow {
    display: block;
    margin-bottom: var(--space-md);
    color: var(--lp-lime);
    font-size: var(--landing-micro-size);
    font-weight: var(--landing-micro-weight);
    letter-spacing: var(--landing-micro-tracking);
    text-transform: uppercase;
    text-align: center;
}

.landing-page .landing-problem-section .how-step-card {
    background: #0e1013;
    border: 8px solid color-mix(in srgb, #ffffff 12%, #0e1013);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
}

.landing-page .landing-problem-section .step-number {
    display: inline-block;
    margin-bottom: var(--space-md);
    padding: 6px 12px;
    background: var(--lp-lime);
    color: #000;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.landing-page .landing-problem-section .step-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.landing-page .landing-problem-section .landing-problem-stat .step-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.landing-page .landing-problem-section .step-desc {
    margin: 0;
    color: var(--text-quiet);
    font-size: 0.9375rem;
    line-height: 1.55;
}

.landing-page .landing-problem-section .landing-problem-tangle {
    position: relative;
    margin: 0 0 var(--space-2xl);
    min-height: 640px;
    padding: 72px 8px 120px;
    overflow: visible;
}

.landing-page .landing-problem-section .landing-problem-tangle__wires {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.landing-page .landing-problem-section .landing-problem-wire {
    fill: none;
    stroke: color-mix(in srgb, var(--lp-lime) 45%, transparent);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-page .landing-problem-section .landing-problem-wire--pulse {
    stroke: var(--lp-lime);
    stroke-width: 2.5;
    stroke-dasharray: 12 88;
    stroke-dashoffset: 0;
    animation: landing-problem-pulse 5.5s linear infinite;
}

@keyframes landing-problem-pulse {
    to {
        stroke-dashoffset: -100;
    }
}

.landing-page .landing-problem-section .landing-problem-tangle__row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 28px 48px;
    margin-bottom: 72px;
}

.landing-page .landing-problem-section .landing-problem-tangle__row:last-child {
    margin-bottom: 0;
}

.landing-page .landing-problem-section .landing-problem-tangle__row--1 {
    justify-content: flex-start;
    padding-left: 2%;
    padding-right: 18%;
}

.landing-page .landing-problem-section .landing-problem-tangle__row--2 {
    justify-content: flex-end;
    padding-left: 22%;
    padding-right: 2%;
}

.landing-page .landing-problem-section .landing-problem-tangle__row--3 {
    justify-content: flex-start;
    padding-left: 8%;
    padding-right: 22%;
}

.landing-page .landing-problem-section .landing-problem-node {
    position: relative;
    min-width: 148px;
    max-width: 190px;
    min-height: 0;
    padding: 18px 20px;
    transform: translateY(var(--float-y, 0)) rotate(var(--float-r, 0deg));
}

.landing-page .landing-problem-section .landing-problem-node .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    padding: 0;
    border-radius: 50%;
    background: var(--lp-lime);
    color: #000;
    font-size: 0.8125rem;
    font-weight: 700;
}

.landing-page .landing-problem-section .landing-problem-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--space-lg);
}

@media (max-width: 1100px) {
    .landing-page .landing-problem-section .landing-problem-tangle {
        min-height: 0;
        padding: 40px 0 64px;
    }

    .landing-page .landing-problem-section .landing-problem-tangle__row {
        margin-bottom: 40px;
        gap: 16px 20px;
    }

    .landing-page .landing-problem-section .landing-problem-tangle__row--1,
    .landing-page .landing-problem-section .landing-problem-tangle__row--2,
    .landing-page .landing-problem-section .landing-problem-tangle__row--3 {
        padding: 0;
        justify-content: center;
    }

    .landing-page .landing-problem-section .landing-problem-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .landing-page .landing-problem-section .landing-problem-tangle__wires {
        display: none;
    }

    .landing-page .landing-problem-section .landing-problem-node {
        transform: none;
        max-width: none;
        flex: 1 1 calc(50% - 12px);
    }

    .landing-page .landing-problem-section .landing-problem-stats {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .landing-page .landing-problem-section .landing-problem-wire--pulse {
        animation: none;
        stroke-dasharray: none;
        opacity: 0.7;
    }

    .landing-page .how-it-works-section .how-image-card {
        transition: none;
    }

    .landing-page .how-it-works-section .how-image-wire--pulse {
        animation: none;
        stroke-dasharray: none;
        opacity: 0.85;
    }
}

/* How it works — ambassador markup, dark palette + landing shell cards */

.landing-page .how-it-works-section {
    background: #0a0a0a;
}

.landing-page .how-it-works-section .how-images {
    --how-align: 0;
    position: relative;
    justify-content: center;
    align-items: center;
    /* 2× cards (300); remaining width shared as gap so 3-up still fits the container */
    gap: calc(max(0px, (100% - 900px) / 2) * var(--how-align));
    margin-top: var(--space-lg);
    margin-bottom: var(--space-xl);
    min-height: 360px;
}

.landing-page .how-it-works-section .how-images__wires {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
    opacity: max(0, calc((var(--how-align) - 0.28) / 0.42));
    transition: none;
}

.landing-page .how-it-works-section .how-image-wire--pulse {
    fill: none;
    stroke: var(--lp-lime);
    stroke-width: 4.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 8 16;
    animation: landing-how-wire-pulse 0.9s linear infinite;
}

@keyframes landing-how-wire-pulse {
    to {
        stroke-dashoffset: -48;
    }
}

.landing-page .how-it-works-section .how-image-card {
    position: relative;
    z-index: 1;
    width: 300px;
    height: 300px;
    background: #0e1013;
    /* Border weight unchanged at 2× card size */
    border: 8px solid color-mix(in srgb, #ffffff 12%, #0e1013);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    will-change: transform;
}

/* Override ambassador scatter; interpolate → flat as --how-align goes 0→1 */
.landing-page .how-it-works-section .how-image-1 {
    transform:
        rotate(calc(-12deg * (1 - var(--how-align))))
        translateX(calc(40px * (1 - var(--how-align))));
    z-index: 1;
}

.landing-page .how-it-works-section .how-image-2 {
    transform: translateY(calc(-20px * (1 - var(--how-align))));
    z-index: 2;
}

.landing-page .how-it-works-section .how-image-3 {
    transform:
        rotate(calc(12deg * (1 - var(--how-align))))
        translateX(calc(-40px * (1 - var(--how-align))));
    z-index: 1;
}

.landing-page .how-it-works-section .how-images.is-aligned .how-image-1,
.landing-page .how-it-works-section .how-images.is-aligned .how-image-2,
.landing-page .how-it-works-section .how-images.is-aligned .how-image-3 {
    transform: none;
}

.landing-page .how-it-works-section .how-title {
    text-align: center;
    color: var(--lp-lime);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.landing-page .landing-problem-section .how-title {
    text-align: center;
    color: var(--lp-lime);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.landing-page .how-it-works-section .how-subtitle,
.landing-page .landing-problem-section .how-subtitle {
    text-align: center;
    margin: 0 auto var(--space-2xl);
    max-width: 720px;
    color: var(--text-quiet);
    font-size: 1.125rem;
    line-height: 1.6;
}

.landing-page .how-it-works-section .how-subtitle {
    white-space: nowrap;
    margin-bottom: var(--space-xl);
}

.landing-page .how-it-works-section .how-steps-grid {
    gap: var(--space-lg);
}

.landing-page .how-it-works-section .how-step-card {
    background: #0e1013;
    border: 8px solid color-mix(in srgb, #ffffff 12%, #0e1013);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
}

.landing-page .how-it-works-section .step-number {
    display: inline-block;
    margin-bottom: var(--space-lg);
    padding: 6px 12px;
    background: var(--lp-lime);
    color: #000;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
}

.landing-page .how-it-works-section .step-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.landing-page .how-it-works-section .step-desc {
    color: var(--text-quiet);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Why Uniify — ambassador use-cases layout, dark colors only (no extra borders) */

.landing-page .use-cases-section {
    background: #0a0a0a;
}

.landing-page .use-cases-section .gallery-title {
    color: var(--lp-lime);
    max-width: 48rem;
}

.landing-page .use-cases-section .gallery-subtitle {
    color: var(--text-quiet);
    max-width: 34rem;
}

.landing-page .use-cases-section .gallery-header .badge-gray {
    color: var(--text-quiet);
    background: transparent;
    border: 0;
    padding: 0;
}

.landing-page .use-cases-section .use-cases-grid {
    background: color-mix(in srgb, #ffffff 12%, #0e1013);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    border: 0;
    border-radius: 40px;
    padding: 8px;
    gap: 8px;
    align-items: stretch;
}

.landing-page .use-cases-section .use-cases-image {
    background: #0e1013;
    border-radius: 32px;
    /* Match accordion: room for longest open panel (header + copy + 3 bullets + progress) */
    min-height: 640px;
    border: 0;
    box-shadow: none;
}

.landing-page .use-cases-section .use-cases-accordion {
    height: 640px;
    min-height: 640px;
    overflow: hidden;
}

.landing-page .use-cases-section .accordion-item {
    background: #0e1013;
    border: 0;
    box-shadow: none;
    border-radius: 32px;
    padding: 24px;
    margin-bottom: 8px;
    flex-shrink: 0;
}

.landing-page .use-cases-section .accordion-item:last-child {
    margin-bottom: 0;
}

.landing-page .use-cases-section .accordion-item.active {
    /* Bottom inset only: 2/3 of prior 32px — do not shrink the 640px shell */
    padding-bottom: 21px;
    flex: 1 1 0;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.landing-page .use-cases-section .accordion-item.active .accordion-content {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
}

.landing-page .use-cases-section .accordion-header h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
}

.landing-page .use-cases-section .accordion-content p {
    color: var(--text-quiet);
}

.landing-page .use-cases-section .accordion-list {
    margin-bottom: 16px;
}

.landing-page .use-cases-section .accordion-list li {
    color: var(--text-quiet);
}

.landing-page .use-cases-section .accordion-list li svg {
    color: var(--text-secondary);
}

.landing-page .use-cases-section .accordion-icon::before,
.landing-page .use-cases-section .accordion-icon::after {
    background: #fff;
}

.landing-page .use-cases-section .accordion-progress {
    background: rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.landing-page .use-cases-section .accordion-progress::after {
    background: var(--lp-lime);
}

/* Categories — ambassador prompts-section sticky cards, dark palette */

.landing-page .prompts-section {
    background: #0a0a0a;
}

.landing-page .prompts-section .prompts-title {
    color: var(--lp-lime);
}

.landing-page .prompts-section .prompts-subtitle {
    color: var(--text-quiet);
}

.landing-page .prompts-section .prompt-card-inner {
    background: color-mix(in srgb, #ffffff 12%, #0e1013);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    border: 0;
}

.landing-page .prompts-section .prompt-content {
    background: #0e1013;
}

.landing-page .prompts-section .prompt-content h3 {
    color: #fff;
}

.landing-page .prompts-section .prompt-content p {
    color: var(--text-quiet);
}

.landing-page .prompts-section .prompt-image {
    background: #0e1013;
}

.landing-page .prompts-section .prompt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Ambassador ≤768 squares the text bottom and adds 16px image inset, which
   breaks the 8px chrome + 32px inner radii used on desktop. Keep the same
   outline stacked: two fully-rounded insets, image cover-fitted. */
@media (max-width: 768px) {
    .landing-page .prompts-section .prompt-card-inner {
        grid-template-columns: 1fr;
    }

    .landing-page .prompts-section .prompt-content {
        border-radius: 32px;
        padding: 32px;
    }

    .landing-page .prompts-section .prompt-image {
        margin: 0;
        width: 100%;
        border-radius: 32px;
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }
}

.landing-page .prompts-section .stat-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.landing-page .prompts-section .stat-badge {
    background: var(--lp-lime);
    color: #000;
}

/* Results — ambassador presets-sticky shell, workflow impact copy */

.landing-page .presets-sticky-section {
    background: #0a0a0a;
}

.landing-page .presets-sticky-section .presets-sticky-title {
    color: #fff;
}

.landing-page .presets-sticky-section .presets-sticky-desc {
    color: var(--text-quiet);
}

.landing-page .presets-sticky-section .presets-sticky-main {
    min-width: 0;
}

.landing-page .presets-sticky-section .presets-sticky-card {
    position: relative;
    padding: 44px 24px 32px;
    background: #0e1013;
    border: 8px solid color-mix(in srgb, #ffffff 12%, #0e1013);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Keep ambassador card rhythm: 160 image → metric → title */
.landing-page .presets-sticky-section .presets-sticky-card .preset-image {
    width: 160px;
    height: 160px;
    margin: 0 0 28px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.landing-page .presets-sticky-section .presets-sticky-card .preset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.landing-page .presets-sticky-section .presets-sticky-card .stat-badge {
    display: block;
    width: fit-content;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 18px;
    padding: 0;
    background: transparent;
    color: var(--lp-lime);
    border-radius: 0;
    font-size: clamp(1.75rem, 2.4vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.landing-page .presets-sticky-section .presets-sticky-card__desc {
    position: absolute;
    top: 16px;
    right: 20px;
    z-index: 2;
    margin: 0;
    max-width: calc(100% - 40px);
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-align: right;
    pointer-events: none;
}

.landing-page .presets-sticky-section .presets-sticky-card__title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin: 0;
    padding-bottom: 8px;
}

.landing-page .presets-sticky-section .presets-sticky-card.is-featured {
    background: var(--lp-lime);
    border-color: var(--lp-lime);
    box-shadow: none;
}

.landing-page .presets-sticky-section .presets-sticky-card.is-featured .stat-badge {
    background: transparent;
    color: #000;
}

.landing-page .presets-sticky-section .presets-sticky-card.is-featured .presets-sticky-card__title {
    color: #000;
}

.landing-page .presets-sticky-section .presets-sticky-card.is-featured .presets-sticky-card__desc {
    color: rgba(0, 0, 0, 0.7);
}

.landing-page .presets-sticky-section .btn-black {
    background: var(--lp-lime);
}

.landing-page .presets-sticky-section .btn-black .btn-black__text span {
    color: #000;
}

.landing-page .presets-sticky-section .landing-results-note {
    margin: 16px 0 0;
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    line-height: 1.5;
    text-align: right;
}

/* Plans (#pricing) — dark UI lives in /css/pricing-plans.css (.lp-pricing-root) */

.landing-page #pricing.lp-section--soft {
    background: #0a0a0a;
}

.landing-page #pricing .lp-price__amount {
    transition: transform 180ms ease, opacity 180ms ease;
}

/* Cost comparison — screenshot layout, landing tokens */

.landing-page .landing-cost-section {
    background: #0a0a0a;
    padding: var(--space-3xl) 0;
}

.landing-page .landing-cost-title {
    margin: 0 0 var(--space-md);
    color: #fff;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.12;
}

.landing-page .landing-cost-lead {
    margin: 0 0 var(--space-2xl);
    max-width: 40rem;
    color: var(--text-quiet);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.55;
}

.landing-page .landing-cost-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.landing-page .landing-cost-card {
    display: flex;
    flex-direction: column;
    padding: 28px 28px 24px;
    background: #0e1013;
    border: 8px solid color-mix(in srgb, #ffffff 12%, #0e1013);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-2xl);
}

.landing-page .landing-cost-card__label {
    display: block;
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-size: var(--landing-micro-size);
    font-weight: var(--landing-micro-weight);
    letter-spacing: var(--landing-micro-tracking);
    text-transform: uppercase;
}

.landing-page .landing-cost-card--uniify .landing-cost-card__label {
    color: var(--lp-lime);
}

.landing-page .landing-cost-card__price {
    margin: 0;
    color: #fff;
    font-size: clamp(2.75rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.landing-page .landing-cost-card--uniify .landing-cost-card__price {
    color: var(--lp-lime);
}

.landing-page .landing-cost-card__price-sub {
    margin: 8px 0 28px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.landing-page .landing-cost-rows {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.landing-page .landing-cost-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 4.25rem;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.landing-page .landing-cost-row__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    min-width: 0;
}

.landing-page .landing-cost-row__name {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.3;
}

.landing-page .landing-cost-row__tool {
    color: var(--text-secondary);
    font-size: 0.8125rem;
    line-height: 1.3;
    min-height: 1.0625rem;
}

.landing-page .landing-cost-row__tool--spacer {
    visibility: hidden;
}

.landing-page .landing-cost-row__value {
    flex-shrink: 0;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.3;
}

.landing-page .landing-cost-included {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 5px 10px;
    border: 1px solid color-mix(in srgb, var(--lp-lime) 55%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--lp-lime) 12%, transparent);
    color: var(--lp-lime);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
}

.landing-page .landing-cost-card__foot {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-page .landing-cost-card__foot-title {
    margin: 0 0 8px;
    color: var(--text-secondary);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.4;
}

.landing-page .landing-cost-card__foot-title--strong {
    color: #fff;
}

.landing-page .landing-cost-card__foot-text {
    margin: 0;
    color: var(--text-tertiary);
    font-size: 0.8125rem;
    line-height: 1.55;
}

.landing-page .landing-cost-save {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    background: var(--lp-lime);
    border-radius: var(--radius-2xl);
}

.landing-page .landing-cost-save__headline {
    margin: 0 0 6px;
    color: #000;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-transform: uppercase;
}

.landing-page .landing-cost-save__sub {
    margin: 0;
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.9375rem;
    line-height: 1.35;
}

.landing-page .landing-cost-save__right {
    margin: 0;
    color: #000;
    font-size: clamp(1.25rem, 2.4vw, 1.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-align: right;
    text-transform: uppercase;
    flex-shrink: 0;
}

.landing-page .landing-cost-disclaimer {
    margin: 16px 0 0;
    color: var(--text-tertiary);
    font-size: 0.75rem;
    line-height: 1.5;
    text-align: center;
}

/* FAQ — ambassador markup, dark tokens */

.landing-page .faq-section {
    background: #0a0a0a;
    padding: var(--space-3xl) 0;
}

.landing-page .faq-section .faq-header .badge-gray {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-quiet);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-page .faq-section .faq-title {
    color: #fff;
}

.landing-page .faq-section .faq-subtitle {
    color: var(--text-quiet);
}

.landing-page .faq-section .faq-list {
    background: #0e1013;
    border: 8px solid color-mix(in srgb, #ffffff 12%, #0e1013);
}

.landing-page .faq-section .faq-item {
    background: #121418;
}

.landing-page .faq-section .faq-question {
    color: #fff;
}

.landing-page .faq-section .faq-chevron {
    color: var(--lp-lime);
}

.landing-page .faq-section .faq-answer p {
    color: var(--text-quiet);
}

.landing-page .faq-section .faq-item.active .faq-answer {
    max-height: 360px;
}

/* Final CTA — lime panel from test-landing (already brand-colored) */

.landing-page .lp-final-cta {
    background: #0a0a0a;
    padding: 0 0 var(--space-3xl);
}

.landing-page .lp-final-cta .lp-final-cta__inner {
    background: var(--lp-lime);
}

.landing-page .lp-final-cta .lp-primary.btn-black {
    color: #fff;
    background: #000;
    box-shadow: none;
}

.landing-page .lp-final-cta .lp-primary.btn-black:hover,
.landing-page .lp-final-cta .lp-primary.btn-black:focus-visible {
    box-shadow: none;
    transform: none;
}

.landing-page .lp-final-cta .lp-primary.btn-black .btn-black__text,
.landing-page .lp-final-cta .lp-primary.btn-black .btn-black__text span {
    color: #fff;
}

/* Footer — brand | tagline | Privacy & Terms | copyright */
.landing-page .lp-footer {
    --lp-muted: rgba(245, 245, 245, 0.62);
    --lp-faint: rgba(245, 245, 245, 0.42);
    --lp-line: rgba(255, 255, 255, 0.12);
    padding: 40px 0 48px;
    background: #0a0a0a;
    border-top: 1px solid var(--lp-line);
}

.landing-page .lp-footer__brand {
    grid-area: brand;
    display: inline-flex;
    align-items: center;
}

.landing-page .lp-footer__brand img {
    filter: brightness(0) invert(1);
    display: block;
    height: 28px;
    width: auto;
}

.landing-page .lp-footer__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    grid-template-areas: "brand tagline nav copy";
    align-items: center;
    column-gap: 28px;
    row-gap: 14px;
}

.landing-page .lp-footer__nav {
    grid-area: nav;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    align-items: center;
    justify-content: center;
}

.landing-page .lp-footer__tagline,
.landing-page .lp-footer__copy,
.landing-page .lp-footer__nav a {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    font-family: inherit;
}

.landing-page .lp-footer__copy {
    grid-area: copy;
    display: block;
    justify-self: end;
    color: var(--lp-faint);
    white-space: nowrap;
    text-align: right;
}

.landing-page .lp-footer__tagline {
    grid-area: tagline;
    display: block;
    color: var(--lp-faint);
    text-align: center;
    justify-self: center;
}

.landing-page .lp-footer nav a,
.landing-page .lp-footer__nav a {
    color: var(--lp-muted);
    font-weight: 600;
    text-decoration: none;
}

.landing-page .lp-footer nav a:hover,
.landing-page .lp-footer__nav a:hover {
    color: #fff;
}

@media (max-width: 900px) {
    .landing-page .lp-footer {
        padding: 32px 0 40px;
    }

    .landing-page .lp-footer__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "tagline"
            "nav"
            "copy";
        justify-items: center;
        justify-content: center;
        text-align: center;
        row-gap: 14px;
        column-gap: 0;
    }

    .landing-page .lp-footer__brand {
        justify-self: center;
    }

    .landing-page .lp-footer__nav {
        display: flex;
        justify-content: center;
        justify-self: center;
        width: 100%;
        max-width: none;
    }

    .landing-page .lp-footer__copy {
        justify-self: center;
        text-align: center;
        white-space: normal;
        font-size: 12px;
        line-height: 18px;
        width: 100%;
    }

    .landing-page .lp-footer__tagline {
        justify-self: center;
        text-align: center;
        font-size: 12px;
        line-height: 18px;
        width: 100%;
        max-width: 22rem;
    }

    .landing-page .lp-footer__nav a {
        font-size: 12px;
        line-height: 18px;
    }

    .landing-page .landing-cost-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .landing-cost-save {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .landing-page .landing-cost-save__right {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .landing-page .lp-footer__inner,
    .landing-page .lp-footer__brand,
    .landing-page .lp-footer__tagline,
    .landing-page .lp-footer__nav,
    .landing-page .lp-footer__copy {
        text-align: center;
        justify-self: center;
    }
}

@media (max-width: 768px) {
    .landing-page .how-it-works-section .how-title,
    .landing-page .how-it-works-section .how-subtitle,
    .landing-page .landing-problem-section .how-title,
    .landing-page .landing-problem-section .how-subtitle {
        max-width: none;
    }

    .landing-page .how-it-works-section .how-subtitle {
        white-space: normal;
    }

    .landing-page .how-it-works-section .how-images {
        min-height: 220px;
        flex-wrap: wrap;
        gap: calc(24px * var(--how-align));
    }

    .landing-page .how-it-works-section .how-image-card {
        width: 200px;
        height: 200px;
    }

    .landing-page .use-cases-section .gallery-title,
    .landing-page .use-cases-section .gallery-subtitle {
        max-width: none;
    }

    .landing-page .use-cases-section .use-cases-image {
        min-height: 320px;
    }

    /* Stacked phone: do not keep the 640px desktop shell. flex:1 + min-height:0
       + overflow:hidden clips wrapped bullets (Archviz presets, etc.). */
    .landing-page .use-cases-section .use-cases-accordion {
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .landing-page .use-cases-section .accordion-item.active {
        flex: none;
        min-height: auto;
        overflow: visible;
    }

    .landing-page .use-cases-section .accordion-item.active .accordion-content {
        flex: none;
        min-height: auto;
        overflow: visible;
    }

    .landing-page .use-cases-section .accordion-header h3 {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .landing-page .gallery-section .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (max-width: 768px) {
    .landing-page .gallery-section .cards {
        grid-template-columns: 1fr;
    }






}

@media (max-width: 1100px) {
    .landing-page .landing-hero .hero__grid {
        grid-template-columns: 1fr;
        gap: clamp(24px, 5vw, 40px);
    }

    .landing-page .landing-hero .hero__content.lp-hero__copy {
        max-width: none;
        text-align: center;
    }

    .landing-page .landing-hero .hero__award {
        display: flex;
        justify-content: center;
    }

    .landing-page .landing-hero .hero__actions {
        justify-content: center;
        align-items: center;
    }

    /* Column flex on phone: justify-content is vertical. Center the 320px CTAs
       and the creator row (base align-items:flex-start left-sticks them). */
    .landing-page .landing-hero .hero__social-proof.landing-creator-proof-wrap {
        align-items: center;
        width: 100%;
        max-width: 100%;
    }

    .landing-page .landing-hero .landing-creator-proof__inline {
        justify-content: center;
        flex-wrap: wrap;
        max-width: 100%;
    }

    /* Panel is absolute on the avatar cluster; on stacked hero that pins it
       left of the (now centered) row. Re-anchor to the full-width wrap. */
    .landing-page .landing-hero .landing-creator-stack-anchor {
        position: static;
    }

    .landing-page .landing-hero .landing-creator-list-panel {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        animation-name: landing-creator-list-open-center;
    }

    .landing-page .landing-hero .hero__rating {
        align-items: center;
    }

    .landing-page .hero__image-wrapper {
        width: min(560px, 100%);
        margin-inline: auto;
    }

    .landing-page .hero__image .hero__subtitle.landing-hero__workspace-caption {
        white-space: normal;
        text-wrap: balance;
    }
}

@media (max-width: 992px) {
    .landing-page #landing-header .header__inner {
        grid-template-columns: auto 1fr auto;
    }

    .landing-page #landing-header .logo {
        grid-column: 1;
        grid-row: 1;
    }

    .landing-page #landing-header .header__actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        margin-left: 0;
    }

    .landing-page #landing-header .header__actions #auth-status {
        display: none;
    }

    .landing-page #landing-header .header__actions .landing-lime-cta {
        display: inline-flex;
        height: 38px;
        line-height: 38px;
        padding: 0 16px;
        font-size: 13px;
    }

    .landing-page #landing-header .header__actions .landing-lime-cta .btn-black__text span {
        height: 38px;
        line-height: 38px;
    }

    .landing-page #landing-header .burger {
        grid-column: 3;
        grid-row: 1;
    }

    /* Kill ambassador fullscreen slide drawer — logo-menu chrome dropdown instead */
    .landing-page #landing-header .header__nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: auto;
        bottom: auto;
        width: min(260px, calc(100vw - 24px));
        margin: 0;
        padding: 10px 8px;
        transform: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 12050;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 2px;
        border-radius: 14px;
        background: #141414;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
        transition: opacity 0.15s ease, visibility 0.15s ease;
    }

    .landing-page #landing-header .header__nav.menu {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .landing-page #landing-header .header__nav a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        padding: 10px 12px;
        border-radius: 10px;
        font: 600 14px/1.2 system-ui, -apple-system, sans-serif;
        letter-spacing: 0;
        color: rgba(255, 255, 255, 0.92);
        text-align: left;
    }

    .landing-page #landing-header .header__nav a:hover,
    .landing-page #landing-header .header__nav a:focus-visible {
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        font-weight: 600;
    }

    .landing-page .landing-hero {
        padding-top: clamp(96px, 18vw, 128px);
        padding-bottom: clamp(40px, 8vw, 64px);
    }
}

@media (max-width: 768px) {
    .landing-page .landing-hero .hero__actions .landing-lime-cta,
    .landing-page .landing-hero .hero__actions .product-card__btn {
        width: 100%;
        max-width: 320px;
        margin-inline: auto;
        justify-content: center;
    }

    .landing-page .lp-hero__copy h1 {
        font-size: clamp(2.35rem, 0.6rem + 9.2vw, 4.8rem);
    }
}

@media (max-width: 480px) {
    .landing-page .lp-hero__copy h1 {
        font-size: clamp(2.15rem, 0.4rem + 10.5vw, 3.4rem);
    }

    .landing-page .hero__image-wrapper {
        border-width: 5px;
        border-radius: 18px;
    }
}

/* -- Pro hub marketing mock (parity with 3d.uniify.space empty topbar shell) -- */

.landing-page .landing-hub-section {
    padding: clamp(20px, 3vw, 36px) 0 clamp(32px, 5vw, 64px);
    scroll-margin-top: 76px;
    background: #0a0a0a;
}

.landing-page .landing-lab-trust--product {
    margin-top: 0;
    margin-bottom: clamp(18px, 2.5vw, 28px);
    gap: clamp(14px, 2vw, 22px);
}

.landing-page .landing-lab-trust--product .landing-lab-trust__logo {
    width: min(34vw, 300px);
}

.landing-page .landing-lab-trust--product .landing-lab-trust__tagline {
    font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.landing-page .landing-lab-trust--product .landing-powered-by img {
    width: min(100%, 840px);
}

.landing-page .landing-hub-mock {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    color: #f4f4f2;
}

.landing-page .landing-hub-topbar {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
    /* Vertical chrome only — keeps bar width; room for taller pills */
    padding: 7px 8px;
    border-radius: 24px;
    border: 8px solid color-mix(in srgb, #ffffff 12%, #0e1013);
    background: #0e1013;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.landing-page .landing-hub-tools {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.landing-page .landing-hub-tools::-webkit-scrollbar {
    display: none;
}

.landing-page .landing-hub-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex: 1 1 auto;
    margin: 0;
    /* ~40px tall: grow Y only; tighter X so label isn't lost in side air */
    padding: 12px 8px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: rgba(245, 245, 245, 0.62);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.landing-page .landing-hub-chip:hover,
.landing-page .landing-hub-chip:focus-visible {
    color: rgba(255, 255, 255, 0.88);
    outline: none;
}

.landing-page .landing-hub-chip.is-active,
.landing-page .landing-hub-chip[aria-selected="true"] {
    background: var(--lp-lime);
    color: #111;
}

.landing-page .landing-hub-stage {
    position: relative;
    width: 100%;
    min-height: min(56vh, 520px);
    border-radius: 22px;
    border: 0;
    overflow: hidden;
    background: #12110f;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}

.landing-page .landing-hub-stage__video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    background: #12110f;
}

.landing-page .landing-demo-section {
    padding: clamp(12px, 2vw, 24px) 0 clamp(20px, 3vw, 32px);
    scroll-margin-top: 76px;
    background: #0a0a0a;
}

.landing-page .landing-hub-stage.landing-demo-stage {
    margin: 0;
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.landing-page .landing-demo-stage .landing-hub-stage__video {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
}

.landing-page .landing-demo-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--lp-lime);
    color: #111;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.landing-page .landing-demo-play[hidden] {
    display: none;
}

.landing-page .landing-demo-play svg {
    display: block;
    width: 40px;
    height: 40px;
    margin-left: 2px;
    overflow: visible;
}

.landing-page .landing-demo-play:hover,
.landing-page .landing-demo-play:focus-visible {
    outline: none;
    background: var(--lp-lime);
    color: #111;
}

.landing-page .landing-demo-play:active {
    transform: translate(-50%, -50%) scale(0.96);
}

.landing-page .landing-demo-stage.is-demo-sound:not(.is-demo-paused) .landing-demo-play {
    display: none;
}

.landing-page .landing-hero-video-wrap {
    position: relative;
    background: #12110f center / cover no-repeat url('/images/hero/hero-poster.jpg?v=20260903');
}

.landing-page .landing-hero-video-wrap.is-hero-video-ready {
    background-image: none;
}

.landing-page .landing-hero-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-page .lp-compare-plans__scroll {
    overflow-x: visible;
    padding-bottom: 0;
}

.landing-page .lp-compare-plans__table {
  min-width: 0;
  width: 100%;
}

.landing-page .lp-compare-plans__table > div > :first-child {
    position: static;
    box-shadow: none;
}

.landing-page .landing-hub-mock__footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: clamp(24px, 3.5vw, 36px) 2px 0;
    border: 0;
}

/* Hub footer CTA uses shared .btn-black.landing-lime-cta (same as header Start now). */

@media (max-width: 900px) {
    .landing-page .landing-hub-topbar {
        width: 100%;
        border-radius: 18px;
        border-width: 6px;
        padding: 8px 6px;
        align-items: stretch;
        justify-content: center;
    }

    /* Even 2×4 grid — avoids crooked flex wrap + overflowing pill labels. */
    .landing-page .landing-hub-tools {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        justify-content: stretch;
        align-items: stretch;
        overflow: visible;
        width: 100%;
    }

    .landing-page .landing-hub-chip {
        flex: unset;
        width: 100%;
        max-width: none;
        min-width: 0;
        box-sizing: border-box;
        padding: 10px 4px;
        font-size: 12px;
        white-space: normal;
        text-align: center;
        line-height: 1.15;
        overflow: hidden;
    }

    .landing-page .landing-hub-stage {
        min-height: 420px;
    }

    .landing-page .landing-hub-stage.landing-demo-stage {
        min-height: 0;
    }
}

@media (max-width: 380px) {
    .landing-page .landing-hub-chip {
        font-size: 11px;
        padding: 8px 2px;
    }
}


