/* ─────────────────────────────────────────────
   Dictore — Landing Page Styles
   ───────────────────────────────────────────── */

:root {
    --bg: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text: #f0f0f0;
    --text-muted: #888;
    --accent: #4f8fff;
    --accent-hover: #3a7af0;
    --border: #222;
    --radius: 12px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Hero ────────────────────────────────── */

.hero {
    text-align: center;
    padding: 80px 24px 48px;
}

.hero-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(79, 143, 255, 0.1);
    border: 1px solid rgba(79, 143, 255, 0.2);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 22px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.version-note {
    font-size: 13px;
    color: var(--text-muted);
}

/* ─── Buttons ─────────────────────────────── */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* ─── Features ────────────────────────────── */

.features {
    padding: 48px 24px;
}

.features h2,
.how-it-works h2,
.pricing h2,
.faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: border-color 0.2s ease;
}

.feature-card:hover {
    border-color: #333;
}

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

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

.feature-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── How It Works ────────────────────────── */

.how-it-works {
    padding: 48px 24px;
}

.steps {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 240px;
}

.step-number {
    width: 48px;
    height: 48px;
    line-height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step p {
    font-size: 15px;
    color: var(--text-muted);
}

kbd {
    display: inline-block;
    padding: 2px 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: -apple-system, monospace;
    font-size: 14px;
    font-weight: 600;
}

/* ─── Pricing ─────────────────────────────── */

.pricing {
    padding: 48px 24px;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-top: -32px;
    margin-bottom: 48px;
    font-size: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    position: relative;
}

.price-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(79, 143, 255, 0.1);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.price-card ul {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.price-card li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}

.price-card li:last-child {
    border-bottom: none;
}

.price-card li::before {
    content: "\2713  ";
    color: var(--accent);
    font-weight: 700;
}

.price-card .btn {
    width: 100%;
}

/* ─── FAQ ─────────────────────────────────── */

.faq {
    padding: 48px 24px;
}

.faq-list {
    max-width: 640px;
    margin: 0 auto;
}

details {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

summary {
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: "+";
    font-size: 20px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

details[open] summary::after {
    content: "\2212";
}

details p {
    margin-top: 12px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── Footer ──────────────────────────────── */

footer {
    padding: 40px 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

.footer-links {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 24px;
}

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

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

/* ─── Success Page ────────────────────────── */

.success-hero {
    padding: 100px 24px;
}

.success-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.download-box {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.install-steps {
    max-width: 480px;
    margin: 48px auto 0;
    text-align: left;
}

.install-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.install-steps ol {
    padding-left: 24px;
}

.install-steps li {
    font-size: 15px;
    color: var(--text-muted);
    padding: 8px 0;
}

.support-note {
    margin-top: 48px;
    font-size: 14px;
    color: var(--text-muted);
}

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

/* ─── Responsive ──────────────────────────── */

@media (max-width: 640px) {
    .hero h1 {
        font-size: 48px;
    }

    .tagline {
        font-size: 18px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

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

    .steps {
        flex-direction: column;
        align-items: center;
    }
}
