:root {
    --pink: #EC4899;
    --pink-dark: #BE185D;
    --ink: #0F172A;
    --muted: #64748B;
    --bg: #FAFAF9;
    --card: #FFFFFF;
    --border: #E2E8F0;
    --radius: 14px;
    --shadow: 0 1px 2px rgba(15,23,42,.06), 0 8px 24px rgba(15,23,42,.06);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--ink);
    font: 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

/* -------- nav -------- */

nav {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
nav .brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--ink);
}
nav .brand img { width: 28px; height: 28px; }
nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0; padding: 0;
    font-size: 15px;
}

/* -------- hero -------- */

.hero {
    padding: 72px 0 56px;
    text-align: center;
}
.hero h1 {
    font-size: 56px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
.hero p.lede {
    font-size: 22px;
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 32px;
}
.hero img.icon {
    width: 128px;
    height: 128px;
    margin-bottom: 24px;
}

.cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform .08s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--pink); color: white; }
.btn-primary:hover { background: var(--pink-dark); color: white; }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--border);
}

.pricing-note {
    margin-top: 16px;
    color: var(--muted);
    font-size: 14px;
}

/* -------- hero demo -------- */

.demo {
    margin: 48px auto 0;
    max-width: 860px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.demo img { display: block; width: 100%; }

/* -------- section -------- */

section {
    padding: 64px 0;
    border-top: 1px solid var(--border);
}
section h2 {
    font-size: 32px;
    letter-spacing: -0.01em;
    margin: 0 0 32px;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.feature {
    background: var(--card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.feature h3 {
    margin: 0 0 8px;
    font-size: 17px;
}
.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

/* -------- pricing -------- */

.price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow);
}
.price {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
}
.price .old {
    font-size: 24px;
    color: var(--muted);
    text-decoration: line-through;
    margin-right: 10px;
    font-weight: 500;
}
.price-card .cents { font-size: 32px; vertical-align: top; color: var(--muted); margin-left: 2px; }
.price-card .period {
    color: var(--muted);
    font-size: 15px;
    margin: 4px 0 24px;
}
.price-card ul {
    text-align: left;
    list-style: none;
    padding: 0; margin: 0 0 28px;
}
.price-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 15px;
}
.price-card li:last-child { border-bottom: 0; }
.price-card li::before { content: "✓ "; color: var(--pink); font-weight: 700; }

/* -------- faq -------- */

.faq {
    max-width: 720px;
    margin: 0 auto;
}
details {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 12px;
}
details summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
}
details summary::-webkit-details-marker { display: none; }
details[open] summary { margin-bottom: 12px; }
details p { margin: 0; color: var(--muted); font-size: 15px; }

/* -------- footer -------- */

footer {
    padding: 48px 0 64px;
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}
footer ul {
    list-style: none;
    display: flex;
    gap: 18px;
    justify-content: center;
    padding: 0;
    margin: 0 0 16px;
    flex-wrap: wrap;
}
footer a { color: var(--muted); }

/* -------- legal pages -------- */

.legal {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 0;
}
.legal h1 { font-size: 36px; margin: 0 0 8px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal h2 { font-size: 20px; margin: 32px 0 12px; }
.legal p, .legal li { font-size: 16px; }

@media (max-width: 600px) {
    .hero h1 { font-size: 40px; }
    .hero p.lede { font-size: 18px; }
}
