@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600&display=swap");

:root {
    --bg: #0f1318;
    --bg-soft: #151b22;
    --card: #1a232d;
    --border: #2a3642;
    --text: #edf2f7;
    --muted: #9ca9b8;
    --accent: #e11d48;
    --accent-soft: #be123c;
    --ok: #16a34a;
    --warn: #f59e0b;
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% -10%, rgba(225, 29, 72, 0.25), transparent 40%),
        radial-gradient(circle at 88% 0%, rgba(14, 165, 233, 0.12), transparent 35%),
        var(--bg);
    line-height: 1.55;
}

h1,
h2,
h3 {
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    line-height: 1.15;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
}

.container {
    width: min(1080px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 4.25rem 0;
}

.muted {
    color: var(--muted);
}

.card {
    background: color-mix(in srgb, var(--card) 88%, black 12%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.6rem;
    border-radius: 10px;
    padding: 0.55rem 1rem;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 160ms ease;
}

.btn-primary {
    color: #fff;
    background: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-soft);
    transform: translateY(-1px);
}

.btn-ghost {
    border-color: var(--border);
    color: var(--muted);
    background: transparent;
}

.btn-ghost:hover {
    color: var(--text);
    border-color: #465668;
}

.btn-full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: color-mix(in srgb, var(--bg) 80%, transparent);
    border-bottom: 1px solid var(--border);
}

.nav-wrap {
    min-height: 4.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f43f5e;
}

.nav-links ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    color: var(--muted);
}

.nav-links a:hover {
    color: var(--text);
}

.mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--text);
    cursor: pointer;
}

.hero {
    padding: 6rem 0 4.25rem;
    text-align: center;
}

.eyebrow {
    color: #f43f5e;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    margin-bottom: 1rem;
}

.hero h1 {
    width: min(830px, 100%);
    margin: 0 auto;
    font-size: clamp(2rem, 5vw, 3.3rem);
}

.hero-copy {
    width: min(660px, 100%);
    margin: 1rem auto 0;
    color: var(--muted);
}

.hero-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.section-head {
    margin-bottom: 1.2rem;
}

.section-head h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.card-grid {
    display: grid;
    gap: 1rem;
}

.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    padding: 1.1rem;
}

.card h3 {
    margin-bottom: 0.5rem;
}

.pricing-card ul {
    margin: 0.75rem 0 1rem 1rem;
    display: grid;
    gap: 0.4rem;
    color: var(--muted);
}

.pricing-card .price {
    margin-top: 0.5rem;
    color: #fb7185;
    font-size: 2rem;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    font-weight: 700;
}

.pricing-card .price span {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 500;
}

.pricing-card.featured {
    border-color: #f43f5e;
    box-shadow: 0 18px 36px rgba(190, 18, 60, 0.3);
}

.faq-item {
    border-top: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: 0;
    color: var(--text);
    padding: 1rem 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--muted);
    transition: max-height 180ms ease;
    padding-right: 2rem;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 1.4rem 0 2rem;
}

.site-footer p {
    color: var(--muted);
    font-size: 0.9rem;
}

.auth-body {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.auth-shell {
    width: min(480px, 92vw);
}

.auth-card {
    padding: 1.25rem;
}

.auth-head {
    margin-bottom: 1rem;
}

.auth-head h1 {
    margin-bottom: 0.35rem;
}

.plan-note {
    margin-bottom: 0.8rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0.8rem 0 0.35rem;
}

.form-input {
    width: 100%;
    min-height: 2.65rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #121921;
    color: var(--text);
    padding: 0.55rem 0.7rem;
}

.form-input:focus {
    outline: 2px solid rgba(225, 29, 72, 0.3);
    border-color: #f43f5e;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0.9rem 0 1rem;
    font-size: 0.92rem;
}

.auth-links {
    margin-top: 0.95rem;
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
    font-size: 0.9rem;
}

.auth-links a {
    color: var(--muted);
}

.auth-links a:hover {
    color: var(--text);
}

@media (max-width: 900px) {
    .three-up {
        grid-template-columns: 1fr;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #111720;
        border-bottom: 1px solid var(--border);
        border-top: 1px solid var(--border);
        padding: 0.8rem;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: 160ms ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: stretch;
    }
}
