﻿:root {
    --bg-main: #050816;
    --bg-card: rgba(15, 23, 42, 0.9);
    --bg-card-hover: rgba(15, 23, 42, 1);
    --accent: #3b82f6;
    --accent-soft: rgba(59, 130, 246, 0.2);
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --border-subtle: rgba(148, 163, 184, 0.4);
    --danger: #f97373;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    color: var(--text-main);
    background: radial-gradient(circle at top left, #1f2937 0, transparent 50%), radial-gradient(circle at bottom right, #1d4ed8 0, transparent 55%), var(--bg-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* NAVBAR */
.navbar {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    backdrop-filter: blur(18px);
    background: linear-gradient( to bottom, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.75) );
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    position: sticky;
    top: 0;
    z-index: 20;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 30px;
    display: block;
}

.nav-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    white-space: nowrap;
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

    .btn-ghost:hover {
        border-color: var(--accent);
        color: #ffffff;
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.8);
    }

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 30px rgba(37, 99, 235, 0.45);
        filter: brightness(1.05);
    }

/* MAIN LAYOUT */
.page {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 32px 16px 40px;
}

.container {
    width: 100%;
    max-width: 1100px;
}

.hero {
    text-align: center;
    margin-bottom: 32px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.hero-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
}

    .hero-title span {
        background: linear-gradient(135deg, #60a5fa, #a855f7);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-subtitle {
    max-width: 500px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* BILLING TOGGLE (UI ONLY) */
.billing-toggle {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 6px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.5);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.toggle-pill {
    position: relative;
    width: 80px;
    height: 24px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.7);
    padding: 3px;
    display: flex;
    align-items: center;
}

.toggle-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #c7d2fe);
    box-shadow: 0 0 0 2px rgba(129, 140, 248, 0.5), 0 6px 14px rgba(37, 99, 235, 0.5);
    transform: translateX(0);
    transition: transform 0.2s ease;
}

.toggle-pill.yearly .toggle-circle {
    transform: translateX(52px);
}

.billing-label {
    font-weight: 500;
    color: #e5e7eb;
}

.billing-save {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* PRICING GRID */
.plans {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 32px;
}

@media (max-width: 900px) {
    .plans {
        grid-template-columns: 1fr;
    }
}

.card {
    position: relative;
    border-radius: 18px;
    padding: 22px 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(18px);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease, translate 0.18s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

    .card:hover {
        transform: translateY(-6px);
        background: var(--bg-card-hover);
        border-color: var(--accent);
        box-shadow: 0 24px 55px rgba(37, 99, 235, 0.35);
    }

    .card.featured {
        border-color: rgba(59, 130, 246, 0.7);
        box-shadow: 0 24px 60px rgba(59, 130, 246, 0.6);
        transform: translateY(-6px);
    }

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.plan-name {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.plan-tag {
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(59, 130, 246, 0.7);
    background: rgba(37, 99, 235, 0.2);
    color: #bfdbfe;
}

    .plan-tag.secondary {
        border-color: rgba(148, 163, 184, 0.7);
        background: rgba(15, 23, 42, 0.9);
        color: var(--text-muted);
    }

.card-price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.divider {
    height: 1px;
    width: 100%;
    background: radial-gradient( ellipse at center, rgba(148, 163, 184, 0.7), transparent );
    opacity: 0.6;
}

.description {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.features {
    list-style: none;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .features li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        color: var(--text-main);
    }

.feature-icon {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-top: 2px;
    background: radial-gradient(circle at 30% 30%, #6ee7b7, #22c55e);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
    flex-shrink: 0;
}

    .feature-icon.muted {
        background: radial-gradient(circle at 30% 30%, #9ca3af, #4b5563);
        box-shadow: none;
    }

.card-footer {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.helper-text {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-align: center;
}

    .helper-text span {
        color: #a5b4fc;
    }

@media (max-width: 600px) {
    .navbar {
        padding: 0 16px;
    }

    .nav-title {
        display: none;
    }

    .nav-actions {
        gap: 8px;
    }

    .hero-subtitle {
        padding: 0 8px;
    }
}


  a {
    text-decoration: none;
}

.publicnav a {
    color: var(--text-main);
}
.publicnav a:hover {
    color: var(--text-main);
}

.publicnav a:active {
    color: var(--text-main);
}

.publicnav a:visited {
    color: var(--text-main);
}


.publicnav a:focus {
    color: var(--text-main);
}