:root {
    --lp-bg: #08111f;
    --lp-bg-soft: #111a2e;
    --lp-surface: rgba(15, 23, 42, .76);
    --lp-surface-strong: rgba(15, 23, 42, .94);
    --lp-border: rgba(148, 163, 184, .2);
    --lp-text: #e5edf8;
    --lp-muted: #9fb0c7;
    --lp-primary: #2563eb;
    --lp-primary-strong: #1d4ed8;
    --lp-accent: #059669;
    --lp-warning: #f59e0b;
    --lp-danger: #ef4444;
    --lp-card-shadow: 0 18px 46px rgba(0, 0, 0, .2);
    --lp-card-shadow-strong: 0 30px 70px rgba(0, 0, 0, .22);
    --lp-scrollbar-track: rgba(148, 163, 184, .12);
    --lp-scrollbar-thumb: color-mix(in srgb, var(--lp-primary) 72%, #64748b);
    --lp-scrollbar-thumb-hover: var(--lp-primary);
    --lp-radius: 16px;
    color-scheme: dark;
}

[data-theme="light"] {
    --lp-bg: #f8fafc;
    --lp-bg-soft: #eaf2ff;
    --lp-surface: rgba(255, 255, 255, .92);
    --lp-surface-strong: rgba(255, 255, 255, .98);
    --lp-border: rgba(37, 99, 235, .26);
    --lp-text: #0f172a;
    --lp-muted: #526179;
    --lp-primary: #2563eb;
    --lp-primary-strong: #1e40af;
    --lp-accent: #047857;
    --lp-card-shadow: 0 18px 42px rgba(15, 23, 42, .12);
    --lp-card-shadow-strong: 0 26px 64px rgba(15, 23, 42, .16);
    --lp-scrollbar-track: rgba(37, 99, 235, .08);
    --lp-scrollbar-thumb: color-mix(in srgb, var(--lp-primary) 58%, #bfdbfe);
    --lp-scrollbar-thumb-hover: var(--lp-primary-strong);
    color-scheme: light;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--lp-scrollbar-thumb) var(--lp-scrollbar-track);
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--lp-scrollbar-track);
}

::-webkit-scrollbar-thumb {
    background: var(--lp-scrollbar-thumb);
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--lp-scrollbar-thumb-hover);
}

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

button,
input {
    font: inherit;
}

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

body.landing-page {
    min-height: 100vh;
    margin: 0;
    background:
        linear-gradient(180deg, rgba(8, 17, 31, .52), rgba(8, 17, 31, .94)),
        url('/assets/images/overlay-1.png') center top / cover fixed,
        var(--lp-bg);
    color: var(--lp-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

body.landing-page::before,
body.landing-page::after {
    content: "";
    position: fixed;
    z-index: -1;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(6px);
}

body.landing-page::before {
    width: min(34vw, 420px);
    height: min(34vw, 420px);
    left: -120px;
    top: 18vh;
    background: radial-gradient(circle, color-mix(in srgb, var(--lp-primary) 18%, transparent), transparent 68%);
}

body.landing-page::after {
    width: min(30vw, 360px);
    height: min(30vw, 360px);
    right: -90px;
    top: 8vh;
    background: radial-gradient(circle, color-mix(in srgb, var(--lp-accent) 15%, transparent), transparent 70%);
}

[data-theme="light"] body.landing-page,
body.landing-page[data-theme="light"] {
    background:
        linear-gradient(180deg, rgba(248, 250, 252, .5), rgba(248, 250, 252, .96)),
        url('/assets/images/overlay-1.png') center top / cover fixed,
        var(--lp-bg);
}

.lp-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--lp-border);
    background: color-mix(in srgb, var(--lp-bg) 82%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.lp-nav-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
    color: var(--lp-text);
    font-weight: 800;
    text-decoration: none;
}

.lp-brand img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    background: rgba(255, 255, 255, .08);
}

.lp-brand span {
    display: inline-block;
    max-width: min(42vw, 280px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}

.lp-nav-links a,
.lp-icon-btn {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    color: var(--lp-muted);
    padding: .5rem .8rem;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.lp-nav-links a:hover,
.lp-icon-btn:hover {
    color: var(--lp-text);
    background: var(--lp-surface);
    border-color: var(--lp-border);
    transform: translateY(-1px);
}

.lp-icon-btn {
    width: 40px;
    padding: 0;
    background: transparent;
}

.lp-lang-toggle {
    width: auto;
    min-width: 55px;
    gap: .35rem;
    padding: 0 .65rem;
}

.lp-lang-code {
    font-size: .78rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    color: var(--lp-text);
}

.lp-svg-icon {
    width: 1.05em;
    height: 1.05em;
    display: inline-block;
    flex: 0 0 auto;
    vertical-align: -0.15em;
}

.lp-icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.lp-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.lp-dropdown {
    position: relative;
}

.lp-dropdown-menu {
    position: absolute;
    top: calc(100% + .65rem);
    right: 0;
    z-index: 30;
    min-width: 160px;
    display: none;
    padding: .45rem;
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    background: var(--lp-surface-strong);
    box-shadow: var(--lp-card-shadow);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.lp-dropdown-menu.is-open {
    display: block;
}

.lp-dropdown-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .65rem;
    border-radius: 10px;
    color: var(--lp-text);
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
}

.lp-dropdown-item:hover,
.lp-dropdown-item:focus-visible {
    color: var(--lp-text);
    background: color-mix(in srgb, var(--lp-primary) 14%, transparent);
}

.lp-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border-radius: 999px;
    border: 1px solid var(--lp-border);
    padding: .62rem 1rem;
    font-weight: 750;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.lp-btn-primary {
    border-color: transparent;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    color: #fff;
    box-shadow: 0 18px 40px rgba(37, 99, 235, .22);
}

.lp-btn-secondary {
    background: var(--lp-surface);
    color: var(--lp-text);
}

.lp-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.lp-btn-secondary:hover {
    color: var(--lp-text);
    box-shadow: 0 14px 30px rgba(15, 23, 42, .12);
}

.lp-hero {
    position: relative;
    min-height: min(760px, calc(100vh - 72px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 540px);
    align-items: center;
    gap: clamp(2rem, 6vw, 4.5rem);
    padding: clamp(2rem, 5vw, 3.6rem) 0 clamp(1.5rem, 4vw, 2.5rem);
}

.lp-hero-copy,
.lp-preview,
.lp-feature,
.lp-step,
.lp-security-band,
.lp-final {
    animation: lpRise .7s ease-out both;
}

.lp-preview {
    animation-delay: .08s;
}

.lp-feature:nth-child(2),
.lp-step:nth-child(2) {
    animation-delay: .06s;
}

.lp-feature:nth-child(3),
.lp-step:nth-child(3) {
    animation-delay: .12s;
}

.lp-feature:nth-child(4) {
    animation-delay: .18s;
}

.lp-orbit {
    position: absolute;
    z-index: 0;
    display: flex;
    align-items: center;
    gap: .45rem;
    border: 1px solid color-mix(in srgb, var(--lp-primary) 26%, var(--lp-border));
    border-radius: 999px;
    background: color-mix(in srgb, var(--lp-surface-strong) 78%, transparent);
    box-shadow: var(--lp-card-shadow);
    color: var(--lp-muted);
    padding: .45rem .7rem;
    font-size: .78rem;
    font-weight: 800;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.lp-orbit .lp-svg-icon {
    color: var(--lp-primary);
    font-size: 1rem;
}

.lp-orbit-top {
    top: 18%;
    right: 28%;
}

.lp-orbit-bottom {
    right: 0;
    bottom: 14%;
}

.lp-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
    border: 1px solid color-mix(in srgb, var(--lp-primary) 35%, var(--lp-border));
    border-radius: 999px;
    background: color-mix(in srgb, var(--lp-primary) 12%, transparent);
    color: color-mix(in srgb, var(--lp-primary) 36%, var(--lp-text));
    padding: .45rem .72rem;
    font-size: .84rem;
    font-weight: 700;
}

.lp-title {
    max-width: 820px;
    margin: 0;
    color: var(--lp-text);
    font-size: clamp(2.25rem, 5vw, 4.45rem);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 850;
}

.lp-lead {
    max-width: 700px;
    margin: 1.25rem 0 0;
    color: var(--lp-muted);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    line-height: 1.7;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.6rem;
}

.lp-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 2rem;
}

.lp-metric {
    min-width: 0;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    box-shadow: var(--lp-card-shadow);
    padding: .85rem;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lp-metric:hover {
    border-color: color-mix(in srgb, var(--lp-primary) 42%, var(--lp-border));
    box-shadow: var(--lp-card-shadow-strong);
    transform: translateY(-3px);
}

.lp-metric strong {
    display: block;
    color: var(--lp-text);
    font-size: 1.25rem;
}

.lp-metric span {
    display: block;
    color: var(--lp-muted);
    font-size: .86rem;
    overflow-wrap: anywhere;
}

.lp-preview {
    position: relative;
    border: 1px solid var(--lp-border);
    border-radius: 26px;
    background: var(--lp-surface-strong);
    box-shadow: var(--lp-card-shadow-strong);
    overflow: hidden;
    min-height: 378px;
    align-self: center;
}

.lp-preview::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 10%, color-mix(in srgb, var(--lp-primary) 24%, transparent), transparent 28%),
        radial-gradient(circle at 80% 0%, color-mix(in srgb, var(--lp-accent) 24%, transparent), transparent 24%);
    pointer-events: none;
}

.lp-preview::after {
    content: "";
    position: absolute;
    inset: -35% auto -35% -45%;
    width: 36%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
    transform: rotate(18deg);
    pointer-events: none;
    animation: lpSweep 6s ease-in-out 1.1s 2;
}

.lp-preview-inner {
    position: relative;
    z-index: 1;
    padding: clamp(1.2rem, 3vw, 1.55rem);
}

.lp-preview-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.lp-window-dots {
    display: flex;
    gap: .36rem;
}

.lp-window-dots span {
    width: .62rem;
    height: .62rem;
    border-radius: 999px;
    background: var(--lp-border);
}

.lp-window-dots span:nth-child(1) {
    background: var(--lp-danger);
}

.lp-window-dots span:nth-child(2) {
    background: var(--lp-warning);
}

.lp-window-dots span:nth-child(3) {
    background: var(--lp-accent);
}

.lp-preview-title {
    color: var(--lp-text);
    font-size: 1.04rem;
    font-weight: 800;
    text-align: right;
}

.lp-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    margin-bottom: 1rem;
}

.lp-status {
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    min-height: 76px;
    padding: .9rem .95rem;
    background: color-mix(in srgb, var(--lp-surface) 76%, transparent);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    transition: transform .2s ease, border-color .2s ease;
}

.lp-status:hover {
    border-color: color-mix(in srgb, var(--lp-primary) 46%, var(--lp-border));
    transform: translateY(-2px);
}

.lp-status b {
    display: block;
    color: var(--lp-text);
    font-size: 1.22rem;
    line-height: 1.1;
}

.lp-status small {
    display: block;
    margin-top: .25rem;
    color: var(--lp-muted);
    line-height: 1.25;
}

.lp-table {
    display: grid;
    gap: .65rem;
}

.lp-preview-activity {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
    margin-top: .8rem;
}

.lp-activity-chip {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    border: 1px solid color-mix(in srgb, var(--lp-primary) 24%, var(--lp-border));
    border-radius: 999px;
    background: color-mix(in srgb, var(--lp-surface) 80%, transparent);
    color: var(--lp-muted);
    padding: .45rem .6rem;
    font-size: .74rem;
    font-weight: 800;
    white-space: nowrap;
}

.lp-activity-chip .lp-svg-icon {
    flex: 0 0 auto;
    color: var(--lp-accent);
    font-size: .95rem;
}

.lp-activity-chip span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lp-row {
    display: grid;
    grid-template-columns: minmax(98px, 1.1fr) minmax(126px, 1.35fr) minmax(58px, .65fr) minmax(112px, .9fr);
    gap: .85rem;
    align-items: center;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    min-height: 56px;
    background: color-mix(in srgb, var(--lp-bg-soft) 48%, transparent);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
    padding: .75rem .9rem;
    color: var(--lp-muted);
    font-size: .86rem;
}

.lp-row:not(.lp-row-head) {
    transition: transform .2s ease, border-color .2s ease;
}

.lp-row:not(.lp-row-head):hover {
    border-color: color-mix(in srgb, var(--lp-accent) 40%, var(--lp-border));
    transform: translateX(3px);
}

.lp-row strong {
    color: var(--lp-text);
}

.lp-row span {
    min-width: 0;
}

.lp-row-head {
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .01em;
}

.lp-row-head span {
    color: var(--lp-muted);
}

.lp-pill {
    width: fit-content;
    justify-self: end;
    border-radius: 999px;
    padding: .34rem .62rem;
    font-size: .75rem;
    font-weight: 800;
    white-space: nowrap;
}

.lp-pill-success {
    background: color-mix(in srgb, var(--lp-accent) 18%, transparent);
    color: var(--lp-accent);
}

.lp-pill-warning {
    background: color-mix(in srgb, var(--lp-warning) 18%, transparent);
    color: var(--lp-warning);
}

.lp-section {
    padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.lp-section-head {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.lp-feature-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: 1.5rem;
    align-items: end;
    margin-bottom: 1.5rem;
}

.lp-feature-intro .lp-section-head {
    margin-bottom: 0;
}

.lp-lottie-card {
    min-height: 160px;
    border: 1px solid var(--lp-border);
    border-radius: 22px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--lp-primary) 14%, transparent), color-mix(in srgb, var(--lp-accent) 10%, transparent)),
        var(--lp-surface);
    box-shadow: var(--lp-card-shadow);
    overflow: hidden;
    position: relative;
}

.lp-lottie-card::after {
    content: "";
    position: absolute;
    inset: auto 16px 14px 16px;
    height: 1px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--lp-primary) 52%, transparent), transparent);
}

.lp-lottie {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 160px;
    opacity: 0;
    transition: opacity .24s ease;
}

.lp-lottie-card.is-lottie-ready .lp-lottie {
    opacity: 1;
}

.lp-lottie-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .7rem;
    align-items: center;
    padding: 1rem;
    transition: opacity .2s ease;
}

.lp-lottie-card.is-lottie-ready .lp-lottie-fallback {
    opacity: 0;
}

.lp-mini-node {
    min-width: 0;
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .45rem;
    border: 1px solid color-mix(in srgb, var(--lp-primary) 26%, var(--lp-border));
    border-radius: 18px;
    background: color-mix(in srgb, var(--lp-surface-strong) 74%, transparent);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .1);
    color: var(--lp-text);
    text-align: center;
}

.lp-mini-node .lp-svg-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    color: #fff;
    font-size: 1.05rem;
}

.lp-mini-node span {
    max-width: 100%;
    padding: 0 .35rem;
    color: var(--lp-muted);
    font-size: .72rem;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-section-head h2 {
    margin: 0;
    color: var(--lp-text);
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    line-height: 1.05;
    font-weight: 850;
}

.lp-section-head p {
    margin: .85rem 0 0;
    color: var(--lp-muted);
    line-height: 1.7;
}

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

.lp-feature,
.lp-step,
.lp-security {
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    box-shadow: var(--lp-card-shadow);
    padding: 1.1rem;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.lp-feature:hover,
.lp-step:hover,
.lp-security:hover {
    border-color: color-mix(in srgb, var(--lp-primary) 44%, var(--lp-border));
    box-shadow: var(--lp-card-shadow-strong);
    transform: translateY(-4px);
}

.lp-feature .lp-svg-icon,
.lp-step-number,
.lp-security .lp-svg-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: color-mix(in srgb, var(--lp-primary) 15%, transparent);
    color: var(--lp-primary);
    font-size: 1.25rem;
    margin-bottom: .9rem;
}

.lp-feature h3,
.lp-step h3 {
    margin: 0 0 .55rem;
    color: var(--lp-text);
    font-size: 1.02rem;
    font-weight: 800;
}

.lp-feature p,
.lp-step p,
.lp-security span {
    margin: 0;
    color: var(--lp-muted);
    line-height: 1.6;
}

.lp-workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.lp-step-number {
    color: #fff;
    background: linear-gradient(135deg, var(--lp-primary), var(--lp-accent));
    font-weight: 900;
    font-size: 1rem;
}

.lp-security-band {
    border: 1px solid var(--lp-border);
    border-radius: 22px;
    background: var(--lp-surface-strong);
    box-shadow: var(--lp-card-shadow-strong);
    padding: clamp(1.2rem, 4vw, 2rem);
}

.lp-security-band .lp-section-head {
    margin-bottom: 0;
}

.lp-security-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.lp-security {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.lp-security .lp-svg-icon {
    flex: 0 0 auto;
    margin: 0;
}

.lp-final {
    margin-bottom: 2rem;
    border: 1px solid color-mix(in srgb, var(--lp-primary) 28%, var(--lp-border));
    border-radius: 24px;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--lp-primary) 18%, transparent), color-mix(in srgb, var(--lp-accent) 12%, transparent)),
        var(--lp-surface-strong);
    box-shadow: var(--lp-card-shadow-strong);
    padding: clamp(1.35rem, 4vw, 2.4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

[data-theme="light"] .lp-preview {
    background:
        linear-gradient(135deg, rgba(230, 239, 255, .92), rgba(255, 255, 255, .98) 52%, rgba(230, 251, 246, .94)),
        var(--lp-surface-strong);
    border-color: rgba(37, 99, 235, .28);
}

[data-theme="light"] .lp-metric,
[data-theme="light"] .lp-status,
[data-theme="light"] .lp-row,
[data-theme="light"] .lp-activity-chip,
[data-theme="light"] .lp-lottie-card,
[data-theme="light"] .lp-feature,
[data-theme="light"] .lp-step,
[data-theme="light"] .lp-security {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(241, 247, 255, .94));
    border-color: rgba(37, 99, 235, .24);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, .95) inset,
        0 14px 32px rgba(15, 23, 42, .1);
}

.lp-final h2 {
    margin: 0 0 .5rem;
    color: var(--lp-text);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 850;
}

.lp-final p {
    margin: 0;
    color: var(--lp-muted);
    max-width: 680px;
    line-height: 1.65;
}

.lp-final .lp-hero-actions {
    margin-top: 0;
}

.lp-footer {
    padding: 1.25rem 0 2rem;
    color: var(--lp-muted);
    text-align: center;
}

@keyframes lpRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

@keyframes lpSweep {
    0%,
    62% {
        transform: translateX(0) rotate(18deg);
        opacity: 0;
    }

    72% {
        opacity: .8;
    }

    100% {
        transform: translateX(430%) rotate(18deg);
        opacity: 0;
    }
}

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

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

@media (max-width: 991.98px) {
    .lp-nav-links {
        display: none;
    }

    .lp-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 2.5rem;
    }

    .lp-preview {
        max-width: 620px;
    }

    .lp-orbit {
        display: none;
    }

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

    .lp-feature-intro {
        grid-template-columns: 1fr;
    }

    .lp-lottie-card {
        display: none;
    }

    .lp-workflow-grid,
    .lp-security-grid {
        grid-template-columns: 1fr;
    }

    .lp-final {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .lp-shell {
        width: min(100% - 22px, 1180px);
    }

    .lp-nav-inner {
        min-height: 64px;
    }

    .lp-brand img {
        width: 36px;
        height: 36px;
    }

    .lp-actions .lp-btn-secondary,
    .lp-actions .lp-btn-primary span {
        display: none;
    }

    .lp-title {
        font-size: clamp(2.05rem, 13vw, 3.5rem);
    }

    .lp-hero-actions,
    .lp-status-grid,
    .lp-feature-grid {
        grid-template-columns: 1fr;
    }

    .lp-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .45rem;
        margin-top: 1.2rem;
    }

    .lp-metric {
        padding: .65rem .45rem;
    }

    .lp-metric strong {
        font-size: 1rem;
    }

    .lp-metric span {
        font-size: .72rem;
        line-height: 1.3;
    }

    .lp-preview {
        display: none;
    }

    .lp-hero-actions .lp-btn {
        width: 100%;
    }

    .lp-row {
        grid-template-columns: 1fr;
        gap: .35rem;
    }

    .lp-row-head {
        display: none;
    }

    .lp-pill {
        justify-self: start;
    }

    .lp-preview-activity {
        grid-template-columns: 1fr;
    }

    .lp-preview-title {
        max-width: 160px;
    }
}
