:root {
    --parents-primary: #0e948b;
    --parents-accent: #ff7a59;
    --parents-ink: #0f172a;
    --parents-soft: #f6f8fb;
    --parents-card: rgba(255, 255, 255, 0.92);
    --parents-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
}

.parents-docs {
    font-family: "Manrope", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
    color: var(--parents-ink);
    background: radial-gradient(120% 120% at 10% 10%, rgba(14, 148, 139, 0.14), transparent), radial-gradient(120% 120% at 90% 10%, rgba(255, 122, 89, 0.16), transparent), var(--parents-soft);
    min-height: 100vh;
}

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

.brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
    text-decoration: none;
    color: var(--parents-ink);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.brand-pill img {
    width: 30px;
    height: 30px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero {
    padding: 52px 0 26px;
}

.hero-card {
    background: linear-gradient(145deg, rgba(14, 148, 139, 0.16), rgba(255, 122, 89, 0.12)), rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--parents-shadow);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(14, 148, 139, 0.12);
    color: var(--parents-primary);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 0.88rem;
}

.hero-title {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 16px 0 12px;
}

.hero-sub {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 18px;
}

.hero-actions .btn-primary {
    background: var(--parents-primary);
    border-color: var(--parents-primary);
    font-weight: 700;
    padding: 12px 16px;
    border-radius: 12px;
}

.hero-actions .btn-outline-light {
    border-color: rgba(15, 23, 42, 0.1);
    color: var(--parents-ink);
    background: #fff;
    font-weight: 600;
    border-radius: 12px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.metric-pill {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--parents-ink);
}

.metric-pill small {
    display: block;
    color: #475569;
    font-weight: 600;
    line-height: 1.2;
    font-size: 0.82rem;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 20px auto 0;
}

.hero-visual .glass {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--parents-shadow);
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.section {
    padding: 36px 0;
}

.section h2 {
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.section p.lead {
    color: #475569;
    max-width: 780px;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.card-lite {
    background: var(--parents-card);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--parents-shadow);
    height: 100%;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.card-lite h3 {
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.card-lite p {
    color: #475569;
    margin-bottom: 12px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(14, 148, 139, 0.12);
    color: var(--parents-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.list-clean li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #1f2937;
    font-weight: 600;
}

.list-clean li span {
    color: #475569;
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.stacked {
    display: grid;
    gap: 12px;
}

.mini-card {
    border-radius: 14px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.mini-card strong {
    display: block;
    font-weight: 800;
    margin-bottom: 6px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.cta-panel {
    background: linear-gradient(135deg, rgba(14, 148, 139, 0.9), rgba(255, 122, 89, 0.9));
    color: #fff;
    border-radius: 22px;
    padding: 26px;
    box-shadow: var(--parents-shadow);
}

.cta-panel .btn-light {
    color: var(--parents-ink);
    font-weight: 700;
    border: none;
}

.inline-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.inline-nav a {
    text-decoration: none;
    background: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    color: var(--parents-ink);
    font-weight: 700;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.eyebrow-muted {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: #0f172a;
    font-weight: 700;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .hero-card {
        padding: 26px;
    }

    .docs-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .inline-nav {
        gap: 8px;
    }

    .inline-nav a {
        width: 100%;
        text-align: center;
    }
}
