/**
 * Public landing page styles — namespace: lp-*
 * Self-contained (does not use public-global class names).
 */
.lp-html {
    scroll-behavior: smooth;
}

.lp-body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    background: #0b1120;
    color: #f8fafc;
    line-height: 1.55;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.lp-body *,
.lp-body *::before,
.lp-body *::after {
    box-sizing: border-box;
}

.lp-wrap {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .lp-wrap { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .lp-wrap { padding: 0 2rem; }
}

.lp-main {
    position: relative;
    z-index: 1;
}

.lp-glow {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.lp-glow--a {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(11, 17, 32, 0) 70%);
}

.lp-glow--b {
    width: 500px;
    height: 500px;
    bottom: 100px;
    right: -100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(11, 17, 32, 0) 70%);
}

.lp-gradient-text {
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.lp-text-accent { color: #3b82f6; }

/* Buttons */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.lp-btn:hover { text-decoration: none; }

.lp-btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.95rem;
    border-radius: 0.625rem;
}

.lp-btn--lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
}

.lp-btn--block { width: 100%; }

.lp-btn--primary {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 10px 25px -8px rgba(59, 130, 246, 0.45);
}

.lp-btn--primary:hover {
    background: #2563eb;
    color: #fff;
}

.lp-btn--secondary {
    background: #8b5cf6;
    color: #fff;
}

.lp-btn--secondary:hover {
    background: #7c3aed;
    color: #fff;
}

.lp-btn--ghost {
    background: #1e293b;
    color: #fff;
    border-color: #334155;
}

.lp-btn--ghost:hover {
    background: #1e293b;
    border-color: #475569;
    color: #fff;
}

.lp-btn--white {
    background: #fff;
    color: #1e3a8a;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.25);
}

.lp-btn--white:hover {
    background: #f1f5f9;
    color: #1e3a8a;
}

/* Nav */
.lp-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(11, 17, 32, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: box-shadow 0.3s ease;
}

.lp-nav.is-scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.lp-nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    gap: 1rem;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.lp-brand:hover { text-decoration: none; color: #fff; }

.lp-brand i { color: #3b82f6; font-size: 1.75rem; }

.lp-brand__accent { color: #3b82f6; }

.lp-brand--footer {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.lp-brand--footer i { font-size: 1.35rem; }

.lp-nav__links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.lp-nav__links a {
    color: #cbd5e1;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-nav__links a:hover {
    color: #fff;
    text-decoration: none;
}

.lp-nav__actions {
    display: none;
    align-items: center;
    gap: 1rem;
}

.lp-nav__login {
    color: #cbd5e1;
    font-weight: 500;
    text-decoration: none;
}

.lp-nav__login:hover {
    color: #fff;
    text-decoration: none;
}

.lp-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    background: transparent;
    color: #cbd5e1;
    cursor: pointer;
    font-size: 1.35rem;
}

.lp-nav__toggle:hover { color: #fff; }

.lp-nav__drawer {
    display: none;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0 1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-nav__drawer:not([hidden]) {
    display: flex;
}

.lp-nav__drawer a {
    color: #e2e8f0;
    font-weight: 600;
    text-decoration: none;
    padding: 0.35rem 0;
}

.lp-nav__drawer a:hover {
    color: #fff;
    text-decoration: none;
}

@media (min-width: 768px) {
    .lp-nav__links,
    .lp-nav__actions { display: flex; }
    .lp-nav__toggle,
    .lp-nav__drawer { display: none !important; }
}

/* Hero */
.lp-hero {
    position: relative;
    z-index: 10;
    padding: 8rem 1rem 5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .lp-hero { padding: 12rem 1rem 8rem; }
}

.lp-hero__inner { max-width: 56rem; }

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(6px);
}

.lp-hero__title {
    margin: 0 0 1.5rem;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.lp-hero__br { display: none; }

@media (min-width: 768px) {
    .lp-hero__br { display: block; }
}

.lp-hero__lead {
    margin: 0 auto 2.5rem;
    max-width: 48rem;
    color: #94a3b8;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.lp-hero__actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lp-hero__actions {
        flex-direction: row;
    }
}

/* Sections */
.lp-section {
    position: relative;
    z-index: 10;
    padding: 5rem 0;
}

.lp-section--band {
    background: #080c17;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lp-section__head {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-section__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
}

.lp-section__sub {
    margin: 0 auto;
    max-width: 36rem;
    color: #94a3b8;
}

.lp-section__sub--left {
    margin: 0;
}

/* Steps */
.lp-steps {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .lp-steps { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .lp-steps { grid-template-columns: repeat(4, 1fr); }
}

.lp-step-line {
    display: none;
    position: absolute;
    top: 2rem;
    left: 12.5%;
    width: 75%;
    height: 2px;
    background: linear-gradient(to right, #3b82f6 50%, #1e293b 50%);
    background-size: 20px 100%;
    z-index: 0;
}

@media (min-width: 1024px) {
    .lp-step-line { display: block; }
}

.lp-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lp-step__icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: #1e293b;
    border: 1px solid #334155;
    color: #60a5fa;
    font-size: 1.35rem;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lp-step:hover .lp-step__icon {
    transform: scale(1.08);
    background: #3b82f6;
    color: #fff;
}

.lp-step__badge {
    background: #3b82f6;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.lp-step__title {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.lp-step__text {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Systems */
.lp-systems {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .lp-systems {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
    }
}

.lp-system-card {
    position: relative;
    overflow: hidden;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 1024px) {
    .lp-system-card { padding: 2.5rem; }
}

.lp-system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.4);
}

.lp-system-card--remote:hover {
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.4);
}

.lp-system-card__glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    border-bottom-left-radius: 999px;
    margin: -1rem -1rem 0 0;
    pointer-events: none;
}

.lp-system-card--login .lp-system-card__glow { background: rgba(59, 130, 246, 0.1); }
.lp-system-card--remote .lp-system-card__glow { background: rgba(139, 92, 246, 0.1); }

.lp-system-card__icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    font-size: 1.35rem;
}

.lp-system-card--login .lp-system-card__icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.lp-system-card--remote .lp-system-card__icon {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.lp-system-card__title {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.lp-system-card__lead {
    margin: 0 0 1.5rem;
    color: #94a3b8;
    line-height: 1.7;
}

.lp-system-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-system-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #cbd5e1;
}

.lp-system-card__list i {
    margin-top: 0.2rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.lp-system-card--login .lp-system-card__list i { color: #4ade80; }
.lp-system-card--remote .lp-system-card__list i { color: #c084fc; }

/* Tools */
.lp-tools-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .lp-tools-head {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.lp-tools-head .lp-section__title { margin-bottom: 0.5rem; }

.lp-tools-head__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
}

.lp-tools-head__link:hover {
    color: #93c5fd;
    text-decoration: none;
}

.lp-tools-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .lp-tools-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
    .lp-tools-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-tool-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease;
}

.lp-tool-card--login:hover { border-color: rgba(59, 130, 246, 0.5); }
.lp-tool-card--remote:hover { border-color: rgba(139, 92, 246, 0.5); }

.lp-tool-card__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid #334155;
    background: rgba(30, 41, 59, 0.5);
}

.lp-tool-card__type {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.lp-tool-card--login .lp-tool-card__type {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.lp-tool-card--remote .lp-tool-card__type {
    background: rgba(139, 92, 246, 0.2);
    color: #c084fc;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.lp-tool-card__name {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
}

.lp-tool-card__mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    flex-shrink: 0;
}

.lp-tool-card--login .lp-tool-card__mark {
    background: #2563eb;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.lp-tool-card--remote .lp-tool-card__mark {
    background: #7c3aed;
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.35);
}

.lp-tool-card__body {
    padding: 1.25rem;
    flex: 1;
}

.lp-tool-card__desc {
    margin: 0 0 1rem;
    color: #94a3b8;
    font-size: 0.9rem;
}

.lp-tool-card__prices {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #080c17;
    border: 1px solid #334155;
    border-radius: 0.5rem;
}

.lp-price-row__label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.lp-tool-card--login .lp-price-row__label i { color: #60a5fa; width: 1.1rem; }
.lp-tool-card--remote .lp-price-row__label i { color: #c084fc; width: 1.1rem; }

.lp-price-row__value {
    font-weight: 800;
    color: #fff;
}

.lp-tool-card__foot {
    padding: 1.25rem;
    border-top: 1px solid #334155;
}

.lp-empty {
    text-align: center;
    color: #94a3b8;
    padding: 2rem;
}

/* CTA */
.lp-cta {
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.lp-cta__box {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 1.5rem;
    padding: 2rem;
    background: linear-gradient(to right, rgba(30, 58, 138, 0.5), rgba(49, 46, 129, 0.5));
    border: 1px solid rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(6px);
}

@media (min-width: 768px) {
    .lp-cta__box { padding: 3rem; }
}

.lp-cta__texture {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}

.lp-cta__title,
.lp-cta__text,
.lp-cta__actions {
    position: relative;
    z-index: 1;
}

.lp-cta__title {
    margin: 0 0 1rem;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
}

.lp-cta__text {
    margin: 0 auto 2rem;
    max-width: 36rem;
    color: #bfdbfe;
}

/* Footer */
.lp-footer {
    position: relative;
    z-index: 10;
    background: #080c17;
    border-top: 1px solid #1e293b;
    padding: 4rem 0 2rem;
}

.lp-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .lp-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.lp-footer__about {
    margin: 0 0 1.5rem;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 20rem;
}

.lp-footer__social {
    display: flex;
    gap: 1rem;
}

.lp-footer__social a {
    color: #94a3b8;
    font-size: 1.25rem;
    text-decoration: none;
}

.lp-footer__social a:hover { color: #fff; }

.lp-footer__heading {
    margin: 0 0 1rem;
    color: #fff;
    font-weight: 700;
}

.lp-footer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.lp-footer__list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-footer__list a:hover {
    color: #3b82f6;
    text-decoration: none;
}

.lp-footer__list--contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #94a3b8;
}

.lp-footer__list--contact i { color: #3b82f6; }

.lp-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 0.875rem;
    text-align: center;
}

@media (min-width: 768px) {
    .lp-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.lp-footer__bottom p { margin: 0; }

.lp-footer__badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Inner public pages */
.lp-main--page {
    padding-top: 5rem;
    min-height: 70vh;
}

.lp-main--page::before,
.lp-main--page::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.lp-main--page::before {
    width: 520px;
    height: 520px;
    top: -160px;
    left: -180px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, rgba(11, 17, 32, 0) 70%);
}

.lp-main--page::after {
    width: 420px;
    height: 420px;
    bottom: 40px;
    right: -120px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(11, 17, 32, 0) 70%);
}

.lp-page {
    position: relative;
    z-index: 10;
    padding: 3.5rem 0 4.5rem;
}

.lp-wrap--narrow { max-width: 48rem; }
.lp-wrap--detail { max-width: 72rem; }

.lp-page__hero {
    text-align: center;
    margin-bottom: 2.5rem;
}

.lp-page__title {
    margin: 0 0 1rem;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.lp-page__lead {
    margin: 0 auto;
    max-width: 40rem;
    color: #94a3b8;
    font-size: 1.05rem;
    line-height: 1.7;
}

.lp-page__cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 2.5rem;
}

.lp-steps--page { margin-bottom: 3rem; }

.lp-nav__links a.is-active {
    color: #fff;
}

/* Chips */
.lp-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
    justify-content: center;
}

.lp-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid #334155;
    background: #1e293b;
    color: #94a3b8;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.lp-chip:hover {
    color: #fff;
    text-decoration: none;
    border-color: #475569;
}

.lp-chip.is-active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #fff;
}

.lp-tool-card__stock {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.lp-tool-card__stock.is-ok { color: #4ade80; }
.lp-tool-card__stock.is-out { color: #f87171; }

/* Contact */
.lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
    .lp-contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.35rem;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    text-decoration: none;
    color: #e2e8f0;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-contact-card:hover {
    text-decoration: none;
    color: #fff;
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.lp-contact-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.75rem;
    display: grid;
    place-items: center;
    margin-bottom: 0.5rem;
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    font-size: 1.25rem;
}

.lp-contact-card__icon--wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.lp-contact-card strong {
    font-size: 1.05rem;
}

.lp-contact-card span {
    color: #cbd5e1;
    font-size: 0.92rem;
}

.lp-contact-card em {
    font-style: normal;
    color: #64748b;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

/* Panels / legal */
.lp-panel {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 1.35rem 1.5rem;
}

.lp-panel__title {
    margin: 0 0 0.85rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.lp-panel__text {
    margin: 0 0 1rem;
    color: #94a3b8;
}

.lp-panel__list {
    margin: 0;
    padding-left: 1.15rem;
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.lp-legal {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 1.5rem 1.6rem;
    color: #cbd5e1;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.lp-legal__note {
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
}

.lp-legal__note a {
    color: #60a5fa;
    text-decoration: none;
}

.lp-legal__note a:hover {
    text-decoration: underline;
}

/* Tool detail */
.lp-back {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #94a3b8;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.lp-back:hover {
    color: #fff;
    text-decoration: none;
}

.lp-detail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
}

@media (min-width: 960px) {
    .lp-detail {
        grid-template-columns: 1.5fr 0.9fr;
        gap: 2rem;
    }
}

.lp-detail__head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.lp-detail__mark {
    width: 3.5rem !important;
    height: 3.5rem !important;
    font-size: 1rem;
}

.lp-detail__mark.lp-tool-card--login {
    background: #2563eb;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.lp-detail__mark.lp-tool-card--remote {
    background: #7c3aed;
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.35);
}

.lp-detail__title {
    margin: 0.35rem 0 0.25rem;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
}

.lp-detail__meta {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.lp-detail__block {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.8);
}

.lp-detail__block:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.lp-detail__block h2 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    font-weight: 800;
}

.lp-detail__block p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.7;
}

.lp-detail-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1rem;
    padding: 1.35rem;
    position: sticky;
    top: 6rem;
}

.lp-detail-card__title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 800;
}

.lp-detail-card__muted {
    color: #94a3b8;
    margin: 0 0 1rem;
}

.lp-detail-card__cta {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-detail-card__note {
    margin: 0;
    color: #64748b;
    font-size: 0.85rem;
    text-align: center;
}

.lp-alert {
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.lp-alert--warn {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: #fbbf24;
}

/* 404 */
.lp-error {
    text-align: center;
    padding: 2rem 0 1rem;
}

.lp-error__code {
    font-size: clamp(4.5rem, 12vw, 7rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.lp-error__title {
    margin: 0 0 0.75rem;
    font-size: 1.75rem;
    font-weight: 800;
}

.lp-error__text {
    margin: 0 auto;
    max-width: 28rem;
    color: #94a3b8;
}

/* Auth pages */
.lp-main--auth {
    display: flex;
    flex-direction: column;
}

.lp-wrap--auth {
    max-width: 28rem;
}

.lp-auth {
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.lp-auth-card {
    width: 100%;
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

@media (min-width: 480px) {
    .lp-auth-card { padding: 2.25rem 2rem; }
}

.lp-auth-card--wide {
    max-width: 34rem;
}

.lp-wrap--auth-wide {
    max-width: 34rem;
}

.lp-auth-card__badge {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto 1.1rem;
    border-radius: 0.9rem;
    display: grid;
    place-items: center;
    background: rgba(59, 130, 246, 0.18);
    border: 1px solid rgba(59, 130, 246, 0.35);
    color: #60a5fa;
    font-size: 1.35rem;
}

.lp-auth-card__title {
    margin: 0 0 0.45rem;
    text-align: center;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lp-auth-card__sub {
    margin: 0 0 1.5rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.55;
}

.lp-auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lp-auth-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .lp-auth-form__grid { grid-template-columns: 1fr 1fr; }
}

.lp-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #cbd5e1;
}

.lp-field input {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.7rem;
    border: 1px solid #334155;
    background: #0b1120;
    color: #f8fafc;
    font: inherit;
    font-size: 0.98rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lp-field input::placeholder {
    color: #64748b;
}

.lp-field input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.lp-auth-card__legal {
    margin: 0;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.5;
}

.lp-auth-card__legal a {
    color: #60a5fa;
    text-decoration: none;
}

.lp-auth-card__legal a:hover {
    text-decoration: underline;
}

.lp-auth-card__alt {
    margin: 1.35rem 0 0;
    text-align: center;
    color: #94a3b8;
    font-size: 0.92rem;
}

.lp-auth-card__alt a {
    color: #60a5fa;
    font-weight: 700;
    text-decoration: none;
}

.lp-auth-card__alt a:hover {
    text-decoration: underline;
}

.lp-auth-card__hint {
    margin: 1rem 0 0;
    text-align: center;
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.55;
}

.lp-auth-card__hint code {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid #334155;
    border-radius: 0.35rem;
    padding: 0.08rem 0.35rem;
    color: #93c5fd;
    font-size: 0.72rem;
}

.lp-alert--error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
    margin-bottom: 1rem;
}

.lp-alert--ok {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
    margin-bottom: 1rem;
}

.lp-nav__login.is-active {
    color: #fff;
}

.lp-btn.is-active {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}
