:root {
    --indigo: #4f46e5;
    --indigo-light: #eef2ff;
    --indigo-shadow: rgba(79, 70, 229, 0.15);
    --slate-900: #0f172a;
    --slate-700: #334155;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --amber-bg: #fffbeb;
    --amber-border: #fde68a;
    --amber-text: #92400e;
    --radius: 1rem;
    --radius-lg: 1.25rem;
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.page {
    font-family: var(--font);
    letter-spacing: -0.01em;
    color: var(--slate-900);
    background-color: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}
::selection {
    background: #e0e7ff;
    color: #312e81;
}
.container.narrow { max-width: 48rem; }
.container.wide { max-width: 72rem; }
body.page .container {
    padding-left: max(1.25rem, env(safe-area-inset-left));
    padding-right: max(1.25rem, env(safe-area-inset-right));
}
body.nav-open { overflow: hidden; }
i[class*="fa-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}
.btn,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.btn.w-100,
.btn-primary.w-100 {
    display: flex;
}
.btn-link-muted,
.nav-link,
.nav-drawer-link,
.form-section-label,
.panel-label,
.notice-head,
.platforms span,
.status-badge,
.meta-row > span,
.field-hint,
.step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.form-section-label,
.notice-inline,
.panel-title,
.page-head h1 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.notice-inline { align-items: flex-start; }
.notice-inline i { margin-top: 0.15rem; }
.panel-title i,
.page-head h1 i {
    flex-shrink: 0;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 0.65rem 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-height: 2.75rem;
}
.header-end {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}
.header-launch-badge {
    display: none;
}
.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: var(--indigo);
    border-radius: 0.625rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.header-cta:hover {
    color: #fff;
    background: var(--indigo-dark, #4338ca);
    transform: translateY(-1px);
}
@media (min-width: 480px) {
    .header-cta span { display: inline; }
}
@media (max-width: 479.98px) {
    .header-cta {
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        justify-content: center;
    }
    .header-cta span { display: none; }
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--slate-900);
}
.brand-mark {
    display: block;
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    object-fit: contain;
}
.brand-mark-lg {
    width: 2.5rem;
    height: 2.5rem;
}
.brand-mark-sm {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
}
.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0.75rem;
    background: var(--slate-100);
    color: var(--slate-700);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 999px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: 1px solid var(--slate-200);
    border-radius: 0.625rem;
    background: #fff;
    color: var(--slate-700);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
    border-color: var(--indigo);
    background: var(--indigo-light);
}
.nav-toggle-bars {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 1.1rem;
}
.nav-toggle-bars span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.25s var(--ease), opacity 0.2s, width 0.2s;
}
.nav-toggle-bars span:nth-child(1) { width: 100%; }
.nav-toggle-bars span:nth-child(2) { width: 75%; margin-left: auto; }
.nav-toggle-bars span:nth-child(3) { width: 100%; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    width: 100%;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease), visibility 0.28s;
}
.nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.site-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(20rem, 92vw);
    max-width: 100%;
    height: 100%;
    height: 100dvh;
    background: #fff;
    border-left: 1px solid var(--slate-200);
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
    z-index: 1002;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.32s var(--ease), visibility 0.32s;
    overflow: hidden;
}
.site-nav-drawer.is-open {
    transform: translateX(0);
    visibility: visible;
}
.nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    padding-top: max(0.85rem, env(safe-area-inset-top));
    border-bottom: 1px solid var(--slate-100);
    flex-shrink: 0;
}
.nav-drawer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    text-decoration: none;
}
.nav-drawer-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    background: #fff;
    color: var(--slate-600);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.nav-drawer-close:hover {
    border-color: var(--indigo);
    color: var(--indigo);
    background: var(--indigo-light);
}
.nav-drawer-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    margin: 0.75rem 1rem 0;
    background: linear-gradient(135deg, var(--indigo-light) 0%, #fff 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(79, 70, 229, 0.15);
    flex-shrink: 0;
}
.nav-drawer-user > i {
    font-size: 1.35rem;
    color: var(--indigo);
    flex-shrink: 0;
}
.nav-drawer-user strong {
    display: block;
    font-size: 0.85rem;
    color: var(--slate-900);
}
.nav-drawer-user span {
    display: block;
    font-size: 0.7rem;
    color: var(--slate-400);
    word-break: break-all;
}
.nav-drawer-body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.75rem 1rem;
    -webkit-overflow-scrolling: touch;
}
.nav-drawer-label {
    margin: 0.5rem 0 0.35rem;
    padding: 0 0.25rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-400);
}
.nav-drawer-label:first-child { margin-top: 0; }
.nav-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.nav-drawer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-700);
    text-decoration: none;
    border-radius: 0.65rem;
    transition: background 0.2s, color 0.2s;
}
.nav-drawer-link i {
    width: 1.2rem;
    text-align: center;
    color: var(--slate-400);
    flex-shrink: 0;
}
.nav-drawer-link:hover,
.nav-drawer-link.active {
    background: var(--indigo-light);
    color: var(--indigo);
}
.nav-drawer-link:hover i,
.nav-drawer-link.active i {
    color: var(--indigo);
}
.nav-drawer-foot {
    flex-shrink: 0;
    padding: 1rem;
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
    border-top: 1px solid var(--slate-100);
    background: var(--slate-50);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.nav-drawer-cta {
    width: 100%;
    justify-content: center;
}
.nav-drawer-foot-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.nav-drawer-signout {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-500);
    text-decoration: none;
}
.nav-drawer-signout:hover {
    color: var(--indigo);
}
.section-head { margin-bottom: 1.25rem; }
.section-head-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}
.section-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}
.section-lead {
    font-size: 0.85rem;
    color: var(--slate-500);
    margin: 0;
}
body.home-page {
    background:
        radial-gradient(ellipse 120% 80% at 50% -30%, rgba(99, 102, 241, 0.07), transparent 55%),
        #f8fafc;
}
.home-main {
    padding-top: 1.25rem;
    padding-bottom: 3rem;
}
.home-block {
    margin-bottom: 3rem;
}
.home-block-head {
    margin-bottom: 1.15rem;
}
.home-block-head h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.home-block-head p {
    margin: 0.3rem 0 0;
    font-size: 0.88rem;
    color: var(--slate-500);
}
.home-block-head-split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.home-block-head-split:not(:has(p)) {
    align-items: center;
}
.home-block-head-split .btn-link-muted {
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}
.home-hero {
    margin-bottom: 3rem;
    border: 1px solid #e0e7ff;
    background: linear-gradient(160deg, #ffffff 0%, #f8faff 55%, #f5f3ff 100%);
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.07);
    overflow: hidden;
}
.home-hero-grid {
    display: grid;
    gap: 1.75rem;
    padding: clamp(1.35rem, 3vw, 2.25rem);
}
@media (min-width: 900px) {
    .home-hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: stretch;
        gap: 2rem;
    }
}
.home-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-500);
}
.home-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 1rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #4338ca;
    background: rgba(238, 242, 255, 0.9);
    border: 1px solid #c7d2fe;
    border-radius: 999px;
}
.home-status-dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--indigo);
    flex-shrink: 0;
}
@media (prefers-reduced-motion: no-preference) {
    .home-status-dot {
        animation: home-status-pulse 2.4s ease-in-out infinite;
    }
}
@keyframes home-status-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.35); }
    50% { box-shadow: 0 0 0 4px rgba(79, 70, 229, 0); }
}
.home-title {
    margin: 0 0 0.85rem;
    font-size: clamp(2rem, 4.8vw, 2.85rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.035em;
    max-width: 14ch;
}
.home-lead {
    margin: 0 0 1.75rem;
    max-width: 34rem;
    font-size: 1.02rem;
    line-height: 1.65;
    color: var(--slate-500);
}
.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}
.home-hero-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.15rem 1.2rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
}
@media (min-width: 900px) {
    .home-hero-aside {
        justify-content: space-between;
        min-height: 100%;
    }
}
.home-aside-label {
    margin: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-400);
}
.home-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}
.home-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--slate-700);
}
.home-checklist i {
    width: 1.65rem;
    height: 1.65rem;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    background: var(--indigo-light);
    color: var(--indigo);
    font-size: 0.75rem;
}
.home-stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px solid var(--slate-200);
}
.home-stat {
    flex: 1 1 5.5rem;
    min-width: 0;
    padding: 0.65rem 0.75rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.65rem;
}
.home-stat strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--slate-900);
    line-height: 1.1;
}
.home-stat span {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.62rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.home-features {
    display: grid;
    gap: 1rem;
}
@media (min-width: 768px) {
    .home-features {
        grid-template-columns: repeat(3, 1fr);
    }
}
.home-feature {
    padding: 1.35rem 1.35rem 1.45rem;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.home-feature:hover {
    border-color: #c7d2fe;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.07);
}
.home-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.85rem;
    border-radius: 0.75rem;
    background: var(--indigo-light);
    color: var(--indigo);
    font-size: 1rem;
}
.home-feature-carers .home-feature-icon {
    background: #fff1f2;
    color: #e11d48;
}
.home-feature-meds .home-feature-icon {
    background: #eef2ff;
    color: #4f46e5;
}
.home-feature-data .home-feature-icon {
    background: #ecfdf5;
    color: #059669;
}
.home-feature h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 700;
}
.home-feature p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--slate-500);
}
.home-roadmap {
    padding: 1.15rem 1.15rem 1.25rem;
    overflow: visible;
    position: relative;
}
.home-roadmap-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (max-width: 639.98px) {
    .home-roadmap-step {
        display: grid;
        grid-template-columns: 1.5rem 1fr;
        gap: 0.75rem;
        padding: 0.65rem 0 0.65rem 0.65rem;
    }
    .home-roadmap-step:not(:last-child) .home-roadmap-rail::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 0.85rem;
        bottom: -0.65rem;
        width: 2px;
        transform: translateX(-50%);
        background: var(--slate-200);
    }
    .home-roadmap-completed .home-roadmap-rail::after { background: #bbf7d0; }
    .home-roadmap-in_progress .home-roadmap-rail::after {
        background: linear-gradient(180deg, #a5b4fc, var(--slate-200));
    }
}
@media (min-width: 640px) {
    .home-roadmap {
        padding: 1rem 0 1.15rem 1rem;
    }
    .home-roadmap-list {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
        scrollbar-color: var(--slate-300) transparent;
        padding-bottom: 0.35rem;
        margin: 0;
    }
    .home-roadmap-list::-webkit-scrollbar {
        height: 5px;
    }
    .home-roadmap-list::-webkit-scrollbar-thumb {
        background: var(--slate-300);
        border-radius: 999px;
    }
    .home-roadmap-step {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        flex: 0 0 10.75rem;
        padding-right: 0.75rem;
        scroll-snap-align: start;
        min-width: 0;
    }
    .home-roadmap-rail {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 1.25rem;
        padding-left: 0.15rem;
    }
    .home-roadmap-rail::after {
        content: '';
        position: absolute;
        left: 0.45rem;
        width: calc(100% + 0.75rem);
        height: 2px;
        background: var(--slate-200);
        z-index: 0;
    }
    .home-roadmap-step:last-child .home-roadmap-rail::after { display: none; }
    .home-roadmap-completed .home-roadmap-rail::after { background: #86efac; }
    .home-roadmap-in_progress .home-roadmap-rail::after {
        background: linear-gradient(90deg, #818cf8, var(--slate-200));
    }
    .home-roadmap-fade {
        display: block;
    }
}
@media (min-width: 1100px) {
    .home-roadmap {
        padding: 1.25rem 1.25rem 1.35rem;
    }
    .home-roadmap-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
        gap: 0.85rem;
        overflow-x: visible;
        scroll-snap-type: none;
        padding-bottom: 0;
    }
    .home-roadmap-step {
        flex: unset;
        padding-right: 0;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: 100%;
    }
    .home-roadmap-rail {
        justify-content: center;
        padding-left: 0;
    }
    .home-roadmap-rail::after {
        left: 50%;
        width: calc(100% + 0.85rem);
        transform: translateX(0);
    }
    .home-roadmap-card {
        flex: 1;
        min-height: 5.5rem;
    }
    .home-roadmap-fade,
    .home-roadmap-hint {
        display: none;
    }
}
.home-roadmap-fade {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 2.75rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 72%);
    pointer-events: none;
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.home-roadmap-hint {
    display: none;
    margin: 0.55rem 0 0;
    padding: 0 0.15rem;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--slate-400);
}
.home-roadmap-hint i {
    margin-right: 0.3rem;
    font-size: 0.68rem;
    opacity: 0.85;
}
@media (min-width: 640px) and (max-width: 1099.98px) {
    .home-roadmap-hint {
        display: block;
    }
}
.home-roadmap-rail {
    position: relative;
    display: flex;
    justify-content: center;
}
.home-roadmap-dot {
    position: relative;
    z-index: 1;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--slate-300);
    box-shadow: 0 0 0 3px #fff;
    flex-shrink: 0;
}
.home-roadmap-completed .home-roadmap-dot {
    background: #059669;
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(5, 150, 105, 0.15);
}
.home-roadmap-in_progress .home-roadmap-dot {
    background: var(--indigo);
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px rgba(79, 70, 229, 0.15);
}
.home-roadmap-card {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.95rem 1rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    min-width: 0;
}
.home-roadmap-completed .home-roadmap-card {
    background: #f0fdf4;
    border-color: #bbf7d0;
}
.home-roadmap-in_progress .home-roadmap-card {
    background: #eef2ff;
    border-color: #c7d2fe;
}
.home-roadmap-tag {
    display: inline-block;
    width: fit-content;
    padding: 0.18rem 0.5rem;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-500);
    background: var(--slate-100);
    border-radius: 999px;
}
.home-roadmap-completed .home-roadmap-tag {
    color: #047857;
    background: #dcfce7;
}
.home-roadmap-in_progress .home-roadmap-tag {
    color: #4338ca;
    background: #e0e7ff;
}
.home-roadmap-card strong {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--slate-900);
}
.home-roadmap-in_progress .home-roadmap-card strong { color: #4338ca; }
.home-roadmap-card time {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--slate-500);
    margin-top: 0.1rem;
}
.home-duo {
    display: grid;
    gap: 1rem;
    align-items: stretch;
}
@media (min-width: 768px) {
    .home-duo {
        grid-template-columns: 1fr;
    }
    .home-disclaimer {
        grid-column: 1 / -1;
    }
}
.home-duo-card {
    padding: 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
}
.home-duo-card h2 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
}
.home-duo-card p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--slate-500);
}
.home-duo-warn {
    background: var(--amber-bg);
    border-color: var(--amber-border);
    display: flex;
    align-items: center;
}
.home-duo-warn p {
    color: rgba(146, 64, 14, 0.92);
    font-size: 0.86rem;
}
.home-disclaimer {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #fcd34d;
    border-left: 4px solid #f59e0b;
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    align-self: stretch;
    padding: 1.15rem 1.25rem;
}
.home-disclaimer-icon {
    flex-shrink: 0;
    width: 2.35rem;
    height: 2.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.18);
    color: #b45309;
    border-radius: 0.65rem;
    font-size: 1.05rem;
}
.home-disclaimer-body h2 {
    margin: 0 0 0.4rem;
    font-size: 0.95rem;
    font-weight: 800;
    color: #78350f;
    letter-spacing: -0.01em;
}
.home-disclaimer-body p {
    margin: 0 0 0.45rem;
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(120, 53, 15, 0.92);
}
.home-disclaimer-body p:last-of-type {
    margin-bottom: 0.65rem;
}
.home-disclaimer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: #92400e;
    text-decoration: none;
}
.home-disclaimer-link:hover {
    color: #78350f;
    text-decoration: underline;
}
.home-disclaimer-link i {
    font-size: 0.68rem;
    transition: transform 0.2s var(--ease);
}
.home-disclaimer-link:hover i {
    transform: translateX(2px);
}
.home-platform-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.home-platform-chips span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate-600);
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
}
.home-updates {
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .home-updates {
        grid-template-columns: repeat(2, 1fr);
    }
}
.home-update {
    display: flex;
    flex-direction: column;
    padding: 1.25rem 1.35rem;
    text-decoration: none;
    color: inherit;
    min-height: 100%;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.home-update:hover {
    color: inherit;
    border-color: #c7d2fe;
    box-shadow: 0 8px 22px rgba(79, 70, 229, 0.06);
}
.home-update-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
}
.home-update-top time {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--slate-400);
    white-space: nowrap;
}
.home-update h3 {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: color 0.2s var(--ease);
}
.home-update:hover h3 {
    color: var(--indigo);
}
.home-update p {
    margin: 0;
    flex-grow: 1;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--slate-500);
}
.home-update-more {
    margin-top: 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--indigo);
}
.home-update-more i {
    font-size: 0.68rem;
    margin-left: 0.2rem;
    transition: transform 0.2s var(--ease);
}
.home-update:hover .home-update-more i {
    transform: translateX(3px);
}
.home-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    padding: 1.5rem 1.65rem;
    background: var(--indigo);
    border-color: #4338ca;
    color: #fff;
    box-shadow: 0 14px 36px rgba(79, 70, 229, 0.22);
    margin-top: 0.25rem;
}
@media (min-width: 576px) {
    .home-cta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
.home-cta-text h2 {
    margin: 0 0 0.3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.home-cta-text p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 28rem;
}
.home-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
}
@media (max-width: 575.98px) {
    .home-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .home-actions .btn,
    .home-actions .btn-outline {
        width: 100%;
    }
    .home-cta-btn {
        width: 100%;
    }
    .home-title {
        max-width: none;
    }
    .home-block,
    .home-hero {
        margin-bottom: 2.25rem;
    }
    .home-main {
        padding-top: 1rem;
    }
    .home-block-head-split:not(:has(p)) {
        align-items: flex-start;
    }
}
@media (prefers-reduced-motion: reduce) {
    .home-feature:hover,
    .home-update:hover {
        box-shadow: none;
    }
    .home-update:hover .home-update-more i {
        transform: none;
    }
}
.card {
    background: #fff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s var(--ease);
}
.home-cta.card {
    background: var(--indigo);
    border-color: #4338ca;
    box-shadow: 0 14px 36px rgba(79, 70, 229, 0.22);
}
.home-hero.card {
    background: linear-gradient(160deg, #ffffff 0%, #f8faff 55%, #f5f3ff 100%);
    border-color: #e0e7ff;
    box-shadow: 0 16px 40px rgba(79, 70, 229, 0.07);
}
.card-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--indigo-light);
    color: var(--indigo);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
}
.card p {
    font-size: 0.75rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin: 0;
}
.home-hero .home-lead {
    margin: 0 0 2rem;
    max-width: 34rem;
    font-size: 1.02rem;
    line-height: 1.65;
}
.home-hero .home-actions {
    margin-top: 0;
}
.home-cta.card .home-cta-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
}
.panel-muted {
    background: var(--slate-50);
    border-color: rgba(226, 232, 240, 0.7);
}
.panel-muted:hover { background: rgba(241, 245, 249, 0.8); }
.panel-label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate-400);
    display: block;
    margin-bottom: 0.25rem;
}
.panel-title {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.panel-muted p {
    font-size: 0.75rem;
    color: var(--slate-500);
    line-height: 1.6;
    margin: 0;
}
.platforms {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    color: var(--slate-400);
    font-size: 0.75rem;
    font-weight: 500;
}
.platforms span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}
.panel-warning {
    background: var(--amber-bg);
    border-color: var(--amber-border);
}
.panel-warning:hover { background: #fef3c7; }
.panel-warning .notice-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--amber-text);
    margin-bottom: 0.5rem;
}
.panel-warning p {
    font-size: 0.75rem;
    color: rgba(146, 64, 14, 0.9);
    line-height: 1.6;
    margin: 0;
}
.register-section {
    padding: 1rem 0 3rem;
}
.register-card {
    padding: 1.25rem;
}
@media (min-width: 576px) {
    .register-card { padding: 2rem; }
}
.register-card h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.register-card .sub {
    font-size: 0.8rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
}
.form-control {
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-family: var(--font);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    border-color: var(--indigo);
    box-shadow: 0 0 0 3px var(--indigo-light);
    outline: none;
}
.btn-primary {
    background: var(--indigo);
    border: none;
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font);
    transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-1px);
}
.home-cta .btn-primary {
    background: #fff;
    color: #4338ca;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
}
.home-cta .btn-primary:hover {
    background: #f8fafc;
    color: #312e81;
    transform: translateY(-1px);
}
.btn-link-muted {
    background: none;
    border: none;
    color: var(--slate-500);
    font-size: 0.75rem;
    font-family: var(--font);
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}
.btn-link-muted:hover { color: var(--indigo); }
.pin-row {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.pin-row input {
    width: 2.75rem;
    height: 3rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: monospace;
    border: 1px solid var(--slate-200);
    border-radius: 0.625rem;
}
.pin-row input:focus {
    border-color: var(--indigo);
    outline: none;
    box-shadow: 0 0 0 3px var(--indigo-light);
}
.notice-inline {
    font-size: 0.8rem;
    color: var(--slate-500);
    padding: 0.75rem 1rem;
    background: var(--indigo-light);
    border-radius: 0.75rem;
    border: 1px solid #c7d2fe;
}
.notice-inline a {
    color: var(--indigo);
    font-weight: 600;
    margin-left: 0.25rem;
}
.nhs-notice {
    margin-top: 0.75rem;
    line-height: 1.55;
    align-items: flex-start;
    gap: 0.6rem;
}
.nhs-notice strong {
    display: block;
    margin-bottom: 0.2rem;
    font-weight: 700;
}
.status-badge.status-nhs {
    background: #e8f4fc;
    color: #005eb8;
}
.status-fact-nhs {
    border-color: #b3d4ef;
    background: #f0f8fd;
}
.nhs-status-card {
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    border-color: #b3d4ef;
    background: linear-gradient(180deg, #f8fcff 0%, #fff 100%);
}
.nhs-status-head {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.65rem;
}
.nhs-status-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #003087;
}
.nhs-status-lead {
    margin: 0;
    font-size: 0.85rem;
    color: var(--slate-700);
    line-height: 1.55;
}
.nhs-status-proof {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid #cce4f5;
    border-radius: 0.75rem;
}
.nhs-status-proof i {
    color: #005eb8;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.nhs-status-proof p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--slate-500);
    line-height: 1.55;
}
.nhs-status-domains {
    margin: 0.75rem 0 0;
    font-size: 0.78rem;
    color: var(--slate-500);
    line-height: 1.5;
}
.nhs-status-standard {
    margin: 0.85rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid #cce4f5;
    font-size: 0.75rem;
    line-height: 1.5;
}
.nhs-status-standard a {
    color: #005eb8;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.nhs-status-standard-note {
    color: var(--slate-500);
}
.notice-beta {
    background: #ede9fe;
    border-color: #c4b5fd;
    color: #5b21b6;
}
.feed-excerpt {
    font-size: 0.8rem;
    color: var(--slate-500);
}
.footnote {
    font-size: 0.7rem;
    color: var(--slate-400);
}
.footnote:has(i) {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.narrow-card {
    max-width: 28rem;
    margin: 0 auto;
}
.step { display: none; }
.step.active { display: block; }
.done-icon {
    width: 3rem;
    height: 3rem;
    background: #ecfdf5;
    color: #059669;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.site-footer {
    margin-top: auto;
    padding: 2.25rem 0 max(2.25rem, env(safe-area-inset-bottom));
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.65) 0%, #fff 100%);
    color: var(--slate-500);
}
.site-footer strong { color: var(--slate-800); font-weight: 600; }
.logo {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--indigo);
    border-radius: 0.75rem;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.result-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}
.result-icon.success { background: #ecfdf5; color: #059669; }
.result-icon.error { background: #fef2f2; color: #dc2626; }
.toast-stack {
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 22rem;
    pointer-events: none;
}
.toast {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--slate-700);
    pointer-events: auto;
    opacity: 0;
    transform: translateY(8px) scale(0.98);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.toast-icon {
    flex-shrink: 0;
    width: 1.25rem;
    text-align: center;
    margin-top: 1px;
}
.toast-success .toast-icon { color: #059669; }
.toast-error .toast-icon { color: #dc2626; }
.toast-info .toast-icon { color: var(--indigo); }
.toast-msg { flex: 1; }
.toast-close {
    background: none;
    border: none;
    color: var(--slate-400);
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
    cursor: pointer;
    margin: -2px -4px 0 0;
}
.toast-close:hover { color: var(--slate-700); }
.toast-success { border-left: 3px solid #059669; }
.toast-error { border-left: 3px solid #dc2626; }
.toast-info { border-left: 3px solid var(--indigo); }
@media (max-width: 480px) {
    .toast-stack {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }
}
.site-nav {
    display: none;
    align-items: center;
    gap: 0.1rem;
    flex-wrap: nowrap;
}
.site-nav .nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-500);
    text-decoration: none;
    padding: 0.4rem 0.65rem;
    border-radius: 0.5rem;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.site-nav .nav-link i {
    font-size: 0.85rem;
}
.site-nav .nav-link-icon {
    padding: 0.4rem 0.55rem;
}
.site-nav .nav-link-user {
    max-width: 8rem;
}
.site-nav .nav-link-user span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.site-nav .nav-cta {
    margin-left: 0.25rem;
    padding: 0.4rem 0.85rem;
    color: #fff;
    background: var(--indigo);
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.2);
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
    color: #fff;
    background: var(--indigo-dark, #4338ca);
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--indigo);
    background: var(--indigo-light);
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
    color: #fff;
    background: var(--indigo-dark, #4338ca);
}
@media (min-width: 768px) {
    .header-launch-badge { display: inline-flex; }
}
@media (min-width: 992px) {
    .site-nav { display: flex; }
    .header-cta,
    .nav-toggle { display: none; }
    .site-nav-drawer,
    .nav-overlay { display: none !important; }
}
@media (min-width: 992px) and (max-width: 1100px) {
    .site-nav .nav-link { padding: 0.35rem 0.5rem; font-size: 0.75rem; }
    .site-nav .nav-cta { padding: 0.35rem 0.65rem; }
}
@media (prefers-reduced-motion: reduce) {
    .nav-overlay,
    .site-nav-drawer,
    .nav-toggle-bars span {
        transition: none;
    }
}
.btn-outline {
    background: #fff;
    border: 1.5px solid var(--slate-200);
    color: var(--slate-700);
    border-radius: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: var(--font);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover {
    border-color: var(--indigo);
    color: var(--indigo);
}
.page-head { margin-bottom: 1.5rem; }
.page-head .h3 { margin-bottom: 0.35rem; }
.page-head p { font-size: 0.875rem; margin: 0; }
.steps-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--slate-200);
}
.step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-400);
    text-decoration: none;
}
.step-link span {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--slate-100);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}
.step-link.active { color: var(--indigo); }
.step-link.active span { background: var(--indigo); color: #fff; }
.step-link.done { color: #059669; }
.step-link.done span { background: #ecfdf5; color: #059669; }
.step-link.disabled { pointer-events: none; }
.step-divider {
    flex: 1;
    height: 1px;
    background: var(--slate-200);
    margin: 0 0.5rem;
    max-width: 2rem;
}
.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.35rem;
}
.form-note {
    font-size: 0.7rem;
    color: var(--slate-400);
    text-align: center;
    margin: 0.75rem 0 0;
}
.form-section {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--slate-100);
}
.form-section:last-of-type { border-bottom: none; padding-bottom: 0; }
.form-section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--slate-700);
    margin-bottom: 1rem;
}
.form-section-label i { color: var(--indigo); }
.field-icon-wrap {
    position: relative;
}
.field-icon-wrap .field-icon {
    position: absolute;
    left: 0.9rem;
    top: 0;
    bottom: 0;
    color: var(--slate-400);
    font-size: 0.9rem;
    width: 1.1rem;
    pointer-events: none;
    z-index: 2;
}
.field-icon-wrap:not(.field-icon-top) .field-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.field-icon-wrap.field-icon-top .field-icon {
    top: 0.9rem;
    bottom: auto;
    height: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.field-icon-wrap .form-control {
    padding-left: 2.5rem;
}
.field-icon-wrap select.form-control {
    padding-right: 2rem;
    appearance: auto;
}
.field-icon-wrap textarea.form-control {
    padding-top: 0.75rem;
    min-height: 5rem;
    resize: vertical;
}
.field-hint {
    font-size: 0.7rem;
    color: var(--slate-400);
    margin: 0.35rem 0 0;
}
.role-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.role-option { cursor: pointer; margin: 0; }
.role-option input { position: absolute; opacity: 0; pointer-events: none; }
.role-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.25rem;
    padding: 1rem 0.75rem;
    border: 1.5px solid var(--slate-200);
    border-radius: 0.75rem;
    transition: border-color 0.2s, background 0.2s;
}
.role-card i {
    font-size: 1.25rem;
    color: var(--indigo);
    margin-bottom: 0.25rem;
}
.role-card strong { font-size: 0.85rem; }
.role-card small { font-size: 0.7rem; color: var(--slate-400); }
.role-option input:checked + .role-card {
    border-color: var(--indigo);
    background: var(--indigo-light);
}
.role-option:hover .role-card { border-color: #c7d2fe; }
.signup-quote {
    font-size: 0.8rem;
    color: var(--slate-500);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}
.status-role { background: var(--slate-100); color: var(--slate-700); }
.admin-profile-details summary {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--indigo);
    cursor: pointer;
}
.admin-profile-details p {
    font-size: 0.7rem;
    color: var(--slate-500);
    margin: 0.35rem 0 0;
    line-height: 1.45;
}
.progress-badge {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--indigo);
}
.progress-track {
    height: 6px;
    background: var(--slate-100);
    border-radius: 99px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    background: var(--indigo);
    border-radius: 99px;
    transition: width 0.6s var(--ease);
}
.milestone-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.milestone-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--slate-400);
    padding: 0.25rem 0.5rem;
    background: var(--slate-50);
    border-radius: 99px;
}
.milestone-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--slate-300);
}
.milestone-item.completed { color: #059669; background: #ecfdf5; }
.milestone-item.completed .milestone-dot { background: #059669; }
.milestone-item.in_progress { color: var(--indigo); background: var(--indigo-light); }
.milestone-item.in_progress .milestone-dot { background: var(--indigo); }
.timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}
.timeline-item {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 1rem;
    position: relative;
}
.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 14px;
    bottom: 0;
    width: 2px;
    background: var(--slate-200);
}
.timeline-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--slate-300);
    flex-shrink: 0;
    margin-top: 3px;
    position: relative;
    z-index: 1;
}
.timeline-item.completed .timeline-dot { background: #059669; }
.timeline-item.in_progress .timeline-dot { background: var(--indigo); box-shadow: 0 0 0 3px var(--indigo-light); }
.timeline-item.upcoming .timeline-dot { background: var(--slate-200); }
.timeline-body strong { font-size: 0.8rem; display: block; }
.timeline-body p { font-size: 0.7rem; color: var(--slate-500); margin: 0.15rem 0 0; }
.timeline-date { font-size: 0.65rem; color: var(--slate-400); }
.timeline.compact .timeline-item { padding-bottom: 0.65rem; }
.status-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 99px;
}
.status-pending { background: #fef3c7; color: #92400e; }
.status-verified { background: #ecfdf5; color: #047857; }
.status-unsub, .status-unsubscribed { background: var(--slate-100); color: var(--slate-500); }
.status-banned { background: #fee2e2; color: #b91c1c; }
.status-beta { background: #ede9fe; color: #5b21b6; }
.feed-list { list-style: none; padding: 0; margin: 0; }
.feed-public { display: flex; flex-direction: column; gap: 1rem; }
.feed-month {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--slate-400);
    margin: 0.5rem 0 0;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--slate-100);
}
.feed-month:first-child { margin-top: 0; }
.timeline-load-wrap {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 0.5rem;
}
.timeline-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
}
.timeline-pager-meta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-500);
}
.feed-item { margin-bottom: 0; }
body.error-page {
    background:
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.05) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.04) 0, transparent 45%),
        #fff;
}
.error-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem 3.5rem;
    min-height: calc(100vh - 12rem);
    min-height: calc(100dvh - 12rem);
}
.error-panel {
    position: relative;
    width: 100%;
    max-width: 26rem;
    text-align: center;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1.25rem;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.error-panel-bg {
    position: absolute;
    inset: 0 0 auto;
    height: 5rem;
    background: linear-gradient(180deg, var(--indigo-light) 0%, transparent 100%);
    pointer-events: none;
}
.error-brand {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.error-icon-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.error-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid var(--slate-200);
    color: var(--indigo);
    font-size: 1.25rem;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.12);
}
body.error-403 .error-icon {
    color: #b45309;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
}
body.error-500 .error-icon {
    color: #dc2626;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.12);
}
.error-code {
    position: relative;
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate-400);
}
.error-title {
    position: relative;
    margin: 0 0 0.5rem;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--slate-900);
    line-height: 1.2;
}
.error-message {
    position: relative;
    margin: 0 0 1.5rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--slate-500);
}
.error-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.error-links {
    position: relative;
    padding-top: 1.25rem;
    border-top: 1px solid var(--slate-100);
    text-align: left;
}
.error-links-label {
    margin: 0 0 0.65rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--slate-400);
}
.error-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
}
.error-link-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    border-radius: 0.625rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--slate-700);
    transition: border-color 0.15s, background 0.15s, color 0.15s;
}
.error-link-item i {
    width: 0.9rem;
    text-align: center;
    color: var(--slate-400);
    font-size: 0.75rem;
}
.error-link-item:hover {
    border-color: #c7d2fe;
    background: var(--indigo-light);
    color: var(--indigo);
}
.error-link-item:hover i { color: var(--indigo); }
@media (max-width: 420px) {
    .error-link-list { grid-template-columns: 1fr; }
    .error-panel { padding: 1.75rem 1.25rem 1.5rem; }
}
.feed-item p, .feed-body { font-size: 0.85rem; color: var(--slate-500); line-height: 1.6; margin: 0.5rem 0 0; }
.feed-meta { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.35rem; }
.feed-type {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: var(--slate-100);
    color: var(--slate-500);
}
.feed-type-beta { background: #ede9fe; color: #5b21b6; }
.feed-type-milestone { background: #ecfdf5; color: #047857; }
.feed-list.compact .feed-item.compact { padding: 0.5rem 0; border-bottom: 1px solid var(--slate-100); }
.feed-list.compact .feed-item.compact:last-child { border-bottom: none; }
.admin-auth-page {
    min-height: 100vh;
    min-height: 100dvh;
    background: #fff;
    overflow-x: hidden;
}
.admin-auth-layout {
    display: grid;
    min-height: 100vh;
    min-height: 100dvh;
}
@media (min-width: 992px) {
    .admin-auth-layout {
        grid-template-columns: 1fr 1fr;
    }
}
.admin-auth-panel {
    position: relative;
    display: none;
    overflow: hidden;
    color: #fff;
    padding: 3rem;
}
@media (min-width: 992px) {
    .admin-auth-panel {
        display: flex;
        align-items: center;
    }
}
.admin-auth-panel-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, #1e1b4b 0%, #312e81 35%, #4f46e5 70%, #6366f1 100%);
}
.admin-auth-panel-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    pointer-events: none;
}
.admin-auth-panel-orb-1 {
    width: 22rem;
    height: 22rem;
    background: #818cf8;
    top: -6rem;
    right: -4rem;
}
.admin-auth-panel-orb-2 {
    width: 16rem;
    height: 16rem;
    background: #a5b4fc;
    bottom: -2rem;
    left: -3rem;
}
.admin-auth-panel-inner {
    position: relative;
    z-index: 1;
    max-width: 26rem;
}
.admin-auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
    margin-bottom: 3rem;
}
.admin-auth-logo .brand-mark {
    border-radius: 0.75rem;
}
.admin-auth-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.admin-auth-panel-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 0.75rem;
}
.admin-auth-panel-lead {
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
.admin-auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    padding-top: max(2rem, env(safe-area-inset-top));
    padding-bottom: max(2rem, env(safe-area-inset-bottom));
    background:
        radial-gradient(at 100% 0%, rgba(99, 102, 241, 0.06) 0, transparent 45%),
        #fff;
}
.admin-auth-form-wrap {
    width: 100%;
    max-width: 24rem;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.admin-auth-mobile-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
}
@media (min-width: 992px) {
    .admin-auth-mobile-brand { display: none; }
}
.admin-auth-form-head {
    margin-bottom: 1.75rem;
}
.admin-auth-form-head h1 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--slate-900);
}
.admin-auth-field {
    margin-bottom: 1.25rem;
}
.admin-auth-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 0.45rem;
}
.admin-auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.admin-auth-input-wrap > i:first-child {
    position: absolute;
    left: 1rem;
    color: var(--slate-400);
    font-size: 0.9rem;
    pointer-events: none;
    z-index: 1;
}
.admin-auth-input {
    width: 100%;
    padding: 0.85rem 1rem 0.85rem 2.65rem;
    font-size: 0.95rem;
    font-family: var(--font);
    color: var(--slate-900);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: 0.875rem;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.admin-auth-input-wrap:has(.admin-auth-pw-toggle) .admin-auth-input {
    padding-right: 2.75rem;
}
.admin-auth-input::placeholder {
    color: var(--slate-400);
}
.admin-auth-input:hover {
    border-color: #c7d2fe;
    background: #fff;
}
.admin-auth-input:focus {
    outline: none;
    border-color: var(--indigo);
    background: #fff;
    box-shadow: 0 0 0 4px var(--indigo-light);
}
.admin-auth-pw-toggle {
    position: absolute;
    right: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    background: none;
    color: var(--slate-400);
    cursor: pointer;
    border-radius: 0.5rem;
    transition: color 0.2s, background 0.2s;
}
.admin-auth-pw-toggle:hover {
    color: var(--indigo);
    background: var(--indigo-light);
}
.admin-auth-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
    border: none;
    border-radius: 0.875rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}
.admin-auth-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.4);
    filter: brightness(1.05);
}
.admin-auth-submit:active {
    transform: translateY(0);
}
.admin-auth-submit i {
    font-size: 0.85rem;
    transition: transform 0.2s;
}
.admin-auth-submit:hover i {
    transform: translateX(3px);
}
.admin-auth-back {
    margin: 1.75rem 0 0;
    text-align: center;
    font-size: 0.85rem;
}
.admin-auth-back a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--slate-500);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.admin-auth-back a:hover { color: var(--indigo); }
.admin-user-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-600);
    background: var(--slate-100);
    padding: 0.25rem 0.65rem;
    border-radius: 99px;
}
.admin-user-pill i { color: var(--indigo); font-size: 0.7rem; }
.admin-subnav {
    display: flex;
    gap: 0.15rem;
    flex-wrap: wrap;
}
.admin-subnav-link {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--slate-500);
    text-decoration: none;
    padding: 0.3rem 0.65rem;
    border-radius: 0.5rem;
}
.admin-subnav-link:hover,
.admin-subnav-link.active {
    background: var(--indigo-light);
    color: var(--indigo);
}
.admin-table-link {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--indigo);
    text-decoration: none;
    margin-right: 0.5rem;
}
.admin-table-link:hover { text-decoration: underline; }
.admin-edit-head { margin-bottom: 1.25rem; }
.admin-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-500);
    text-decoration: none;
    margin-bottom: 0.5rem;
}
.admin-back-link:hover { color: var(--indigo); }
.admin-edit-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}
.admin-edit-card { max-width: 48rem; }
.admin-edit-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--slate-100);
}
.admin-check {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    cursor: pointer;
    margin-bottom: 0.5rem;
}
.admin-check input { accent-color: var(--indigo); }
.admin-post-list .admin-post-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--slate-100);
}
.admin-post-list .admin-post-item:last-child { border-bottom: none; }
.admin-post-preview {
    font-size: 0.8rem;
    color: var(--slate-500);
    margin: 0.35rem 0 0.5rem;
    line-height: 1.5;
}
.admin-post-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.admin-post-actions .btn-link-muted.danger { color: #dc2626; }
.admin-milestone-edit {
    border-bottom: 1px solid var(--slate-100);
    padding: 0.65rem 0;
}
.admin-milestone-edit:last-child { border-bottom: none; }
.admin-milestone-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    list-style: none;
}
.admin-milestone-summary::-webkit-details-marker { display: none; }
.admin-milestone-form {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-100);
}
.admin-bar {
    background: #fff;
    border-bottom: 1px solid var(--slate-200);
    padding: 0.85rem 0;
    font-size: 0.85rem;
}
.admin-brand-link {
    color: var(--slate-900);
    text-decoration: none;
    font-weight: 700;
}
.admin-brand-link:hover { color: var(--indigo); }
.admin-link { color: var(--slate-500); text-decoration: none; font-weight: 600; }
.admin-link:hover { color: var(--indigo); }
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) { .admin-stats { grid-template-columns: repeat(2, 1fr); } }
.admin-stat {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
}
.admin-stat-num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--indigo); }
.admin-stat-lbl { font-size: 0.7rem; color: var(--slate-400); font-weight: 600; }
.admin-filters { display: flex; gap: 0.35rem; }
.admin-filters a {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 99px;
    text-decoration: none;
    color: var(--slate-500);
    background: var(--slate-100);
}
.admin-filters a.active, .admin-filters a:hover { background: var(--indigo-light); color: var(--indigo); }
.table-wrap { overflow-x: auto; }
.admin-table { width: 100%; font-size: 0.8rem; border-collapse: collapse; }
.admin-table th {
    text-align: left;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid var(--slate-200);
}
.admin-table td { padding: 0.75rem; border-bottom: 1px solid var(--slate-100); vertical-align: top; }
.admin-table strong { display: block; font-size: 0.8rem; }
.table-sub { display: block; font-size: 0.65rem; color: var(--slate-400); margin-top: 0.15rem; }
.admin-actions summary {
    cursor: pointer;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--indigo);
    list-style: none;
}
.admin-actions summary::-webkit-details-marker { display: none; }
.admin-action-menu {
    position: absolute;
    right: 0;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    z-index: 10;
    min-width: 10rem;
    margin-top: 0.25rem;
}
.admin-actions { position: relative; display: inline-block; }
.admin-action-btn {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
    font-family: var(--font);
    cursor: pointer;
    border-radius: 4px;
    color: var(--slate-700);
}
.admin-action-btn:hover { background: var(--slate-50); }
.admin-action-btn.danger { color: #dc2626; }
.admin-note-form { margin-top: 0.5rem; padding-top: 0.5rem; border-top: 1px solid var(--slate-100); }
.admin-note-form input { margin-bottom: 0.35rem; }
.admin-milestone-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--slate-100);
}
.admin-milestone-row:last-child { border-bottom: none; }
.admin-milestone-name { font-size: 0.8rem; font-weight: 600; flex: 1; }
.admin-milestone-row select { max-width: 8rem; }
.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--slate-500);
}
.meta-row > span i { color: var(--indigo); flex-shrink: 0; }
.pin-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.status-page.container.wide {
    max-width: 56rem;
}
.status-page.container.guest-wide {
    max-width: 40rem;
}
.status-page--guest {
    background: linear-gradient(180deg, #fafaf9 0%, var(--body-bg, #f8fafc) 12rem);
}
.status-hero {
    padding: 0;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border-color: #e0e7ff;
}
.status-hero-row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.35rem 0;
}
.status-hero-user {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    min-width: 0;
    flex: 1;
}
.status-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--indigo-light);
    color: var(--indigo);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #c7d2fe;
}
.status-identity {
    flex: 1;
    min-width: 0;
}
.status-eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
}
.status-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.status-email {
    margin: 0 0 0.6rem;
    font-size: 0.82rem;
    color: var(--slate-500);
}
.status-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.status-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.status-hero-progress {
    margin: 1.15rem 1.35rem 0;
    padding-top: 1.15rem;
    border-top: 1px solid var(--slate-100);
}
.status-progress-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-bottom: 0.5rem;
}
.status-progress-label strong {
    font-size: 0.95rem;
    color: var(--indigo);
}
.status-stat-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(6.5rem, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--slate-100);
    margin-top: 1.15rem;
    background: var(--slate-50);
}
.status-stat {
    margin: 0;
    padding: 0.85rem 1.35rem;
    border-right: 1px solid var(--slate-100);
}
.status-stat:last-child {
    border-right: none;
}
.status-stat dt {
    margin: 0 0 0.15rem;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--slate-400);
}
.status-stat dd {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate-700);
}
.status-stat-nhs {
    background: #f0f8fd;
}
.status-alerts {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.status-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-lg);
    border: 1px solid transparent;
}
.status-alert > i {
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 1rem;
}
.status-alert strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
}
.status-alert p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--slate-600);
}
.status-alert a {
    color: inherit;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.status-alert-warn {
    background: #fffbeb;
    border-color: #fde68a;
    color: #92400e;
}
.status-alert-warn p { color: #a16207; }
.status-alert-beta {
    background: #f5f3ff;
    border-color: #ddd6fe;
    color: #5b21b6;
}
.status-alert-beta p { color: #6d28d9; }
.status-alert-independence {
    align-items: flex-start;
    background: #fffbeb;
    border: 1px solid #fde68a;
}
.status-alert-independence > i { color: #d97706; }
.status-alert-independence strong { color: #92400e; }
.status-alert-independence p { color: #a16207; }
.status-alert-independence-body {
    flex: 1;
    min-width: 0;
}
.status-alert-independence .status-sub-request-list {
    margin-top: 0.75rem;
}
.status-sub-row-independence {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-top: 0.35rem;
}
.status-body {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 900px) {
    .status-body {
        grid-template-columns: minmax(0, 1.55fr) minmax(16rem, 1fr);
        align-items: start;
    }
}
.status-main,
.status-aside {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}
.status-section {
    padding: 1.25rem;
}
.status-section-head {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}
.status-section-head > div {
    flex: 1;
    min-width: 0;
}
.status-section-head h2 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}
.status-section-head p {
    margin: 0.1rem 0 0;
    font-size: 0.75rem;
    color: var(--slate-500);
}
.status-section-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.65rem;
    background: var(--indigo-light);
    color: var(--indigo);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}
.status-section-link {
    margin-left: auto;
    align-self: center;
    font-size: 0.8rem;
    white-space: nowrap;
}
.status-roadmap {
    list-style: none;
    margin: 0;
    padding: 0;
}
.status-roadmap-item {
    display: flex;
    gap: 0.85rem;
    padding: 0.75rem 0;
    position: relative;
}
.status-roadmap-item:not(:last-child) {
    border-bottom: 1px solid var(--slate-100);
}
.status-roadmap-marker {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--slate-100);
    color: var(--slate-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.55rem;
    margin-top: 0.1rem;
}
.status-roadmap-completed .status-roadmap-marker {
    background: #ecfdf5;
    color: #059669;
}
.status-roadmap-in_progress .status-roadmap-marker {
    background: var(--indigo-light);
    color: var(--indigo);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.12);
}
.status-roadmap-in_progress .status-roadmap-marker i {
    font-size: 0.4rem;
}
.status-roadmap-content {
    flex: 1;
    min-width: 0;
}
.status-roadmap-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
}
.status-roadmap-top strong {
    font-size: 0.85rem;
}
.status-roadmap-badge {
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--slate-400);
    white-space: nowrap;
}
.status-roadmap-completed .status-roadmap-badge { color: #059669; }
.status-roadmap-in_progress .status-roadmap-badge { color: var(--indigo); }
.status-roadmap-date {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: var(--slate-400);
}
.status-updates {
    list-style: none;
    margin: 0;
    padding: 0;
}
.status-update-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.65rem 0.85rem;
    padding: 0.8rem 0;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--slate-100);
    transition: color 0.15s;
}
.status-update-item:last-child {
    border-bottom: none;
}
.status-update-item:hover {
    color: var(--indigo);
}
.status-update-title {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 0;
}
.status-update-date {
    font-size: 0.72rem;
    color: var(--slate-400);
    white-space: nowrap;
}
.status-activity {
    list-style: none;
    margin: 0;
    padding: 0;
}
.status-activity-timeline {
    position: relative;
}
.status-activity-timeline .status-activity-item {
    position: relative;
}
.status-activity-timeline .status-activity-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 0.86rem;
    top: 2.1rem;
    bottom: -0.35rem;
    width: 2px;
    background: linear-gradient(180deg, #e0e7ff 0%, rgba(224, 231, 255, 0) 100%);
}
.status-activity-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--slate-100);
}
.status-activity-item:last-child {
    border-bottom: none;
}
.status-activity-icon {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    background: var(--indigo-light);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.72rem;
    position: relative;
    z-index: 1;
}
.activity-tone-success .status-activity-icon {
    background: #dcfce7;
    color: #15803d;
}
.activity-tone-beta .status-activity-icon {
    background: #f5f3ff;
    color: #6d28d9;
}
.activity-tone-people .status-activity-icon {
    background: #eef2ff;
    color: #4338ca;
}
.activity-tone-security .status-activity-icon {
    background: #e0f2fe;
    color: #0369a1;
}
.activity-tone-access .status-activity-icon {
    background: var(--slate-100);
    color: var(--slate-500);
}
.activity-tone-warn .status-activity-icon {
    background: #fef3c7;
    color: #b45309;
}
.status-activity-item.is-noise {
    opacity: 0.82;
}
.status-activity-body {
    min-width: 0;
    flex: 1;
}
.status-activity-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--indigo);
    margin-top: 0.45rem;
    flex-shrink: 0;
}
.status-activity-item strong {
    display: block;
    font-size: 0.8rem;
    line-height: 1.35;
}
.status-activity-detail {
    display: block;
    font-size: 0.72rem;
    color: var(--slate-500);
    margin-top: 0.1rem;
}
.status-activity-item time {
    display: block;
    font-size: 0.68rem;
    color: var(--slate-400);
    margin-top: 0.15rem;
}
.status-activity-empty-state {
    text-align: center;
    padding: 1.25rem 0.75rem;
    color: var(--slate-500);
}
.status-activity-empty-state i {
    font-size: 1.35rem;
    color: var(--slate-300);
    margin-bottom: 0.5rem;
}
.status-activity-empty-state p {
    margin: 0 0 0.35rem;
    font-size: 0.82rem;
}
.status-activity-more {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-100);
}
.status-activity-more-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid #e0e7ff;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #fafaff 0%, #f5f3ff 100%);
    color: var(--slate-700);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.status-activity-more-btn:hover {
    border-color: #c7d2fe;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.08);
}
.status-activity-more-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.55rem;
    background: #fff;
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.status-activity-more-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    flex: 1;
    min-width: 0;
}
.status-activity-more-copy strong {
    font-size: 0.82rem;
}
.status-activity-more-copy small {
    font-size: 0.72rem;
    color: var(--slate-500);
}
.status-activity-more-btn > .fa-chevron-right {
    color: var(--slate-400);
    font-size: 0.75rem;
}
.activity-modal-dialog .site-modal-body {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.activity-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}
.activity-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: 1px solid var(--slate-200);
    background: #fff;
    color: var(--slate-600);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.activity-filter-btn:hover {
    border-color: var(--indigo);
    color: var(--indigo);
}
.activity-filter-btn.is-active {
    background: var(--indigo);
    border-color: var(--indigo);
    color: #fff;
}
.activity-filter-btn.is-active .activity-filter-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.activity-filter-badge {
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.2rem 0.4rem;
    border-radius: 999px;
    background: var(--slate-100);
    color: var(--slate-500);
}
.activity-modal-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
}
.activity-filter-count {
    margin: 0;
    font-size: 0.72rem;
    color: var(--slate-400);
}
.activity-noise-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--slate-600);
    cursor: pointer;
    user-select: none;
}
.activity-noise-toggle input {
    accent-color: var(--indigo);
}
.activity-modal-scroll {
    max-height: min(52vh, 24rem);
    overflow-y: auto;
    padding-right: 0.25rem;
}
.activity-modal-list .status-activity-item {
    padding: 0.75rem 0;
}
.activity-day-heading {
    list-style: none;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
    padding: 0.85rem 0 0.35rem;
    border-bottom: none;
}
.activity-day-heading:first-child {
    padding-top: 0.15rem;
}
.activity-modal-empty {
    margin: 0;
    font-size: 0.82rem;
    color: var(--slate-500);
    text-align: center;
    padding: 1.5rem 0;
}
.status-answer {
    margin-bottom: 0.85rem;
}
.status-answer:last-of-type {
    margin-bottom: 0;
}
.status-answer-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
}
.status-answer p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--slate-600);
    line-height: 1.55;
}
.status-answer-meta {
    margin: 0.85rem 0 0;
    font-size: 0.72rem;
    color: var(--slate-400);
}
.status-section-nhs {
    margin-bottom: 0;
}
.status-aside .nhs-status-card {
    padding: 1.15rem;
}
.status-footer {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--slate-100);
    text-align: center;
}
.status-leave {
    font-size: 0.8rem;
}
.status-signin {
    max-width: 28rem;
    margin: 0 auto;
}
.status-signin-intro {
    text-align: center;
    margin-bottom: 1.5rem;
}
.status-signin-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 0.875rem;
    background: var(--indigo-light);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.status-signin-card {
    padding: 1.5rem 1.35rem;
}
.pin-actions-center {
    justify-content: center;
}
.status-beta-queued {
    background: #fef3c7;
    color: #92400e;
}
.status-sub-owner {
    margin: 0.35rem 0 0.65rem;
    font-size: 0.85rem;
    color: var(--slate-500);
}
.status-sub-section {
    border-color: #e0e7ff;
}
.status-sub-quota {
    margin-left: auto;
    align-self: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--indigo);
    background: var(--indigo-light);
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
}
.status-sub-lead {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    color: var(--slate-500);
    line-height: 1.55;
}
.status-sub-lead a {
    color: var(--indigo);
    font-weight: 600;
}
.status-sub-muted {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 0.75rem;
}
.status-sub-muted i {
    color: var(--slate-400);
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.status-sub-muted p {
    margin: 0;
    font-size: 0.82rem;
    color: var(--slate-600);
    line-height: 1.5;
}
.status-sub-empty,
.status-sub-full {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    color: var(--slate-500);
}
.status-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.status-sub-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--slate-100);
}
.status-sub-row:last-child {
    border-bottom: none;
}
.status-sub-avatar {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 0.5rem;
    background: #eef2ff;
    color: #4338ca;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}
.status-sub-row-body {
    flex: 1;
    min-width: 0;
}
.status-sub-row-body strong {
    display: block;
    font-size: 0.8rem;
    line-height: 1.35;
}
.status-sub-row-meta {
    display: block;
    font-size: 0.72rem;
    color: var(--slate-500);
    margin-top: 0.1rem;
}
.status-sub-row-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    flex-shrink: 0;
}
.status-sub-foot {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-100);
}
.status-sub-requests {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 0.75rem;
}
.status-sub-requests-title {
    margin: 0 0 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #92400e;
}
.status-sub-request-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}
.status-sub-request {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid #fde68a;
    border-radius: 0.65rem;
}
.status-sub-request-main strong {
    display: block;
    font-size: 0.85rem;
}
.status-sub-request-main span {
    display: block;
    font-size: 0.72rem;
    color: var(--slate-500);
    margin-top: 0.1rem;
}
.status-sub-request-actions {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}
.guest-status-foot-meta {
    margin: 0.5rem 0 0;
    font-size: 0.78rem;
    color: #78716c;
}
.guest-status-foot .btn {
    margin-top: 0.65rem;
}
@media (max-width: 640px) {
    .status-sub-row {
        flex-wrap: wrap;
    }
    .status-sub-row-actions {
        flex-direction: row;
        align-items: center;
        width: 100%;
        padding-left: 2.5rem;
        justify-content: space-between;
    }
}

/* Guest / sub-user status — separate from owner dashboard */
.guest-status {
    display: grid;
    gap: 1rem;
}
.guest-status-banner {
    background: #fff;
    border: 1px solid #d6d3d1;
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 2px rgba(28, 25, 23, 0.04);
    overflow: hidden;
}
.guest-status-banner-inner {
    padding: 1.25rem 1.35rem;
    border-left: 4px solid #0f766e;
}
.guest-status-owner {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.guest-status-owner-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 0.85rem;
    background: #f5f5f4;
    color: #57534e;
    font-size: 0.9rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #e7e5e4;
}
.guest-status-kicker {
    margin: 0 0 0.2rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #78716c;
}
.guest-status-owner-name {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1c1917;
    line-height: 1.15;
}
.guest-status-owner-meta {
    margin: 0.35rem 0 0;
    font-size: 0.78rem;
    color: #78716c;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}
.guest-status-rel {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
    color: #57534e;
}
.guest-status-dot {
    color: #d6d3d1;
}
.guest-status-access {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid #f5f5f4;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
}
.guest-status-access-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
}
.guest-status-access-badge.status-verified {
    background: #ecfdf5;
    color: #047857;
}
.guest-status-access-badge.status-beta {
    background: #f5f3ff;
    color: #6d28d9;
}
.guest-status-access-badge.status-beta-queued {
    background: #fffbeb;
    color: #b45309;
}
.guest-status-access-note {
    font-size: 0.72rem;
    color: #78716c;
}
.guest-status-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0.9rem 1.1rem;
    border-color: #e7e5e4;
    background: #fff;
}
.guest-status-you {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}
.guest-status-you-avatar {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.65rem;
    background: #ccfbf1;
    color: #0f766e;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.guest-status-you-label {
    margin: 0;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a8a29e;
}
.guest-status-you-name {
    display: block;
    font-size: 0.88rem;
    line-height: 1.2;
}
.guest-status-you-email {
    display: block;
    font-size: 0.75rem;
    color: #78716c;
}
.guest-status-toolbar-actions {
    display: flex;
    gap: 0.45rem;
    flex-shrink: 0;
}
.guest-status-now {
    padding: 1.15rem 1.25rem;
    border-color: #e7e5e4;
    background: #fff;
}
.guest-status-now h2 {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
}
.guest-status-blurb {
    margin: 0 0 1rem;
    font-size: 0.88rem;
    line-height: 1.6;
    color: #44403c;
}
.guest-status-build {
    padding: 0.75rem 0.9rem;
    margin-bottom: 1rem;
    background: #fafaf9;
    border: 1px solid #e7e5e4;
    border-radius: 0.65rem;
}
.guest-status-build-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a8a29e;
    margin-bottom: 0.2rem;
}
.guest-status-build strong {
    display: block;
    font-size: 0.85rem;
    color: #1c1917;
}
.guest-status-build-date {
    display: block;
    font-size: 0.72rem;
    color: #78716c;
    margin-top: 0.15rem;
}
.guest-status-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    margin: 0;
}
.guest-status-facts div {
    padding: 0.65rem 0.75rem;
    background: #fafaf9;
    border-radius: 0.55rem;
    border: 1px solid #f5f5f4;
}
.guest-status-facts dt {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #a8a29e;
    margin-bottom: 0.15rem;
}
.guest-status-facts dd {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: #292524;
}
.guest-status-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.82rem;
    line-height: 1.5;
}
.guest-status-notice p {
    margin: 0;
}
.guest-status-notice.is-live {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}
.guest-status-notice.is-live i {
    color: #059669;
    margin-top: 0.1rem;
}
.guest-status-notice.is-queued {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}
.guest-status-notice.is-queued i {
    color: #d97706;
    margin-top: 0.1rem;
}
.guest-status-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 720px) {
    .guest-status-grid {
        grid-template-columns: 1.2fr 1fr;
        align-items: start;
    }
}
.guest-status-updates {
    padding: 1.1rem 1.2rem;
    border-color: #e7e5e4;
}
.guest-status-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}
.guest-status-section-head h2 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
}
.guest-status-news {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}
.guest-status-news-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem 0.75rem;
    align-items: baseline;
    padding: 0.7rem 0.75rem;
    border-radius: 0.6rem;
    border: 1px solid #f5f5f4;
    background: #fafaf9;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, background 0.15s;
}
.guest-status-news-item:hover {
    border-color: #d6d3d1;
    background: #fff;
}
.guest-status-news-item time {
    font-size: 0.68rem;
    color: #a8a29e;
    white-space: nowrap;
}
.guest-status-news-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #292524;
    line-height: 1.35;
}
.guest-status-side .status-activity-section {
    border-color: #e7e5e4;
}
.guest-status-foot {
    padding: 1rem 1.15rem;
    border-color: #e7e5e4;
    background: #fafaf9;
    font-size: 0.82rem;
    line-height: 1.55;
    color: #57534e;
}
.guest-status-foot p {
    margin: 0 0 0.35rem;
}
.guest-status-foot p:last-child {
    margin-bottom: 0;
}
.guest-status-foot a {
    color: #0f766e;
    font-weight: 600;
}

.site-modal {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.site-modal[hidden] {
    display: none;
}
.site-modal.is-open {
    display: flex;
}
.site-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    transition: opacity 0.2s var(--ease);
}
.site-modal.is-open .site-modal-overlay {
    opacity: 1;
}
.site-modal-dialog-wide {
    max-width: 28rem;
}
.site-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 24rem;
    max-height: calc(100vh - 2.5rem);
    overflow: auto;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-200);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    transform: translateY(12px) scale(0.98);
    opacity: 0;
    transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.site-modal.is-open .site-modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.site-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.15rem 1.25rem;
    border-bottom: 1px solid var(--slate-100);
}
.site-modal-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}
.site-modal-close {
    width: 2rem;
    height: 2rem;
    border: none;
    border-radius: 0.5rem;
    background: var(--slate-100);
    color: var(--slate-500);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.site-modal-close:hover {
    background: var(--slate-200);
    color: var(--slate-700);
}
.site-modal-body {
    padding: 1.25rem;
}
.site-modal-lead {
    margin: 0 0 1.25rem;
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.5;
}
.site-modal .pin-row {
    justify-content: flex-start;
    margin-bottom: 0;
}
.site-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.25rem;
}
.site-modal-foot {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
    text-align: center;
}
body.modal-open {
    overflow: hidden;
}
@media (max-width: 575px) {
    .status-hero-row {
        flex-direction: column;
    }
    .status-hero-actions {
        width: 100%;
    }
    .status-hero-actions .btn {
        flex: 1;
    }
    .status-stat {
        border-right: none;
        border-bottom: 1px solid var(--slate-100);
    }
    .status-stat:last-child {
        border-bottom: none;
    }
    .status-update-item {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
    .status-section-head {
        flex-wrap: wrap;
    }
    .status-section-link {
        width: 100%;
        margin-left: 3.1rem;
    }
}
@media (max-width: 480px) {
    .meta-row {
        flex-direction: column;
        gap: 0.5rem;
    }
}
@media (max-width: 575px) {
    .role-picker { grid-template-columns: 1fr; }
    .steps-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .step-divider { display: none; }
    .pin-row input {
        width: 2.35rem;
        height: 2.75rem;
        font-size: 1.1rem;
    }
    .pin-row { gap: 0.35rem; }
    .pin-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .pin-actions .btn-link-muted {
        justify-content: center;
    }
    .page-head .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    .site-footer .d-flex {
        font-size: 0.7rem;
    }
}
@media (max-width: 380px) {
    .pin-row input {
        width: 2.1rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}
@media (min-width: 576px) and (max-width: 991px) {
    .brand-name { font-size: 1.15rem; }
}
.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.event-list li {
    display: flex;
    gap: 0.65rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--slate-100);
    font-size: 0.75rem;
}
.event-list li:last-child { border-bottom: none; }
.event-dot {
    width: 8px;
    height: 8px;
    background: var(--indigo);
    border-radius: 50%;
    margin-top: 5px;
    flex-shrink: 0;
}
.event-list strong { display: block; font-size: 0.75rem; }
.event-list span { color: var(--slate-400); font-size: 0.65rem; }
.stats-row {
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--slate-100);
    padding-top: 1rem;
}
.stat-box {
    flex: 1;
    text-align: center;
}
.stat-num {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--indigo);
}
.stat-lbl {
    font-size: 0.65rem;
    color: var(--slate-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-aside-block {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 1.25rem;
}

.contact-aside-muted {
    background: var(--slate-50);
    color: var(--slate-500);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius);
    padding: 0 1.15rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 0;
    list-style: none;
}

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

.faq-item summary::after {
    content: '+';
    float: right;
    color: var(--slate-400);
    font-weight: 400;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
    margin: 0 0 1rem;
    color: var(--slate-500);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-foot {
    padding: 1.25rem;
}

.resources-notice {
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
    background: var(--amber-bg);
    border: 1px solid var(--amber-border);
    border-radius: var(--radius-lg);
    border-left: 3px solid #d97706;
}
.resources-notice-lead {
    margin: 0 0 0.35rem;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.4;
    color: rgba(146, 64, 14, 0.95);
}
.resources-notice p {
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.55;
    color: rgba(120, 53, 15, 0.88);
}
.resources-jump {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}
.resources-jump-link {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate-700);
    text-decoration: none;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.resources-jump-link:hover {
    color: var(--indigo);
    background: var(--indigo-light);
    border-color: #c7d2fe;
}
.resources-audience {
    padding-top: 1.5rem;
    margin-bottom: 2rem;
    border-top: 1px solid var(--slate-200);
}
.resources-audience:first-of-type {
    padding-top: 0;
    border-top: none;
}
.resources-audience-head {
    margin-bottom: 1.25rem;
}
.resources-audience-head h2 {
    margin: 0 0 0.3rem;
    font-size: 1.15rem;
}
.resources-audience-head p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.55;
    max-width: 36rem;
}
.resources-group {
    margin-bottom: 1.5rem;
}
.resources-group:last-child {
    margin-bottom: 0;
}
.resources-group-head {
    margin-bottom: 0.65rem;
}
.resources-group-head h2,
.resources-group-head h3 {
    margin: 0 0 0.2rem;
    font-size: 0.95rem;
}
.resources-group-head p {
    margin: 0;
    font-size: 0.84rem;
    color: var(--slate-500);
    line-height: 1.5;
}
.resources-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.resources-link {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.resources-link:hover {
    border-color: #c7d2fe;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.08);
}
.resources-link-main {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}
.resources-link-main strong {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--slate-900);
}
.resources-link-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    color: var(--slate-500);
}
.resources-link-meta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--slate-400);
    padding-top: 0.1rem;
}
.resources-source {
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.resources-foot {
    padding: 1.25rem 1.35rem;
    margin-top: 0.5rem;
}
.resources-foot-lead {
    margin: 0 0 0.2rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--slate-900);
}
.resources-foot-text {
    margin: 0 0 0.85rem;
    font-size: 0.84rem;
    color: var(--slate-500);
    line-height: 1.5;
}

.footer-grid {
    display: grid;
    gap: 2rem 1.5rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}
@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 2rem;
    }
}
@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.6fr 0.9fr 0.9fr;
        gap: 2.5rem;
    }
}
.footer-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    text-decoration: none;
    color: var(--slate-900);
}
.footer-brand-link:hover { color: var(--indigo); }
.footer-brand-name {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.footer-tagline {
    margin: 0 0 0.85rem;
    max-width: 20rem;
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--slate-500);
}
.footer-launch {
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--slate-500);
    background: #fff;
    border: 1px solid var(--slate-200);
}
.footer-col-title {
    margin: 0 0 0.85rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
}
.footer-col-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.footer-col-links a {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate-600);
    text-decoration: none;
    transition: color 0.15s var(--ease);
}
.footer-col-links a:hover { color: var(--indigo); }
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.35rem;
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1.5rem;
    }
}
.footer-note {
    margin: 0;
    max-width: 26rem;
    font-size: 0.78rem;
    line-height: 1.55;
    color: var(--slate-400);
}
.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
    text-align: left;
}
@media (min-width: 768px) {
    .footer-legal {
        align-items: flex-end;
        text-align: right;
    }
}
.footer-copy {
    margin: 0;
    font-size: 0.8rem;
    color: var(--slate-500);
}
.footer-company {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    margin: 0;
}
.footer-company-item {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    font-size: 0.76rem;
    color: var(--slate-500);
}
.footer-company-item dt {
    margin: 0;
    font-weight: 600;
    color: var(--slate-400);
}
.footer-company-item dd {
    margin: 0;
    font-weight: 600;
    color: var(--slate-700);
    font-variant-numeric: tabular-nums;
}
.footer-company-item sup {
    font-size: 0.62em;
    top: -0.2em;
}

.admin-ban-banner {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.75rem;
    color: #991b1b;
}
.admin-ban-banner > i {
    margin-top: 0.15rem;
    font-size: 1.1rem;
}
.admin-ban-banner p {
    margin: 0.35rem 0 0;
    font-size: 0.85rem;
    line-height: 1.5;
}
.admin-ban-meta {
    font-size: 0.78rem !important;
    color: #b91c1c;
}
.admin-ban-card {
    border-color: #fecaca;
}
.admin-tag-ban {
    background: #fee2e2;
    color: #b91c1c;
}
.admin-check-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--slate-600);
}
.admin-check-row input {
    margin-top: 0.2rem;
}

body.banned-page {
    background: linear-gradient(180deg, #fffbfb 0%, #fff 12rem);
}
.banned-page-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.banned-layout {
    width: 100%;
    max-width: 54rem;
    display: grid;
    gap: 1rem;
    min-width: 0;
}
@media (min-width: 900px) {
    .banned-layout {
        grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
        align-items: start;
    }
}
.banned-page-main,
.appeal-page .appeal-layout {
    overflow-x: hidden;
}
.banned-main,
.banned-side {
    display: grid;
    gap: 0.85rem;
    min-width: 0;
    max-width: 100%;
}
.banned-card,
.banned-panel {
    padding: 1.35rem 1.25rem;
    border: 1px solid #fecaca;
    background: linear-gradient(180deg, #fff 0%, #fffbfb 100%);
}
.banned-panel {
    border-color: var(--slate-200);
    background: #fff;
}
.banned-head {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.banned-head-copy {
    min-width: 0;
}
.banned-head-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.15rem;
}
.banned-type-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #991b1b;
    background: #fee2e2;
    border: 1px solid #fecaca;
}
.banned-reason-block {
    padding: 0.95rem 1rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #fecaca;
}
.banned-reason-block p {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--slate-800);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.banned-next-steps {
    border-color: var(--slate-200);
    background: #fff;
}
.banned-next-list {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.65rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--slate-700);
}
.banned-next-list strong {
    color: var(--slate-800);
}
.banned-appeal-cta {
    text-align: center;
    border-color: #c7d2fe;
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.banned-appeal-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #e0e7ff;
    color: #4338ca;
    margin-bottom: 0.65rem;
    font-size: 1.1rem;
}
.banned-appeal-preview {
    margin-top: 0.75rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.banned-appeal-preview p {
    margin: 0.3rem 0 0;
    font-size: 0.86rem;
    line-height: 1.45;
    color: var(--slate-700);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.banned-appeal-preview-date {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.74rem;
    color: var(--slate-500);
}
.banned-appeal-wait {
    margin-top: 0.5rem;
}
.banned-eyebrow {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #b91c1c;
}
.banned-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background: #fee2e2;
    color: #b91c1c;
    flex-shrink: 0;
}
.banned-summary {
    padding-top: 1rem;
    border-top: 1px solid #fecaca;
}
.banned-summary-item {
    margin-bottom: 1rem;
}
.banned-summary-item p,
.banned-summary-grid p {
    margin: 0.25rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--slate-800);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.banned-summary-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--slate-500);
}
.banned-summary-grid {
    display: grid;
    gap: 0.85rem;
}
@media (min-width: 560px) {
    .banned-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.banned-side {
    display: grid;
    gap: 0.85rem;
}
.banned-restrictions,
.banned-actions {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.banned-restrictions li,
.banned-actions li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.45;
    color: var(--slate-700);
}
.banned-restrictions i {
    color: #dc2626;
    margin-top: 0.15rem;
}
.banned-actions i {
    color: #059669;
    margin-top: 0.15rem;
}
.appeal-page .appeal-layout {
    width: 100%;
    max-width: 52rem;
    display: grid;
    gap: 1rem;
}
@media (min-width: 900px) {
    .appeal-page .appeal-layout {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
        align-items: start;
    }
}
.appeal-side,
.appeal-main {
    display: grid;
    gap: 0.85rem;
    min-width: 0;
    max-width: 100%;
}
.appeal-form-card,
.appeal-hero,
.appeal-panel {
    min-width: 0;
    max-width: 100%;
}
.appeal-panel {
    padding: 1.15rem 1.1rem;
    border: 1px solid var(--slate-200);
    background: #fff;
}
.appeal-hero {
    padding: 1.35rem 1.25rem;
    border: 1px solid #c7d2fe;
    background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}
.appeal-eyebrow {
    color: #4338ca !important;
}
.appeal-hero-head {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.appeal-hero-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background: #e0e7ff;
    color: #4338ca;
    flex-shrink: 0;
}
.appeal-ban-summary {
    padding-top: 1rem;
    border-top: 1px solid #c7d2fe;
}
.appeal-ban-grid {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
}
@media (min-width: 560px) {
    .appeal-ban-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.appeal-ban-grid p,
.appeal-reason-block p {
    margin: 0.25rem 0 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--slate-800);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.appeal-reason-block {
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
}
.appeal-ip-note {
    margin: 0.85rem 0 0;
    font-size: 0.86rem;
    color: var(--slate-600);
}
.appeal-ip-note i {
    color: #b45309;
    margin-right: 0.35rem;
}
.appeal-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}
.appeal-steps li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}
.appeal-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: var(--slate-100);
    color: var(--slate-600);
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}
.appeal-steps li strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.1rem;
}
.appeal-steps li p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--slate-600);
}
.appeal-steps li.current .appeal-step-num {
    background: #e0e7ff;
    color: #4338ca;
}
.appeal-steps li.done .appeal-step-num {
    background: #dcfce7;
    color: #166534;
}
.appeal-tips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}
.appeal-tips li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.86rem;
    line-height: 1.45;
    color: var(--slate-700);
}
.appeal-tips .fa-check {
    color: #059669;
    margin-top: 0.15rem;
}
.appeal-tips .fa-xmark {
    color: #dc2626;
    margin-top: 0.15rem;
}
.appeal-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.appeal-form-card {
    padding: 1.25rem 1.15rem;
}
.appeal-form-intro {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--slate-200);
}
.appeal-char-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.35rem;
}
.appeal-char-count {
    font-size: 0.78rem;
    color: var(--slate-500);
    font-variant-numeric: tabular-nums;
}
.appeal-char-count.is-low {
    color: #b45309;
}
.appeal-char-count.is-ok {
    color: #059669;
}
.appeal-form-foot {
    margin-top: 0.85rem;
    text-align: center;
}
.appeal-pending {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.appeal-pending-rich {
    padding: 0.15rem 0;
}
.appeal-pending-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.85rem;
    background: #fef3c7;
    color: #92400e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.appeal-pending-meta {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
    font-size: 0.86rem;
    color: var(--slate-600);
}
.appeal-pending-meta span {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}
.appeal-submitted-copy {
    margin-bottom: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.appeal-submitted-copy p {
    margin: 0.35rem 0 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--slate-700);
    overflow-wrap: anywhere;
    word-break: break-word;
}
.appeal-pending-foot {
    font-size: 0.86rem;
    color: var(--slate-600);
}
.appeal-status-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-muted);
}
.appeal-status-pill i {
    color: #92400e;
}
.appeal-status-pill-approved i,
.appeal-restored-banner i {
    color: #059669;
}
.appeal-status-card {
    border-width: 1px;
    border-style: solid;
}
.appeal-status-pending,
.appeal-status-pill-pending { border-color: #fde68a; background: #fffbeb; }
.appeal-status-reviewing,
.appeal-status-pill-reviewing { border-color: #c7d2fe; background: #f8faff; }
.appeal-status-approved,
.appeal-status-pill-approved { border-color: #bbf7d0; background: #f0fdf4; }
.appeal-status-denied,
.appeal-status-pill-denied { border-color: #fecaca; background: #fffbfb; }
.appeal-status-title {
    margin: 0.2rem 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-800);
}
.appeal-status-sub {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    color: var(--slate-500);
}
.appeal-restored-banner {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border: 1px solid #bbf7d0;
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 100%);
    margin-bottom: 0.85rem;
}
.appeal-restored-banner i {
    font-size: 1.35rem;
    margin-top: 0.1rem;
}
.appeal-restored-banner strong {
    display: block;
    margin-bottom: 0.15rem;
}
.appeal-restored-banner p {
    font-size: 0.9rem;
    color: var(--slate-600);
}
.appeal-thread {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 1rem;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
}
.appeal-thread-head {
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--slate-200);
}
.appeal-thread-item {
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-200);
    background: #fff;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}
.appeal-thread-user {
    border-color: #e2e8f0;
    background: #f8fafc;
}
.appeal-thread-admin {
    border-color: #c7d2fe;
    background: #f8faff;
}
.appeal-thread-system {
    border-color: #bbf7d0;
    background: #f0fdf4;
}
.appeal-thread-meta {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: baseline;
    margin-bottom: 0.45rem;
    flex-wrap: wrap;
}
.appeal-thread-meta strong {
    font-size: 0.86rem;
}
.appeal-thread-meta time {
    font-size: 0.76rem;
    color: var(--slate-500);
    font-variant-numeric: tabular-nums;
}
.appeal-thread-body {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--slate-700);
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: pre-wrap;
    max-width: 100%;
}
.appeal-reply-form {
    padding-top: 1rem;
    border-top: 1px solid var(--slate-200);
}
.appeal-closed-note {
    padding-top: 1rem;
    border-top: 1px solid var(--slate-200);
    font-size: 0.88rem;
    color: var(--slate-600);
}

.banned-foot-actions {
    display: grid;
    gap: 0.55rem;
}
