:root {
    --la-bg: #030712;
    --la-fg: #f9fafb;
    --la-fg-muted: #9ca3af;
    --la-accent: #4f46e5;
    --la-accent-soft: rgba(79, 70, 229, 0.12);
    --la-pill: #020617;
    --la-card: rgba(15, 23, 42, 0.92);
    --la-border-subtle: rgba(148, 163, 184, 0.18);
    --la-radius-lg: 18px;
    --la-radius-pill: 999px;
    --la-shadow-soft: 0 24px 80px rgba(15, 23, 42, 0.7);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #020617 0, #020617 30%, #020617 100%);
    color: var(--la-fg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.la-page {
    --la-pad-x: clamp(16px, 5vw, 60px);
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: max(20px, env(safe-area-inset-top, 0px));
    padding-bottom: max(40px, env(safe-area-inset-bottom, 0px));
    padding-left: max(var(--la-pad-x), env(safe-area-inset-left, 0px));
    padding-right: max(var(--la-pad-x), env(safe-area-inset-right, 0px));
    overflow-x: hidden;
    overflow-wrap: break-word;
}

/* Background visuals */
.la-bg-gradient {
    position: fixed;
    inset: -20%;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), transparent 65%),
        radial-gradient(circle at top right, rgba(168, 85, 247, 0.22), transparent 60%),
        radial-gradient(circle at bottom, rgba(34, 197, 94, 0.16), transparent 55%);
    opacity: 0.9;
    z-index: -3;
}

.la-bg-orbit {
    position: fixed;
    width: 520px;
    height: 520px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.14);
    filter: blur(0.5px);
    z-index: -2;
    pointer-events: none;
}

.la-bg-orbit--one {
    top: -120px;
    right: -120px;
    animation: la-orbit 26s linear infinite;
}

.la-bg-orbit--two {
    bottom: -160px;
    left: -120px;
    width: 460px;
    height: 460px;
    animation: la-orbit 32s linear infinite reverse;
}

@keyframes la-orbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Navigation */
.la-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(18px);
    position: sticky;
    top: max(10px, env(safe-area-inset-top, 0px));
    z-index: 10;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
}

.la-nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Same animated logo as app (index.html) */
@keyframes misro-logo-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(79, 70, 229, 0.5)); }
    50% { transform: scale(1.05); filter: drop-shadow(0 0 12px rgba(79, 70, 229, 0.7)); }
}

@keyframes misro-logo-shine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.92; }
}

.la-logo-img {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    object-fit: contain;
    flex-shrink: 0;
    animation: misro-logo-pulse 2.5s ease-in-out infinite, misro-logo-shine 3s ease-in-out infinite;
}

.la-logo-img--small {
    width: 18px;
    height: 18px;
}

.la-logo-text {
    font-weight: 700;
    letter-spacing: 0.03em;
    font-size: 0.96rem;
}

.la-nav-links {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 0.86rem;
    flex-shrink: 0;
}

.la-nav-links a {
    color: var(--la-fg-muted);
    text-decoration: none;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.la-nav-links a:hover {
    color: var(--la-fg);
    opacity: 0.9;
}

.la-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.la-nav-login {
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--la-fg-muted);
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.55);
    white-space: nowrap;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.la-nav-login:hover {
    color: var(--la-fg);
    border-color: rgba(129, 140, 248, 0.55);
    background: rgba(79, 70, 229, 0.12);
}

.la-oauth-user {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    max-width: min(
        340px,
        max(
            10rem,
            calc(
                100vw - (2 * var(--la-pad-x)) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px) -
                    9.5rem
            )
        )
    );
    padding: 4px 10px 4px 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.la-oauth-user--hidden {
    display: none !important;
}

.la-oauth-avatar {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(129, 140, 248, 0.35);
}

.la-oauth-avatar--hidden {
    display: none;
}

.la-oauth-user-text {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1 1 0;
    min-width: 0;
    line-height: 1.2;
}

.la-oauth-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--la-fg);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.la-oauth-email {
    font-size: 0.72rem;
    color: var(--la-fg-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.la-oauth-logout {
    flex-shrink: 0;
    margin-left: auto;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(2, 6, 23, 0.5);
    color: var(--la-fg-muted);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.la-oauth-logout:hover {
    color: var(--la-fg);
    border-color: rgba(248, 113, 113, 0.45);
    background: rgba(127, 29, 29, 0.2);
}

.la-oauth-handoff-banner {
    max-width: 1120px;
    margin: 4px auto 0;
    padding: 14px 18px;
    border-radius: var(--la-radius-lg);
    background: var(--la-card);
    border: 1px solid var(--la-border-subtle);
    box-shadow: var(--la-shadow-soft);
    overflow-wrap: anywhere;
}

.la-oauth-handoff-banner--hidden {
    display: none;
}

.la-oauth-handoff-banner-lead {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
    color: var(--la-fg);
}

.la-oauth-handoff-banner-sub {
    margin: 10px 0 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--la-fg-muted);
}

.la-oauth-handoff-link {
    display: inline;
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    color: #a5b4fc;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.la-oauth-handoff-link:hover {
    color: #c7d2fe;
}

.la-oauth-handoff-sep {
    margin: 0 0.35em;
    color: rgba(148, 163, 184, 0.5);
}

.la-nav-cta {
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5, #22c55e);
    color: white;
    font-size: 0.86rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.55);
    white-space: nowrap;
    flex-shrink: 0;
}

.la-nav-cta-short {
    display: none;
}

@media (max-width: 520px) {
    .la-nav-cta {
        padding-inline: 12px;
        font-size: 0.8rem;
    }

    .la-nav-cta-full {
        display: none;
    }

    .la-nav-cta-short {
        display: inline;
    }
}

.la-nav-cta:hover {
    filter: brightness(1.08);
}

.la-nav-layout-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px 12px;
    min-height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(129, 140, 248, 0.45);
    background: rgba(15, 23, 42, 0.65);
    color: rgba(226, 232, 240, 0.95);
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.la-nav-layout-toggle:hover {
    border-color: rgba(165, 180, 252, 0.65);
    background: rgba(79, 70, 229, 0.14);
    color: var(--la-fg);
}

html.la-show-desktop-layout .la-nav-layout-toggle {
    display: inline-flex;
}

@media (max-width: 767px) {
    .la-nav-layout-toggle {
        display: inline-flex;
    }
}

@media (min-width: 768px) {
    html:not(.la-show-desktop-layout) .la-nav-layout-toggle {
        display: none !important;
    }
}

html.la-show-desktop-layout .la-nav {
    gap: 12px;
}

html.la-show-desktop-layout .la-nav-left,
html.la-show-desktop-layout .la-nav-links,
html.la-show-desktop-layout .la-nav-actions {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    html:not(.la-show-desktop-layout) .la-nav {
        padding-inline: 14px;
        gap: 12px;
    }
    html:not(.la-show-desktop-layout) .la-nav-links {
        display: none;
    }
}

/* Hero */
.la-main {
    max-width: 1160px;
    margin: 30px auto 0;
}

.la-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: center;
    margin-top: 32px;
    position: relative;
    overflow: visible;
}

.la-hero-content h1 {
    font-size: clamp(2.4rem, 3.8vw, 3.4rem);
    line-height: 1.05;
    margin: 0 0 14px;
    text-wrap: balance;
}

.la-hero-content h1 span {
    background: linear-gradient(120deg, #4f46e5, #22c55e, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.la-hero-sub {
    margin: 0 0 18px;
    color: var(--la-fg-muted);
    font-size: 1rem;
    max-width: 30rem;
    overflow-wrap: anywhere;
}

.la-hero-points {
    margin: 0 0 18px;
    padding-left: 20px;
    color: rgba(226, 232, 240, 0.94);
    font-size: 0.88rem;
    line-height: 1.6;
}

.la-hero-points li + li {
    margin-top: 4px;
}

.la-hero-kicker {
    margin: 0 0 10px;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.95);
}

.la-hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}

.la-hero-cta-group--disabled .la-btn[disabled] {
    opacity: 0.7;
    cursor: default;
    box-shadow: none;
}

.la-hero-cta-group--disabled .la-btn[disabled]:hover {
    transform: none;
}

.la-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--la-radius-pill);
    padding: 9px 18px;
    font-size: 0.94rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.la-btn-primary {
    background: linear-gradient(135deg, #4f46e5, #22c55e);
    color: #f9fafb;
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.65);
}

.la-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 55px rgba(79, 70, 229, 0.75);
}

.la-btn-ghost {
    border-color: rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.8);
    color: var(--la-fg-muted);
}

.la-btn-ghost:hover {
    color: var(--la-fg);
    border-color: rgba(148, 163, 184, 0.9);
}

.la-btn-secondary-outline {
    background: transparent;
    border: 1px solid rgba(129, 140, 248, 0.65);
    color: #e5e7eb;
    box-shadow: none;
}

.la-btn-secondary-outline:hover {
    border-color: #a5b4fc;
    color: #fff;
    transform: translateY(-1px);
}

.la-download-note {
    font-size: 0.8rem;
    color: var(--la-fg-muted);
    max-width: 520px;
    line-height: 1.45;
    margin: 0 0 8px;
}

.la-download-note--command {
    margin-top: 0;
}

.la-download-note--command code {
    font-family: 'Menlo', 'Consolas', monospace;
    font-size: 0.85rem;
    color: #a5f3fc;
    display: block;
    margin-top: 2px;
    word-break: break-all;
}

.la-download-note--link a {
    color: rgba(56, 189, 248, 0.92);
    text-decoration: none;
    border-bottom: 1px dashed rgba(56, 189, 248, 0.35);
}

.la-download-note--link a:hover {
    color: #e0f2fe;
    border-bottom-color: rgba(56, 189, 248, 0.7);
}

.la-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.76rem;
    color: rgba(203, 213, 225, 0.9);
    margin-top: 6px;
}

.la-hero-meta span {
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(15, 23, 42, 0.4);
}

.la-ethics-note {
    margin-top: 12px;
    font-size: 0.86rem;
    line-height: 1.45;
    color: rgba(226, 232, 240, 0.9);
    background: rgba(15, 23, 42, 0.42);
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 10px;
    padding: 10px 12px;
    overflow-wrap: anywhere;
}

/* Hero visual */
.la-hero-visual {
    display: flex;
    justify-content: center;
}

.la-hero-visual--framed {
    position: relative;
    align-items: center;
    padding: 36px 44px;
    min-height: min(520px, 72vh);
}

.la-app-demo {
    position: relative;
    width: 100%;
    max-width: 430px;
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.96));
    border-radius: 26px;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: var(--la-shadow-soft);
    overflow: hidden;
    animation: la-float 10s ease-in-out infinite;
}

@keyframes la-float {
    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) translateX(4px) rotate(-0.6deg);
    }
}

.la-app-demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.6);
}

.la-app-demo-dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.la-pill-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
}

.la-pill-dot--red {
    background: #f97373;
}

.la-pill-dot--amber {
    background: #facc15;
}

.la-pill-dot--green {
    background: #22c55e;
}

.la-pill-title {
    margin-left: 4px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--la-fg-muted);
    min-width: 0;
    flex: 1 1 auto;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.la-app-demo-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(15, 23, 42, 0.9);
}

.la-app-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.la-app-row-input {
    justify-content: space-between;
}

.la-app-input-live {
    flex: 1;
    min-width: 0;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.95);
    padding: 9px 12px;
    font-size: 0.82rem;
    color: var(--la-fg-muted);
}

.la-app-you {
    color: rgba(148, 163, 184, 0.95);
    margin-right: 6px;
}

.la-app-you-text {
    color: #e2e8f0;
    font-weight: 600;
}

.la-chip {
    flex: 0 0 auto;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.9);
    color: var(--la-fg-muted);
    font-size: 0.74rem;
}

.la-chip--primary {
    background: linear-gradient(135deg, #4f46e5, #22c55e);
    color: white;
    border-color: transparent;
}

.la-app-answer-live {
    margin-top: 4px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(2, 6, 23, 0.7);
    padding: 10px 12px;
    color: #dbeafe;
    font-size: 0.83rem;
    line-height: 1.45;
    display: block;
    overflow: hidden;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.la-app-answer-label {
    display: block;
    color: #86efac;
    font-weight: 700;
    margin: 0 0 4px;
}

/* Reveal: full-width layout + clip-path. Animating max-width from 0 made a tiny “column” and one-word lines. */
.la-app-answer-line {
    min-width: 0;
    width: 100%;
}

.la-app-answer-reveal {
    width: 100%;
    min-width: 0;
    display: block;
    animation: la-answer-clip-reveal 4.8s ease-in-out infinite;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.la-app-answer-text {
    display: inline;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.la-app-answer-reveal .la-app-caret {
    display: inline-block;
    width: 2px;
    height: 0.95em;
    margin-left: 2px;
    vertical-align: text-bottom;
    background: rgba(186, 230, 253, 0.95);
    animation: la-caret-blink 0.85s step-end infinite;
}

@keyframes la-answer-clip-reveal {
    0%,
    12% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
    55%,
    85% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
    100% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
}

@keyframes la-caret-blink {
    50% {
        opacity: 0;
    }
}

/* Sections */
.la-section {
    margin-top: 78px;
}

@media (max-width: 768px) {
    .la-section {
        margin-top: 52px;
    }
}

.la-section-title {
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.la-clarity-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.la-clarity-card {
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 14px;
    padding: 14px 14px 12px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.42);
}

.la-clarity-card h3 {
    margin: 0 0 5px;
    font-size: 0.96rem;
}

.la-clarity-card p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--la-fg-muted);
    overflow-wrap: anywhere;
}

.la-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.la-card {
    background: var(--la-card);
    border-radius: var(--la-radius-lg);
    border: 1px solid var(--la-border-subtle);
    padding: 16px 16px 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.la-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at top, rgba(56, 189, 248, 0.16), transparent 60%);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: -1;
}

.la-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.95);
    border-color: rgba(129, 140, 248, 0.7);
}

.la-card:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.la-card h3 {
    font-size: 1.02rem;
    margin: 0 0 6px;
}

.la-card p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--la-fg-muted);
    overflow-wrap: anywhere;
}

@media (max-width: 960px) {
    html:not(.la-show-desktop-layout) .la-hero {
        grid-template-columns: minmax(0, 1fr);
    }
    html:not(.la-show-desktop-layout) .la-clarity-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    html:not(.la-show-desktop-layout) .la-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    html:not(.la-show-desktop-layout) .la-feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Split section */
.la-section--split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: flex-start;
}

.la-steps {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.la-steps li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 12px;
}

.la-step-badge {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.16);
    color: #e5e7eb;
    font-size: 0.86rem;
    border: 1px solid rgba(129, 140, 248, 0.6);
    box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.la-steps h3 {
    font-size: 0.98rem;
    margin: 0 0 2px;
}

.la-steps p {
    margin: 0;
    font-size: 0.86rem;
    color: var(--la-fg-muted);
}

.la-timeline {
    border-radius: var(--la-radius-lg);
    border: 1px solid var(--la-border-subtle);
    background: rgba(15, 23, 42, 0.96);
    padding: 14px 16px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.la-timeline-item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px 14px;
    padding: 8px 0;
}

.la-timeline-item + .la-timeline-item {
    border-top: 1px dashed rgba(55, 65, 81, 0.8);
}

.la-timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.7);
    margin-top: 4px;
}

.la-timeline-item--active .la-timeline-dot {
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.la-timeline-content h4 {
    margin: 0 0 2px;
    font-size: 0.96rem;
}

.la-timeline-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--la-fg-muted);
}

@media (max-width: 960px) {
    html:not(.la-show-desktop-layout) .la-section--split {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Creative highlight strip */
.la-highlight-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 0;
}

.la-section--release {
    margin-top: 26px;
}

.la-release-card {
    border: 1px solid rgba(129, 140, 248, 0.22);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.66));
    border-radius: 16px;
    padding: 14px 16px;
    max-width: 720px;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.35);
}

.la-release-card p {
    margin: 0;
    color: rgba(203, 213, 225, 0.9);
    font-size: 0.88rem;
    line-height: 1.6;
}

.la-release-card p a {
    color: rgba(56, 189, 248, 0.92);
    text-decoration: none;
    border-bottom: 1px dashed rgba(56, 189, 248, 0.35);
    font-weight: 600;
}

.la-release-card p a:hover {
    color: #e0f2fe;
    border-bottom-color: rgba(56, 189, 248, 0.7);
}

.la-release-cta {
    margin-top: 14px;
}

.la-release-command {
    margin-top: 8px !important;
}

.la-release-command code {
    display: inline-block;
    margin-top: 6px;
    color: #a5f3fc;
    background: rgba(2, 6, 23, 0.45);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 10px;
    padding: 6px 10px;
    font-family: Menlo, Consolas, monospace;
    font-size: 0.82rem;
    word-break: break-all;
}

.la-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.22);
    background: rgba(15, 23, 42, 0.62);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.45);
}

.la-highlight-emoji {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.18);
    border: 1px solid rgba(129, 140, 248, 0.35);
    font-size: 14px;
}

.la-highlight-text {
    font-weight: 800;
    color: var(--la-fg);
    font-size: 0.9rem;
}

.la-section--audience {
    margin-top: 44px;
}

.la-audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.la-audience-card {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    padding: 16px 14px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.5);
}

.la-audience-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.la-audience-card p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
    color: var(--la-fg-muted);
}

/* FAQ */
.la-section--faq .la-section-title {
    margin-bottom: 16px;
}

.la-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.la-faq-item {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: var(--la-radius-lg);
    padding: 12px 14px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
    overflow: hidden;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.la-faq-item:hover {
    border-color: rgba(129, 140, 248, 0.7);
    transform: translateY(-2px);
}

.la-faq-item summary {
    cursor: pointer;
    font-weight: 900;
    color: var(--la-fg);
    list-style: none;
    outline: none;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-wrap: balance;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.la-faq-item summary::-webkit-details-marker {
    display: none;
}

.la-faq-item summary::before {
    content: "+";
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 1px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 70, 229, 0.16);
    border: 1px solid rgba(129, 140, 248, 0.45);
    color: #e5e7eb;
    font-weight: 900;
}

.la-faq-item[open] summary::before {
    content: "−";
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(34, 197, 94, 0.45);
}

.la-faq-item p {
    margin: 10px 0 0;
    color: var(--la-fg-muted);
    font-size: 0.86rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    html:not(.la-show-desktop-layout) .la-faq-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    html:not(.la-show-desktop-layout) .la-highlight-strip {
        margin-top: 18px;
    }

    html:not(.la-show-desktop-layout) .la-audience-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Footer */
.la-footer {
    margin-top: 60px;
}

.la-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(31, 41, 55, 0.9);
    font-size: 0.8rem;
    color: var(--la-fg-muted);
}

.la-footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.la-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    align-items: center;
}

.la-footer-links a {
    color: rgba(156, 163, 175, 0.9);
    text-decoration: none;
}

.la-footer-links a:hover {
    color: var(--la-fg);
}

.la-footer-copy {
    margin: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.la-release-card .la-hero-cta-group {
    width: 100%;
}

@media (max-width: 520px) {
    .la-release-card .la-hero-cta-group .la-btn {
        flex: 1 1 100%;
        justify-content: center;
    }
}

.la-audience-card p,
.la-trust-card p,
.la-steps p,
.la-timeline-content p {
    overflow-wrap: anywhere;
}

@media (max-width: 768px) {
    html:not(.la-show-desktop-layout) .la-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Premium polish layer (keeps existing color system) */
.la-page::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.22;
    background-image:
        linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: radial-gradient(circle at 50% 30%, black, transparent 72%);
}

.la-nav {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.72));
    border-color: rgba(129, 140, 248, 0.24);
    box-shadow: 0 24px 64px rgba(2, 6, 23, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.la-nav-links a {
    position: relative;
}

.la-nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
    background: linear-gradient(90deg, #4f46e5, #22c55e);
}

.la-nav-links a:hover::after {
    transform: scaleX(1);
}

.la-fluid-form {
    position: absolute;
    --mx: 0px;
    --my: 0px;
    --glow: rgba(125, 211, 252, 0.24);
    border-radius: 45% 55% 58% 42% / 42% 38% 62% 58%;
    pointer-events: none;
    z-index: 0;
    filter: blur(0.6px) saturate(1.14);
    opacity: 0.56;
    mix-blend-mode: screen;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        inset 0 -18px 36px rgba(37, 99, 235, 0.18),
        0 0 0 1px rgba(191, 219, 254, 0.2),
        0 0 28px rgba(125, 211, 252, 0.22),
        0 0 66px var(--glow),
        0 22px 72px rgba(30, 64, 175, 0.28);
    animation:
        la-fluid-morph 14s ease-in-out infinite,
        la-fluid-drift 18s ease-in-out infinite,
        la-fluid-pulse 6.2s ease-in-out infinite;
}

.la-fluid-form::before {
    content: "";
    position: absolute;
    inset: 8%;
    border-radius: inherit;
    border: 1.2px solid rgba(219, 234, 254, 0.56);
    box-shadow:
        0 0 18px rgba(147, 197, 253, 0.24),
        inset 0 0 14px rgba(255, 255, 255, 0.16);
    opacity: 0.68;
    mix-blend-mode: screen;
    animation: la-fluid-ring 8s ease-in-out infinite;
}

.la-fluid-form::after {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: inherit;
    pointer-events: none;
    background:
        radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.04) 40%, transparent 70%),
        conic-gradient(from 120deg, rgba(191, 219, 254, 0.14), rgba(56, 189, 248, 0.04), rgba(191, 219, 254, 0.12));
    mix-blend-mode: screen;
    opacity: 0.44;
    animation: la-fluid-shimmer 9s ease-in-out infinite;
}

.la-fluid-form--a {
    width: 184px;
    height: 184px;
    left: -8px;
    top: -18px;
    --glow: rgba(125, 211, 252, 0.26);
    animation-name: la-fluid-morph, la-fluid-drift, la-fluid-pulse, la-fluid-wander-a;
    animation-duration: 13s, 17s, 6s, 30s;
    animation-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    animation-delay: -1.2s, -2.6s, -0.8s, -6.2s;
    background:
        radial-gradient(circle at 28% 22%, rgba(239, 246, 255, 0.95), rgba(125, 211, 252, 0.35) 32%, rgba(59, 130, 246, 0.22) 58%, rgba(37, 99, 235, 0.08) 76%, transparent 100%);
}

.la-fluid-form--b {
    width: 184px;
    height: 184px;
    right: -12px;
    top: -18px;
    animation-name: la-fluid-morph, la-fluid-drift, la-fluid-pulse, la-fluid-wander-b;
    animation-duration: 15.5s, 19s, 6.8s, 34s;
    animation-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    animation-delay: -3.2s, -6.8s, -1.4s, -12.6s;
    --glow: rgba(129, 140, 248, 0.24);
    background:
        radial-gradient(circle at 34% 30%, rgba(224, 231, 255, 0.88), rgba(129, 140, 248, 0.34) 36%, rgba(59, 130, 246, 0.24) 60%, rgba(30, 64, 175, 0.08) 78%, transparent 100%);
}

.la-fluid-form--c {
    width: 176px;
    height: 176px;
    right: -10px;
    bottom: -18px;
    animation-name: la-fluid-morph, la-fluid-drift, la-fluid-pulse, la-fluid-wander-c;
    animation-duration: 14.8s, 20s, 7.1s, 31s;
    animation-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    animation-delay: -6.4s, -11.2s, -3.2s, -18.1s;
    --glow: rgba(96, 165, 250, 0.24);
    background:
        radial-gradient(circle at 38% 28%, rgba(186, 230, 253, 0.9), rgba(56, 189, 248, 0.32) 38%, rgba(79, 70, 229, 0.22) 62%, rgba(29, 78, 216, 0.08) 78%, transparent 100%);
}

.la-fluid-form--d {
    width: 176px;
    height: 176px;
    left: -10px;
    bottom: -18px;
    animation-name: la-fluid-morph, la-fluid-drift, la-fluid-pulse, la-fluid-wander-d;
    animation-duration: 16.2s, 18.8s, 6.6s, 33s;
    animation-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    animation-delay: -9.6s, -15.4s, -2.2s, -22.3s;
    --glow: rgba(125, 211, 252, 0.24);
    background:
        radial-gradient(circle at 30% 35%, rgba(219, 234, 254, 0.9), rgba(96, 165, 250, 0.3) 40%, rgba(59, 130, 246, 0.2) 62%, rgba(30, 64, 175, 0.08) 80%, transparent 100%);
}

@keyframes la-fluid-morph {
    0%,
    100% {
        transform:
            translate3d(calc(var(--mx) + 0px), calc(var(--my) + 0px), 0)
            translateY(0)
            rotate(0deg)
            scale(1);
        border-radius: 45% 55% 58% 42% / 42% 38% 62% 58%;
    }
    25% {
        transform:
            translate3d(calc(var(--mx) + 9px), calc(var(--my) - 7px), 0)
            translateY(-4px)
            rotate(2deg)
            scale(1.03);
        border-radius: 52% 48% 46% 54% / 48% 42% 58% 52%;
    }
    50% {
        transform:
            translate3d(calc(var(--mx) - 7px), calc(var(--my) + 8px), 0)
            translateY(-10px)
            rotate(5deg)
            scale(1.06);
        border-radius: 58% 42% 40% 60% / 56% 46% 54% 44%;
    }
    75% {
        transform:
            translate3d(calc(var(--mx) + 7px), calc(var(--my) + 9px), 0)
            translateY(-3px)
            rotate(-2.2deg)
            scale(1.02);
        border-radius: 49% 51% 55% 45% / 44% 54% 46% 56%;
    }
}

@keyframes la-fluid-drift {
    0% {
        filter: blur(0.6px) saturate(1.1) brightness(1);
    }
    50% {
        filter: blur(0.9px) saturate(1.18) brightness(1.04);
    }
    100% {
        filter: blur(0.6px) saturate(1.1) brightness(1);
    }
}

@keyframes la-fluid-shimmer {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.34;
    }
    50% {
        transform: rotate(8deg) scale(1.05);
        opacity: 0.54;
    }
}

@keyframes la-fluid-pulse {
    0%, 100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.72),
            inset 0 -18px 36px rgba(37, 99, 235, 0.18),
            0 0 0 1px rgba(191, 219, 254, 0.2),
            0 0 28px rgba(125, 211, 252, 0.22),
            0 0 66px var(--glow),
            0 22px 72px rgba(30, 64, 175, 0.28);
    }
    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.84),
            inset 0 -18px 36px rgba(37, 99, 235, 0.24),
            0 0 0 1px rgba(219, 234, 254, 0.28),
            0 0 36px rgba(147, 197, 253, 0.28),
            0 0 76px var(--glow),
            0 24px 78px rgba(30, 64, 175, 0.34);
    }
}

@keyframes la-fluid-ring {
    0%, 100% {
        opacity: 0.62;
        transform: scale(1) rotate(0deg);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.035) rotate(8deg);
    }
}

@keyframes la-fluid-wander-a {
    0%, 100% { left: -16px; top: -28px; }
    25% { left: 18px; top: -6px; }
    50% { left: 34px; top: 24px; }
    75% { left: -2px; top: 34px; }
}

@keyframes la-fluid-wander-b {
    0%, 100% { right: -16px; top: -24px; }
    25% { right: 14px; top: 8px; }
    50% { right: 36px; top: 28px; }
    75% { right: 2px; top: 36px; }
}

@keyframes la-fluid-wander-c {
    0%, 100% { right: -14px; bottom: -24px; }
    25% { right: 10px; bottom: 12px; }
    50% { right: 34px; bottom: 30px; }
    75% { right: 4px; bottom: 40px; }
}

@keyframes la-fluid-wander-d {
    0%, 100% { left: -14px; bottom: -24px; }
    25% { left: 12px; bottom: 10px; }
    50% { left: 30px; bottom: 34px; }
    75% { left: 2px; bottom: 38px; }
}


.la-hero-content h1 {
    letter-spacing: -0.03em;
}

.la-hero-sub {
    font-size: 1.01rem;
    line-height: 1.62;
}

.la-hero-points {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 7px;
}

.la-hero-points li {
    position: relative;
    padding-left: 24px;
}

.la-hero-points li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 0;
    color: #7dd3fc;
    text-shadow: 0 0 14px rgba(56, 189, 248, 0.4);
}

.la-btn {
    font-weight: 700;
    letter-spacing: 0.01em;
}

.la-btn-primary {
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.la-btn-ghost {
    border-color: rgba(99, 102, 241, 0.45);
    color: rgba(226, 232, 240, 0.92);
}

.la-app-demo {
    border-color: rgba(129, 140, 248, 0.28);
    box-shadow:
        0 28px 90px rgba(2, 6, 23, 0.75),
        0 0 0 1px rgba(129, 140, 248, 0.08) inset,
        0 1px 0 rgba(255, 255, 255, 0.06) inset;
    z-index: 2;
}

.la-app-demo::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 45%);
}

.la-app-answer-live {
    border-color: rgba(56, 189, 248, 0.28);
}

.la-section-title {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    letter-spacing: -0.02em;
    margin-bottom: 22px;
}

.la-section-title::after {
    content: "";
    display: block;
    width: 64px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4f46e5, #22c55e, #38bdf8);
}

.la-highlight {
    border-color: rgba(129, 140, 248, 0.28);
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.5));
}

.la-audience-card,
.la-clarity-card,
.la-card,
.la-faq-item,
.la-timeline {
    border-color: rgba(129, 140, 248, 0.2);
    background: linear-gradient(165deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.76));
}

.la-card h3,
.la-audience-card h3,
.la-clarity-card h3,
.la-steps h3,
.la-timeline-content h4,
.la-faq-item summary {
    color: #f8fafc;
}

.la-card p,
.la-audience-card p,
.la-clarity-card p,
.la-steps p,
.la-timeline-content p,
.la-faq-item p {
    color: rgba(203, 213, 225, 0.9);
}

.la-footer-inner {
    border-top-color: rgba(129, 140, 248, 0.24);
}

/* Soft futuristic layer inspired by wellness-like friendliness */
.la-bg-blob {
    position: fixed;
    border-radius: 999px;
    pointer-events: none;
    z-index: -2;
    filter: blur(8px);
    opacity: 0.5;
}

.la-bg-blob--one {
    width: 360px;
    height: 360px;
    top: 16%;
    right: 8%;
    background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.28), rgba(79, 70, 229, 0.1) 70%, transparent 100%);
    animation: la-blob-float 12s ease-in-out infinite;
}

.la-bg-blob--two {
    width: 300px;
    height: 300px;
    bottom: 14%;
    left: 7%;
    background: radial-gradient(circle at 35% 35%, rgba(34, 197, 94, 0.2), rgba(56, 189, 248, 0.1) 68%, transparent 100%);
    animation: la-blob-float 14s ease-in-out infinite reverse;
}

@keyframes la-blob-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-12px) scale(1.04);
    }
}

.la-hero-kicker {
    color: rgba(186, 230, 253, 0.92);
}

.la-hero-sub {
    color: rgba(203, 213, 225, 0.95);
    line-height: 1.67;
}

.la-section--trust {
    margin-top: 48px;
}

.la-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.la-trust-card {
    border-radius: 16px;
    border: 1px solid rgba(129, 140, 248, 0.2);
    background: linear-gradient(160deg, rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.68));
    padding: 16px 14px;
    box-shadow: 0 14px 34px rgba(2, 6, 23, 0.5);
}

.la-trust-card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    color: #f8fafc;
}

.la-trust-card p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.56;
    color: rgba(203, 213, 225, 0.9);
}

@media (max-width: 768px) {
    html:not(.la-show-desktop-layout) .la-trust-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    html:not(.la-show-desktop-layout) .la-hero-visual--framed {
        padding: 24px 18px;
        min-height: 0;
    }

    html:not(.la-show-desktop-layout) .la-fluid-form--a {
        left: -8px;
        top: -8px;
        width: 112px;
        height: 112px;
        opacity: 0.46;
    }

    html:not(.la-show-desktop-layout) .la-fluid-form--b {
        right: -10px;
        top: -8px;
        width: 112px;
        height: 112px;
        opacity: 0.44;
    }

    html:not(.la-show-desktop-layout) .la-fluid-form--c {
        display: none;
    }

    html:not(.la-show-desktop-layout) .la-fluid-form--d {
        left: -8px;
        bottom: -8px;
        width: 102px;
        height: 102px;
        opacity: 0.4;
    }

    .la-app-demo-body {
        gap: 12px;
    }

    .la-app-row-input {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .la-app-input-live {
        font-size: 0.8rem;
        padding: 8px 10px;
        min-width: 0;
    }

    .la-chip {
        font-size: 0.72rem;
        padding: 5px 9px;
    }

    .la-hero-content h1 {
        font-size: clamp(1.75rem, 8vw, 2.4rem);
    }

    .la-hero-cta-group .la-btn {
        flex: 1 1 auto;
        min-width: min(100%, 200px);
        justify-content: center;
    }
}

@media (max-width: 420px) {
    .la-app-row-input {
        flex-wrap: wrap;
    }

    .la-app-row-input .la-chip--primary {
        flex: 1 1 100%;
        justify-content: center;
        padding-block: 8px;
    }
}

/* Premium motion system */
.la-nav,
.la-hero-content,
.la-hero-visual,
.la-highlight-strip {
    opacity: 0;
    transform: translateY(16px);
}

.la-page.is-animated .la-nav {
    animation: la-fade-up 0.55s ease forwards;
}

.la-page.is-animated .la-hero-content {
    animation: la-fade-up 0.75s 0.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.la-page.is-animated .la-hero-visual {
    animation: la-fade-up 0.85s 0.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.la-page.is-animated .la-highlight-strip {
    animation: la-fade-up 0.7s 0.28s ease forwards;
}

.la-reveal {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

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

.la-highlight,
.la-trust-card,
.la-audience-card,
.la-clarity-card,
.la-card,
.la-faq-item {
    transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.la-highlight:hover,
.la-trust-card:hover,
.la-audience-card:hover,
.la-clarity-card:hover,
.la-card:hover,
.la-faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(129, 140, 248, 0.34);
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.48);
}

.la-hero-visual--framed {
    transition: transform 0.2s ease;
    will-change: transform;
}

.la-fluid-form {
    transition: transform 0.35s ease;
    will-change: transform;
}

@keyframes la-fade-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .la-nav,
    .la-hero-content,
    .la-hero-visual,
    .la-highlight-strip,
    .la-reveal,
    .la-fluid-form,
    .la-hero-visual--framed {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    .la-app-answer-reveal {
        animation: none !important;
        -webkit-clip-path: none !important;
        clip-path: none !important;
    }
}

/* Focus visibility (keyboard / assistive tech) */
.la-nav a:focus-visible,
.la-nav button:focus-visible,
.la-btn:focus-visible,
.la-faq-item summary:focus-visible,
.la-oauth-logout:focus-visible,
.la-oauth-handoff-link:focus-visible,
.la-footer-links a:focus-visible {
    outline: 2px solid rgba(129, 140, 248, 0.95);
    outline-offset: 2px;
}

.la-app-demo .la-chip:focus-visible {
    outline: 2px solid rgba(129, 140, 248, 0.95);
    outline-offset: 2px;
}

