﻿/* DailyTogether marketing bundle */
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Montserrat";
    src: url("/fonts/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}
:root,
html[data-theme="light"] {
    --bg: #ffffff;
    --surface: #fffdfa;
    --surface-elevated: rgba(255, 255, 255, 0.92);
    --surface-muted: rgba(255, 255, 255, 0.82);
    --surface-glass: rgba(255, 255, 255, 0.72);
    --surface-panel: rgba(255, 255, 255, 0.9);
    --surface-faint: rgba(255, 255, 255, 0.58);
    --soft: #ebe5da;
    --text: #25342e;
    --muted: #66746d;
    --quiet: #8f978f;
    --line: #ddd3c4;
    --primary: #6fa99c;
    --primary-strong: color-mix(in srgb, var(--primary) 72%, #25342e);
    --primary-soft: color-mix(in srgb, var(--primary) 18%, var(--soft));
    --primary-ring: color-mix(in srgb, var(--primary) 24%, transparent);
    --primary-shadow: color-mix(in srgb, var(--primary) 28%, transparent);
    --green: var(--primary);
    --success-bg: #e5f1df;
    --success-border: #b8c9ab;
    --highlight-bg: #edf3e9;
    --rose: #e9a77d;
    --danger: #c65f7d;
    --cream: #fff7ee;
    --badge-bg: rgba(251, 247, 239, 0.78);
    --overlay: rgba(47, 59, 52, 0.28);
    --shadow: 0 18px 46px rgba(57, 68, 61, 0.13);
    --card-shadow: 0 16px 40px rgba(71, 65, 54, 0.1);
    --soft-shadow: 0 12px 28px rgba(71, 65, 54, 0.08);
    --gradient-warm: rgba(221, 177, 135, 0.16);
    --gradient-cool: rgba(143, 160, 132, 0.14);
    --on-primary: #fffdfa;
    --theme-color-meta: #faf6f0;
    font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
}
* {
    box-sizing: border-box;
}
html {
    overflow-x: clip;
    scrollbar-gutter: stable;
}

@media (max-width: 860px) {
    html {
        scrollbar-gutter: auto;
    }
}
body {
    margin: 0;
    min-height: 100vh;
    max-width: 100%;
    overflow-x: clip;
    font-weight: 400;
    background:
        radial-gradient(circle at top left, var(--gradient-warm), transparent 34%),
        radial-gradient(circle at top right, var(--gradient-cool), transparent 34%),
        var(--bg);
}
body.is-scroll-locked,
body.has-open-modal {
    overflow: hidden;
    touch-action: none;
    overscroll-behavior: none;
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
}
button,
input,
textarea,
select {
    font: inherit;
}
a {
    color: inherit;
}
.shell {
    width: min(100%, 1180px);
    margin: 0 auto;
    padding:
        0
        max(24px, env(safe-area-inset-right))
        0
        max(24px, env(safe-area-inset-left));
}

body.is-landing > main.shell,
body.is-home > main.shell {
    display: block;
    min-height: 0;
    gap: 0;
}
.doc-shell {
    align-content: start;
}

.shell.doc-shell > .doc-page,
.shell.doc-shell > .legal-doc-page {
    min-width: 0;
}

.about-page-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
}
.about-page-blocks .feature-card {
    width: 100%;
}
.about-page-blocks .feature-card p {
    max-width: none;
}
/* Site header/nav: see site-chrome.css */
.eyebrow {
    display: inline-flex;
    align-items: center;
    margin: 0 0 18px;
    padding: 6px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--badge-bg);
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}
.section-head {
    display: grid;
    gap: 12px;
    max-width: 720px;
}
.section-head .eyebrow {
    margin: 0;
    justify-self: start;
}
.section-head h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(2rem, 4.4vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: 0;
    font-weight: 600;
}
.section-head p,
.feature-card p,
.price-card p,
.faq-grid p {
    margin: 0;
    max-width: 58ch;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 500;
}
.panel-kicker {
    margin: 0 0 4px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.feature-grid,
.pricing-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.pricing-grid,
.faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.feature-card,
.price-card,
.faq-grid article {
    min-height: 168px;
    display: grid;
    align-content: start;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 20px;
    background: var(--surface-muted);
    box-shadow: var(--soft-shadow);
}
.feature-card h3,
.price-card h3,
.faq-grid h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.15rem;
    line-height: 1.22;
    font-weight: 600;
}
.feature-card h2,
.price-card h2,
.faq-grid article h2 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text);
}
.price-card.is-highlight {
    background: var(--highlight-bg);
}
.price-features {
    display: grid;
    gap: 8px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}
.price-features li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.45;
    font-weight: 600;
}
.price-features li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}
.faq-grid a {
    color: var(--primary);
    font-weight: 600;
}
.doc-page .feature-card,
.doc-page .price-card,
.doc-page .faq-grid article {
    min-height: auto;
}
label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 0 14px;
    background: var(--surface);
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    outline: none;
}
textarea {
    min-height: 116px;
    padding: 13px 14px;
    resize: vertical;
    line-height: 1.45;
}
input::placeholder,
textarea::placeholder {
    color: var(--quiet);
}
input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-ring);
}
.primary,
.secondary {
    min-height: 52px;
    border: 0;
    border-radius: 15px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}
.primary {
    width: 100%;
    background: var(--primary);
    color: var(--on-primary);
    box-shadow: 0 12px 22px var(--primary-shadow);
}
.secondary {
    background: var(--soft);
    color: var(--text);
    box-shadow: none;
}
body.is-landing a.primary,
body.is-landing a.secondary,
body.is-landing button.primary,
body.is-landing button.secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    padding: 0 22px;
    text-decoration: none;
    text-align: center;
    line-height: 1.2;
    box-sizing: border-box;
}
body.is-landing a.secondary,
body.is-landing button.secondary {
    background: var(--soft);
    color: var(--text);
    box-shadow: none;
}
body.is-landing a.primary,
body.is-landing button.primary {
    box-shadow: 0 12px 22px var(--primary-shadow);
}
body.is-landing .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: min(100%, 420px);
}
body.is-landing .hero-actions a.primary,
body.is-landing .hero-actions a.secondary {
    flex: 1 1 140px;
    min-height: 52px;
}
body.is-landing .landing-cta-button,
body.is-landing .landing-card-button {
    min-height: 52px;
    border-radius: 15px;
    font-weight: 600;
}
body.is-landing .landing-card-button {
    width: 100%;
    justify-self: stretch;
}
body.is-landing a.primary:hover,
body.is-landing button.primary:hover {
    background: var(--primary-strong);
    text-decoration: none;
}
body.is-landing a.secondary:hover,
body.is-landing button.secondary:hover {
    background: var(--line);
    text-decoration: none;
}
.primary:hover,
button.primary:hover {
    background: var(--primary-strong);
}
.primary:disabled {
    cursor: wait;
    opacity: 0.72;
}
.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.legal-app-back {
    margin: 0;
    padding: 12px 0 0;
}

.legal-app-back[hidden] {
    display: none !important;
}

.legal-app-back a {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
}

.legal-app-back a:hover {
    color: var(--primary);
}

.legal-doc-page .legal-page {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px 0 56px;
}
.legal-page h1 {
    margin: 0;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.12;
}
.legal-page .eyebrow {
    margin-bottom: 26px;
}
.legal-page p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}
.legal-page a {
    color: var(--primary);
    font-weight: 600;
}

.legal-page-content.erecht24-content {
    color: var(--text);
    line-height: 1.75;
}

.legal-page-content.erecht24-content h1,
.legal-page-content.erecht24-content h2,
.legal-page-content.erecht24-content h3,
.legal-page-content.erecht24-content h4 {
    color: var(--text);
    line-height: 1.25;
    margin: 1.6em 0 0.55em;
    font-weight: 600;
}

.legal-page-content.erecht24-content h1 {
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    margin-top: 0;
}

.legal-page-content.erecht24-content h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
}

.legal-page-content.erecht24-content p,
.legal-page-content.erecht24-content li {
    color: var(--muted);
}

.legal-page-content.erecht24-content {
    max-width: 100%;
    overflow-wrap: anywhere;
}

.legal-page-content.erecht24-content a {
    color: var(--primary);
    font-weight: 600;
}

.legal-page-content.erecht24-content ul,
.legal-page-content.erecht24-content ol {
    margin: 0.75em 0 0;
    padding-left: 1.25em;
}

.legal-page-supplement {
    margin-top: 2.4rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--line);
}

.legal-page-supplement h2 {
    margin: 0;
    color: var(--text);
    font-size: clamp(1.25rem, 2.5vw, 1.55rem);
    font-weight: 600;
    line-height: 1.25;
}

.legal-page-supplement p,
.legal-page-supplement li {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.legal-page-supplement ul {
    margin: 0.75em 0 0;
    padding-left: 1.25em;
}

.doc-page {
    width: min(100% - 32px, 980px);
    margin: 0 auto;
    padding: 48px 0 56px;
}
.version-launch-badge {
    display: inline-flex;
    align-items: center;
    margin: 0 0 16px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid color-mix(in srgb, var(--primary) 28%, var(--line));
    background: color-mix(in srgb, var(--primary) 12%, var(--surface));
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero .version-launch-badge {
    margin-bottom: 18px;
}

.doc-hero .version-launch-badge {
    margin-bottom: 20px;
}

body.is-landing .hero-intro.copy {
    width: 100%;
    max-width: none;
}

body.is-landing .hero-intro .hero-copy-block {
    width: 100%;
    max-width: none;
}

body.is-landing .hero-intro .lead,
body.is-landing .hero-intro .hero-free-promise,
body.is-landing .hero-intro .hero-meta {
    width: 100%;
    max-width: none;
}

body.is-landing .hero-intro h1 {
    max-width: none;
    font-size: clamp(2.6rem, 7vw, 4.8rem);
}

body.is-landing .hero-intro .lead {
    font-size: clamp(1.05rem, 2.2vw, 1.22rem);
    line-height: 1.65;
}

.hero-free-promise {
    margin: 14px 0 0;
    max-width: none;
    color: var(--text);
    font-size: clamp(1.02rem, 1.8vw, 1.14rem);
    line-height: 1.55;
    font-weight: 500;
}

.hero-free-promise strong {
    color: var(--primary);
    font-weight: 700;
}

.landing-showcase {
    width: 100%;
    margin-top: clamp(20px, 3vw, 32px);
    padding: clamp(22px, 3.5vw, 32px);
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(165deg, rgba(255, 253, 250, 0.98), rgba(232, 242, 237, 0.9));
    box-shadow: var(--soft-shadow);
}

.landing-showcase-kicker {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-showcase-title {
    margin: 0 0 20px;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.15;
    font-weight: 600;
}

.landing-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.showcase-card {
    display: grid;
    gap: 12px;
    min-height: 100%;
    padding: 14px;
    border: 1px solid color-mix(in srgb, var(--line) 88%, transparent);
    border-radius: 22px;
    background: color-mix(in srgb, var(--surface) 90%, #fff);
    box-shadow: 0 14px 34px rgba(57, 68, 61, 0.08);
}

.showcase-label {
    display: block;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-week {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.showcase-week span {
    min-height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--surface);
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 600;
}

.showcase-week .is-done {
    background: var(--success-bg, #e8f4ec);
    color: var(--text);
}

.showcase-week .is-today {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 24%, transparent);
    color: var(--text);
}

.showcase-progress {
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 18px;
    background: color-mix(in srgb, var(--surface) 76%, transparent);
    box-shadow: 0 10px 28px rgba(71, 65, 54, 0.08);
}

.showcase-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.showcase-day-title {
    display: block;
    margin-top: 2px;
    font-size: 1rem;
    font-weight: 600;
}

.showcase-pill {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--soft) 82%, var(--surface));
    font-size: 0.86rem;
    font-weight: 600;
}

.showcase-progress-track {
    height: 9px;
    border-radius: 999px;
    overflow: hidden;
    background: color-mix(in srgb, var(--soft) 78%, #000 5%);
}

.showcase-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary), var(--rose));
}

.showcase-member-bars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.showcase-member-bar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    font-size: 0.72rem;
}

.showcase-member-bar-head span {
    font-weight: 600;
}

.showcase-member-bar-track {
    height: 6px;
    margin-top: 4px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--soft) 80%, #000 6%);
    overflow: hidden;
}

.showcase-member-bar-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
}

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

.showcase-checklist li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 32px 32px;
    gap: 8px;
    align-items: center;
    min-height: 48px;
    padding: 6px 10px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--soft) 55%, var(--surface));
    font-weight: 600;
    font-size: 0.88rem;
}

.showcase-checklist li.is-done span {
    color: var(--muted);
    text-decoration: line-through;
    text-decoration-color: color-mix(in srgb, var(--muted) 55%, transparent);
}

.showcase-checklist b {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 2px solid var(--line);
    background: var(--surface);
}

.showcase-checklist b.m-a { border-color: #e9a77d; }
.showcase-checklist b.m-b { border-color: #6fa99c; }
.showcase-checklist b.is-checked {
    position: relative;
    background: currentColor;
}
.showcase-checklist b.m-a.is-checked { background: #e9a77d; border-color: #e9a77d; }
.showcase-checklist b.m-b.is-checked { background: #6fa99c; border-color: #6fa99c; }
.showcase-checklist b.is-checked::after {
    content: "";
    position: absolute;
    inset: 7px 9px 9px 7px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.showcase-chat {
    display: grid;
    gap: 10px;
    height: 100%;
}

.showcase-chat-list {
    display: grid;
    gap: 8px;
}

.showcase-chat-msg {
    border-left: 4px solid var(--author, var(--primary));
    border-radius: 14px;
    padding: 10px 11px;
    background: var(--soft);
    font-size: 0.86rem;
    line-height: 1.45;
}

.showcase-chat-msg.is-own {
    background: #f4f0e8;
}

.showcase-chat-meta {
    display: flex;
    gap: 8px;
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 0.74rem;
}

.showcase-chat-meta strong {
    color: var(--author, var(--text));
}

.showcase-chat-msg p:last-child {
    margin: 0;
}

.showcase-chat-compose {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    margin-top: auto;
    padding-top: 4px;
}

.showcase-chat-compose span {
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    color: var(--quiet);
    font-size: 0.82rem;
}

.showcase-chat-compose b {
    min-width: 44px;
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 0.82rem;
    font-weight: 600;
}

.showcase-timers {
    display: grid;
    gap: 10px;
    height: 100%;
}

.showcase-timer {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 11px 12px;
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
    background: color-mix(in srgb, var(--soft) 72%, var(--surface));
}

.showcase-timer.is-countdown {
    background: color-mix(in srgb, var(--primary) 7%, var(--surface));
    border-color: color-mix(in srgb, var(--primary) 18%, var(--line));
}

.showcase-timer.is-countup {
    background: color-mix(in srgb, var(--highlight-bg, #eef6f0) 72%, var(--surface));
}

.showcase-timer-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: color-mix(in srgb, var(--surface) 88%, var(--soft));
    font-size: 1.1rem;
}

.showcase-timer strong {
    display: block;
    font-size: 0.92rem;
}

.showcase-timer p {
    margin: 3px 0 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.showcase-timer p span {
    font-weight: 600;
    text-transform: lowercase;
}

.showcase-timer em {
    font-style: normal;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 980px) {
    .landing-showcase-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card--day {
        order: 0;
    }
}

.doc-hero {
    margin-bottom: 24px;
}
.doc-hero .eyebrow {
    margin-bottom: 26px;
}
.doc-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: 0;
}
.doc-hero p {
    max-width: 640px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    line-height: 1.6;
    font-weight: 500;
}
.doc-hero a,
.doc-section a {
    color: var(--primary);
    font-weight: 600;
}
.doc-layout {
    display: grid;
    grid-template-columns: minmax(0, 210px) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}
.doc-toc {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface-muted);
    box-shadow: var(--soft-shadow);
}
.doc-toc-title {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.doc-toc a {
    min-height: 34px;
    display: flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 10px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 140ms ease, color 140ms ease;
}
.doc-toc a:hover,
.doc-toc a:focus-visible {
    background: var(--soft);
    color: var(--text);
}
.doc-content {
    display: grid;
    gap: 0;
    min-width: 0;
}
.doc-section {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: clamp(20px, 3.5vw, 28px);
    margin-top: 14px;
    background: rgba(255, 253, 250, 0.82);
    box-shadow: 0 14px 38px rgba(57, 68, 61, 0.08);
}
.doc-section h2 {
    margin: 0;
    font-size: clamp(1.45rem, 3vw, 2.25rem);
    font-weight: 600;
}
.doc-section p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.7;
}
.doc-section ul {
    display: grid;
    gap: 9px;
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--text);
}
.doc-section li {
    line-height: 1.55;
}
.doc-jump-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.doc-jump-nav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-size: 0.84rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 140ms ease, background 140ms ease;
}
.doc-jump-nav a:hover,
.doc-jump-nav a:focus-visible {
    border-color: var(--primary);
    background: var(--soft);
}
.doc-tip {
    margin: 16px 0 0;
    padding: 14px 16px;
    border-radius: 14px;
    border-left: 3px solid var(--primary);
    background: var(--soft);
    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.6;
}
.doc-tip strong {
    color: var(--primary);
}
.beta-access-band {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: clamp(22px, 4vw, 32px);
    background: var(--cream);
    box-shadow: var(--soft-shadow);
}
.beta-access-inner {
    display: grid;
    gap: 12px;
    justify-items: center;
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
}
.beta-access-inner--form {
    max-width: 420px;
    justify-items: stretch;
    text-align: left;
}
.beta-access-inner .eyebrow {
    margin-bottom: 26px;
}
.beta-access-inner h2 {
    margin: 0;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1.08;
    font-weight: 600;
}
.beta-access-inner p:not(.eyebrow) {
    margin: 0;
    max-width: 46ch;
    color: var(--muted);
    line-height: 1.65;
    font-weight: 500;
}
.beta-request-form {
    display: grid;
    gap: 12px;
    width: 100%;
    text-align: left;
}
.beta-request-form textarea {
    min-height: 88px;
    resize: vertical;
}
.beta-request-message {
    margin: 0;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.5;
}
.beta-request-message.is-success {
    color: var(--primary);
}
.beta-request-message.is-error {
    color: #b42318;
}
.beta-page-form {
    margin-top: 8px;
    padding: clamp(20px, 3vw, 28px);
}
.site-page-grid {
    margin-top: clamp(16px, 3vw, 24px);
}
.site-page-block {
    margin-top: clamp(20px, 3vw, 32px);
}
.site-page-note {
    margin-top: 20px;
    color: var(--muted);
    font-weight: 500;
    font-size: 0.96rem;
}
.site-page-note a {
    color: var(--primary);
    font-weight: 600;
}
body.is-landing .section-head .eyebrow {
    display: inline-flex;
}

@media (min-width: 601px) and (max-width: 960px) {
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .doc-layout {
        grid-template-columns: 1fr;
    }
    .doc-toc {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .doc-toc-title {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    body.is-scroll-locked::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 55;
        background: rgba(45, 42, 38, 0.42);
    }
}

@media (max-width: 768px) {
    .feature-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .doc-page {
        padding: 32px 0 44px;
    }
    .doc-toc {
        display: none;
    }
    .doc-jump-nav {
        gap: 6px;
    }
    .doc-jump-nav a {
        font-size: 0.78rem;
        padding: 0 11px;
    }
}

@media (max-width: 520px) {
    .brand-claim {
        display: none;
    }
    .brand-title {
        font-size: 0.98rem;
    }
    .logo {
        width: 38px;
        height: 38px;
    }
    .doc-page {
        width: 100%;
        padding: 28px 0 40px;
    }
    .doc-hero h1 {
        font-size: clamp(1.65rem, 8vw, 2.2rem);
    }
    .doc-jump-nav {
        flex-wrap: wrap;
    }
    .doc-section {
        padding: 16px;
        border-radius: 18px;
    }
    .legal-page {
        padding: 28px 16px 40px;
    }
    .shell {
        width: min(100%, 100%);
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        padding-bottom: 0;
    }
}

@media (max-width: 360px) {
    .doc-jump-nav a {
        font-size: 0.72rem;
        padding: 0 9px;
    }
    .feature-card,
    .price-card,
    .faq-grid article {
        padding: 16px;
    }
}
