body.landing-body {
    margin: 0;
    font-family: 'Manrope', 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 10% 20%, rgba(92, 145, 255, 0.12), transparent 35%),
                radial-gradient(circle at 80% 0%, rgba(255, 99, 146, 0.12), transparent 35%),
                #05060a;
    color: #eaf1ff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.landing-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(100% 90% at 10% 10%, rgba(88, 101, 242, 0.3), transparent 40%),
                radial-gradient(80% 70% at 90% 10%, rgba(0, 186, 200, 0.25), transparent 35%),
                radial-gradient(80% 70% at 50% 80%, rgba(255, 159, 67, 0.15), transparent 35%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 48px;
    background: rgba(5, 6, 10, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #fff;
    font-size: 22px;
}

.landing-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.landing-nav a {
    color: #c9d5ff;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.landing-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.cta-actions {
    display: flex;
    gap: 12px;
}

.landing-body .btn-primary {
    background: linear-gradient(135deg, #6a7dff, #0fb8ff);
    border: none;
    box-shadow: 0 10px 30px rgba(111, 140, 255, 0.35);
}

.landing-body .btn-outline-light {
    color: #eaf1ff;
    border-color: rgba(255, 255, 255, 0.4);
}

.landing-body .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

main {
    position: relative;
    z-index: 1;
}

.hero {
    padding: 80px 48px 32px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 40px;
}

.hero-copy h1 {
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.hero-copy p {
    color: #c9d5ff;
    font-size: 18px;
    line-height: 1.6;
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #9fd2ff;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 14px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 22px 0 16px;
}

.hero-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: #a4b5ff;
    font-weight: 600;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.card-stack {
    position: relative;
    width: 360px;
    perspective: 1200px;
}

.preview-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-card img {
    width: 100%;
    display: block;
}

.preview-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.45));
    color: #eaf1ff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
}

.preview-card.primary {
    transform: rotate(-3deg);
}

.preview-card.secondary {
    position: absolute;
    top: 18%;
    right: -14%;
    width: 200px;
    transform: rotate(8deg);
    opacity: 0.9;
}

.section-heading {
    padding: 24px 48px 0;
}

.section-heading h2 {
    color: #fff;
    font-weight: 800;
}

.section-heading p {
    color: #c2cfff;
    max-width: 720px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7ed8ff;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-grid {
    padding: 32px 48px 24px;
}

.feature-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px;
    border-radius: 18px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    color: #dbe4ff;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(111, 140, 255, 0.5);
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 10px;
    font-size: 20px;
}

.workflow {
    padding: 40px 48px 24px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.step {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    color: #dbe4ff;
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a7dff, #0fb8ff);
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 10px;
}

.plans {
    padding: 40px 48px 24px;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 22px;
    color: #dbe4ff;
    position: relative;
    overflow: hidden;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: grid;
    gap: 10px;
}

.plan-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #eaf1ff;
}

.plan-card .plan-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 10px;
    border-radius: 12px;
    font-weight: 700;
    color: #8acbff;
}

.plan-card.featured {
    border-color: rgba(111, 140, 255, 0.6);
    box-shadow: 0 20px 50px rgba(111, 140, 255, 0.25);
}

.showcase {
    padding: 40px 48px 24px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    color: #dbe4ff;
}

.showcase-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.showcase-card h5 {
    padding: 12px 14px 0;
    margin: 0;
}

.showcase-card p {
    padding: 0 14px 16px;
    margin: 0;
    color: #c9d5ff;
}

.contact {
    padding: 80px 32px;
}

.contact-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 32px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(16, 24, 40, 0.2);
}

.contact-copy h2 {
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-copy p {
    color: #eaf1ff;
    margin-bottom: 18px;
}

.contact-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: grid;
    gap: 10px;
}

.contact-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 12px;
    border-radius: 12px;
}

.contact-highlights i {
    color: #66b2ff;
}

.contact-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    color: #eaf1ff;
    font-weight: 600;
}

.contact-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.contact-form {
    background: #0d162c;
    border-radius: 22px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contact-form .form-heading h4 {
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-form .subtitle {
    color: #c9d6ff;
    margin-bottom: 14px;
}

.contact-form-grid {
    display: grid;
    gap: 12px;
}

.contact-form .form-control,
.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #eaf1ff;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-form textarea.form-control {
    min-height: 140px;
}

.contact-form .btn-primary {
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(92, 132, 255, 0.35);
}

.cta-block {
    margin: 48px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(111, 140, 255, 0.35), rgba(15, 184, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.dashboard-preview {
    margin: 24px 48px 60px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.profile-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    color: #dbe4ff;
}

.profile-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.profile-name {
    font-weight: 800;
    color: #fff;
}

.profile-tag {
    padding: 4px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
}

.profile-link a {
    color: #8acbff;
    text-decoration: none;
}

.profile-link a:hover {
    text-decoration: underline;
}

.profile-card .qr {
    width: 120px;
    height: 120px;
    display: block;
    margin: 10px 0;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
}

.profile-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.landing-footer {
    padding: 24px 48px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(5, 6, 10, 0.6);
    color: #c9d5ff;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #eaf1ff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .landing-header {
        padding: 14px 18px;
    }

    .hero {
        padding: 48px 20px 24px;
    }

    .section-heading,
    .feature-grid,
    .workflow,
    .plans,
    .showcase,
    .contact,
    .dashboard-preview {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cta-block {
        margin: 24px 20px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }
}

/* --- Shared tokens (Home/Index uses these) --- */
:root {
    --bg: #05060a;
    --card: rgba(255,255,255,.06);
    --border: rgba(255,255,255,.12);
    --text: rgba(255,255,255,.92);
    --muted: rgba(255,255,255,.65);
    --grad: linear-gradient(135deg, rgba(94,234,212,.95), rgba(99,102,241,.95));
}

.glass {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.05);
    color: rgba(255,255,255,.8);
    font-size: .9rem;
    font-weight: 600;
}

.btn-gradient {
    border: 0;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 800;
    color: #07121a !important;
    background: var(--grad);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform .15s ease, filter .15s ease;
}

    .btn-gradient:hover {
        transform: translateY(-1px);
        filter: brightness(1.05);
    }

.muted {
    color: var(--muted);
}

.footer-link {
    color: rgba(255,255,255,.7);
    text-decoration: none;
}

    .footer-link:hover {
        color: #fff;
        text-decoration: underline;
    }

.qr {
    width: 150px;
    height: 150px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    padding: 6px;
}
