:root {
    --bg: #ffffff;
    --ink: #1c1c1e;
    --blue: #4169f1;
    --blue-dark: #2f50d8;
    --green: #2e9e5b;
    --green-dark: #278a4f;
    --muted: #6b6b6e;
    --soft: #b8b8b4;
    --line: #ece9e0;
    --tile: #ebe9e1;
}

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

html, body {
    min-height: 100%;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

a:hover {
    color: var(--blue-dark);
}

.site-header {
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.site-header-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: .3px;
}

.brand:hover {
    color: var(--ink);
}

.header-play {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    background: var(--green);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(46, 158, 91, .28);
}

.header-play:hover {
    background: var(--green-dark);
    color: #fff;
}

.page {
    max-width: 720px;
    margin: 0 auto;
    padding: 36px 22px 64px;
}

.page h1 {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(30px, 8vw, 40px);
    font-weight: 800;
    letter-spacing: .3px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.page h2 {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(22px, 5vw, 26px);
    font-weight: 800;
    margin: 32px 0 10px;
    line-height: 1.2;
}

.page h3 {
    font-family: 'Baloo 2', sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin: 22px 0 8px;
}

.lead, .page p, .page li {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--muted);
}

.lead {
    font-size: 18px;
    margin-bottom: 22px;
}

.page p {
    margin-bottom: 14px;
}

.page ul, .page ol {
    margin: 0 0 18px 1.2em;
}

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

.page ol {
    padding-left: .4em;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 8px;
}

.btn {
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 17px;
    border-radius: 999px;
    text-decoration: none;
    padding: 13px 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-play {
    background: var(--green);
    color: #fff;
    box-shadow: 0 8px 20px rgba(46, 158, 91, .28);
}

.btn-play:hover {
    background: var(--green-dark);
    color: #fff;
}

.btn-ghost {
    background: var(--bg);
    color: var(--ink);
    border: 2px solid var(--soft);
}

.btn-ghost:hover {
    color: var(--blue);
    border-color: var(--blue);
}

.faq details {
    border-top: 1px solid var(--line);
    padding: 14px 0;
}

.faq details:first-of-type {
    border-top: none;
}

.faq summary {
    font-family: 'Baloo 2', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    line-height: 1.3;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: '+';
    font-size: 22px;
    color: var(--soft);
    flex-shrink: 0;
}

.faq details[open] summary::after {
    content: '\2212';
}

.faq details p {
    margin: 10px 0 0;
}

.site-footer {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 22px 40px;
    border-top: 1px solid var(--line);
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 18px;
}

.site-footer a {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--blue);
}

.site-footer .foot-note {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--soft);
}
