/* /Components/Layout/AuthLayout.razor.rz.scp.css */
.auth[b-7pqsvgol8o] {
    min-height: 100vh;
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
    padding: clamp(2.5rem, 12vh, 6rem) clamp(1.15rem, 6vw, 2rem) 3rem;
    display: flex;
    flex-direction: column;
}

.auth__brand[b-7pqsvgol8o] {
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    margin-bottom: clamp(1.75rem, 6vh, 3rem);
}
.auth__brand:hover[b-7pqsvgol8o] { color: var(--blue-deep); }

.auth__sheet[b-7pqsvgol8o] {
    flex: 1;
    padding-left: 1.6rem;
}

.auth__foot[b-7pqsvgol8o] {
    margin: 2.5rem 0 0;
    padding-left: 1.6rem;
    font-family: var(--font-mono);
    font-size: var(--step--1);
    color: var(--ink-faint);
    letter-spacing: 0.02em;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-1ywewwated],
.components-reconnect-repeated-attempt-visible[b-1ywewwated],
.components-reconnect-failed-visible[b-1ywewwated],
.components-pause-visible[b-1ywewwated],
.components-resume-failed-visible[b-1ywewwated],
.components-rejoining-animation[b-1ywewwated] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-1ywewwated],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-1ywewwated],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-1ywewwated],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-1ywewwated],
#components-reconnect-modal.components-reconnect-retrying[b-1ywewwated],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-1ywewwated],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-1ywewwated],
#components-reconnect-modal.components-reconnect-failed[b-1ywewwated],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-1ywewwated] {
    display: block;
}


#components-reconnect-modal[b-1ywewwated] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-1ywewwated 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-1ywewwated 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-1ywewwated 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-1ywewwated]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-1ywewwated 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-1ywewwated {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-1ywewwated {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-1ywewwated {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-1ywewwated] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-1ywewwated] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-1ywewwated] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-1ywewwated] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-1ywewwated] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-1ywewwated] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-1ywewwated] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-1ywewwated 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-1ywewwated] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-1ywewwated {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ŠVP JEDNODUŠE — homepage.
   Extends the "sešit" system: ink on paper, the blue spine already drawn by
   .sheet::before, mono for the document-structural bits (§ markers, step
   numbers, curriculum codes). One moving part: the coverage node in the hero
   flips gray→green once on load. Red/green appear only where the product uses
   them — inside the coverage panel. */

.lp[b-yo1b1dipfj] {
    --lp-measure: 40rem;
    max-width: 46rem;
    padding-bottom: 1rem;
}

.lp h2[b-yo1b1dipfj],
.lp h3[b-yo1b1dipfj] {
    font-family: var(--font-display);
    font-weight: 500;
    font-optical-sizing: auto;
    color: var(--ink);
}

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

.lp-hero[b-yo1b1dipfj] {
    padding: 0.5rem 0 3.5rem;
}

.lp-hero__title[b-yo1b1dipfj] {
    font-family: var(--font-display);
    font-weight: 500;
    font-optical-sizing: auto;
    font-size: clamp(2.15rem, 1.5rem + 3vw, 3.45rem);
    line-height: 1.08;
    letter-spacing: -0.012em;
    margin: 0 0 1.15rem;
    color: var(--ink);
}

/* "bez čekání" — written on the line, like the app's underline inputs */
.lp-u[b-yo1b1dipfj] {
    box-shadow: inset 0 -0.09em 0 var(--blue);
    padding-bottom: 0.02em;
    white-space: nowrap;
}

.lp-hero__sub[b-yo1b1dipfj] {
    font-size: var(--step-1);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 34rem;
    margin: 0 0 1.9rem;
}

.lp-cta[b-yo1b1dipfj] {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
    margin: 0 0 3rem;
}
.lp-cta__alt[b-yo1b1dipfj] {
    color: var(--blue-deep);
    text-underline-offset: 0.2em;
}

/* ---------- the coverage panel (hero anchor visual) ---------- */

.lp-tree[b-yo1b1dipfj] {
    margin: 0;
    border: 1px solid var(--hairline);
    border-radius: var(--radius);
    background: var(--paper-raised);
    overflow: hidden;
    max-width: 33rem;
}

.lp-tree__head[b-yo1b1dipfj] {
    padding: 0.7rem 1rem;
    border-bottom: 1px solid var(--hairline);
    font-size: 0.9rem;
    color: var(--ink-soft);
}
.lp-tree__head .code[b-yo1b1dipfj] {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.72rem;
}

.lp-tree__list[b-yo1b1dipfj] {
    list-style: none;
    margin: 0;
    padding: 0.3rem 0;
}
.lp-tree__list li[b-yo1b1dipfj] {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}
.lp-tree__list .code[b-yo1b1dipfj] { flex: none; }
.lp-tree__text[b-yo1b1dipfj] {
    flex: 1;
    min-width: 0;
    color: var(--ink-soft);
}

/* dots use the global .dot / .dot--covered / .dot--gap from app.css */

.lp-tree__state[b-yo1b1dipfj] {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.lp-tree__state--ok[b-yo1b1dipfj] { color: var(--covered); }
.lp-tree__state--gap[b-yo1b1dipfj] { color: var(--gap); }

/* fixed right-aligned slot so "pokryto" (7) and "chybí" (5) line up row to row */
.lp-tree__list li > .lp-tree__state[b-yo1b1dipfj],
.lp-tree__states[b-yo1b1dipfj] {
    flex: none;
    width: 4.5rem;
    text-align: right;
}
.lp-tree__states[b-yo1b1dipfj] {
    position: relative;
}
.lp-tree__states .lp-tree__state[b-yo1b1dipfj] {
    position: absolute;
    inset: 0 0 auto auto;
}
.lp-tree__states .lp-tree__state--ok[b-yo1b1dipfj] { opacity: 0; }

.lp-tree__foot[b-yo1b1dipfj] {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 1rem 0.85rem;
    border-top: 1px solid var(--hairline);
}
.lp-tree__count[b-yo1b1dipfj] {
    position: relative;
    flex: none;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--ink-soft);
    min-width: 7.5rem;
}
.lp-tree__count--after[b-yo1b1dipfj] {
    position: absolute;
    inset: 0 auto auto 0;
    opacity: 0;
    color: var(--covered);
}
.lp-tree__bar[b-yo1b1dipfj] {
    flex: 1;
    height: 0.3rem;
    border-radius: 999px;
    background: var(--gap-wash);
    overflow: hidden;
}
.lp-tree__bar > span[b-yo1b1dipfj] {
    display: block;
    height: 100%;
    width: 78%;
    background: var(--covered);
}

/* the single orchestrated moment */
.lp-tree__flip .dot[b-yo1b1dipfj] { animation: lp-fill-b-yo1b1dipfj 3.4s ease forwards; }
.lp-tree__flip .lp-tree__state--gap[b-yo1b1dipfj] { animation: lp-fade-out-b-yo1b1dipfj 3.4s ease forwards; }
.lp-tree__flip .lp-tree__state--ok[b-yo1b1dipfj] { animation: lp-fade-in-b-yo1b1dipfj 3.4s ease forwards; }
.lp-tree__count--before[b-yo1b1dipfj] { animation: lp-fade-out-b-yo1b1dipfj 3.4s ease forwards; }
.lp-tree__count--after[b-yo1b1dipfj] { animation: lp-fade-in-b-yo1b1dipfj 3.4s ease forwards; }
.lp-tree__bar > span[b-yo1b1dipfj] { animation: lp-grow-b-yo1b1dipfj 3.4s ease forwards; }

@keyframes lp-fill-b-yo1b1dipfj {
    0%, 38% { background: transparent; box-shadow: inset 0 0 0 2px var(--gap); }
    52%, 100% { background: var(--covered); box-shadow: inset 0 0 0 0 var(--covered); }
}
@keyframes lp-fade-out-b-yo1b1dipfj { 0%, 40% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes lp-fade-in-b-yo1b1dipfj { 0%, 45% { opacity: 0; } 55%, 100% { opacity: 1; } }
@keyframes lp-grow-b-yo1b1dipfj {
    0%, 40% { width: 78%; }
    55%, 100% { width: 89%; }
}

/* ---------- section rail (left margin, follows the scroll) ---------- */

/* spans the full height of the page so .lp-rail__inner has room to stick;
   .page-rail (app.css) already reserves the margin column and shifts the spine */
.lp-rail[b-yo1b1dipfj] {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--rail-w);
}

.lp-rail__inner[b-yo1b1dipfj] {
    position: sticky;
    top: 5rem;               /* clears the sticky masthead */
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.lp-rail__link[b-yo1b1dipfj] {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    padding: 0.32rem 0 0.32rem 0.7rem;
    border-left: var(--rule-w) solid transparent;   /* lit when current, like the masthead rule */
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.12s ease, border-color 0.12s ease;
}
.lp-rail__link:hover[b-yo1b1dipfj] { color: var(--ink); }
.lp-rail__link.is-current[b-yo1b1dipfj] {
    color: var(--blue-deep);
    border-left-color: var(--blue);
}

.lp-rail__n[b-yo1b1dipfj] {
    flex: none;
    font-size: 0.72rem;
    color: var(--ink-faint);
}
.lp-rail__link.is-current .lp-rail__n[b-yo1b1dipfj] { color: var(--blue); }

@media (max-width: 48rem) {
    .lp-rail[b-yo1b1dipfj] { display: none; }
}

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

.lp-sec[b-yo1b1dipfj] {
    padding: 2.75rem 0;
    border-top: 1px solid var(--grid);
}

.lp-marker[b-yo1b1dipfj] {
    font-family: var(--font-mono);
    font-size: var(--step--1);
    letter-spacing: 0.06em;
    color: var(--ink-faint);
    margin: 0 0 1.4rem;
}

.lp-sec__title[b-yo1b1dipfj] {
    font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem);
    line-height: 1.15;
    margin: 0 0 0.9rem;
}
.lp-sec__lead[b-yo1b1dipfj] {
    font-size: var(--step-1);
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: var(--lp-measure);
    margin: 0 0 2rem;
}

/* ---------- §1 pain points — flush, not cards ---------- */

.lp-pains[b-yo1b1dipfj] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.lp-pain[b-yo1b1dipfj] {
    border-top: 2px solid var(--ink);
    padding-top: 0.65rem;
}
.lp-pain__kick[b-yo1b1dipfj] {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    margin: 0 0 0.4rem;
}
.lp-pain p[b-yo1b1dipfj] {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--ink-soft);
}

/* ---------- §2 steps ---------- */

.lp-steps[b-yo1b1dipfj] {
    list-style: none;
    margin: 0;
    padding: 0;
    counter-reset: none;
}
.lp-step[b-yo1b1dipfj] {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    padding: 1.4rem 0;
    border-top: 1px solid var(--grid);
}
.lp-step:first-child[b-yo1b1dipfj] { border-top: none; padding-top: 0; }

.lp-step__n[b-yo1b1dipfj] {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--blue-deep);
    padding-top: 0.15rem;
}
.lp-step__n--file[b-yo1b1dipfj] { color: var(--accent); }

.lp-step__body h3[b-yo1b1dipfj] {
    font-size: 1.15rem;
    margin: 0 0 0.3rem;
}
.lp-step__body > p[b-yo1b1dipfj] {
    margin: 0 0 0.9rem;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 32rem;
}

.lp-shot[b-yo1b1dipfj] {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    border: 1px dashed var(--field-line);
    border-radius: var(--radius);
    background:
        repeating-linear-gradient(-45deg,
            transparent 0 11px,
            rgba(53, 102, 252, 0.03) 11px 22px);
}
.lp-shot span[b-yo1b1dipfj] {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--ink-faint);
}
.lp-shot--lead[b-yo1b1dipfj] {
    aspect-ratio: 4 / 3;
    border-color: var(--covered);
    border-style: solid;
}
.lp-step--lead .lp-step__body h3[b-yo1b1dipfj] { color: var(--covered); }

/* ---------- §3 story ---------- */

.lp-story__grid[b-yo1b1dipfj] {
    display: grid;
    grid-template-columns: 9rem 1fr;
    gap: 1.6rem;
    align-items: start;
}
.lp-portrait[b-yo1b1dipfj] {
    aspect-ratio: 4 / 5;
    border: 1px dashed var(--field-line);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--paper-raised);
}
.lp-portrait span[b-yo1b1dipfj] {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--ink-faint);
}
.lp-quote[b-yo1b1dipfj] {
    margin: 0;
    border-left: var(--rule-w) solid var(--blue);
    padding-left: 1.15rem;
}
.lp-quote p[b-yo1b1dipfj] {
    font-family: var(--font-display);
    font-optical-sizing: auto;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--ink);
    margin: 0 0 0.8rem;
}
.lp-quote footer[b-yo1b1dipfj] {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--ink-soft);
}

/* ---------- §4 features ---------- */

.lp-feats[b-yo1b1dipfj] {
    list-style: none;
    margin: 0;
    padding: 0;
    columns: 2;
    column-gap: 2rem;
}
.lp-feats li[b-yo1b1dipfj] {
    break-inside: avoid;
    padding: 0.45rem 0 0.45rem 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--ink-soft);
}
.lp-feats li[b-yo1b1dipfj]::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0.4rem;
    font-family: var(--font-mono);
    color: var(--covered);
}

.lp-survive[b-yo1b1dipfj] {
    margin-top: 1.75rem;
    border-left: var(--rule-w) solid var(--covered);
    background: var(--covered-wash);
    padding: 1rem 1.15rem;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.lp-survive__head[b-yo1b1dipfj] {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    color: var(--covered);
    margin: 0 0 0.5rem;
}
.lp-feats--tight[b-yo1b1dipfj] { columns: 1; }
.lp-feats--tight li[b-yo1b1dipfj] { padding-top: 0.3rem; padding-bottom: 0.3rem; }

/* ---------- §5 roadmap teaser ---------- */

.lp-roadmap__text[b-yo1b1dipfj] {
    font-size: var(--step-1);
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: var(--lp-measure);
    margin: 0 0 1rem;
}
.lp-more[b-yo1b1dipfj] {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--blue-deep);
    text-underline-offset: 0.2em;
}

/* ---------- §6 FAQ ---------- */

.lp-faq details[b-yo1b1dipfj] {
    border-top: 1px solid var(--hairline);
    padding: 0.85rem 0;
}
.lp-faq details:last-child[b-yo1b1dipfj] { border-bottom: 1px solid var(--hairline); }

.lp-faq summary[b-yo1b1dipfj] {
    display: flex;
    gap: 0.7rem;
    align-items: baseline;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--ink);
}
.lp-faq summary[b-yo1b1dipfj]::-webkit-details-marker { display: none; }
.lp-faq summary[b-yo1b1dipfj]::before {
    content: "?";
    font-family: var(--font-mono);
    color: var(--blue);
    flex: none;
}
.lp-faq details[open] summary[b-yo1b1dipfj]::before { content: "–"; }

.lp-faq p[b-yo1b1dipfj] {
    margin: 0.7rem 0 0 1.4rem;
    color: var(--ink-soft);
    line-height: 1.6;
    max-width: 36rem;
}
.lp-todo[b-yo1b1dipfj] {
    background: var(--amber-wash);
    color: var(--amber);
    font-size: 0.85em;
    padding: 0.05em 0.3em;
    border-radius: 2px;
}

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

.lp-foot[b-yo1b1dipfj] {
    margin-top: 1rem;
    padding: 3rem 0 1rem;
    border-top: var(--rule-w) solid var(--ink);
}
.lp-foot__line[b-yo1b1dipfj] {
    font-family: var(--font-display);
    font-optical-sizing: auto;
    font-size: clamp(1.35rem, 1.1rem + 1.2vw, 1.8rem);
    line-height: 1.25;
    color: var(--ink);
    margin: 0 0 1.4rem;
    max-width: 30rem;
}

/* ---------- responsive ---------- */

@media (max-width: 44rem) {
    .lp-pains[b-yo1b1dipfj] { grid-template-columns: 1fr; gap: 1.1rem; }
    .lp-feats[b-yo1b1dipfj] { columns: 1; }
    .lp-story__grid[b-yo1b1dipfj] { grid-template-columns: 1fr; }
    .lp-portrait[b-yo1b1dipfj] { max-width: 9rem; }
    .lp-tree__list li[b-yo1b1dipfj] { flex-wrap: wrap; }
    .lp-tree__text[b-yo1b1dipfj] { flex-basis: 100%; order: 3; padding-left: 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
    .lp-tree__flip .dot[b-yo1b1dipfj] {
        animation: none;
        background: var(--covered);
        box-shadow: none;
    }
    .lp-tree__flip .lp-tree__state--gap[b-yo1b1dipfj],
    .lp-tree__count--before[b-yo1b1dipfj] { animation: none; opacity: 0; }
    .lp-tree__flip .lp-tree__state--ok[b-yo1b1dipfj],
    .lp-tree__count--after[b-yo1b1dipfj] { animation: none; opacity: 1; }
    .lp-tree__bar > span[b-yo1b1dipfj] { animation: none; width: 89%; }
}
/* /Components/Pages/Privacy.razor.rz.scp.css */
.legal[b-dindk8gm1e] {
    max-width: 42rem;
}

.legal h2[b-dindk8gm1e] {
    font-size: 1.15rem;
    margin: 2rem 0 0.6rem;
}

.legal p[b-dindk8gm1e] {
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0 0 0.9rem;
}

.legal__list[b-dindk8gm1e] {
    margin: 0 0 0.9rem;
    padding-left: 1.2rem;
    line-height: 1.6;
    color: var(--ink-soft);
}
.legal__list li[b-dindk8gm1e] {
    margin-bottom: 0.4rem;
}
/* /Components/Pages/Roadmap.razor.rz.scp.css */
.roadmap[b-26i5mpbejc] { max-width: 42rem; }

.roadmap__title[b-26i5mpbejc] {
    font-size: clamp(2rem, 1.2rem + 3.4vw, 3.1rem);
    margin-bottom: 1rem;
}

.roadmap__lead[b-26i5mpbejc] { margin-bottom: 2.75rem; max-width: 36rem; }

.roadmap__group[b-26i5mpbejc] {
    margin: 0 0 2.25rem;
    padding-left: 1.25rem;
    border-left: var(--rule-w) solid var(--hairline);
}
.roadmap__group--now[b-26i5mpbejc] { border-left-color: var(--blue); }

.roadmap__head[b-26i5mpbejc] {
    margin: 0 0 0.9rem;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.roadmap__group--now .roadmap__head[b-26i5mpbejc] { color: var(--blue-deep); }

.roadmap__list[b-26i5mpbejc] {
    list-style: none;
    margin: 0;
    padding: 0;
}
.roadmap__list li[b-26i5mpbejc] {
    display: flex;
    gap: 0.85rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--grid);
}
.roadmap__list li:last-child[b-26i5mpbejc] { border-bottom: none; }

/* status glyph: a hollow square for planned, a filled corner for in-progress */
.roadmap__mark[b-26i5mpbejc] {
    flex: none;
    width: 0.85rem;
    height: 0.85rem;
    margin-top: 0.28rem;
    border: 1.5px solid var(--field-line);
    border-radius: 1px;
}
.roadmap__mark--now[b-26i5mpbejc] {
    border-color: var(--blue);
    background:
        linear-gradient(135deg, var(--blue) 0 45%, transparent 45%);
}

.roadmap__item[b-26i5mpbejc] {
    font-size: var(--step-0);
    line-height: 1.55;
    color: var(--ink-soft);
}
.roadmap__item strong[b-26i5mpbejc] { color: var(--ink); font-weight: 600; }

.roadmap__foot[b-26i5mpbejc] {
    margin-top: 2.5rem;
    font-size: var(--step--1);
    color: var(--ink-faint);
}
