body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    font-weight: 900;
    font-size: 24px;
    color: #0f172a;
    text-decoration: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .site-nav a {
        color: #334155;
        text-decoration: none;
        font-weight: 600;
    }

.site-nav-cta {
    background: #22c55e;
    color: #052e16 !important;
    padding: 10px 16px;
    border-radius: 999px;
}

.hero {
    min-height: 82vh;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: center;
    padding: 72px 7vw;
    background: radial-gradient(circle at 10% 20%, rgba(34,197,94,.18), transparent 35%), linear-gradient(135deg, #f8fafc, #ecfeff);
}

.eyebrow {
    display: inline-flex;
    background: #dcfce7;
    color: #166534;
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: .95;
    letter-spacing: -3px;
    margin: 0 0 24px;
}

.hero p {
    font-size: 21px;
    color: #475569;
    max-width: 680px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.primary-btn {
    background: #22c55e;
    color: #052e16;
}

.secondary-btn {
    background: white;
    color: #0f172a;
    border: 1px solid #cbd5e1;
}

.hero-proof {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

    .hero-proof span {
        background: white;
        border: 1px solid #e2e8f0;
        padding: 10px 14px;
        border-radius: 999px;
        color: #475569;
        font-weight: 700;
    }

.hero-phone {
    display: flex;
    justify-content: center;
}

.phone-card {
    width: min(360px, 90vw);
    min-height: 620px;
    border-radius: 42px;
    background: linear-gradient(to top, rgba(15,23,42,.96), rgba(15,23,42,.2)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=900&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 40px 100px rgba(15,23,42,.35);
}

.card-tag {
    background: rgba(255,255,255,.18);
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.phone-card h3 {
    font-size: 30px;
    line-height: 1;
    margin: 0 0 12px;
}

.phone-card p {
    color: #e2e8f0;
    font-size: 16px;
}

.card-actions {
    margin-top: 20px;
    display: flex;
    gap: 16px;
    font-size: 24px;
}

.section {
    padding: 80px 7vw;
}

    .section h2 {
        font-size: clamp(32px, 4vw, 54px);
        letter-spacing: -2px;
        margin-top: 0;
    }

.steps,
.use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

    .steps div,
    .pricing-card,
    .use-grid div {
        background: white;
        border-radius: 26px;
        padding: 28px;
        border: 1px solid #e2e8f0;
    }

    .steps strong {
        font-size: 48px;
        color: #22c55e;
    }

.dark-section {
    background: #0f172a;
    color: white;
}

.use-grid div {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
}

.pricing-card {
    max-width: 420px;
}

    .pricing-card strong {
        display: block;
        font-size: 42px;
        margin: 16px 0;
    }

.site-footer {
    padding: 28px 40px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    color: #64748b;
}

@media (max-width: 860px) {
    .site-header {
        padding: 14px 20px;
    }

    .site-nav a:not(.site-nav-cta) {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 48px 24px;
    }

        .hero h1 {
            letter-spacing: -2px;
        }

    .site-footer {
        padding: 24px;
    }
}



.auth-card {
  
}

    .auth-card h1 {
        margin: 0 0 8px;
        color: #0f172a;
    }

    .auth-card p {
        color: #64748b;
        margin-bottom: 24px;
    }

    .auth-card input {
        width: 100%;
        padding: 14px 16px;
        margin-bottom: 12px;
        border: 1px solid #cbd5e1;
        border-radius: 14px;
        font-size: 15px;
    }

    .auth-card button {
        width: 100%;
        padding: 14px 16px;
        border: 0;
        border-radius: 999px;
        background: #22c55e;
        color: #052e16;
        font-weight: 800;
        cursor: pointer;
        margin-top: 8px;
    }

    .auth-card a {
        display: block;
        text-align: center;
        margin-top: 18px;
        color: #2563eb;
        text-decoration: none;
    }

.error {
    color: #dc2626;
    margin-bottom: 12px;
}

/*ADMIN*/

.lf-layout {
    display: flex;
    min-height: 100vh;
    font-family: Inter, Arial, sans-serif;
}

.lf-sidebar {
    width: 260px;
    background: #0f172a;
    color: white;
    padding: 24px;
}

.lf-logo {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
}

.lf-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lf-sidebar a {
    color: #cbd5e1;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
}

    .lf-sidebar a:hover {
        background: rgba(255,255,255,.08);
    }

.lf-content {
    flex: 1;
    padding: 40px;
    background: #f8fafc;
}

.lf-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
    margin-top: 30px;
}

.lf-stat {
    background: white;
    border-radius: 18px;
    padding: 24px;
}

    .lf-stat h3 {
        margin: 0 0 12px;
        color: #64748b;
        font-size: 14px;
    }

    .lf-stat strong {
        font-size: 34px;
    }

.lf-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.lf-btn {
    background: #22c55e;
    color: white;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 999px;
}

.lf-btn-outline {
    border: 1px solid #cbd5e1;
    color: #0f172a;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 999px;
}

.lf-form {
    max-width: 760px;
    background: white;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    margin-top: 24px;
}

    .lf-form label {
        display: block;
        font-weight: 800;
        margin: 16px 0 8px;
    }

    .lf-form input,
    .lf-form textarea,
    .lf-form select {
        width: 100%;
        padding: 14px 16px;
        border: 1px solid #cbd5e1;
        border-radius: 14px;
        font-size: 15px;
    }

    .lf-form textarea {
        min-height: 100px;
    }

.lf-submit {
    margin-top: 22px;
    background: #22c55e;
    color: #052e16;
    border: 0;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.lf-alert {
    background: #dcfce7;
    color: #166534;
    padding: 14px 18px;
    border-radius: 16px;
    margin: 18px 0;
    font-weight: 800;
}

.lf-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 20px;
    margin-top: 24px;
}

.lf-feed-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 24px;
}

    .lf-feed-card span {
        display: inline-flex;
        background: #e0f2fe;
        color: #075985;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .lf-feed-card h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .lf-feed-card p {
        color: #64748b;
    }

.lf-feed-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0;
}

    .lf-feed-meta strong {
        background: #f1f5f9;
        padding: 7px 10px;
        border-radius: 999px;
        font-size: 12px;
    }

.lf-page-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.lf-editor-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 24px;
    align-items: start;
}

.lf-editor-main,
.lf-editor-side {
    display: grid;
    gap: 18px;
}

.lf-edit-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.lf-edit-preview {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .lf-edit-preview span {
        width: fit-content;
        background: rgba(255,255,255,.18);
        padding: 7px 10px;
        border-radius: 999px;
        font-size: 12px;
        font-weight: 900;
    }

    .lf-edit-preview h3 {
        font-size: 28px;
        line-height: 1;
        margin: 14px 0 10px;
    }

    .lf-edit-preview p {
        color: #e2e8f0;
    }

.lf-edit-form,
.lf-quiz-edit {
    padding: 22px;
}

    .lf-edit-form label,
    .lf-quiz-edit label {
        display: block;
        margin: 12px 0 7px;
        font-weight: 800;
        font-size: 13px;
    }

    .lf-edit-form input,
    .lf-edit-form textarea,
    .lf-quiz-edit input,
    .lf-quiz-edit textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1px solid #cbd5e1;
        border-radius: 13px;
    }

    .lf-edit-form textarea,
    .lf-quiz-edit textarea {
        min-height: 90px;
    }

.lf-quiz-edit {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
}

.lf-small-btn {
    margin-top: 14px;
    border: 0;
    border-radius: 999px;
    background: #0f172a;
    color: white;
    padding: 11px 16px;
    font-weight: 800;
    cursor: pointer;
}

.lf-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #0f172a;
    color: white;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    z-index: 9999;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .lf-editor-grid {
        grid-template-columns: 1fr;
    }

    .lf-edit-card {
        grid-template-columns: 1fr;
    }
}

.lf-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-top: 24px;
}

.lf-panel {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    padding: 26px;
}

    .lf-panel h2 {
        margin-top: 0;
    }

.big-metric {
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    margin: 18px 0 8px;
}

.leader-row,
.issue-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #e2e8f0;
}

    .leader-row:last-child,
    .issue-row:last-child {
        border-bottom: 0;
    }

    .leader-row small,
    .issue-row small {
        display: block;
        color: #64748b;
        margin-top: 4px;
    }

    .issue-row span,
    .issue-row strong {
        color: #dc2626;
    }

.lf-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

    .lf-table th,
    .lf-table td {
        padding: 14px;
        border-bottom: 1px solid #e2e8f0;
        text-align: left;
    }

    .lf-table th {
        color: #64748b;
        font-size: 13px;
        text-transform: uppercase;
    }