:root {
    --brand-indigo: #6200EE;
    --wash: #F3DCC4;
    --blob-a: #E8B888;
    --blob-b: #E0A878;
    --blob-c: #E8C8A0;
    --bg-color: var(--wash);
    --text-main: #1A1A1A;
    --text-secondary: #5A5A64;
}
* { box-sizing: border-box; }
html { background: var(--wash); }
body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: var(--wash);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: var(--wash);
}
.blob {
    position: absolute;
    filter: blur(90px);
    opacity: 0.58;
    border-radius: 50%;
}
.blob-1 { top: var(--blob-a-y, -14%); left: var(--blob-a-x, -10%); width: 560px; height: 560px; background: var(--blob-a); }
.blob-2 { top: var(--blob-b-y, 14%); right: var(--blob-b-x, -14%); width: 640px; height: 640px; background: var(--blob-b); }
header {
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.logo {
    display: inline-flex;
    align-items: flex-end;
    gap: 0;
    text-decoration: none;
    color: #6200EE;
    line-height: 0.85;
    letter-spacing: -0.045em;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
}
.logo .wordmark-r {
    font-size: 34px;
    font-weight: 900;
    color: #6200EE;
}
.logo .wordmark-rest {
    font-size: 26px;
    font-weight: 700;
    color: #6200EE;
    padding-bottom: 2px;
}
main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}
footer {
    text-align: center;
    padding: 40px 24px;
    color: var(--text-secondary);
    border-top: 0;
    background: transparent;
}
footer a { color: var(--brand-indigo); text-decoration: none; font-weight: 600; }
.footer-links { margin: 12px 0; }
.footer-links a { margin: 0 10px; }
.beta-line {
    margin: 0 0 4px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6200EE;
}
.legal-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}
.legal-toc a {
    color: #6200EE;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
}
.legal-toc a:hover { text-decoration: underline; }
@media (max-width: 768px) {
    header { padding: 16px 20px; }
}
