:root {
    --bg: #f3f6fc;
    --bg-deep: #0f172a;
    --card: #ffffff;
    --text: #1e293b;
    --muted: #64748b;
    --accent: #2f6fed;
    --accent-dark: #1d4ed8;
    --ok: #059669;
    --border: #e2e8f0;
    --radius: 14px;
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

* { box-sizing: border-box; }

body.landing-page {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
    width: min(1080px, calc(100% - 32px));
    margin: 0 auto;
}

header {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.02em;
    color: var(--text);
    text-decoration: none;
}

.logo:hover { text-decoration: none; }
.logo img { width: 40px; height: 40px; border-radius: 10px; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(47, 111, 237, 0.28);
}

.nav-cta:hover {
    background: var(--accent-dark);
    text-decoration: none;
}

.hero {
    padding: 40px 0 28px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e8efff;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 600;
}

h1 {
    margin: 0 0 16px;
    font-size: clamp(30px, 4.8vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.lead {
    margin: 0 0 22px;
    font-size: 18px;
    color: var(--muted);
    max-width: 36em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: 0;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 28px rgba(47, 111, 237, 0.25);
}

.btn-primary:hover {
    background: var(--accent-dark);
    text-decoration: none;
}

.btn-ghost {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    text-decoration: none;
    border-color: #cbd5e1;
}

.trust {
    font-size: 13px;
    color: var(--muted);
}

.preview {
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%);
    border-radius: calc(var(--radius) + 4px);
    padding: 18px;
    box-shadow: var(--shadow);
    color: #e2e8f0;
}

.preview-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 10px;
}

.preview-card:last-child { margin-bottom: 0; }

.preview-card h3 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #f8fafc;
}

.preview-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-row:last-child { border-bottom: 0; }

.pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
}

.pill--running {
    background: rgba(47, 111, 237, 0.25);
    color: #93c5fd;
}

section { padding: 28px 0 40px; }

.section-title {
    margin: 0 0 8px;
    font-size: 28px;
    letter-spacing: -0.02em;
}

.section-lead {
    margin: 0 0 24px;
    color: var(--muted);
    max-width: 44em;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.card h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.card p,
.card li {
    color: var(--muted);
    font-size: 15px;
}

.card ul {
    margin: 0;
    padding-left: 18px;
}

.card li { margin-bottom: 6px; }

.card--pro {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(47, 111, 237, 0.08);
}

.plan-card h3 {
    margin-bottom: 4px;
}

.plan-price {
    margin: 0 0 6px;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.plan-price-note {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--muted);
}

.plan-table {
    margin-top: 24px;
}

.plan-table th,
.plan-table td {
    text-align: center;
}

.plan-table th:first-child,
.plan-table td:first-child {
    text-align: left;
}

.plan-table thead th {
    background: #eef4ff;
    width: auto;
}

.plan-yes {
    color: var(--ok);
    font-weight: 700;
}

.plan-no {
    color: #cbd5e1;
}

.roadmap-card {
    position: relative;
}

.roadmap-tier {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #eef4ff;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 600;
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 14px;
}

.data-table th,
.data-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.data-table th {
    background: #f8fafc;
    font-weight: 600;
    width: 28%;
}

.data-table tr:last-child td,
.data-table tr:last-child th { border-bottom: 0; }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
}

.step-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

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

.audience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.audience ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
    font-size: 15px;
}

.audience li { margin-bottom: 8px; }

.cta-band {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #e2e8f0;
    border-radius: calc(var(--radius) + 2px);
    padding: 28px 32px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cta-band h2 {
    margin: 0 0 6px;
    font-size: 22px;
    color: #f8fafc;
}

.cta-band p {
    margin: 0;
    color: #94a3b8;
    font-size: 15px;
}

footer {
    padding: 32px 0 48px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

footer p { margin: 8px 0 0; max-width: 28em; }

.logo-footer {
    font-weight: 700;
    color: var(--text);
}

.footer-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    margin-left: auto;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
}

.scroll-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 24px rgba(47, 111, 237, 0.28);
    text-decoration: none;
    flex-shrink: 0;
}

.scroll-top:hover {
    background: var(--accent-dark);
    text-decoration: none;
    color: #fff;
}

.scroll-top:focus-visible {
    outline: 2px solid var(--accent-dark);
    outline-offset: 2px;
}

@media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 20px; }
}

@media (max-width: 860px) {
    .grid-2,
    .grid-3,
    .audience { grid-template-columns: 1fr; }

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

@media (max-width: 520px) {
    .steps { grid-template-columns: 1fr; }

    .footer-aside {
        margin-left: 0;
        align-items: flex-start;
        width: 100%;
    }

    .footer-links {
        justify-content: flex-start;
        text-align: left;
    }
}
