/* Minimal CSS inspired by the pasted design (dark theme) */
:root {
    --accent: #918cd2;
    /* sampled from logo.png */
    --accent-600: #7f78b9;
    /* darker */
    --accent-400: #a89fe0;
    /* lighter */
    --accent-300: #e9e6fb;
    /* subtle highlight */
    --accent-gradient: linear-gradient(90deg, #918cd2 0%, #b0a7e8 100%);
    --accent-pressed: #6f689f;

    /* Light theme surfaces */
    --bg: #fafbfd;
    /* light/whitish background */
    --card: #ffffff;
    /* cards and surfaces */
    --muted: #586066;
    /* body muted text on light bg */
    --text: #0f1724;
    /* primary text color */
    --glass: rgba(16, 24, 40, 0.04);
    /* subtle glass overlay */
}

* {
    box-sizing: border-box
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial;
    margin: 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
    color: var(--text);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px
}

.site-header {
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid rgba(15, 23, 36, 0.04);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    gap: 20px;
    align-items: center
}

.logo {
    height: 52px;
}

.main-nav a {
    color: var(--muted);
    margin-right: 18px;
    text-decoration: none;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav a:focus {
    color: var(--accent-600);
}

.store-badges {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-left: 12px;
}

.store-badges img {
    height: 40px;
    width: auto;
    display: block;
}

/* Ensure badges visually match size by forcing a container size */
.store-badges a {
    display: inline-block;
    height: 40px
}

/* Alternate page sections: odd = light (default), even = white */
main>section:nth-of-type(odd) {
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%)
}

main>section:nth-of-type(even) {
    background: #ffffff
}

/* Add padding reset for sections so alternating backgrounds are visible edge-to-edge */
main>section {
    padding: 60px 0
}

.cta {
    display: flex;
    align-items: center;
    gap: 8px
}

@media(max-width:700px) {
    .cta {
        flex-direction: column;
        align-items: flex-end
    }

    .main-nav {
        display: none
    }
}

.cta .btn {
    margin-left: 0;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    transition: transform .08s ease, box-shadow .12s ease, background .12s ease;
    box-shadow: 0 6px 20px rgba(145, 140, 210, 0.12);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--accent-400);
    box-shadow: 0 10px 30px rgba(145, 140, 210, 0.18);
    transform: translateY(-1px);
}

.btn-primary:active {
    background: var(--accent-600);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
}

.btn-outline {
    border: 1px solid rgba(15, 23, 36, 0.06);
    color: var(--text);
    background: transparent;
}

.btn-ghost {
    background: rgba(15, 23, 36, 0.03);
    color: var(--text);
}

.hero {
    padding: 80px 0
}

.hero-inner {
    display: flex;
    gap: 40px;
    align-items: center
}

.hero-copy {
    flex: 1
}

.hero-copy h1 {
    font-size: 44px;
    margin: 0 0 16px
}

.lead {
    color: var(--muted);
    max-width: 540px
}

.hero-actions {
    margin-top: 20px
}

.hero-cards {
    width: 360px
}

.card {
    background: var(--card);
    border: 1px solid rgba(15, 23, 36, 0.06);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.04);
}

.card.featured {
    box-shadow: 0 18px 50px rgba(145, 140, 210, 0.08);
    border: 1px solid rgba(145, 140, 210, 0.12);
}

.price {
    font-size: 28px;
    font-weight: 700
}

.badge {
    background: var(--accent);
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    display: inline-block;
    margin-top: 10px
}

.btn-outline:hover {
    border-color: rgba(145, 140, 210, 0.18);
    color: var(--accent-400);
}

.btn-ghost:hover {
    background: rgba(145, 140, 210, 0.04);
}

.hero {
    background-image: radial-gradient(circle at 10% 10%, rgba(145, 140, 210, 0.06) 0%, transparent 20%), radial-gradient(circle at 90% 90%, rgba(176, 167, 232, 0.03) 0%, transparent 25%);
}

.pricing {
    padding: 60px 0
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.plan {
    background: var(--card);
    padding: 24px;
    border-radius: 12px;
    text-align: center
}

.plan.featured {
    border: 1px solid rgba(107, 85, 255, 0.18)
}

.faq {
    padding: 60px 0
}

.faq-list details {
    background: #fbfbfd;
    padding: 14px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.site-footer {
    padding: 40px 0;
    color: var(--muted);
}

@media(max-width:900px) {
    .hero-inner {
        flex-direction: column
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }
}