:root {
    --text: #1d1d1f;
    --text-secondary: #6e6e73;
    --bg: #fbfbfd;
    --accent: #7c3aed;
    --accent-light: #ede9fe;
    --border: #e5e5ea;
    --radius: 12px;
    --max-width: 980px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

/* Nav */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 251, 253, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
}

.nav-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.2s;
}

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

/* Hero */
.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 64px 24px 32px;
}

.hero-columns {
    display: flex;
    align-items: center;
    gap: 56px;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-sub {
    font-size: 19px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 28px;
}

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

.hero-meta {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-screenshot {
    flex-shrink: 0;
}

.hero-screenshot-card {
    background: linear-gradient(145deg, #1e0a3c, #3b1578);
    border-radius: 20px;
    padding: 32px 36px;
}

.hero-screenshot img {
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 980px;
    padding: 12px 32px;
    transition: all 0.2s;
}

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

.btn-primary:hover {
    background: #6d28d9;
    transform: scale(1.02);
}

/* Features */
.features {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 16px 24px 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    text-align: center;
    padding: 24px 20px;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Pricing */
.pricing {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.pricing h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.price-card {
    max-width: 360px;
    margin: 0 auto;
    padding: 48px 40px;
    border-radius: 20px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.price-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.price-desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
    text-align: left;
}

.price-features li {
    font-size: 15px;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.price-features li::before {
    content: "\2713";
    color: var(--accent);
    font-weight: 600;
    margin-right: 10px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    margin-top: 40px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-inner p {
    font-size: 13px;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 13px;
    transition: color 0.2s;
}

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

/* Legal pages */
.legal {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 24px;
}

.legal h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.legal .updated {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.legal h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal p, .legal ul {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal ul {
    padding-left: 24px;
}

.legal a {
    color: var(--accent);
    text-decoration: none;
}

.legal a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-columns {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-sub {
        font-size: 18px;
    }

    .hero-screenshot img {
        width: 240px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature {
        padding: 24px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 13px;
    }
}
