*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-ui);
    font-size: 16px;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.5;
    min-height: 100vh;
    background-image:
        radial-gradient(
            ellipse 80% 50% at 75% -10%,
            oklch(70% 0.1 210 / 0.08),
            transparent
        ),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
}
button {
    font-family: inherit;
}
:focus-visible {
    outline: 3px solid var(--teal);
    outline-offset: 2px;
}

/* ── Demo chrome (review tool, not employee UI) ─────────────── */
.ribbon {
    background: var(--canvas-deep);
    color: var(--on-canvas-soft);
    font-size: 0.7rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.4rem 1rem;
}
.ribbon b {
    color: var(--gold);
}
.demo-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}
.screen-picker-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
}
.picker-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-soft);
    flex-shrink: 0;
}
.screen-picker {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
}
.screen-picker a {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 99px;
    text-decoration: none;
    color: var(--ink-soft);
    background: var(--paper);
    border: 1px solid var(--line);
    transition:
        background 0.2s var(--ease-out),
        border-color 0.2s var(--ease-out);
}
.screen-picker a:hover {
    border-color: var(--teal);
    color: var(--ink);
}
.screen-picker a.active {
    background: var(--canvas);
    border-color: var(--canvas);
    color: var(--on-canvas);
}
.persona-toggle {
    display: flex;
    border-radius: 99px;
    border: 1px solid var(--line);
    overflow: hidden;
    background: var(--paper);
}
.persona-toggle button {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.4rem 0.85rem;
    border: none;
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
}
.persona-toggle button.active {
    background: var(--accent-deep);
    color: var(--on-canvas);
}

.stage {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem 3.5rem;
}
.screen-root {
    width: 100%;
    max-width: var(--max-phone);
}
.screen-root.admin {
    max-width: var(--max-admin);
}
.screen-root.poster {
    max-width: 560px;
}
.screen-root.compare {
    max-width: 940px;
}

/* ── Phone bezel ────────────────────────────────────────────── */
.phone {
    background: oklch(23% 0.015 220);
    border-radius: 46px;
    padding: 11px;
    box-shadow:
        var(--shadow),
        inset 0 0 0 2px oklch(40% 0.02 220 / 0.6);
    animation: rise 0.45s var(--ease-out) both;
}
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.app {
    background: var(--surface);
    border-radius: 36px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 640px;
}

/* ── Status bar + masthead (live on the canvas) ─────────────── */
.status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 1.6rem 0;
    color: var(--on-canvas);
    font-size: 0.78rem;
    font-weight: 700;
}
.status .sig {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
}
.status svg {
    display: block;
}
.app-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1.4rem 0;
}
.app-bar .program {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--on-canvas);
    letter-spacing: 0.01em;
}
.app-bar .program em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
}
.wordmark-chip {
    display: inline-flex;
    align-items: center;
    background: var(--surface);
    border-radius: 9px;
    padding: 0.28rem 0.55rem;
    flex-shrink: 0;
}
.wordmark-chip img {
    height: 22px;
    display: block;
}

/* ── Drenched canvas hero ───────────────────────────────────── */
.canvas {
    position: relative;
    background: linear-gradient(172deg, var(--canvas), var(--canvas-deep));
    padding-bottom: 2.6rem;
    overflow: hidden;
}
.canvas .art {
    position: absolute;
    right: -28px;
    bottom: -6px;
    width: 200px;
    opacity: 0.32;
    pointer-events: none;
}
.canvas .art svg {
    display: block;
    width: 100%;
}
.canvas-body {
    position: relative;
    padding: 1.5rem 1.6rem 0;
}
.canvas-body .kicker {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.45rem;
}
.lang-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--on-canvas);
    background: oklch(100% 0 0 / 0.13);
    border-radius: 99px;
    padding: 0.3rem 0.8rem;
    margin-bottom: 0.85rem;
}
.lang-chip svg {
    width: 14px;
    height: 14px;
}
.greeting {
    font-family: var(--font-greeting);
    font-weight: 600;
    font-size: 2.2rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--on-canvas);
    max-width: 12ch;
}
.greeting em {
    font-style: italic;
    color: var(--gold);
}
.canvas .lede {
    margin-top: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--on-canvas-soft);
    max-width: 30ch;
}
.canvas.compact {
    padding-bottom: 2.4rem;
}
.canvas.compact .greeting {
    font-size: 1.8rem;
}

/* ── Cream sheet pulled over the canvas ─────────────────────── */
.sheet {
    position: relative;
    flex: 1;
    margin-top: -1.6rem;
    background: var(--surface);
    border-radius: 26px 26px 0 0;
    padding: 0.6rem 0 0;
}
.sheet::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 50%;
    width: 36px;
    height: 4px;
    margin-left: -18px;
    border-radius: 99px;
    background: var(--line);
}
.block {
    padding: 1.35rem 1.4rem 0.35rem;
}
.block:last-child {
    padding-bottom: 1.5rem;
}
.sec {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
}
.sec h2 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.sec .meta {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--accent-deep);
}

/* Right-now panel: one featured fact, two quiet ones */
.now {
    background: var(--paper);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.2rem;
    box-shadow: var(--shadow-soft);
}
.now .featured {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding-bottom: 0.85rem;
}
.now .featured .coin {
    background: var(--accent-tint);
    color: var(--accent-deep);
}
.now .featured b {
    display: block;
    font-size: 1.06rem;
    line-height: 1.25;
    color: var(--ink);
}
.now .featured span {
    font-size: 0.8rem;
    color: var(--ink-soft);
}
.now .quiet {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem 1.1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line);
    font-size: 0.8rem;
    color: var(--ink-soft);
}
.now .quiet i {
    font-style: normal;
    font-weight: 700;
    color: var(--ink);
}

/* ── Plan rows: coins, not gridlines ────────────────────────── */
.coin {
    flex: 0 0 46px;
    height: 46px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.coin svg {
    width: 24px;
    height: 24px;
}
.coin.accent {
    background: var(--accent-tint);
    color: var(--accent-deep);
}
.coin.teal {
    background: var(--teal-tint);
    color: var(--teal-deep);
}
.coin.green {
    background: var(--green-tint);
    color: var(--green);
}
.rows {
    display: flex;
    flex-direction: column;
}
.plan-row {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0.6rem;
    margin: 0 -0.6rem;
    width: calc(100% + 1.2rem);
    border: none;
    border-radius: var(--radius);
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s var(--ease-out);
}
.plan-row:hover {
    background: var(--paper);
}
.plan-row .pbody {
    flex: 1;
    min-width: 0;
}
.plan-row .pbody b {
    display: block;
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.3;
}
.plan-row .pbody span {
    display: block;
    font-size: 0.84rem;
    color: var(--ink-soft);
    line-height: 1.45;
    margin-top: 0.1rem;
}
.chip {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 0.3rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.28rem 0.65rem;
    border-radius: 99px;
}
.chip.up {
    background: var(--accent-tint);
    color: var(--accent-deep);
}
.chip.steady {
    background: var(--green-tint);
    color: var(--green);
}
.glossary {
    border-bottom: 2px dotted var(--accent);
    font-weight: 700;
    white-space: nowrap;
}

/* ── Voice card: the radio ──────────────────────────────────── */
.voice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: linear-gradient(160deg, oklch(30% 0.025 180), oklch(24% 0.02 190));
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    color: oklch(94% 0.015 85);
    box-shadow: var(--shadow-soft);
}
.play {
    flex: 0 0 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--gold);
    color: oklch(28% 0.04 90);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s var(--ease-out);
}
.play svg {
    width: 22px;
    height: 22px;
}
.play:hover {
    transform: scale(1.05);
}
.play.playing .ic-play,
.play .ic-pause {
    display: none;
}
.play.playing .ic-pause {
    display: block;
}
.voice-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 0.4rem;
}
.eq {
    display: inline-flex;
    gap: 2px;
    align-items: flex-end;
    height: 12px;
}
.eq i {
    width: 3px;
    border-radius: 2px;
    background: var(--gold);
    height: 4px;
}
.playing-now .eq i {
    animation: eq 0.9s ease-in-out infinite alternate;
}
.playing-now .eq i:nth-child(2) {
    animation-delay: 0.2s;
}
.playing-now .eq i:nth-child(3) {
    animation-delay: 0.45s;
}
@keyframes eq {
    from {
        height: 4px;
    }
    to {
        height: 12px;
    }
}
.caption {
    font-size: 0.98rem;
    line-height: 1.5;
    min-height: 3em;
}
.caption .line {
    opacity: 0.32;
    transition: opacity 0.25s var(--ease-out);
}
.caption .line.on {
    opacity: 1;
    color: var(--gold);
}

/* ── Checklist ──────────────────────────────────────────────── */
.progress {
    height: 8px;
    background: var(--paper-deep);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}
.progress i {
    display: block;
    height: 100%;
    width: 0;
    background: var(--green);
    border-radius: 99px;
    transition: width 0.4s var(--ease-out);
}
.task {
    display: flex;
    gap: 0.85rem;
    align-items: center;
    width: calc(100% + 1.2rem);
    margin: 0 -0.6rem;
    padding: 0.7rem 0.6rem;
    border: none;
    border-radius: var(--radius);
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.18s var(--ease-out);
}
.task:hover {
    background: var(--paper);
}
.task .tick {
    flex: 0 0 30px;
    height: 30px;
    border-radius: 50%;
    border: 2.5px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition:
        background 0.2s var(--ease-out),
        border-color 0.2s var(--ease-out);
}
.task .tick svg {
    width: 16px;
    height: 16px;
}
.task.done .tick {
    background: var(--green);
    border-color: var(--green);
    color: var(--surface);
}
.task .tlabel {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.35;
}
.task.done .tlabel {
    color: var(--ink-soft);
}
.task .tstep {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--accent-deep);
    flex-shrink: 0;
}

/* ── Life events: choice tiles ──────────────────────────────── */
.life-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.life-tile {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 60px;
    padding: 0.7rem 0.85rem;
    border: none;
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition:
        background 0.18s var(--ease-out),
        transform 0.15s var(--ease-out);
}
.life-tile svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--teal-deep);
}
.life-tile:hover {
    background: var(--teal-tint);
    transform: translateY(-1px);
}

/* ── Foot: QR + print ───────────────────────────────────────── */
.foot {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
    margin: 1.2rem 1.4rem 1.5rem;
    padding: 1rem 1.1rem;
    background: var(--paper);
    border-radius: var(--radius-lg);
}
.qr-art {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 3px solid var(--ink);
    background:
        conic-gradient(
                var(--ink) 25%,
                transparent 0 50%,
                var(--ink) 0 75%,
                transparent 0
            )
            0 0 / 12px 12px,
        var(--surface);
}
.foot .qr-note {
    flex: 1;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--ink-soft);
}
.foot .btn {
    flex-shrink: 0;
}

/* ── Buttons, fields ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 99px;
    background: var(--canvas);
    color: var(--on-canvas);
    cursor: pointer;
    transition:
        background 0.2s var(--ease-out),
        transform 0.15s var(--ease-out);
}
.btn svg {
    width: 18px;
    height: 18px;
}
.btn:hover {
    background: var(--teal-deep);
}
.btn:active {
    transform: scale(0.98);
}
.btn.block {
    width: 100%;
}
.btn.secondary {
    background: transparent;
    color: var(--teal-deep);
    box-shadow: inset 0 0 0 2px var(--teal-deep);
    min-height: 44px;
    font-size: 0.85rem;
}
.btn.secondary:hover {
    background: var(--teal-tint);
}
.field {
    margin-bottom: 1.1rem;
}
.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.45rem;
}
.field input {
    width: 100%;
    padding: 0.95rem 1.1rem;
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--ink);
    border: none;
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: inset 0 0 0 2px var(--line);
}
.field input::placeholder {
    color: oklch(72% 0.02 160);
    font-weight: 400;
}
.field input:focus {
    outline: none;
    box-shadow: inset 0 0 0 2.5px var(--teal-deep);
}
.hint {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--ink-soft);
}

/* Scanned-from-poster panel (arrival) */
.scan-note {
    display: flex;
    gap: 0.95rem;
    align-items: center;
    padding: 1rem 1.1rem;
    background: var(--green-tint);
    border-radius: var(--radius-lg);
    margin-bottom: 1.3rem;
}
.scan-note .coin {
    flex: 0 0 42px;
    height: 42px;
    background: var(--surface);
    color: var(--green);
}
.scan-note p {
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--ink);
    font-weight: 700;
}

/* ── Language picker ────────────────────────────────────────── */
.lang-list {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.lang-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    min-height: 64px;
    padding: 0.85rem 1.2rem;
    border: none;
    border-radius: var(--radius-lg);
    background: var(--paper);
    text-align: left;
    cursor: pointer;
    transition:
        background 0.2s var(--ease-out),
        color 0.2s var(--ease-out);
}
.lang-row:hover {
    background: var(--teal-tint);
}
.lang-row .native {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}
.lang-row .en {
    font-size: 0.74rem;
    color: var(--ink-soft);
    margin-top: 0.05rem;
}
.lang-row .check {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2.5px solid var(--line);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: transparent;
}
.lang-row .check svg {
    width: 14px;
    height: 14px;
}
.lang-row.selected {
    background: var(--canvas);
}
.lang-row.selected .native {
    color: var(--on-canvas);
}
.lang-row.selected .en {
    color: var(--on-canvas-soft);
}
.lang-row.selected .check {
    background: var(--gold);
    border-color: var(--gold);
    color: oklch(30% 0.04 90);
}

/* ── Benefit document (HC-E register: the one true table) ───── */
.doc-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--surface);
}
.doc-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: var(--teal-deep);
    color: var(--on-canvas);
    padding: 0.85rem 1.1rem;
}
.doc-head svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.doc-head b {
    display: block;
    font-size: 0.88rem;
}
.doc-head span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.75;
}
.doc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.doc-table th,
.doc-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
}
.doc-table thead th {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: var(--paper);
}
.doc-table tbody tr:last-child td {
    border-bottom: none;
}
.doc-table .hsp {
    background: var(--green-tint);
    font-weight: 700;
    color: var(--green);
}
.doc-table thead .hsp {
    color: var(--green);
}
.doc-caption {
    font-size: 0.72rem;
    color: var(--ink-soft);
    padding: 0.7rem 1.1rem;
    background: var(--paper);
}

/* María plan card: a card, not a one-row table */
.plan-card {
    background: linear-gradient(160deg, var(--canvas), var(--canvas-deep));
    color: var(--on-canvas);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.4rem 1.2rem;
    box-shadow: var(--shadow-soft);
}
.plan-card .code {
    font-family: var(--font-greeting);
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1;
    color: var(--gold);
}
.plan-card .net {
    font-size: 0.85rem;
    margin-top: 0.4rem;
    color: var(--on-canvas-soft);
}
.plan-card .facts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid oklch(100% 0 0 / 0.16);
}
.plan-card .facts div {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    font-size: 0.88rem;
}
.plan-card .facts svg {
    width: 17px;
    height: 17px;
    color: var(--gold);
    flex-shrink: 0;
}

/* ── OE countdown screen ────────────────────────────────────── */
.oe-canvas {
    text-align: center;
    padding: 0.5rem 1.6rem 2.8rem;
    position: relative;
}
.oe-canvas .kicker {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}
.oe-canvas .big-days {
    font-family: var(--font-greeting);
    font-weight: 600;
    font-size: 5.2rem;
    line-height: 1;
    color: var(--on-canvas);
    margin-top: 0.6rem;
}
.oe-canvas .big-days small {
    display: block;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 0.2rem;
}
.oe-canvas .window svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.oe-canvas .window {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--on-canvas-soft);
    background: oklch(100% 0 0 / 0.12);
    border-radius: 99px;
    padding: 0.4rem 1rem;
}
.delta-row {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    padding: 0.65rem 0;
}
.delta-row .delta {
    flex: 0 0 5.2rem;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: right;
    color: var(--teal-deep);
    white-space: nowrap;
}
.delta-row.good .delta {
    color: var(--green);
}
.delta-row.cost .delta {
    color: var(--accent-deep);
}
.delta-row p {
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--ink);
}

/* 25% stat (handbook verbatim) */
.stat {
    display: flex;
    gap: 1.1rem;
    align-items: center;
    background: var(--accent-tint);
    border-radius: var(--radius-lg);
    padding: 1.1rem 1.2rem;
}
.stat .pct {
    font-family: var(--font-greeting);
    font-weight: 600;
    font-size: 2.6rem;
    line-height: 1;
    color: var(--accent-deep);
}
.stat p {
    font-size: 0.86rem;
    line-height: 1.45;
    color: var(--ink);
}
.register-note {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-top: 0.9rem;
    padding: 0.9rem 1rem;
    background: var(--paper);
    border-radius: var(--radius);
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--ink-soft);
}
.register-note svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--teal-deep);
}
.register-note b {
    color: var(--ink);
}

/* ── Print summary (a document, with dot leaders) ───────────── */
.print-sheet {
    padding: 1.5rem 1.4rem;
    background: var(--surface);
    border-radius: 6px;
    box-shadow:
        0 1px 0 var(--line),
        0 12px 30px oklch(28% 0.02 160 / 0.12);
}
.print-sheet .letterhead {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 0.8rem;
    margin-bottom: 1rem;
    border-bottom: 3px double var(--line);
}
.print-sheet .letterhead b {
    font-size: 0.8rem;
    color: var(--teal-deep);
}
.print-sheet .letterhead span {
    font-size: 0.68rem;
    color: var(--ink-soft);
}
.print-sheet h2 {
    font-family: var(--font-greeting);
    font-weight: 600;
    font-size: 1.45rem;
    color: var(--ink);
}
.print-sheet .who {
    font-size: 0.82rem;
    color: var(--ink-soft);
    margin: 0.25rem 0 1.1rem;
}
.leader {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.45rem 0;
    font-size: 0.9rem;
}
.leader i {
    flex: 1;
    border-bottom: 2px dotted var(--line);
    transform: translateY(-4px);
}
.leader b {
    white-space: nowrap;
}

/* ── Video screen: the cinema ───────────────────────────────── */
.cinema {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(178deg, var(--canvas), var(--canvas-deep) 70%);
}
.cinema-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 1.8rem 2.6rem;
    color: var(--on-canvas);
}
.cinema-body .voice-meta {
    justify-content: center;
}
.cinema-body .play {
    flex: 0 0 auto;
    width: 76px;
    height: 76px;
    margin: 1.2rem 0 1.6rem;
}
.cinema-body .play svg {
    width: 30px;
    height: 30px;
}
.cinema-body .caption {
    font-size: 1.18rem;
    line-height: 1.55;
    max-width: 26ch;
    min-height: 5.5em;
}
.cinema-body .vtitle {
    font-family: var(--font-greeting);
    font-weight: 600;
    font-size: 1.7rem;
    color: var(--on-canvas);
}
.cinema-body .vlede {
    font-size: 0.88rem;
    color: var(--on-canvas-soft);
    margin-top: 0.4rem;
}

/* ── Poster (8.5×11 awareness register) ─────────────────────── */
.poster-sheet {
    aspect-ratio: 8.5 / 11;
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    animation: rise 0.45s var(--ease-out) both;
}
.poster-band {
    position: relative;
    background: var(--teal);
    color: oklch(99% 0.01 90);
    padding: 2.2rem 2rem 1.9rem;
    overflow: hidden;
}
.poster-band .month {
    display: inline-block;
    background: var(--alert);
    color: oklch(98% 0.01 20);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 99px;
    padding: 0.32rem 0.9rem;
    margin-bottom: 0.9rem;
}
.poster-band h2 {
    font-family: var(--font-greeting);
    font-weight: 900;
    font-size: clamp(1.7rem, 5.5vw, 2.5rem);
    line-height: 1.02;
    max-width: 11ch;
    position: relative;
}
.poster-band .art {
    position: absolute;
    right: -20px;
    bottom: -14px;
    width: 190px;
    opacity: 0.4;
}
.poster-body {
    flex: 1;
    padding: 1.9rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.7rem;
}
.poster-point {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}
.poster-point svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--teal-deep);
    margin-top: 0.1rem;
}
.poster-point p {
    font-size: 1.02rem;
    line-height: 1.5;
    color: var(--ink);
    max-width: 34ch;
}
.poster-foot {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 2rem 1.4rem;
    border-top: 1px solid var(--line);
}
.poster-foot .qr-art {
    width: 52px;
    height: 52px;
}
.poster-foot b {
    display: block;
    font-size: 0.82rem;
    color: var(--teal-deep);
}
.poster-foot span {
    display: block;
    font-size: 0.72rem;
    color: var(--ink-soft);
}

/* ── Compare: two phones, one program ───────────────────────── */
.compare-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: start;
}
@media (max-width: 760px) {
    .compare-cols {
        grid-template-columns: 1fr;
    }
}
.compare-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 0.6rem;
    text-align: center;
}
.compare-cols .phone {
    border-radius: 38px;
    padding: 9px;
}
.compare-cols .app {
    border-radius: 30px;
    min-height: 0;
}

/* ── Admin: Jen's command center (table-forward by design) ──── */
.admin-shell {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: rise 0.45s var(--ease-out) both;
}
.admin-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.5rem 1.75rem 1.25rem;
    background: linear-gradient(172deg, var(--canvas), var(--canvas-deep));
    color: var(--on-canvas);
}
.admin-top h1 {
    font-family: var(--font-greeting);
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}
.admin-top p {
    font-size: 0.8rem;
    color: var(--on-canvas-soft);
    margin-top: 0.3rem;
}
.admin-top .window {
    font-size: 0.78rem;
    font-weight: 700;
    background: oklch(100% 0 0 / 0.13);
    border-radius: 99px;
    padding: 0.4rem 1rem;
}
.admin-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}
.admin-filters select {
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--ink);
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 99px;
    background: var(--surface);
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.admin-table th,
.admin-table td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: middle;
}
.admin-table th:first-child,
.admin-table td:first-child {
    padding-left: 1.75rem;
}
.admin-table th:last-child,
.admin-table td:last-child {
    padding-right: 1.75rem;
}
.admin-table th {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.admin-table th.num,
.admin-table td.num {
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.admin-table tbody tr:hover {
    background: var(--paper);
}
.admin-table tbody tr:last-child td {
    border-bottom: none;
}
.admin-table .site b {
    display: block;
    color: var(--ink);
}
.admin-table .site span {
    font-size: 0.72rem;
    color: var(--ink-soft);
}
.admin-table .lang-native {
    font-weight: 700;
}
.admin-table .lang-native small {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--ink-soft);
}
.barcell {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 140px;
}
.barcell .track {
    flex: 1;
    height: 8px;
    border-radius: 99px;
    background: var(--paper-deep);
    overflow: hidden;
}
.barcell .track i {
    display: block;
    height: 100%;
    background: var(--green);
    border-radius: 99px;
}
.barcell.low .track i {
    background: var(--accent);
}
.barcell b {
    font-size: 0.8rem;
    font-variant-numeric: tabular-nums;
    min-width: 2.6rem;
    text-align: right;
}
.hipaa {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    padding: 0.9rem 1.75rem;
    font-size: 0.74rem;
    color: var(--ink-soft);
    background: var(--paper);
}
.hipaa svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--green);
}

@media print {
    .ribbon,
    .demo-bar {
        display: none !important;
    }
    .stage {
        padding: 0;
    }
    .screen-root {
        max-width: none;
    }
    .phone {
        background: none;
        padding: 0;
        box-shadow: none;
        border-radius: 0;
    }
    .app {
        border-radius: 0;
    }
}
