/* /Components/Dashboard/CharacterStatePanel.razor.rz.scp.css */
.character-state-panel[b-gymrwe4lsd] {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    background:
        radial-gradient(circle at 88% 0%, rgba(101,240,198,.12), transparent 13rem),
        radial-gradient(circle at 0% 100%, rgba(150,169,255,.1), transparent 14rem),
        linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.018)),
        rgba(12, 22, 33, .52);
}

.character-state-panel[b-gymrwe4lsd]::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 26%, transparent 74%, rgba(255,255,255,.05));
    opacity: .34;
}

.section-head[b-gymrwe4lsd] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.section-head h2[b-gymrwe4lsd] {
    margin: 0;
    font-size: 15px;
    font-weight: 720;
}

.eyebrow[b-gymrwe4lsd] {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
}

.section-note[b-gymrwe4lsd] {
    max-width: 420px;
    margin: 8px 0 0;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.45;
}

.state-pulse[b-gymrwe4lsd] {
    position: relative;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(237,247,246,.9) 0 5%, rgba(101,240,198,.26) 18%, rgba(101,240,198,.08) 54%, transparent 68%);
    border: 1px solid rgba(101, 240, 198, .22);
    box-shadow: var(--glow-calm);
    animation: state-pulse-b-gymrwe4lsd 4.8s ease-in-out infinite;
}

.state-meter-grid[b-gymrwe4lsd] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.state-footer[b-gymrwe4lsd] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    color: var(--soft);
    font-size: 12px;
    line-height: 1.4;
}

.state-check[b-gymrwe4lsd] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.state-check > span[b-gymrwe4lsd] {
    color: var(--muted);
    margin-right: 2px;
}

.state-check button[b-gymrwe4lsd] {
    min-height: 30px;
    padding: 0 11px;
    color: var(--soft);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 999px;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.state-check button:hover[b-gymrwe4lsd] {
    color: var(--ink);
    border-color: rgba(101, 240, 198, .28);
    background: rgba(101, 240, 198, .075);
}

@keyframes state-pulse-b-gymrwe4lsd {
    0%, 100% {
        transform: scale(1);
        opacity: .8;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@media (max-width: 820px) {
    .state-meter-grid[b-gymrwe4lsd] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Dashboard/MainQuestHudPanel.razor.rz.scp.css */
.main-quest-panel[b-l8kwyqjw9c] {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    background:
        radial-gradient(circle at 16% 0%, rgba(101,240,198,.13), transparent 14rem),
        radial-gradient(circle at 100% 60%, rgba(245,200,107,.09), transparent 13rem),
        linear-gradient(145deg, rgba(255,255,255,.072), rgba(255,255,255,.018)),
        rgba(12, 22, 33, .52);
}

.main-quest-panel[b-l8kwyqjw9c]::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 28%, transparent 74%, rgba(255,255,255,.045));
    opacity: .34;
}

.main-quest-actions[b-l8kwyqjw9c] {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: end;
    gap: 10px;
}

.configuration-state-label[b-l8kwyqjw9c] {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.quest-version[b-l8kwyqjw9c] {
    display: inline-grid;
    min-height: 28px;
    place-items: center;
    margin-top: 9px;
    padding: 0 10px;
    color: var(--calm);
    background: rgba(101, 240, 198, .075);
    border: 1px solid rgba(101, 240, 198, .16);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 760;
}

.reconfigure-link[b-l8kwyqjw9c] {
    display: inline-grid;
    min-height: 32px;
    place-items: center;
    padding: 0 12px;
    color: var(--soft);
    text-decoration: none;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    font-size: 12px;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.reconfigure-link:hover[b-l8kwyqjw9c] {
    color: var(--ink);
    border-color: rgba(101, 240, 198, .28);
    background: rgba(101, 240, 198, .075);
}

.main-quest-loading[b-l8kwyqjw9c] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--soft);
}

.main-quest-loading span[b-l8kwyqjw9c] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--calm);
    box-shadow: var(--glow-calm);
    animation: main-quest-pulse-b-l8kwyqjw9c 1.6s ease-in-out infinite;
}

.main-quest-loading p[b-l8kwyqjw9c] {
    margin: 0;
    font-size: 14px;
}

.dimension-orbit[b-l8kwyqjw9c] {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 164px;
    place-items: center;
    border-radius: 28px;
    background:
        radial-gradient(circle, rgba(101,240,198,.12), transparent 48%),
        rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.065);
    overflow: hidden;
}

.dimension-orbit[b-l8kwyqjw9c]::before,
.dimension-orbit[b-l8kwyqjw9c]::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.dimension-orbit[b-l8kwyqjw9c]::before {
    width: 250px;
    aspect-ratio: 1;
    border: 1px solid rgba(101, 240, 198, .14);
    box-shadow: inset 0 0 50px rgba(101,240,198,.045);
}

.dimension-orbit[b-l8kwyqjw9c]::after {
    width: 150px;
    aspect-ratio: 1;
    border: 1px solid rgba(245, 200, 107, .11);
}

.orbit-node[b-l8kwyqjw9c] {
    --weight: 50;
    --tone: var(--calm);
    position: absolute;
    display: grid;
    width: calc(28px + var(--weight) * .12px);
    aspect-ratio: 1;
    place-items: center;
    color: var(--ink);
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--tone), white 28%), color-mix(in srgb, var(--tone), transparent 42%) 55%, rgba(255,255,255,.04));
    box-shadow: 0 0 22px color-mix(in srgb, var(--tone), transparent 40%), 0 0 64px color-mix(in srgb, var(--tone), transparent 78%);
    animation: main-quest-drift-b-l8kwyqjw9c 6s ease-in-out infinite;
}

.orbit-node:nth-child(1)[b-l8kwyqjw9c] { transform: translate(-92px, -34px); animation-delay: -.6s; }
.orbit-node:nth-child(2)[b-l8kwyqjw9c] { transform: translate(8px, -58px); animation-delay: -1.1s; }
.orbit-node:nth-child(3)[b-l8kwyqjw9c] { transform: translate(96px, -8px); animation-delay: -1.7s; }
.orbit-node:nth-child(4)[b-l8kwyqjw9c] { transform: translate(-62px, 52px); animation-delay: -2.3s; }
.orbit-node:nth-child(5)[b-l8kwyqjw9c] { transform: translate(54px, 56px); animation-delay: -2.9s; }
.orbit-node:nth-child(6)[b-l8kwyqjw9c] { transform: translate(-128px, 18px); animation-delay: -3.4s; }
.orbit-node:nth-child(7)[b-l8kwyqjw9c] { transform: translate(128px, 42px); animation-delay: -4s; }

.orbit-node i[b-l8kwyqjw9c] {
    font-style: normal;
    font-size: 12px;
    font-weight: 780;
}

.dimension-grid[b-l8kwyqjw9c] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.dimension-meter[b-l8kwyqjw9c] {
    --weight: 50;
    --tone: var(--calm);
    position: relative;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 84%);
}

.dimension-meter[b-l8kwyqjw9c]::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    width: calc(var(--weight) * 1%);
    background: linear-gradient(90deg, var(--tone), color-mix(in srgb, var(--tone), white 42%));
    box-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 34%);
    animation: dimension-fill-b-l8kwyqjw9c .72s cubic-bezier(.2, .8, .2, 1) both;
}

.dimension-meter div[b-l8kwyqjw9c] {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
}

.dimension-icon[b-l8kwyqjw9c] {
    display: grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--tone), transparent 84%);
    box-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 76%);
    font-size: 11px;
    font-weight: 760;
}

.dimension-meter strong[b-l8kwyqjw9c] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 13px;
}

.dimension-meter > span[b-l8kwyqjw9c] {
    color: var(--tone);
    font-weight: 780;
    text-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 48%);
}

.main-quest-note[b-l8kwyqjw9c] {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--soft);
    font-size: 13px;
    line-height: 1.45;
}

@keyframes main-quest-pulse-b-l8kwyqjw9c {
    0%, 100% { transform: scale(.92); opacity: .7; }
    50% { transform: scale(1.12); opacity: 1; }
}

@keyframes main-quest-drift-b-l8kwyqjw9c {
    0%, 100% { margin-top: 0; filter: saturate(1); }
    50% { margin-top: -7px; filter: saturate(1.22); }
}

@keyframes dimension-fill-b-l8kwyqjw9c {
    from { width: 10%; opacity: .4; }
}

@media (max-width: 820px) {
    .dimension-grid[b-l8kwyqjw9c] {
        grid-template-columns: 1fr;
    }

    .main-quest-actions[b-l8kwyqjw9c] {
        justify-items: start;
    }
}
/* /Components/Dashboard/MainQuestStatusPanel.razor.rz.scp.css */
.main-quest-status[b-cd117qhjrs] {
    display: grid;
    gap: 18px;
    min-height: 630px;
    padding: 24px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 76% 12%, rgba(150,169,255,.20), transparent 16rem),
        radial-gradient(circle at 8% 70%, rgba(101,240,198,.15), transparent 15rem),
        linear-gradient(145deg, rgba(255,255,255,.072), rgba(255,255,255,.018)),
        rgba(12, 22, 33, .52);
}

.main-quest-status > *[b-cd117qhjrs] {
    position: relative;
    z-index: 1;
}

.status-copy h2[b-cd117qhjrs],
.status-copy p[b-cd117qhjrs] {
    margin: 0;
}

.status-copy h2[b-cd117qhjrs] {
    font-size: 22px;
    font-weight: 780;
    line-height: 1.08;
}

.status-copy p[b-cd117qhjrs] {
    max-width: 34rem;
    margin-top: 10px;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.5;
}

.quest-map[b-cd117qhjrs] {
    --alignment: 50;
    position: relative;
    display: grid;
    min-height: 400px;
    place-items: center;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    filter: none;
}

.quest-map[b-cd117qhjrs]::before,
.quest-map[b-cd117qhjrs]::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.quest-map[b-cd117qhjrs]::before {
    width: 92%;
    aspect-ratio: 1;
    background:
        radial-gradient(circle, rgba(150,169,255,.18), transparent 44%),
        conic-gradient(from 0deg, transparent, rgba(150,169,255,.22), transparent, rgba(101,240,198,.14), transparent);
    filter: blur(8px);
    opacity: .72;
    animation: slow-spin-b-cd117qhjrs 20s linear infinite;
}

.quest-map[b-cd117qhjrs]::after {
    width: 74%;
    aspect-ratio: 1;
    border: 1px solid rgba(150, 169, 255, .16);
    box-shadow: inset 0 0 70px rgba(150, 169, 255, .06);
}

.map-ring[b-cd117qhjrs] {
    position: absolute;
    left: 50%;
    top: 50%;
    aspect-ratio: 1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.map-ring.one[b-cd117qhjrs] {
    width: 362px;
    border: 1px solid rgba(150, 169, 255, .15);
    box-shadow: inset 0 0 52px rgba(150,169,255,.045);
}

.map-ring.two[b-cd117qhjrs] {
    width: 292px;
    border: 1px solid rgba(101, 240, 198, .10);
}

.map-ring.three[b-cd117qhjrs] {
    width: 204px;
    border: 1px solid rgba(245, 200, 107, .10);
}

.status-score[b-cd117qhjrs] {
    position: absolute;
    left: 50%;
    top: 50%;
    display: grid;
    width: min(330px, 76vw);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle at 50% 44%, rgba(237,247,246,.94) 0 2%, rgba(150,169,255,.34) 9%, rgba(28,38,72,.46) 36%, rgba(5,8,15,.9) 66%),
        conic-gradient(from 225deg, #96a9ff calc(var(--alignment) * 1%), rgba(255,255,255,.08) 0);
    border: 1px solid rgba(150, 169, 255, .25);
    box-shadow:
        inset 0 0 60px rgba(255,255,255,.09),
        inset 0 0 120px rgba(150,169,255,.13),
        0 0 52px rgba(150,169,255,.27),
        0 0 130px rgba(101,240,198,.10);
    animation: core-pulse-b-cd117qhjrs 4.8s ease-in-out infinite;
    z-index: 1;
}

.status-score[b-cd117qhjrs]::before {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: inherit;
    border: 1px solid rgba(226, 232, 255, .22);
}

.status-score[b-cd117qhjrs]::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 118%;
    aspect-ratio: 1;
    border-radius: inherit;
    background:
        conic-gradient(from 90deg, transparent 0 13%, rgba(150,169,255,.68) 14%, transparent 15% 43%, rgba(101,240,198,.46) 44%, transparent 45% 72%, rgba(245,200,107,.42) 73%, transparent 74%);
    mask: radial-gradient(circle, transparent 67%, #000 68% 70%, transparent 71%);
    animation: slow-spin-b-cd117qhjrs 24s linear infinite reverse;
}

.status-score strong[b-cd117qhjrs],
.status-score span[b-cd117qhjrs] {
    display: block;
    line-height: 1;
}

.status-score strong[b-cd117qhjrs] {
    align-self: end;
    font-size: clamp(58px, 8vw, 86px);
    letter-spacing: 0;
    text-shadow: 0 0 34px rgba(150, 169, 255, .42);
}

.status-score span[b-cd117qhjrs] {
    align-self: start;
    color: var(--soft);
    font-size: 9px;
    font-weight: 720;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.quest-spoke[b-cd117qhjrs] {
    --tone: var(--calm);
    --angle: 0;
    --radius: 140;
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(var(--radius) * 1px);
    height: 1px;
    border-radius: 999px;
    transform: rotate(calc(var(--angle) * 1deg));
    transform-origin: left center;
    background: linear-gradient(90deg,
        rgba(255,255,255,.02),
        color-mix(in srgb, var(--tone), transparent 70%));
    box-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 78%);
    opacity: .52;
    z-index: 2;
}

.quest-dot[b-cd117qhjrs] {
    --tone: var(--calm);
    --value: 50;
    --x: 0;
    --y: 120;
    position: absolute;
    left: calc(50% + var(--x) * 1px);
    top: calc(50% + var(--y) * 1px);
    display: grid;
    width: calc(28px + var(--value) * .10px);
    aspect-ratio: 1;
    place-items: center;
    color: var(--ink);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(circle, color-mix(in srgb, var(--tone), white 28%), color-mix(in srgb, var(--tone), transparent 38%) 56%, rgba(255,255,255,.04));
    box-shadow:
        0 0 20px color-mix(in srgb, var(--tone), transparent 34%),
        0 0 68px color-mix(in srgb, var(--tone), transparent 75%);
    animation: quest-dot-float-b-cd117qhjrs 5.6s ease-in-out infinite;
    z-index: 3;
    cursor: pointer;
}

.quest-dot i[b-cd117qhjrs] {
    font-style: normal;
    font-size: 11px;
    font-weight: 820;
}

.dimension-legend[b-cd117qhjrs] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.dimension-row[b-cd117qhjrs] {
    --tone: var(--calm);
    --value: 50;
    display: grid;
    gap: 7px;
    min-height: 50px;
    padding: 9px;
    border: 1px solid color-mix(in srgb, var(--tone), transparent 78%);
    border-radius: 15px;
    background: rgba(255,255,255,.03);
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.dimension-row:hover[b-cd117qhjrs] {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--tone), transparent 58%);
    background: color-mix(in srgb, var(--tone), transparent 94%);
}

.quest-dot:hover[b-cd117qhjrs] {
    transform: translate(-50%, -50%) scale(1.08);
}

.dimension-row div:first-child[b-cd117qhjrs] {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 7px;
    align-items: center;
}

.dimension-row span[b-cd117qhjrs] {
    display: grid;
    width: 22px;
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--tone), transparent 78%);
    font-size: 10px;
    font-weight: 780;
}

.dimension-row strong[b-cd117qhjrs] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
}

.dimension-row b[b-cd117qhjrs] {
    color: var(--tone);
    font-size: 13px;
    text-shadow: 0 0 16px color-mix(in srgb, var(--tone), transparent 54%);
}

.legend-track[b-cd117qhjrs] {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
}

.legend-track span[b-cd117qhjrs] {
    display: block;
    width: calc(var(--value) * 1%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--tone), color-mix(in srgb, var(--tone), white 36%));
    box-shadow: 0 0 16px color-mix(in srgb, var(--tone), transparent 42%);
    animation: main-quest-status-fill-b-cd117qhjrs .7s cubic-bezier(.2, .8, .2, 1) both;
}

@media (max-width: 820px) {
    .main-quest-status[b-cd117qhjrs] {
        min-height: auto;
    }

    .quest-map[b-cd117qhjrs] {
        min-height: 360px;
    }

    .status-score[b-cd117qhjrs] {
        width: min(280px, 76vw);
    }

    .dimension-legend[b-cd117qhjrs] {
        grid-template-columns: 1fr;
    }
}

@keyframes main-quest-status-fill-b-cd117qhjrs {
    from {
        width: 8%;
        opacity: .45;
    }
}

@keyframes quest-dot-float-b-cd117qhjrs {
    0%, 100% {
        margin-top: 0;
        filter: saturate(1);
    }

    50% {
        margin-top: -6px;
        filter: saturate(1.22);
    }
}

@keyframes slow-spin-b-cd117qhjrs {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes core-pulse-b-cd117qhjrs {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        filter: saturate(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.018);
        filter: saturate(1.12);
    }
}
/* /Components/Dashboard/StateMeter.razor.rz.scp.css */
.state-meter[b-2l5jy42jij] {
    --value: 50;
    --tone: var(--calm);
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    min-height: 118px;
    padding: 15px;
    overflow: hidden;
    border-radius: 20px;
    background:
        radial-gradient(circle at 12% 0%, color-mix(in srgb, var(--tone), transparent 82%), transparent 9rem),
        rgba(255,255,255,.035);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 82%);
    box-shadow: inset 0 0 26px rgba(255,255,255,.025), 0 0 28px color-mix(in srgb, var(--tone), transparent 92%);
}

.meter-head[b-2l5jy42jij] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 11px;
    align-items: start;
}

.meter-icon[b-2l5jy42jij] {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--tone), transparent 84%);
    box-shadow: 0 0 24px color-mix(in srgb, var(--tone), transparent 72%);
}

.meter-head strong[b-2l5jy42jij],
.meter-head span[b-2l5jy42jij],
.meter-head b[b-2l5jy42jij] {
    display: block;
}

.meter-head strong[b-2l5jy42jij] {
    font-size: 14px;
    line-height: 1.15;
}

.meter-head span[b-2l5jy42jij] {
    margin-top: 5px;
    color: var(--soft);
    font-size: 12px;
    line-height: 1.35;
}

.meter-head b[b-2l5jy42jij] {
    color: var(--tone);
    font-size: 18px;
    line-height: 1;
    text-shadow: 0 0 20px color-mix(in srgb, var(--tone), transparent 52%);
}

.meter-track[b-2l5jy42jij] {
    height: 16px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.06);
}

.meter-track span[b-2l5jy42jij] {
    display: block;
    width: calc(var(--value) * 1%);
    height: 100%;
    border-radius: inherit;
    background:
        linear-gradient(90deg, color-mix(in srgb, var(--tone), transparent 22%), color-mix(in srgb, var(--tone), white 34%));
    box-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 42%);
    animation: meter-rise-b-2l5jy42jij .82s cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes meter-rise-b-2l5jy42jij {
    from {
        width: 8%;
        opacity: .42;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.app-shell[b-05ggb882x7] {
    min-height: 100vh;
}

#blazor-error-ui[b-05ggb882x7] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss[b-05ggb882x7] {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-6hcmxjk3k9] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-6hcmxjk3k9] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-6hcmxjk3k9] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-6hcmxjk3k9] {
    font-family: var(--aeden-brand-font);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: .03em;
}

.bi[b-6hcmxjk3k9] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-6hcmxjk3k9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-6hcmxjk3k9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-6hcmxjk3k9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-lock-nav-menu[b-6hcmxjk3k9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a2 2 0 0 1 2 2v4H6V3a2 2 0 0 1 2-2zm3 6V3a3 3 0 0 0-6 0v4a2 2 0 0 0-2 2v5a2 2 0 0 0 2 2h6a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2zM5 8h6a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1z'/%3E%3C/svg%3E");
}

.bi-person-nav-menu[b-6hcmxjk3k9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person' viewBox='0 0 16 16'%3E%3Cpath d='M8 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2-3a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm4 8c0 1-1 1-1 1H3s-1 0-1-1 1-4 6-4 6 3 6 4Zm-1-.004c-.001-.246-.154-.986-.832-1.664C11.516 10.68 10.289 10 8 10c-2.29 0-3.516.68-4.168 1.332-.678.678-.83 1.418-.832 1.664h10Z'/%3E%3C/svg%3E");
}

.bi-person-badge-nav-menu[b-6hcmxjk3k9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-badge' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3zM11 8a3 3 0 1 1-6 0 3 3 0 0 1 6 0z'/%3E%3Cpath d='M4.5 0A2.5 2.5 0 0 0 2 2.5V14a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2.5A2.5 2.5 0 0 0 11.5 0h-7zM3 2.5A1.5 1.5 0 0 1 4.5 1h7A1.5 1.5 0 0 1 13 2.5v10.795a4.2 4.2 0 0 0-.776-.492C11.392 12.387 10.063 12 8 12s-3.392.387-4.224.803a4.2 4.2 0 0 0-.776.492V2.5z'/%3E%3C/svg%3E");
}

.bi-person-fill-nav-menu[b-6hcmxjk3k9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-person-fill' viewBox='0 0 16 16'%3E%3Cpath d='M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3Zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6Z'/%3E%3C/svg%3E");
}

.bi-arrow-bar-left-nav-menu[b-6hcmxjk3k9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-bar-left' viewBox='0 0 16 16'%3E%3Cpath d='M12.5 15a.5.5 0 0 1-.5-.5v-13a.5.5 0 0 1 1 0v13a.5.5 0 0 1-.5.5ZM10 8a.5.5 0 0 1-.5.5H3.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L3.707 7.5H9.5a.5.5 0 0 1 .5.5Z'/%3E%3C/svg%3E");
}

.nav-item[b-6hcmxjk3k9] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-6hcmxjk3k9] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-6hcmxjk3k9] {
        padding-bottom: 1rem;
    }

    .nav-item[b-6hcmxjk3k9]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-6hcmxjk3k9]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-6hcmxjk3k9]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-6hcmxjk3k9] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-6hcmxjk3k9] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-6hcmxjk3k9] {
        display: none;
    }

    .nav-scrollable[b-6hcmxjk3k9] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Components/Pages/Calendar.razor.rz.scp.css */
.calendar-hud[b-uwd829n3sj] {
    --panel: rgba(12, 22, 33, .58);
    --ink: #edf7f6;
    --muted: #8fa3ae;
    --soft: #b8cbd1;
    --line: rgba(186, 222, 232, .12);
    --calm: #65f0c6;
    --money: #f5c86b;
    --family: #ff8a7b;
    --shadow: 0 24px 90px rgba(0, 0, 0, .42);
    min-height: 100vh;
    padding: clamp(30px, 3vw, 42px) 24px 24px;
    color: var(--ink);
    background:
        radial-gradient(circle at 45% -12%, rgba(101, 240, 198, .18), transparent 34rem),
        radial-gradient(circle at 90% 22%, rgba(245, 200, 107, .12), transparent 25rem),
        linear-gradient(180deg, #07101b 0%, #05080f 72%, #04070d 100%);
}

.calendar-topbar[b-uwd829n3sj],
.calendar-layout[b-uwd829n3sj] {
    width: min(1480px, 100%);
    margin-inline: auto;
}

.calendar-topbar[b-uwd829n3sj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.brand[b-uwd829n3sj] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sigil[b-uwd829n3sj] {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--calm);
    background: radial-gradient(circle, rgba(101,240,198,.22), rgba(101,240,198,.05) 58%, transparent 60%), rgba(255,255,255,.03);
    border: 1px solid rgba(101, 240, 198, .28);
    border-radius: 50%;
    box-shadow: 0 0 24px rgba(101, 240, 198, .32);
}

.sigil span[b-uwd829n3sj] {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
}

.brand h1[b-uwd829n3sj],
.brand p[b-uwd829n3sj],
.section-head h2[b-uwd829n3sj] {
    margin: 0;
}

.brand h1[b-uwd829n3sj] {
    font-family: var(--aeden-brand-font);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: .03em;
}

.brand p[b-uwd829n3sj],
.section-note[b-uwd829n3sj],
.eyebrow[b-uwd829n3sj] {
    color: var(--muted);
}

.calendar-actions[b-uwd829n3sj] {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ghost-button[b-uwd829n3sj] {
    display: inline-grid;
    min-height: 42px;
    padding: 0 16px;
    place-items: center;
    color: var(--ink);
    text-decoration: none;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--line);
    border-radius: 999px;
}

.calendar-layout[b-uwd829n3sj] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .32fr);
    gap: 22px;
    align-items: start;
    min-width: 0;
}

.surface[b-uwd829n3sj] {
    position: relative;
    overflow: visible;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)), var(--panel);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.week-map[b-uwd829n3sj],
.calendar-sidebar[b-uwd829n3sj] {
    display: grid;
    gap: 18px;
    padding: 22px;
    min-width: 0;
}

.section-head[b-uwd829n3sj] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.section-head h2[b-uwd829n3sj] {
    font-size: 22px;
}

.section-note[b-uwd829n3sj] {
    max-width: 760px;
    margin: 8px 0 0;
    line-height: 1.5;
}

.eyebrow[b-uwd829n3sj] {
    display: block;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
}

.week-summary[b-uwd829n3sj] {
    min-width: 150px;
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 10px;
    padding: 12px 14px;
    text-align: right;
    background: rgba(101,240,198,.07);
    border: 1px solid rgba(101,240,198,.15);
    border-radius: 18px;
}

.week-summary div[b-uwd829n3sj] {
    min-width: 0;
}

.week-summary span[b-uwd829n3sj] {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.week-summary strong[b-uwd829n3sj] {
    display: block;
    margin-top: 4px;
    color: var(--calm);
    font-size: 24px;
}

.calendar-grid[b-uwd829n3sj] {
    display: grid;
    grid-template-columns: repeat(7, minmax(180px, 1fr));
    gap: 12px;
    overflow-x: auto;
    min-width: 0;
    padding: 0 2px 10px;
    scrollbar-color: rgba(101, 240, 198, .34) rgba(255,255,255,.04);
}

.day-column[b-uwd829n3sj] {
    display: grid;
    gap: 12px;
    align-content: start;
    min-height: 600px;
    min-width: 0;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
}

.day-column.today[b-uwd829n3sj] {
    border-color: rgba(101,240,198,.26);
    box-shadow: inset 0 0 28px rgba(101,240,198,.05);
}

.day-head[b-uwd829n3sj] {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: baseline;
    min-width: 0;
}

.day-head span[b-uwd829n3sj] {
    color: var(--soft);
    font-weight: 720;
    overflow-wrap: anywhere;
}

.day-head strong[b-uwd829n3sj] {
    flex: 0 0 auto;
    color: var(--muted);
    font-size: 12px;
    text-align: right;
}

.lane-label[b-uwd829n3sj] {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 2px 0 -4px;
    color: rgba(184, 203, 209, .72);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 9px;
    font-weight: 800;
}

.lane-label[b-uwd829n3sj]::before {
    content: "";
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: var(--muted);
    box-shadow: 0 0 12px rgba(184, 203, 209, .26);
}

.lane-label.free[b-uwd829n3sj]::before {
    background: var(--calm);
    box-shadow: 0 0 14px rgba(101, 240, 198, .44);
}

.lane-label.deadline[b-uwd829n3sj]::before {
    background: var(--money);
    box-shadow: 0 0 14px rgba(245, 200, 107, .38);
}

.time-lane[b-uwd829n3sj] {
    display: grid;
    grid-auto-rows: minmax(38px, auto);
    gap: 8px;
    min-height: 310px;
}

.time-block[b-uwd829n3sj] {
    --span: 2;
    --tone: var(--calm);
    position: relative;
    display: grid;
    width: 100%;
    text-align: left;
    gap: 3px;
    min-height: calc(var(--span) * 36px);
    padding: 10px 10px 10px 50px;
    color: inherit;
    border-radius: 18px;
    background:
        radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--tone), transparent 78%), transparent 8rem),
        rgba(255,255,255,.045);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 78%);
    min-width: 0;
    font: inherit;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.time-block.done[b-uwd829n3sj],
.daily-commitment.done[b-uwd829n3sj] {
    border-color: color-mix(in srgb, var(--calm), transparent 54%);
    background:
        radial-gradient(circle at 0% 0%, rgba(101, 240, 198, .2), transparent 8rem),
        rgba(101, 240, 198, .09);
    box-shadow: 0 0 28px rgba(101, 240, 198, .14);
}

.time-block:hover[b-uwd829n3sj],
.daily-commitment:hover[b-uwd829n3sj] {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--tone), transparent 58%);
    box-shadow: 0 0 24px color-mix(in srgb, var(--tone), transparent 84%);
}

.time-block span[b-uwd829n3sj],
.time-block small[b-uwd829n3sj] {
    color: var(--muted);
    font-size: 12px;
}

.time-block strong[b-uwd829n3sj] {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.25;
    overflow-wrap: anywhere;
    word-break: normal;
}

.calendar-complete-button[b-uwd829n3sj] {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: rgba(237, 247, 246, .7);
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    box-shadow: inset 0 0 12px rgba(255, 255, 255, .04);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
    touch-action: none;
    transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.calendar-complete-button:hover[b-uwd829n3sj],
.calendar-complete-button:focus-visible[b-uwd829n3sj] {
    transform: scale(1.04);
    border-color: rgba(101, 240, 198, .42);
    box-shadow: 0 0 20px rgba(101, 240, 198, .18);
    outline: none;
}

.calendar-complete-button.is-complete[b-uwd829n3sj] {
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    border-color: rgba(101, 240, 198, .65);
    box-shadow: 0 0 24px rgba(101, 240, 198, .28);
}

.calendar-complete-button.is-holding[b-uwd829n3sj] {
    transform: scale(1.08);
}

.hold-dot[b-uwd829n3sj] {
    position: absolute;
    inset: -13px auto auto -13px;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: #03110f;
    background:
        radial-gradient(circle, color-mix(in srgb, var(--hold-color), white 22%) 0 28%, transparent 29%),
        conic-gradient(var(--hold-color) calc(var(--hold) * 1%), rgba(255, 255, 255, .13) 0);
    border-radius: 50%;
    filter: drop-shadow(0 0 18px color-mix(in srgb, var(--hold-color), transparent 36%));
    pointer-events: none;
    animation: hold-glow-b-uwd829n3sj 1s ease-in-out infinite alternate;
}

.hold-dot[b-uwd829n3sj]::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: inherit;
    background: radial-gradient(circle, rgba(255,255,255,.82), color-mix(in srgb, var(--hold-color), white 10%));
}

.hold-dot span[b-uwd829n3sj] {
    position: relative;
    z-index: 1;
    color: #03110f;
    font-size: 13px;
    font-weight: 950;
    line-height: 1;
    animation: hold-number-rise-b-uwd829n3sj .42s ease;
}

.completion-meta[b-uwd829n3sj] {
    width: fit-content;
    color: var(--calm) !important;
    font-weight: 780;
}

.calendar-quest-badge[b-uwd829n3sj] {
    --quest-tone: var(--tone);
    width: fit-content;
    min-height: 23px;
    display: inline-grid;
    place-items: center;
    padding: 0 8px;
    color: var(--quest-tone);
    background: color-mix(in srgb, var(--quest-tone), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--quest-tone), transparent 74%);
    border-radius: 999px;
    font-size: 11px;
    font-style: normal;
    font-weight: 820;
}

.empty-lane[b-uwd829n3sj] {
    display: grid;
    min-height: 120px;
    place-items: center;
    color: rgba(184, 203, 209, .42);
    border: 1px dashed rgba(255,255,255,.09);
    border-radius: 18px;
}

.commitment-stack[b-uwd829n3sj],
.deadline-stack[b-uwd829n3sj],
.opportunity-list[b-uwd829n3sj] {
    display: grid;
    gap: 9px;
}

.daily-commitment[b-uwd829n3sj] {
    --tone: var(--calm);
    position: relative;
    display: grid;
    width: 100%;
    text-align: left;
    gap: 4px;
    min-width: 0;
    padding: 11px 11px 11px 50px;
    color: inherit;
    border-radius: 16px;
    background:
        radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--tone), transparent 76%), transparent 8rem),
        rgba(101, 240, 198, .055);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 68%);
    box-shadow: 0 0 22px color-mix(in srgb, var(--tone), transparent 88%);
    font: inherit;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.daily-commitment[b-uwd829n3sj]::before {
    content: "mai térben";
    width: fit-content;
    padding: 2px 7px;
    color: color-mix(in srgb, var(--tone), white 16%);
    background: color-mix(in srgb, var(--tone), transparent 88%);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 72%);
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .09em;
    font-size: 9px;
    font-weight: 850;
}

.daily-commitment span[b-uwd829n3sj],
.daily-commitment small[b-uwd829n3sj] {
    color: var(--muted);
    font-size: 12px;
}

.daily-commitment strong[b-uwd829n3sj] {
    color: var(--ink);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.deadline-marker[b-uwd829n3sj],
.opportunity[b-uwd829n3sj] {
    --tone: var(--money);
    display: grid;
    gap: 4px;
    padding: 11px;
    border-radius: 16px;
    background: rgba(255,255,255,.035);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 80%);
    min-width: 0;
}

.deadline-marker.early[b-uwd829n3sj] {
    opacity: .82;
}

.deadline-marker.deadline[b-uwd829n3sj] {
    background: color-mix(in srgb, var(--tone), transparent 90%);
}

.deadline-marker span[b-uwd829n3sj],
.deadline-marker small[b-uwd829n3sj],
.opportunity span[b-uwd829n3sj],
.opportunity p[b-uwd829n3sj] {
    color: var(--muted);
    font-size: 12px;
}

.deadline-marker strong[b-uwd829n3sj],
.opportunity strong[b-uwd829n3sj] {
    color: var(--ink);
    font-size: 13px;
    overflow-wrap: anywhere;
}

.opportunity p[b-uwd829n3sj] {
    margin: 0;
    line-height: 1.45;
}

.opportunity-action[b-uwd829n3sj] {
    width: fit-content;
    min-height: 34px;
    margin-top: 4px;
    padding: 0 12px;
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    border: 1px solid rgba(101, 240, 198, .42);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(101, 240, 198, .2);
    font: inherit;
    font-size: 12px;
    font-weight: 850;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease;
}

.opportunity-action:hover[b-uwd829n3sj] {
    transform: translateY(-1px);
    box-shadow: 0 0 24px rgba(101, 240, 198, .3);
}

.opportunity[b-uwd829n3sj] {
    position: relative;
    overflow: hidden;
}

.opportunity[b-uwd829n3sj]::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--tone);
    opacity: .7;
    box-shadow: 0 0 16px var(--tone);
}

.quiet-note[b-uwd829n3sj] {
    margin: 0;
    color: var(--soft);
    line-height: 1.5;
}

.calendar-modal-backdrop[b-uwd829n3sj] {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: center;
    padding: 22px;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(1, 4, 9, .72);
    backdrop-filter: blur(16px);
}

.calendar-detail-modal[b-uwd829n3sj] {
    box-sizing: border-box;
    width: min(720px, calc(100vw - 44px));
    max-height: min(820px, calc(100vh - 44px));
    display: grid;
    gap: 16px;
    padding: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 88% 0%, rgba(101,240,198,.16), transparent 18rem),
        radial-gradient(circle at 8% 100%, rgba(150,169,255,.12), transparent 18rem),
        linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.026)),
        rgba(8, 17, 26, .94);
}

.modal-head[b-uwd829n3sj] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.modal-head h2[b-uwd829n3sj],
.modal-head p[b-uwd829n3sj] {
    margin: 0;
}

.modal-head p[b-uwd829n3sj] {
    margin-top: 6px;
    color: var(--soft);
}

.icon-button[b-uwd829n3sj] {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    color: var(--ink);
    background: rgba(255,255,255,.07);
    border: 1px solid var(--line);
    border-radius: 50%;
    font: inherit;
    font-size: 20px;
    cursor: pointer;
}

.detail-grid[b-uwd829n3sj] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.detail-grid article[b-uwd829n3sj],
.detail-panel[b-uwd829n3sj] {
    min-width: 0;
    padding: 13px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.085);
    border-radius: 18px;
}

.detail-grid span[b-uwd829n3sj] {
    display: block;
    color: var(--muted);
    font-size: 12px;
}

.detail-grid strong[b-uwd829n3sj] {
    display: block;
    margin-top: 5px;
    overflow-wrap: anywhere;
}

.detail-panel[b-uwd829n3sj] {
    display: grid;
    gap: 10px;
}

.impact-list[b-uwd829n3sj] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.impact-list span[b-uwd829n3sj] {
    min-height: 30px;
    display: inline-grid;
    place-items: center;
    padding: 0 10px;
    color: var(--tone);
    background: color-mix(in srgb, var(--tone), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 72%);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 820;
}

.modal-actions[b-uwd829n3sj] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.primary-action[b-uwd829n3sj] {
    display: inline-grid;
    min-height: 42px;
    padding: 0 18px;
    place-items: center;
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    border: 1px solid rgba(101, 240, 198, .42);
    border-radius: 999px;
    box-shadow: 0 0 18px rgba(101, 240, 198, .2);
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.completion-feedback[b-uwd829n3sj] {
    position: fixed;
    z-index: 55;
    right: 24px;
    bottom: 24px;
    width: min(380px, calc(100vw - 32px));
    display: grid;
    gap: 10px;
    padding: 18px;
    color: var(--ink);
    background:
        radial-gradient(circle at 88% 0%, rgba(101, 240, 198, .18), transparent 14rem),
        linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.032)),
        rgba(8, 17, 26, .96);
    border: 1px solid rgba(101, 240, 198, .24);
    border-radius: 22px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .42), 0 0 38px rgba(101, 240, 198, .14);
    backdrop-filter: blur(20px);
    animation: completion-in-b-uwd829n3sj .22s ease-out;
}

.completion-feedback .icon-button[b-uwd829n3sj] {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    flex-basis: 32px;
    font-size: 15px;
}

.completion-feedback strong[b-uwd829n3sj] {
    max-width: calc(100% - 38px);
    font-size: 18px;
    overflow-wrap: anywhere;
}

.completion-feedback p[b-uwd829n3sj],
.completion-feedback small[b-uwd829n3sj] {
    margin: 0;
    color: var(--soft);
    line-height: 1.45;
}

@keyframes completion-in-b-uwd829n3sj {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes hold-glow-b-uwd829n3sj {
    from {
        transform: scale(.96);
        filter: drop-shadow(0 0 12px color-mix(in srgb, var(--hold-color), transparent 44%));
    }

    to {
        transform: scale(1.04);
        filter: drop-shadow(0 0 24px color-mix(in srgb, var(--hold-color), transparent 24%));
    }
}

@keyframes hold-number-rise-b-uwd829n3sj {
    from {
        opacity: .3;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .calendar-layout[b-uwd829n3sj] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .calendar-hud[b-uwd829n3sj] {
        padding: 16px;
    }

    .calendar-topbar[b-uwd829n3sj],
    .section-head[b-uwd829n3sj] {
        display: grid;
    }

    .week-summary[b-uwd829n3sj] {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .calendar-grid[b-uwd829n3sj] {
        grid-template-columns: 1fr;
        overflow: visible;
    }

    .day-column[b-uwd829n3sj] {
        min-height: auto;
    }

    .detail-grid[b-uwd829n3sj] {
        grid-template-columns: 1fr 1fr;
    }

    .modal-actions[b-uwd829n3sj] {
        display: grid;
        grid-template-columns: 1fr;
    }

    .modal-actions .ghost-button[b-uwd829n3sj],
    .modal-actions .primary-action[b-uwd829n3sj] {
        width: 100%;
    }

    .completion-feedback[b-uwd829n3sj] {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 520px) {
    .detail-grid[b-uwd829n3sj] {
        grid-template-columns: 1fr;
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
:host[b-0i7lcyw8df] {
    color-scheme: dark;
}

.life-hud[b-0i7lcyw8df] {
    --panel: rgba(12, 22, 33, .52);
    --ink: #edf7f6;
    --muted: #8fa3ae;
    --soft: #b8cbd1;
    --line: rgba(186, 222, 232, .12);
    --calm: #65f0c6;
    --money: #f5c86b;
    --family: #ff8a7b;
    --creative: #96a9ff;
    --recovery: #8df7a7;
    --stress: #ff5b63;
    --shadow: 0 24px 90px rgba(0, 0, 0, .42);
    --glow-calm: 0 0 24px rgba(101, 240, 198, .36), 0 0 80px rgba(22, 168, 143, .16);
    min-height: 100vh;
    padding: clamp(30px, 3vw, 42px) 24px 24px;
    color: var(--ink);
    background:
        radial-gradient(circle at 50% -18%, rgba(101, 240, 198, .18), transparent 32rem),
        radial-gradient(circle at 88% 8%, rgba(245, 200, 107, .14), transparent 24rem),
        radial-gradient(circle at 6% 74%, rgba(150, 169, 255, .11), transparent 30rem),
        linear-gradient(180deg, #07101b 0%, #05080f 62%, #04070d 100%);
    position: relative;
    overflow: hidden;
}

.life-hud[b-0i7lcyw8df]::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 70%);
    opacity: .42;
}

button[b-0i7lcyw8df],
input[b-0i7lcyw8df],
a[b-0i7lcyw8df] {
    font: inherit;
}

button[b-0i7lcyw8df] {
    border: 0;
    cursor: pointer;
}

.topbar[b-0i7lcyw8df],
.hud-grid[b-0i7lcyw8df] {
    width: min(1460px, 100%);
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.topbar[b-0i7lcyw8df] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 62px;
    margin-bottom: 22px;
}

.brand[b-0i7lcyw8df] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sigil[b-0i7lcyw8df] {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--calm);
    background: radial-gradient(circle, rgba(101,240,198,.22), rgba(101,240,198,.05) 58%, transparent 60%), rgba(255,255,255,.03);
    border: 1px solid rgba(101, 240, 198, .28);
    border-radius: 50%;
    box-shadow: var(--glow-calm);
}

.sigil span[b-0i7lcyw8df] {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: inset 0 0 14px rgba(101, 240, 198, .42);
}

.brand h1[b-0i7lcyw8df],
.brand p[b-0i7lcyw8df],
.section-head h2[b-0i7lcyw8df],
.section-head h3[b-0i7lcyw8df],
.quest h3[b-0i7lcyw8df],
.activity h3[b-0i7lcyw8df] {
    margin: 0;
}

.brand h1[b-0i7lcyw8df] {
    font-family: var(--aeden-brand-font);
    font-size: 26px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: .03em;
}

.brand p[b-0i7lcyw8df],
.system-state[b-0i7lcyw8df],
.eyebrow[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 13px;
}

.brand p[b-0i7lcyw8df] {
    margin-top: 4px;
}

.system-state[b-0i7lcyw8df] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(20px);
}

.system-state a[b-0i7lcyw8df] {
    color: var(--calm);
    text-decoration: none;
    font-weight: 720;
}

.debug-toggle[b-0i7lcyw8df] {
    min-height: 28px;
    padding: 0 10px;
    color: rgb(255, 0, 0);
    background: rgba(255, 0, 0, .08);
    border: 1px solid rgba(255, 0, 0, .55);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 820;
}

.debug-toggle.active[b-0i7lcyw8df] {
    color: var(--calm);
    background: rgba(101, 240, 198, .08);
    border-color: rgba(101, 240, 198, .28);
}

.debug-hint[b-0i7lcyw8df],
.debug-hint *[b-0i7lcyw8df],
.debug-hint[b-0i7lcyw8df]::before,
.debug-hint[b-0i7lcyw8df]::after {
    color: rgb(255, 0, 0) !important;
    border-color: rgb(255, 0, 0) !important;
}

.debug-hint[b-0i7lcyw8df]::after {
    background: rgb(255, 0, 0) !important;
}

.prod-preview .debug-hint[b-0i7lcyw8df] {
    display: none !important;
}

.status-dot[b-0i7lcyw8df] {
    width: 8px;
    height: 8px;
    background: var(--calm);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--calm);
}

.hud-grid[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(480px, 1.18fr) minmax(330px, .72fr);
    gap: 22px;
    align-items: start;
}

.hud-column[b-0i7lcyw8df],
.quest-zone[b-0i7lcyw8df] {
    display: grid;
    gap: 22px;
    align-content: start;
}

.surface[b-0i7lcyw8df] {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)), var(--panel);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.surface[b-0i7lcyw8df]::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.13), transparent 28%, transparent 72%, rgba(255,255,255,.05));
    opacity: .38;
}

.section-head[b-0i7lcyw8df] {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.section-head h2[b-0i7lcyw8df] {
    font-size: 15px;
    font-weight: 720;
}

.section-note[b-0i7lcyw8df] {
    max-width: 520px;
    margin: 8px 0 0;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.45;
}

.eyebrow[b-0i7lcyw8df] {
    display: block;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
}

.icon-button[b-0i7lcyw8df],
.ghost-button[b-0i7lcyw8df],
.primary-action[b-0i7lcyw8df] {
    display: inline-grid;
    min-height: 42px;
    place-items: center;
    color: var(--ink);
    border-radius: 999px;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.icon-button[b-0i7lcyw8df] {
    width: 42px;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--line);
}

.ghost-button[b-0i7lcyw8df] {
    padding: 0 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid var(--line);
}

.primary-action[b-0i7lcyw8df] {
    padding: 0 20px;
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    box-shadow: var(--glow-calm);
    font-weight: 760;
}

.wide-action[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    width: fit-content;
    min-width: 180px;
}

.creation-actions[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.core-panel[b-0i7lcyw8df] {
    min-height: 630px;
    padding: 24px;
    display: grid;
    gap: 22px;
}

.core-stage[b-0i7lcyw8df] {
    display: grid;
    place-items: center;
    min-height: 400px;
    position: relative;
    z-index: 1;
}

.core-stage[b-0i7lcyw8df]::before,
.core-stage[b-0i7lcyw8df]::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.core-stage[b-0i7lcyw8df]::before {
    width: 92%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(101,240,198,.18), transparent 44%), conic-gradient(from 0deg, transparent, rgba(101,240,198,.22), transparent, rgba(245,200,107,.14), transparent);
    filter: blur(8px);
    opacity: .72;
    animation: slow-spin-b-0i7lcyw8df 18s linear infinite;
}

.core-stage[b-0i7lcyw8df]::after {
    width: 74%;
    aspect-ratio: 1;
    border: 1px solid rgba(101, 240, 198, .16);
    box-shadow: inset 0 0 70px rgba(101, 240, 198, .06);
}

.stability-core[b-0i7lcyw8df] {
    --score: 78;
    position: relative;
    display: grid;
    width: min(330px, 76vw);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 44%, rgba(237,247,246,.96) 0 2%, rgba(101,240,198,.34) 9%, rgba(14,51,55,.42) 36%, rgba(5,8,15,.9) 66%), conic-gradient(from 225deg, var(--calm) calc(var(--score) * 1%), rgba(255,255,255,.08) 0);
    box-shadow: inset 0 0 60px rgba(255,255,255,.09), inset 0 0 120px rgba(101,240,198,.13), 0 0 52px rgba(101,240,198,.28), 0 0 130px rgba(101,240,198,.13);
    animation: core-pulse-b-0i7lcyw8df 4.8s ease-in-out infinite;
}

.stability-core[b-0i7lcyw8df]::before {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: inherit;
    border: 1px solid rgba(221, 255, 248, .22);
}

.stability-core[b-0i7lcyw8df]::after {
    content: "";
    position: absolute;
    width: 118%;
    aspect-ratio: 1;
    border-radius: inherit;
    background: conic-gradient(from 90deg, transparent 0 14%, rgba(101,240,198,.72) 15%, transparent 16% 49%, rgba(245,200,107,.5) 50%, transparent 51% 82%, rgba(101,240,198,.55) 83%, transparent 84%);
    mask: radial-gradient(circle, transparent 67%, #000 68% 70%, transparent 71%);
    animation: slow-spin-b-0i7lcyw8df 22s linear infinite reverse;
}

.core-readout[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    text-align: center;
}

.score[b-0i7lcyw8df] {
    display: block;
    font-size: clamp(58px, 8vw, 86px);
    font-weight: 780;
    line-height: .86;
    text-shadow: 0 0 34px rgba(101, 240, 198, .42);
}

.state-label[b-0i7lcyw8df] {
    display: block;
    margin-top: 14px;
    color: var(--soft);
    font-size: 14px;
}

.core-caption[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.signal[b-0i7lcyw8df] {
    padding: 14px;
    min-height: 94px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
}

.signal b[b-0i7lcyw8df] {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
}

.signal-track[b-0i7lcyw8df] {
    height: 32px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
}

.signal-track span[b-0i7lcyw8df] {
    display: block;
    width: var(--value);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--tone), rgba(255,255,255,.72));
}

.today-focus[b-0i7lcyw8df],
.quick-capture[b-0i7lcyw8df],
.add-entry-panel[b-0i7lcyw8df],
.activity-panel[b-0i7lcyw8df],
.timeline-panel[b-0i7lcyw8df],
.week-panel[b-0i7lcyw8df],
.day-panel[b-0i7lcyw8df],
.planner-panel[b-0i7lcyw8df],
.reality-panel[b-0i7lcyw8df],
.rhythm-panel[b-0i7lcyw8df] {
    padding: 22px;
    display: grid;
    gap: 16px;
}

.today-focus[b-0i7lcyw8df] {
    background: radial-gradient(circle at 16% 8%, rgba(245, 200, 107, .18), transparent 18rem), linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.02)), rgba(20, 27, 38, .58);
}

.add-entry-panel[b-0i7lcyw8df] {
    background: radial-gradient(circle at 86% 0%, rgba(101,240,198,.16), transparent 12rem), linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)), rgba(12, 22, 33, .52);
}

.focus-list[b-0i7lcyw8df],
.activity-list[b-0i7lcyw8df],
.daily-deck[b-0i7lcyw8df],
.timeline[b-0i7lcyw8df],
.week-calendar[b-0i7lcyw8df],
.day-flow[b-0i7lcyw8df],
.reality-options[b-0i7lcyw8df],
.step-list[b-0i7lcyw8df] {
    display: grid;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.daily-deck[b-0i7lcyw8df] {
    gap: 10px;
}

.deck-card[b-0i7lcyw8df] {
    --tone: var(--calm);
    --score: 50;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    min-height: 220px;
    padding: 18px;
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at 82% 20%, color-mix(in srgb, var(--tone), transparent 78%), transparent 12rem),
        linear-gradient(145deg, color-mix(in srgb, var(--tone), transparent 91%), rgba(255,255,255,.035)),
        rgba(12, 22, 33, .72);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 70%);
    box-shadow: 0 20px 54px rgba(0,0,0,.26), 0 0 34px color-mix(in srgb, var(--tone), transparent 90%);
}

.deck-card[b-0i7lcyw8df]::before {
    content: "";
    position: absolute;
    inset: auto -20% -52% -20%;
    height: 72%;
    background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--tone), transparent 78%), transparent 54%);
    opacity: .8;
    pointer-events: none;
}

.deck-card.loading[b-0i7lcyw8df],
.deck-card.empty[b-0i7lcyw8df] {
    min-height: 150px;
    align-content: center;
}

.deck-nav-strip[b-0i7lcyw8df] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-height: 36px;
}

.deck-nav-strip span[b-0i7lcyw8df] {
    min-width: 48px;
    color: var(--soft);
    text-align: center;
    font-size: 12px;
    font-weight: 760;
}

.deck-nav-strip button:disabled[b-0i7lcyw8df] {
    opacity: .35;
    cursor: default;
}

.deck-score[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    align-content: center;
    border-radius: 50%;
    color: var(--ink);
    background:
        conic-gradient(var(--tone) calc(var(--score) * 1%), rgba(255,255,255,.1) 0),
        rgba(255,255,255,.04);
    box-shadow: 0 0 26px color-mix(in srgb, var(--tone), transparent 72%);
}

.deck-score[b-0i7lcyw8df]::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: inherit;
    background: rgba(17, 27, 39, .94);
}

.deck-score span[b-0i7lcyw8df],
.deck-score small[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
}

.deck-score span[b-0i7lcyw8df] {
    font-size: 25px;
    font-weight: 900;
}

.deck-score small[b-0i7lcyw8df] {
    margin-top: -5px;
    color: var(--soft);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.deck-copy[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 9px;
    min-width: 0;
}

.deck-copy h3[b-0i7lcyw8df] {
    margin: 0;
    color: var(--ink);
    font-size: 19px;
    line-height: 1.12;
}

.deck-copy p[b-0i7lcyw8df] {
    margin: 0;
    color: var(--soft);
    line-height: 1.42;
}

.deck-meta[b-0i7lcyw8df],
.deck-impact-line[b-0i7lcyw8df],
.deck-actions[b-0i7lcyw8df] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.deck-meta[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 13px;
}

.deck-impact-line[b-0i7lcyw8df] {
    font-size: 12px;
    font-weight: 760;
}

.deck-actions[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.018)),
        rgba(2, 8, 14, .16);
}

.deck-primary-actions[b-0i7lcyw8df],
.deck-secondary-actions[b-0i7lcyw8df] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.deck-action-head[b-0i7lcyw8df] {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
}

.deck-action-head span[b-0i7lcyw8df] {
    color: var(--ink);
    font-size: 12px;
    font-weight: 850;
}

.deck-action-head small[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
    text-align: right;
}

.deck-primary-actions[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
}

.deck-secondary-actions[b-0i7lcyw8df] {
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.055);
}

.deck-choice[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 8px;
    align-items: center;
    min-height: 48px;
    padding: 0 14px 0 10px;
    color: var(--ink);
    border: 1px solid rgba(255,255,255,.095);
    border-radius: 999px;
    font: inherit;
    font-size: 14px;
    font-weight: 880;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.deck-choice i[b-0i7lcyw8df] {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    font-size: 12px;
}

.deck-choice span[b-0i7lcyw8df] {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.deck-choice:hover[b-0i7lcyw8df] {
    transform: translateY(-1px);
}

.deck-choice-accept[b-0i7lcyw8df] {
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    border-color: rgba(101, 240, 198, .45);
    box-shadow: var(--glow-calm);
}

.deck-choice-accept i[b-0i7lcyw8df] {
    background: rgba(3, 17, 15, .12);
}

.deck-choice-delay[b-0i7lcyw8df] {
    color: var(--soft);
    background:
        radial-gradient(circle at 100% 20%, rgba(245,200,107,.12), transparent 6rem),
        rgba(255,255,255,.052);
}

.deck-choice-delay i[b-0i7lcyw8df] {
    color: var(--money);
    background: rgba(245,200,107,.09);
}

.deck-actions .next-day-action[b-0i7lcyw8df] {
    color: var(--soft);
    background: rgba(255,255,255,.045);
}

.quiet-action[b-0i7lcyw8df] {
    display: inline-grid;
    min-height: 34px;
    padding: 0 12px;
    place-items: center;
    color: var(--muted);
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.045);
    border-radius: 999px;
    font: inherit;
    font-size: 12px;
    font-weight: 760;
    cursor: pointer;
    transition: color .18s ease, background .18s ease;
}

.quiet-action:hover[b-0i7lcyw8df] {
    color: var(--soft);
    background: rgba(255,255,255,.055);
}

.deck-factor-grid[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.deck-factor-grid span[b-0i7lcyw8df] {
    --value: 0;
    display: grid;
    gap: 6px;
    min-width: 0;
    padding: 10px;
    color: var(--muted);
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    font-size: 11px;
}

.deck-factor-grid span[b-0i7lcyw8df]::after {
    content: "";
    display: block;
    width: calc(var(--value) * 4%);
    max-width: 100%;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--calm), rgba(255,255,255,.42));
}

.deck-factor-grid b[b-0i7lcyw8df] {
    color: var(--ink);
}

.deck-explanation[b-0i7lcyw8df] {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(101,240,198,.055), rgba(255,255,255,.025)),
        rgba(255,255,255,.025);
}

.deck-explanation summary[b-0i7lcyw8df] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 12px;
    color: var(--soft);
    cursor: pointer;
    font-size: 12px;
    font-weight: 820;
    list-style: none;
}

.deck-explanation summary[b-0i7lcyw8df]::-webkit-details-marker {
    display: none;
}

.deck-explanation summary[b-0i7lcyw8df]::after {
    content: "+";
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--calm);
    border: 1px solid rgba(101,240,198,.22);
    border-radius: 50%;
    background: rgba(101,240,198,.08);
}

.deck-explanation[open] summary[b-0i7lcyw8df]::after {
    content: "−";
}

.deck-explanation > div[b-0i7lcyw8df] {
    display: grid;
    gap: 8px;
    padding: 0 12px 12px;
}

.deck-explanation article[b-0i7lcyw8df] {
    display: grid;
    gap: 3px;
    padding: 10px;
    border-radius: 13px;
    background: rgba(255,255,255,.035);
}

.deck-explanation article span[b-0i7lcyw8df] {
    color: var(--calm);
    font-size: 10px;
    font-weight: 820;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.deck-explanation article p[b-0i7lcyw8df] {
    margin: 0;
    color: var(--soft);
    font-size: 12px;
    line-height: 1.42;
}

.deck-queue-preview[b-0i7lcyw8df],
.accepted-today-lane[b-0i7lcyw8df] {
    display: grid;
    gap: 8px;
}

.deck-queue-preview button[b-0i7lcyw8df],
.accepted-card[b-0i7lcyw8df] {
    --tone: var(--calm);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 12px;
    color: var(--soft);
    text-align: left;
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--tone), transparent 92%), rgba(255,255,255,.03)),
        rgba(255,255,255,.035);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 82%);
    border-radius: 16px;
}

.deck-queue-preview button[b-0i7lcyw8df] {
    opacity: .72;
    transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
}

.deck-queue-preview button:hover[b-0i7lcyw8df] {
    opacity: 1;
    transform: translateX(2px);
    border-color: color-mix(in srgb, var(--tone), transparent 62%);
}

.deck-queue-preview strong[b-0i7lcyw8df],
.accepted-card strong[b-0i7lcyw8df] {
    min-width: 0;
    overflow: hidden;
    color: var(--ink);
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.deck-queue-preview span:not(.eyebrow)[b-0i7lcyw8df],
.accepted-card span[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.32;
}

.accepted-today-lane[b-0i7lcyw8df] {
    padding: 14px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 0%, rgba(101,240,198,.12), transparent 9rem),
        rgba(101,240,198,.045);
    border: 1px solid rgba(101,240,198,.13);
}

.accepted-lane-head[b-0i7lcyw8df] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.accepted-lane-head > div[b-0i7lcyw8df] {
    display: grid;
    gap: 3px;
}

.accepted-lane-head strong[b-0i7lcyw8df] {
    color: var(--ink);
    font-size: 13px;
}

.accepted-lane-head small[b-0i7lcyw8df] {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    color: #03110f;
    background: var(--calm);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    box-shadow: var(--glow-calm);
}

.accepted-card[b-0i7lcyw8df] {
    grid-template-columns: 1fr 40px;
}

.accepted-card > div[b-0i7lcyw8df] {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.daily-queue[b-0i7lcyw8df] {
    display: grid;
    gap: 4px;
    margin-top: 2px;
}

.focus-item[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(245,200,107,.12), rgba(101,240,198,.055)), rgba(255,255,255,.04);
    border: 1px solid rgba(245,200,107,.15);
}

.focus-item h3[b-0i7lcyw8df] {
    margin: 0 0 7px;
    font-size: 18px;
}

.focus-impact[b-0i7lcyw8df] {
    display: grid;
    gap: 6px;
    color: var(--soft);
    font-size: 14px;
}

.capture-field[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    position: relative;
    z-index: 1;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 0 44px rgba(101, 240, 198, .07);
}

.capture-field input[b-0i7lcyw8df] {
    min-width: 0;
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    color: var(--ink);
    background: transparent;
    border: 0;
    outline: 0;
}

.add-orb[b-0i7lcyw8df] {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #c8ffed);
    border-radius: 50%;
    box-shadow: var(--glow-calm);
    font-size: 26px;
    font-weight: 520;
}

.input-examples[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.input-examples button[b-0i7lcyw8df] {
    min-height: 32px;
    padding: 0 12px;
    color: var(--soft);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
}

.input-examples button:hover[b-0i7lcyw8df] {
    color: var(--ink);
    border-color: rgba(101, 240, 198, .28);
}

.schedule-controls[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 1.45fr) minmax(160px, .82fr) minmax(124px, .62fr) minmax(105px, .48fr);
    gap: 10px;
}

.schedule-controls label[b-0i7lcyw8df],
.manual-quests[b-0i7lcyw8df],
.day-picker[b-0i7lcyw8df] {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
}

.schedule-controls select[b-0i7lcyw8df],
.schedule-controls input[type="date"][b-0i7lcyw8df],
.schedule-controls input[type="number"][b-0i7lcyw8df],
.schedule-controls input[type="time"][b-0i7lcyw8df] {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 0 12px;
    color: var(--ink);
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    outline: 0;
}

.schedule-controls input[type="date"][b-0i7lcyw8df] {
    color-scheme: dark;
}

.scheduling-mode-panel[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 80% 0%, rgba(101,240,198,.12), transparent 14rem),
        rgba(255,255,255,.035);
    border: 1px solid rgba(101,240,198,.14);
}

.compact-head[b-0i7lcyw8df] {
    margin-bottom: -2px;
}

.compact-head h3[b-0i7lcyw8df] {
    margin: 0;
    font-size: 17px;
}

.scheduling-mode-options[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.scheduling-mode-options button[b-0i7lcyw8df] {
    display: grid;
    gap: 6px;
    min-height: 86px;
    padding: 12px;
    text-align: left;
    color: var(--soft);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
}

.scheduling-mode-options button.selected[b-0i7lcyw8df] {
    color: var(--ink);
    background: linear-gradient(135deg, rgba(101,240,198,.16), rgba(150,169,255,.07));
    border-color: rgba(101,240,198,.34);
    box-shadow: 0 0 26px rgba(101,240,198,.12);
}

.scheduling-mode-options strong[b-0i7lcyw8df] {
    font-size: 13px;
}

.scheduling-mode-options span[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.35;
}

.scheduling-mode-settings[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.scheduling-mode-settings > label:not(.toggle-row)[b-0i7lcyw8df] {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 12px;
}

.scheduling-mode-settings input[type="range"][b-0i7lcyw8df] {
    accent-color: var(--calm);
}

.energy-readout[b-0i7lcyw8df] {
    color: var(--calm);
    font-weight: 820;
}

.deadline-state[b-0i7lcyw8df] {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 12px;
    color: var(--soft);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 720;
}

.date-field[b-0i7lcyw8df] {
    min-width: 0;
}

.day-picker > div[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: repeat(7, minmax(34px, 1fr));
    gap: 6px;
    min-height: 42px;
    padding: 5px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 14px;
}

.day-picker button[b-0i7lcyw8df] {
    color: var(--soft);
    background: transparent;
    border-radius: 10px;
    font-size: 12px;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease;
}

.day-picker button.selected[b-0i7lcyw8df] {
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    box-shadow: 0 0 18px rgba(101, 240, 198, .22);
    font-weight: 780;
}

.toggle-row[b-0i7lcyw8df] {
    grid-template-columns: auto 1fr;
    align-content: end;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    color: var(--soft) !important;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
}

.recurrence-panel[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 20px;
    background:
        radial-gradient(circle at 92% 0%, rgba(101,240,198,.09), transparent 11rem),
        rgba(255,255,255,.032);
}

.recurrence-panel.active[b-0i7lcyw8df] {
    border-color: rgba(101, 240, 198, .18);
    background:
        radial-gradient(circle at 92% 0%, rgba(101,240,198,.14), transparent 12rem),
        radial-gradient(circle at 6% 100%, rgba(245,200,107,.08), transparent 11rem),
        rgba(255,255,255,.042);
}

.recurrence-head[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
}

.recurrence-head p[b-0i7lcyw8df] {
    margin: 0;
    color: var(--soft);
    font-size: 13px;
    line-height: 1.45;
}

.recurrence-toggle[b-0i7lcyw8df] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 138px;
    width: fit-content;
    cursor: pointer;
}

.recurrence-end-toggle[b-0i7lcyw8df] {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    cursor: pointer;
}

.recurrence-toggle input[b-0i7lcyw8df],
.recurrence-end-toggle input[b-0i7lcyw8df] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.recurrence-toggle span[b-0i7lcyw8df],
.recurrence-end-toggle span[b-0i7lcyw8df] {
    position: relative;
    width: 34px;
    height: 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.12);
}

.recurrence-toggle span[b-0i7lcyw8df]::before,
.recurrence-end-toggle span[b-0i7lcyw8df]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--muted);
    transform: translateY(-50%);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.recurrence-toggle:has(input:checked)[b-0i7lcyw8df],
.recurrence-end-toggle:has(input:checked)[b-0i7lcyw8df] {
    border-color: rgba(101, 240, 198, .25);
    background: rgba(101, 240, 198, .075);
}

.recurrence-toggle:has(input:checked) span[b-0i7lcyw8df]::before,
.recurrence-end-toggle:has(input:checked) span[b-0i7lcyw8df]::before {
    background: var(--calm);
    box-shadow: var(--glow-calm);
    transform: translate(14px, -50%);
}

.recurrence-toggle b[b-0i7lcyw8df],
.recurrence-end-toggle b[b-0i7lcyw8df] {
    color: var(--soft);
    font-weight: 680;
    white-space: nowrap;
    line-height: 1;
}

.recurrence-body[b-0i7lcyw8df] {
    display: grid;
    gap: 12px;
    animation: rise-b-0i7lcyw8df .22s ease both;
}

.recurrence-frequency[b-0i7lcyw8df],
.recurrence-days[b-0i7lcyw8df] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.recurrence-frequency button[b-0i7lcyw8df],
.recurrence-days button[b-0i7lcyw8df],
.recurrence-stepper button[b-0i7lcyw8df] {
    min-height: 34px;
    padding: 0 12px;
    color: var(--soft);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
}

.recurrence-days button[b-0i7lcyw8df] {
    min-width: 40px;
}

.recurrence-frequency button.selected[b-0i7lcyw8df],
.recurrence-days button.selected[b-0i7lcyw8df] {
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    box-shadow: 0 0 18px rgba(101, 240, 198, .2);
    font-weight: 780;
}

.recurrence-settings[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: 1fr auto minmax(150px, .62fr);
    gap: 10px;
    align-items: end;
}

.recurrence-stepper[b-0i7lcyw8df] {
    display: flex;
    min-height: 42px;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    color: var(--muted);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
}

.recurrence-stepper button[b-0i7lcyw8df] {
    display: grid;
    width: 28px;
    min-height: 28px;
    padding: 0;
    place-items: center;
    color: var(--ink);
    border-radius: 50%;
}

.recurrence-stepper strong[b-0i7lcyw8df] {
    min-width: 18px;
    color: var(--ink);
    text-align: center;
}

.recurrence-end-date[b-0i7lcyw8df] {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
}

.recurrence-end-date input[b-0i7lcyw8df] {
    min-height: 42px;
    min-width: 145px;
    padding: 0 12px;
    color: var(--ink);
    color-scheme: dark;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    outline: 0;
}

.recurrence-summary[b-0i7lcyw8df] {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--soft);
    font-size: 13px;
}

.detail-recurrence-editor[b-0i7lcyw8df] {
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 0%, rgba(101, 240, 198, .13), transparent 13rem),
        radial-gradient(circle at 2% 100%, rgba(245, 200, 107, .07), transparent 12rem),
        linear-gradient(145deg, rgba(255,255,255,.048), rgba(255,255,255,.024));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.detail-recurrence-editor .section-head[b-0i7lcyw8df] {
    align-items: end;
}

.detail-recurrence-editor .section-head h3[b-0i7lcyw8df] {
    margin: 4px 0 0;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: 0;
}

.detail-recurrence-editor .recurrence-tabs[b-0i7lcyw8df],
.detail-recurrence-editor .weekday-picker[b-0i7lcyw8df] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-recurrence-editor .recurrence-tabs button[b-0i7lcyw8df] {
    min-height: 38px;
    padding: 0 15px;
    color: var(--soft);
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
    transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.detail-recurrence-editor .recurrence-tabs button:hover[b-0i7lcyw8df],
.detail-recurrence-editor .weekday-picker button:hover[b-0i7lcyw8df],
.detail-recurrence-editor .recurrence-settings button:hover[b-0i7lcyw8df] {
    transform: translateY(-1px);
    border-color: rgba(101, 240, 198, .2);
}

.detail-recurrence-editor .recurrence-tabs button.selected[b-0i7lcyw8df] {
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    border-color: rgba(101, 240, 198, .42);
    box-shadow: var(--glow-calm);
    font-weight: 800;
}

.detail-recurrence-editor .recurrence-settings[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: end;
}

.detail-recurrence-editor .recurrence-settings label[b-0i7lcyw8df] {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: var(--soft);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.085);
    border-radius: 16px;
}

.detail-recurrence-editor .recurrence-settings label > span:first-child[b-0i7lcyw8df],
.detail-recurrence-editor .recurrence-settings label:not(.recurrence-end-toggle)[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 13px;
}

.detail-recurrence-editor .recurrence-settings input[type="date"][b-0i7lcyw8df] {
    min-height: 34px;
    width: 100%;
    min-width: 0;
    padding: 0 10px;
    color: var(--ink);
    color-scheme: dark;
    background: rgba(5, 8, 15, .38);
    border: 1px solid rgba(255,255,255,.105);
    border-radius: 12px;
    outline: 0;
}

.detail-recurrence-editor .recurrence-settings input[type="date"]:focus-visible[b-0i7lcyw8df] {
    border-color: rgba(101, 240, 198, .42);
    box-shadow: 0 0 0 3px rgba(101, 240, 198, .12);
}

.detail-recurrence-editor .recurrence-settings button[b-0i7lcyw8df] {
    display: grid;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    padding: 0;
    place-items: center;
    color: var(--ink);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.105);
    border-radius: 50%;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.detail-recurrence-editor .recurrence-settings strong[b-0i7lcyw8df] {
    min-width: 22px;
    color: var(--ink);
    font-size: 16px;
    text-align: center;
}

.detail-recurrence-editor .recurrence-end-toggle[b-0i7lcyw8df] {
    justify-content: flex-start;
    cursor: pointer;
}

.detail-recurrence-editor .recurrence-end-toggle input[b-0i7lcyw8df] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.detail-recurrence-editor .recurrence-end-toggle > span[b-0i7lcyw8df] {
    position: relative;
    width: 36px;
    height: 22px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.12);
}

.detail-recurrence-editor .recurrence-end-toggle > span[b-0i7lcyw8df]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--muted);
    transform: translateY(-50%);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.detail-recurrence-editor .recurrence-end-toggle:has(input:checked) > span[b-0i7lcyw8df]::before {
    background: var(--calm);
    box-shadow: var(--glow-calm);
    transform: translate(14px, -50%);
}

.detail-recurrence-editor .recurrence-end-toggle b[b-0i7lcyw8df] {
    color: var(--soft);
    font-weight: 780;
    white-space: nowrap;
}

.detail-recurrence-editor .weekday-picker button[b-0i7lcyw8df] {
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    color: var(--soft);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.085);
    border-radius: 999px;
    transition: transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.detail-recurrence-editor .weekday-picker button.selected[b-0i7lcyw8df] {
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    border-color: rgba(101, 240, 198, .42);
    box-shadow: 0 0 18px rgba(101, 240, 198, .2);
    font-weight: 800;
}

.detail-recurrence-editor .recurrence-summary[b-0i7lcyw8df] {
    margin: 0;
    padding-top: 2px;
    line-height: 1.45;
}

@media (max-width: 720px) {
    .detail-recurrence-editor .recurrence-settings[b-0i7lcyw8df] {
        grid-template-columns: 1fr;
    }
}

.manual-quests[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
}

.manual-quests > div[b-0i7lcyw8df] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quest-toggle[b-0i7lcyw8df] {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 0 10px;
    color: var(--soft);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
}

.quest-toggle:has(input:checked)[b-0i7lcyw8df] {
    color: var(--ink);
    border-color: rgba(101, 240, 198, .3);
    background: rgba(101, 240, 198, .08);
}

.quest-toggle-alias[b-0i7lcyw8df],
.sidequest-entry-badge[b-0i7lcyw8df] {
    --tone: var(--calm);
    display: inline-grid;
    min-height: 24px;
    place-items: center;
    padding: 0 8px;
    color: var(--tone);
    background: color-mix(in srgb, var(--tone), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 74%);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 820;
    box-shadow: 0 0 14px color-mix(in srgb, var(--tone), transparent 84%);
}

.sidequest-entry-badge[b-0i7lcyw8df] {
    flex: 0 0 auto;
}

.ai-preview[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    padding: 16px;
    border-radius: 22px;
    background: rgba(101, 240, 198, .08);
    border: 1px solid rgba(101, 240, 198, .16);
}

.ai-preview.is-visible[b-0i7lcyw8df] {
    display: grid;
    gap: 14px;
    animation: rise-b-0i7lcyw8df .26s ease both;
}

.activity-impact-editor[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(150, 169, 255, .065);
    border: 1px solid rgba(150, 169, 255, .14);
    animation: rise-b-0i7lcyw8df .24s ease both;
}

.activity-impact-editor h3[b-0i7lcyw8df] {
    margin: 0;
    font-size: 18px;
}

.compact-list[b-0i7lcyw8df] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.modal-backdrop[b-0i7lcyw8df] {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    padding: 22px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: auto;
    background: rgba(1, 4, 9, .72);
    backdrop-filter: blur(16px);
    animation: rise-b-0i7lcyw8df .18s ease both;
}

.activity-modal[b-0i7lcyw8df],
.activity-detail-modal[b-0i7lcyw8df],
.dimension-insight-modal[b-0i7lcyw8df],
.sidequest-detail-modal[b-0i7lcyw8df],
.sidequest-modal[b-0i7lcyw8df] {
    box-sizing: border-box;
    width: min(760px, 100%);
    max-width: calc(100vw - 44px);
    max-height: min(860px, calc(100vh - 44px));
    padding: 24px;
    display: grid;
    gap: 16px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    touch-action: auto;
    background: radial-gradient(circle at 88% 0%, rgba(101,240,198,.16), transparent 18rem), radial-gradient(circle at 8% 100%, rgba(150,169,255,.12), transparent 18rem), linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.026)), rgba(8, 17, 26, .92);
}

.sidequest-modal[b-0i7lcyw8df] {
    width: min(880px, 100%);
}

.sidequest-detail-modal[b-0i7lcyw8df] {
    width: min(980px, 100%);
}

.activity-detail-modal[b-0i7lcyw8df] {
    width: min(720px, 100%);
}

.activity-detail-modal *[b-0i7lcyw8df],
.activity-detail-modal *[b-0i7lcyw8df]::before,
.activity-detail-modal *[b-0i7lcyw8df]::after {
    box-sizing: border-box;
}

.activity-detail-modal > *[b-0i7lcyw8df],
.detail-form[b-0i7lcyw8df],
.detail-form label[b-0i7lcyw8df],
.detail-recurrence-editor[b-0i7lcyw8df],
.detail-recurrence-editor > *[b-0i7lcyw8df],
.detail-recurrence-editor .recurrence-settings[b-0i7lcyw8df],
.detail-recurrence-editor .recurrence-settings label[b-0i7lcyw8df],
.detail-readonly-note[b-0i7lcyw8df] {
    min-width: 0;
    max-width: 100%;
}

.dimension-insight-modal[b-0i7lcyw8df] {
    width: min(680px, 100%);
}

.modal-head[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.modal-head h2[b-0i7lcyw8df] {
    margin: 0;
    font-size: 22px;
}

.sidequest-form[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.detail-form[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.3fr .82fr .7fr .72fr;
    gap: 12px;
}

.detail-form label[b-0i7lcyw8df] {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
}

.detail-form label:first-child[b-0i7lcyw8df] {
    grid-column: 1 / -1;
}

.detail-form input[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    pointer-events: auto;
    touch-action: manipulation;
    min-height: 44px;
    min-width: 0;
    width: 100%;
    padding: 0 13px;
    color: var(--ink);
    color-scheme: dark;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    outline: 0;
}

.detail-form input:disabled[b-0i7lcyw8df] {
    color: rgba(237,247,246,.62);
    background: rgba(255,255,255,.025);
}

.detail-readonly-note[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    padding: 12px 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
    border: 1px solid rgba(255, 209, 102, .18);
    border-radius: 18px;
    background: rgba(255, 209, 102, .065);
    overflow-wrap: anywhere;
}

.detail-deadline-toggle[b-0i7lcyw8df] {
    grid-template-columns: auto auto;
    gap: 9px;
    justify-content: center;
    cursor: pointer;
}

.detail-deadline-toggle input[b-0i7lcyw8df] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.detail-deadline-toggle span[b-0i7lcyw8df] {
    position: relative;
    width: 34px;
    height: 20px;
    border-radius: 999px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.12);
}

.detail-deadline-toggle span[b-0i7lcyw8df]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--muted);
    transform: translateY(-50%);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.detail-deadline-toggle:has(input:checked)[b-0i7lcyw8df] {
    border-color: rgba(101, 240, 198, .25);
    background: rgba(101, 240, 198, .075);
}

.detail-deadline-toggle:has(input:checked) span[b-0i7lcyw8df]::before {
    background: var(--calm);
    box-shadow: var(--glow-calm);
    transform: translate(14px, -50%);
}

.detail-impact-panel[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(101, 240, 198, .14);
    border-radius: 20px;
    background: rgba(101, 240, 198, .055);
}

.detail-completion-panel[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(101, 240, 198, .18);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(101, 240, 198, .09), rgba(150, 169, 255, .055));
}

.detail-completion-panel strong[b-0i7lcyw8df] {
    font-size: 16px;
}

.detail-completion-panel p[b-0i7lcyw8df] {
    margin: 0;
    color: var(--soft);
}

.detail-completion-panel div[b-0i7lcyw8df] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 13px;
}

.detail-impact-list[b-0i7lcyw8df] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-impact-list span[b-0i7lcyw8df] {
    min-height: 32px;
    padding: 7px 10px;
    color: var(--tone);
    background: color-mix(in srgb, var(--tone), transparent 91%);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 74%);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 760;
}

.sidequest-form label[b-0i7lcyw8df] {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 12px;
}

.sidequest-form label:nth-child(2)[b-0i7lcyw8df] {
    grid-column: 1 / -1;
}

.sidequest-form input[b-0i7lcyw8df],
.sidequest-form textarea[b-0i7lcyw8df] {
    width: 100%;
    color: var(--ink);
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    outline: 0;
}

.sidequest-form input[b-0i7lcyw8df] {
    min-height: 46px;
    padding: 0 13px;
}

.sidequest-form textarea[b-0i7lcyw8df] {
    min-height: 108px;
    padding: 13px;
    resize: vertical;
    line-height: 1.45;
}

.sidequest-primary-toggle[b-0i7lcyw8df] {
    grid-column: 1 / -1;
    width: fit-content;
}

.sidequest-detail-grid[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
    gap: 16px;
}

.detail-edit-form[b-0i7lcyw8df] {
    align-content: start;
}

.alias-input-row[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.alias-input-row .ghost-button[b-0i7lcyw8df] {
    white-space: nowrap;
}

.sidequest-form small[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 11px;
}

.sidequest-color-field[b-0i7lcyw8df] {
    grid-column: 1 / -1;
    display: grid;
    gap: 9px;
    color: var(--muted);
    font-size: 12px;
}

.sidequest-color-palette[b-0i7lcyw8df] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sidequest-color-palette button[b-0i7lcyw8df] {
    --tone: var(--calm);
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid color-mix(in srgb, var(--tone), transparent 62%);
    border-radius: 50%;
    background: color-mix(in srgb, var(--tone), transparent 88%);
    box-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 82%);
}

.sidequest-color-palette button span[b-0i7lcyw8df] {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--tone);
    box-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 38%);
}

.sidequest-color-palette button.selected[b-0i7lcyw8df] {
    border-color: color-mix(in srgb, var(--tone), white 8%);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--tone), transparent 78%), 0 0 24px color-mix(in srgb, var(--tone), transparent 56%);
}

.sidequest-detail-aside[b-0i7lcyw8df] {
    display: grid;
    gap: 12px;
    align-content: start;
}

.alias-preview[b-0i7lcyw8df] {
    --tone: var(--calm);
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--tone), transparent 72%);
    border-radius: 22px;
    background:
        radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--tone), transparent 78%), transparent 12rem),
        rgba(255,255,255,.045);
}

.alias-preview span[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.alias-preview strong[b-0i7lcyw8df] {
    color: var(--tone);
    font-size: 28px;
    line-height: 1;
    text-shadow: 0 0 22px color-mix(in srgb, var(--tone), transparent 56%);
}

.sidequest-activity-panel[b-0i7lcyw8df],
.fog-placeholder[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    background: rgba(255,255,255,.035);
}

.sidequest-activity-panel h3[b-0i7lcyw8df] {
    margin: 0;
    font-size: 18px;
}

.sidequest-activity-list[b-0i7lcyw8df] {
    display: grid;
    gap: 9px;
}

.sidequest-activity-list article[b-0i7lcyw8df] {
    display: grid;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
}

.sidequest-activity-list article > div:first-child[b-0i7lcyw8df] {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.sidequest-activity-list span[b-0i7lcyw8df],
.fog-placeholder p[b-0i7lcyw8df] {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.fog-steps[b-0i7lcyw8df] {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0 0 0 18px;
    color: var(--ink);
    font-size: 13px;
}

.fog-placeholder .ghost-button[b-0i7lcyw8df],
.compact-ai-action[b-0i7lcyw8df] {
    justify-self: start;
}

.sidequest-progress-breakdown[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.sidequest-progress-breakdown span[b-0i7lcyw8df] {
    display: grid;
    gap: 4px;
    min-height: 56px;
    padding: 9px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
}

.sidequest-progress-breakdown span.complete[b-0i7lcyw8df] {
    border-color: rgba(101, 240, 198, .18);
    background: rgba(101, 240, 198, .06);
}

.sidequest-progress-breakdown span.muted[b-0i7lcyw8df] {
    opacity: .72;
}

.sidequest-progress-breakdown small[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.sidequest-progress-breakdown b[b-0i7lcyw8df] {
    color: var(--ink);
    font-size: 13px;
}

.estimate-note[b-0i7lcyw8df] {
    margin: 0;
    color: var(--muted) !important;
    font-size: 12px !important;
}

.sidequest-total-panel[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(101, 240, 198, .16);
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 0%, rgba(101,240,198,.14), transparent 13rem),
        rgba(101,240,198,.045);
}

.sidequest-total-panel strong[b-0i7lcyw8df] {
    color: var(--calm);
    font-size: 42px;
    line-height: .95;
    text-shadow: var(--glow-calm);
}

.sidequest-total-panel p[b-0i7lcyw8df] {
    max-width: 52rem;
    margin: 0;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.45;
}

.dimension-insight-hero[b-0i7lcyw8df] {
    --tone: var(--calm);
    --score: 50;
    position: relative;
    z-index: 1;
    display: grid;
    gap: 10px;
    padding: 20px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--tone), transparent 74%);
    border-radius: 22px;
    background:
        radial-gradient(circle at 82% 10%, color-mix(in srgb, var(--tone), transparent 72%), transparent 14rem),
        rgba(255,255,255,.04);
}

.dimension-insight-hero strong[b-0i7lcyw8df] {
    color: var(--ink);
    font-size: clamp(58px, 10vw, 86px);
    line-height: .9;
    text-shadow: 0 0 32px color-mix(in srgb, var(--tone), transparent 48%);
}

.dimension-insight-hero > span[b-0i7lcyw8df] {
    color: var(--tone);
    font-size: 13px;
    font-weight: 820;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.dimension-trend[b-0i7lcyw8df] {
    --tone: var(--calm);
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid color-mix(in srgb, var(--tone), transparent 80%);
    border-radius: 18px;
    background: rgba(255,255,255,.032);
}

.dimension-trend > div:first-child[b-0i7lcyw8df] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
}

.dimension-trend strong[b-0i7lcyw8df] {
    color: var(--tone);
    font-size: 13px;
    text-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 58%);
}

.trend-bars[b-0i7lcyw8df] {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(5px, 1fr);
    align-items: end;
    gap: 4px;
    min-height: 72px;
    padding: 10px;
    border-radius: 14px;
    background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        rgba(255,255,255,.025);
    background-size: 100% 24px;
}

.trend-bars span[b-0i7lcyw8df] {
    display: block;
    height: calc(max(8, var(--value)) * 1%);
    min-height: 6px;
    border-radius: 999px 999px 3px 3px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--tone), white 32%), var(--tone));
    box-shadow: 0 0 14px color-mix(in srgb, var(--tone), transparent 62%);
    opacity: .82;
}

.dimension-insight-grid[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.dimension-insight-grid article[b-0i7lcyw8df],
.dimension-last-activity[b-0i7lcyw8df] {
    padding: 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
}

.dimension-insight-grid article.warning[b-0i7lcyw8df] {
    border-color: rgba(245, 200, 107, .22);
    background: rgba(245, 200, 107, .055);
}

.dimension-insight-grid article.soft-negative[b-0i7lcyw8df] {
    border-color: rgba(255, 138, 123, .14);
}

.dimension-insight-grid span[b-0i7lcyw8df] {
    display: block;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
}

.dimension-insight-grid strong[b-0i7lcyw8df] {
    display: block;
    margin-top: 8px;
    font-size: 18px;
}

.dimension-last-activity[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 5px;
}

.dimension-last-activity strong[b-0i7lcyw8df] {
    font-size: 17px;
}

.dimension-link-list[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.dimension-link-list > .eyebrow[b-0i7lcyw8df] {
    grid-column: 1 / -1;
}

.dimension-link-list > .section-note[b-0i7lcyw8df],
.dimension-link-list > .compact-ai-action[b-0i7lcyw8df] {
    grid-column: 1 / -1;
}

.dimension-link[b-0i7lcyw8df] {
    --tone: var(--calm);
    --weight: 45;
    display: grid;
    gap: 12px;
    padding: 13px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 8% 0%, color-mix(in srgb, var(--tone), transparent 88%), transparent 10rem),
        rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.075);
    opacity: .68;
}

.dimension-link.active[b-0i7lcyw8df] {
    opacity: 1;
    border-color: color-mix(in srgb, var(--tone), transparent 72%);
    box-shadow: 0 0 24px color-mix(in srgb, var(--tone), transparent 90%);
}

.dimension-link label[b-0i7lcyw8df] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.dimension-mark[b-0i7lcyw8df] {
    display: grid;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--ink);
    border-radius: 50%;
    background: color-mix(in srgb, var(--tone), transparent 82%);
    box-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 76%);
    font-size: 12px;
    font-weight: 820;
}

.dimension-link strong[b-0i7lcyw8df] {
    font-size: 14px;
}

.weight-control[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    align-items: center;
    color: var(--muted);
    font-size: 12px;
}

.weight-control input[b-0i7lcyw8df] {
    width: 100%;
    accent-color: var(--tone);
}

.weight-control b[b-0i7lcyw8df] {
    color: var(--tone);
}

.init-alert[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    padding: 13px 14px;
    color: #ffe1c0;
    background: rgba(245, 200, 107, .1);
    border: 1px solid rgba(245, 200, 107, .22);
    border-radius: 18px;
}

.modal-actions[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
}

.preview-row[b-0i7lcyw8df],
.impact-line[b-0i7lcyw8df] {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.impact-line[b-0i7lcyw8df] {
    justify-content: flex-start;
    color: var(--soft);
    font-size: 14px;
}

.impact-token[b-0i7lcyw8df] {
    color: var(--tone);
    text-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 45%);
    font-weight: 760;
}

.quest-section[b-0i7lcyw8df] {
    display: grid;
    gap: 14px;
}

.quest-carousel[b-0i7lcyw8df] {
    --quest-gap: 16px;
    --card-width: calc((100% - (var(--quest-gap) * 2)) / 2.5);
    position: relative;
    overflow: hidden;
    padding: 2px 0 8px;
    mask-image: linear-gradient(90deg, #000 0%, #000 86%, transparent 100%);
}

.quest-carousel.compact[b-0i7lcyw8df] {
    --quest-gap: 12px;
}

.quest-track[b-0i7lcyw8df] {
    display: flex;
    gap: var(--quest-gap);
    transform: translateX(calc(var(--slide) * -1 * (var(--card-width) + var(--quest-gap))));
    transition: transform .65s cubic-bezier(.2, .8, .2, 1);
    will-change: transform;
}

.quest-carousel .quest[b-0i7lcyw8df] {
    width: var(--card-width);
    flex: 0 0 var(--card-width);
}

.quest-dots[b-0i7lcyw8df] {
    display: flex;
    justify-content: center;
    gap: 8px;
    min-height: 18px;
}

.quest-dots button[b-0i7lcyw8df] {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(101, 240, 198, .24);
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    box-shadow: 0 0 12px rgba(101, 240, 198, .08);
}

.quest-dots button.active[b-0i7lcyw8df] {
    width: 20px;
    border-radius: 999px;
    background: var(--calm);
    box-shadow: var(--glow-calm);
}

.quest-grid[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.quest-grid.small[b-0i7lcyw8df] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.quest[b-0i7lcyw8df] {
    --progress: 50;
    --tone: var(--calm);
    position: relative;
    min-height: 230px;
    padding: 22px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.018)), rgba(255,255,255,.035);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.09);
    cursor: pointer;
}

.quest-edit-button[b-0i7lcyw8df] {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    display: grid;
    width: 38px;
    aspect-ratio: 1;
    place-items: center;
    color: var(--ink);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 74%);
    border-radius: 50%;
    background: color-mix(in srgb, var(--tone), transparent 88%);
    box-shadow: 0 0 20px color-mix(in srgb, var(--tone), transparent 86%);
    opacity: .72;
    transition: opacity .18s ease, transform .18s ease, background .18s ease;
}

.quest-edit-button:hover[b-0i7lcyw8df] {
    opacity: 1;
    transform: scale(1.06);
    background: color-mix(in srgb, var(--tone), transparent 80%);
}

.quest-edit-button i[b-0i7lcyw8df] {
    font-size: 14px;
}

.quest.small[b-0i7lcyw8df] {
    min-height: 164px;
    border-radius: 24px;
    padding: 16px;
}

.quest.small .quest-edit-button[b-0i7lcyw8df] {
    top: 10px;
    right: 10px;
    width: 32px;
}

.quest[b-0i7lcyw8df]::before {
    content: "";
    position: absolute;
    inset: auto -18% -48% -18%;
    height: calc(var(--progress) * 1.05%);
    min-height: 34%;
    background: radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--tone), transparent 25%), transparent 58%), linear-gradient(180deg, color-mix(in srgb, var(--tone), transparent 62%), transparent);
    opacity: .62;
    filter: blur(2px);
}

.quest[b-0i7lcyw8df]::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 78% 18%, color-mix(in srgb, var(--tone), transparent 78%), transparent 12rem);
}

.quest-content[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    height: 100%;
    align-content: space-between;
    gap: 34px;
}

.quest h3[b-0i7lcyw8df] {
    font-size: 22px;
    line-height: 1.1;
}

.quest.small h3[b-0i7lcyw8df] {
    font-size: 16px;
}

.quest-alias[b-0i7lcyw8df] {
    width: fit-content;
    display: inline-grid;
    min-height: 26px;
    place-items: center;
    margin: 8px 0 10px;
    padding: 0 10px;
    color: var(--tone);
    background: color-mix(in srgb, var(--tone), transparent 88%);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 72%);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 82%);
}

.quest p[b-0i7lcyw8df] {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.quest-progress[b-0i7lcyw8df] {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.quest-progress strong[b-0i7lcyw8df] {
    font-size: 44px;
    line-height: .9;
    text-shadow: 0 0 26px color-mix(in srgb, var(--tone), transparent 55%);
}

.quest.small .quest-progress strong[b-0i7lcyw8df] {
    font-size: 28px;
}

.quest-ring[b-0i7lcyw8df] {
    width: 58px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(var(--tone) calc(var(--progress) * 1%), rgba(255,255,255,.1) 0);
    mask: radial-gradient(circle, transparent 52%, #000 54%);
}

.quest-ring.large[b-0i7lcyw8df] {
    width: 82px;
    margin: 4px 0 0;
}

.sidequest-read-grid[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
    gap: 18px;
}

.sidequest-progress-readout[b-0i7lcyw8df],
.sidequest-read-panel[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    padding: 18px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    background:
        radial-gradient(circle at 82% 12%, color-mix(in srgb, var(--tone, var(--calm)), transparent 86%), transparent 12rem),
        rgba(255,255,255,.035);
}

.sidequest-progress-readout[b-0i7lcyw8df] {
    display: grid;
    gap: 10px;
    min-height: 220px;
    align-content: start;
}

.sidequest-progress-readout strong[b-0i7lcyw8df] {
    color: var(--ink);
    font-size: clamp(58px, 8vw, 86px);
    line-height: .9;
    text-shadow: 0 0 30px color-mix(in srgb, var(--tone), transparent 55%);
}

.sidequest-progress-readout p[b-0i7lcyw8df] {
    max-width: 36rem;
    margin: 0;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.5;
}

.sidequest-read-panel[b-0i7lcyw8df] {
    display: grid;
    gap: 14px;
    align-content: start;
}

.activity[b-0i7lcyw8df] {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
}

.activity.done[b-0i7lcyw8df] {
    background: rgba(101, 240, 198, .075);
    animation: task-complete-b-0i7lcyw8df .52s ease both;
}

.complete-button[b-0i7lcyw8df] {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--muted);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    touch-action: none;
    user-select: none;
}

.activity.done .complete-button[b-0i7lcyw8df] {
    color: #03110f;
    background: var(--calm);
    box-shadow: var(--glow-calm);
}

.complete-button.is-complete[b-0i7lcyw8df] {
    color: #03110f;
    background: var(--calm);
    box-shadow: var(--glow-calm);
}

.complete-button.is-holding[b-0i7lcyw8df] {
    color: var(--ink);
    border-color: color-mix(in srgb, var(--hold-color), transparent 48%);
    box-shadow: 0 0 22px color-mix(in srgb, var(--hold-color), transparent 64%);
}

.hold-dot[b-0i7lcyw8df] {
    --hold: 0;
    --hold-color: var(--stress);
    position: absolute;
    left: 50%;
    top: -38px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 42%, rgba(255,255,255,.95) 0 4%, rgba(255,255,255,.22) 5% 22%, transparent 48%),
        radial-gradient(circle, color-mix(in srgb, var(--hold-color), white 16%), color-mix(in srgb, var(--hold-color), transparent 35%) 44%, rgba(5, 8, 15, .74) 72%),
        linear-gradient(135deg, var(--stress), var(--money) calc(var(--hold) * .7%), var(--calm) calc(var(--hold) * 1%));
    box-shadow:
        0 0 18px color-mix(in srgb, var(--hold-color), transparent 18%),
        0 0 44px color-mix(in srgb, var(--hold-color), transparent 54%),
        0 0 78px color-mix(in srgb, var(--hold-color), transparent 76%);
    transform: translateX(-50%);
    pointer-events: none;
    animation: hold-glow-b-0i7lcyw8df .72s ease-in-out infinite alternate;
    font-size: 10px;
    font-weight: 820;
    line-height: 1;
    color: #07100e;
    text-shadow: 0 1px 8px rgba(255,255,255,.75);
}

.hold-dot[b-0i7lcyw8df]::before {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: inherit;
    background: conic-gradient(from 180deg, var(--stress), var(--money), var(--calm), var(--stress));
    opacity: .36;
    filter: blur(8px);
    z-index: -1;
}

.hold-dot span[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    min-width: 2ch;
    animation: number-rise-b-0i7lcyw8df .16s ease-out both;
}

.activity h3[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
    padding-right: 2px;
    font-size: 15px;
    line-height: 1.25;
}

.activity h3 > span:first-child[b-0i7lcyw8df] {
    min-width: 0;
}

.activity-meta[b-0i7lcyw8df] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
    color: var(--soft);
    font-size: 13px;
}

.completion-meta[b-0i7lcyw8df] {
    color: var(--calm);
    font-weight: 720;
}

.activity-time[b-0i7lcyw8df] {
    flex-basis: 100%;
}

.enjoyment-indicator[b-0i7lcyw8df] {
    --joy-tone: var(--calm);
    position: relative;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: var(--joy-tone);
    font-weight: 820;
    border: 1px solid color-mix(in srgb, var(--joy-tone), transparent 68%);
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--joy-tone), transparent 74%), rgba(255,255,255,.035));
    box-shadow: 0 0 16px color-mix(in srgb, var(--joy-tone), transparent 72%);
    flex: 0 0 auto;
}

.activity.calendar-entry .enjoyment-indicator i[b-0i7lcyw8df] {
    font-size: 19px;
    line-height: 1;
}

.enjoyment-indicator[b-0i7lcyw8df]::after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: -7px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--joy-tone) calc(var(--joy) * 1%), rgba(255,255,255,.12) 0);
    opacity: .78;
}

.enjoyment-indicator.low[b-0i7lcyw8df] {
    --joy-tone: var(--stress);
}

.enjoyment-indicator.muted[b-0i7lcyw8df] {
    --joy-tone: var(--money);
}

.enjoyment-indicator.good[b-0i7lcyw8df] {
    --joy-tone: var(--calm);
}

.enjoyment-indicator.loved[b-0i7lcyw8df] {
    --joy-tone: #ff8ac4;
}

.floating-impact[b-0i7lcyw8df] {
    position: absolute;
    right: 18px;
    top: 8px;
    color: var(--calm);
    font-weight: 780;
    text-shadow: 0 0 22px rgba(101, 240, 198, .7);
    opacity: 0;
    pointer-events: none;
}

.activity.done .floating-impact[b-0i7lcyw8df] {
    animation: float-impact-b-0i7lcyw8df 1.2s ease both;
}

.gentle-suggestion[b-0i7lcyw8df],
.planner-prompt[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    padding: 16px;
    color: var(--soft);
    background: rgba(141, 247, 167, .07);
    border: 1px solid rgba(141, 247, 167, .15);
    border-radius: 20px;
    line-height: 1.45;
}

.week-calendar[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(7, minmax(150px, 1fr));
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.calendar-wide[b-0i7lcyw8df] {
    grid-column: 1 / -1;
}

.day-nav[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    align-items: center;
}

.day-overview[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: stretch;
}

.day-balance[b-0i7lcyw8df] {
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: 240px;
    padding: 18px;
    text-align: center;
    background: radial-gradient(circle, rgba(101,240,198,.16), rgba(255,255,255,.035) 62%);
    border: 1px solid rgba(101, 240, 198, .16);
    border-radius: 24px;
}

.day-balance.compact[b-0i7lcyw8df] {
    min-height: 112px;
    margin-top: -2px;
}

.day-balance.compact strong[b-0i7lcyw8df] {
    font-size: 42px;
}

.day-balance span[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.day-balance strong[b-0i7lcyw8df] {
    margin-top: 12px;
    font-size: 58px;
    line-height: .9;
    text-shadow: 0 0 28px rgba(101, 240, 198, .34);
}

.day-flow.large[b-0i7lcyw8df] {
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    gap: 12px;
    align-content: start;
}

.day-flow.large .calendar-entry[b-0i7lcyw8df] {
    min-height: 118px;
    padding: 16px;
}

.day-flow.large .calendar-entry span[b-0i7lcyw8df] {
    font-size: 12px;
}

.day-flow.large .calendar-entry strong[b-0i7lcyw8df] {
    font-size: 16px;
}

.day-column[b-0i7lcyw8df] {
    min-height: 260px;
    padding: 13px;
    background: rgba(255,255,255,.032);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 22px;
}

.day-column.today[b-0i7lcyw8df] {
    border-color: rgba(101, 240, 198, .34);
    box-shadow: inset 0 0 30px rgba(101, 240, 198, .06), 0 0 24px rgba(101, 240, 198, .08);
}

.day-head[b-0i7lcyw8df] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.day-head strong[b-0i7lcyw8df] {
    font-size: 13px;
}

.day-head span[b-0i7lcyw8df] {
    color: var(--soft);
    font-size: 12px;
}

.day-flow[b-0i7lcyw8df] {
    display: grid;
    gap: 10px;
}

.calendar-entry[b-0i7lcyw8df] {
    display: grid;
    gap: 4px;
    min-height: 70px;
    padding: 11px;
    background: color-mix(in srgb, var(--tone), transparent 88%);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 72%);
    border-radius: 16px;
    box-shadow: 0 0 20px color-mix(in srgb, var(--tone), transparent 88%);
}

.calendar-entry span[b-0i7lcyw8df] {
    color: var(--soft);
    font-size: 11px;
}

.calendar-entry strong[b-0i7lcyw8df] {
    font-size: 13px;
    line-height: 1.25;
}

.calendar-entry.empty[b-0i7lcyw8df] {
    border-style: dashed;
    opacity: .7;
}

.activity.calendar-entry[b-0i7lcyw8df] {
    min-height: 76px;
    background: color-mix(in srgb, var(--tone), transparent 90%);
}

.activity.calendar-entry .activity-meta[b-0i7lcyw8df] {
    margin-top: 5px;
}

.activity.calendar-entry.done[b-0i7lcyw8df] {
    background: rgba(101, 240, 198, .095);
    border-color: rgba(101, 240, 198, .24);
}

.activity.calendar-entry.done .complete-button[b-0i7lcyw8df] {
    color: #03110f;
    background: var(--calm);
    box-shadow: var(--glow-calm);
}

.activity.calendar-entry.done h3[b-0i7lcyw8df] {
    color: var(--calm);
}

.rhythm-map[b-0i7lcyw8df] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.rhythm-row[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
    align-items: center;
    color: var(--soft);
    font-size: 13px;
}

.rhythm-track[b-0i7lcyw8df] {
    display: grid;
    grid-template-columns: 1.1fr .65fr .9fr 1.25fr;
    gap: 6px;
    min-height: 28px;
}

.rhythm-block[b-0i7lcyw8df] {
    border-radius: 999px;
    background: color-mix(in srgb, var(--tone), transparent 78%);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 68%);
    box-shadow: 0 0 20px color-mix(in srgb, var(--tone), transparent 86%);
}

.planner-prompt[b-0i7lcyw8df] {
    background: radial-gradient(circle at 0% 0%, rgba(150,169,255,.2), transparent 12rem), rgba(255,255,255,.045);
    border-color: rgba(150,169,255,.16);
}

.planner-prompt h3[b-0i7lcyw8df] {
    margin: 0 0 8px;
    font-size: 17px;
}

.planner-prompt p[b-0i7lcyw8df],
.first-step span[b-0i7lcyw8df] {
    margin: 0;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.45;
}

.first-step[b-0i7lcyw8df],
.reality-option[b-0i7lcyw8df] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 14px;
    color: var(--soft);
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 18px;
}

.timeline[b-0i7lcyw8df] {
    gap: 18px;
}

.timeline[b-0i7lcyw8df]::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(var(--calm), rgba(255,255,255,.04));
    opacity: .5;
}

.event[b-0i7lcyw8df] {
    position: relative;
    padding-left: 34px;
}

.event[b-0i7lcyw8df]::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--tone, var(--calm));
    box-shadow: 0 0 22px var(--tone, var(--calm));
}

.event h3[b-0i7lcyw8df] {
    margin: 0;
    font-size: 15px;
    font-weight: 680;
}

.event p[b-0i7lcyw8df] {
    margin: 7px 0 0;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.45;
}

.toast[b-0i7lcyw8df] {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    width: min(380px, calc(100vw - 44px));
    padding: 18px 20px;
    color: var(--ink);
    background: linear-gradient(135deg, rgba(101,240,198,.18), rgba(255,255,255,.06)), rgba(8, 17, 26, .92);
    border: 1px solid rgba(101, 240, 198, .2);
    border-radius: 22px;
    box-shadow: var(--glow-calm), var(--shadow);
    backdrop-filter: blur(20px);
    animation: rise-b-0i7lcyw8df .28s ease both;
}

.toast strong[b-0i7lcyw8df] {
    display: block;
    margin-bottom: 7px;
    color: var(--calm);
}

.impact-update[b-0i7lcyw8df] {
    position: fixed;
    left: 50%;
    bottom: 28px;
    z-index: 35;
    display: grid;
    gap: 10px;
    width: min(520px, calc(100vw - 36px));
    padding: 20px;
    color: var(--ink);
    background:
        radial-gradient(circle at 0% 0%, rgba(101,240,198,.18), transparent 16rem),
        linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.028)),
        rgba(8, 17, 26, .95);
    border: 1px solid rgba(101, 240, 198, .24);
    border-radius: 24px;
    box-shadow: var(--glow-calm), var(--shadow);
    backdrop-filter: blur(20px);
    transform: translateX(-50%);
}

.impact-update.is-visible[b-0i7lcyw8df] {
    animation: update-pop-b-0i7lcyw8df 5.6s ease both;
}

.impact-update strong[b-0i7lcyw8df] {
    font-size: 18px;
}

.impact-update p[b-0i7lcyw8df] {
    margin: 0;
    color: var(--soft);
    font-size: 14px;
}

.feedback-groups[b-0i7lcyw8df] {
    display: grid;
    gap: 9px;
}

.feedback-group[b-0i7lcyw8df] {
    display: grid;
    gap: 8px;
    padding: 11px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
}

.feedback-group > div:first-child[b-0i7lcyw8df] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.feedback-group span[b-0i7lcyw8df] {
    font-size: 12px;
    font-weight: 780;
}

.feedback-group small[b-0i7lcyw8df] {
    color: var(--muted);
    font-size: 11px;
    text-align: right;
}

@keyframes core-pulse-b-0i7lcyw8df {
    0%, 100% { transform: scale(1); filter: saturate(1); }
    50% { transform: scale(1.018); filter: saturate(1.16); }
}

@keyframes slow-spin-b-0i7lcyw8df {
    to { transform: rotate(360deg); }
}

@keyframes rise-b-0i7lcyw8df {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes task-complete-b-0i7lcyw8df {
    0% { transform: scale(1); }
    42% { transform: scale(1.025); }
    100% { transform: scale(1); }
}

@keyframes float-impact-b-0i7lcyw8df {
    0% { opacity: 0; transform: translateY(10px); }
    18% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-48px); }
}

@keyframes hold-glow-b-0i7lcyw8df {
    from {
        transform: translateX(-50%) scale(.96);
        filter: saturate(1);
    }
    to {
        transform: translateX(-50%) scale(1.08);
        filter: saturate(1.35);
    }
}

@keyframes number-rise-b-0i7lcyw8df {
    from {
        opacity: .45;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes update-pop-b-0i7lcyw8df {
    0% {
        opacity: 0;
        transform: translate(-50%, 18px) scale(.97);
    }
    12%, 78% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -10px) scale(.99);
    }
}

@media (max-width: 1200px) {
    .hud-grid[b-0i7lcyw8df] {
        grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
    }

    .right-column[b-0i7lcyw8df] {
        grid-column: 1 / -1;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .life-hud[b-0i7lcyw8df] {
        padding: 16px;
    }

    .brand p[b-0i7lcyw8df],
    .system-state > span:not(.status-dot)[b-0i7lcyw8df] {
        display: none;
    }

    .system-state[b-0i7lcyw8df] {
        display: flex;
        gap: 8px;
        padding: 6px;
    }

    .system-state a[b-0i7lcyw8df] {
        min-height: 34px;
        display: grid;
        place-items: center;
        padding: 0 11px;
        border: 1px solid rgba(101, 240, 198, .18);
        border-radius: 999px;
        background: rgba(101, 240, 198, .08);
    }

    .hud-grid[b-0i7lcyw8df],
    .right-column[b-0i7lcyw8df],
    .quest-grid[b-0i7lcyw8df],
    .quest-grid.small[b-0i7lcyw8df],
    .compact-list[b-0i7lcyw8df],
    .core-caption[b-0i7lcyw8df],
    .day-overview[b-0i7lcyw8df],
    .sidequest-progress-breakdown[b-0i7lcyw8df],
    .dimension-insight-grid[b-0i7lcyw8df] {
        grid-template-columns: 1fr;
    }

    .quest-carousel[b-0i7lcyw8df] {
        --card-width: calc((100% - var(--quest-gap)) / 1.15);
        mask-image: linear-gradient(90deg, #000 0%, #000 90%, transparent 100%);
    }

    .activity-impact-editor[b-0i7lcyw8df] {
        padding: 14px;
    }

    .day-flow.large[b-0i7lcyw8df] {
        grid-template-columns: 1fr;
    }

    .core-panel[b-0i7lcyw8df] {
        min-height: auto;
        padding: 18px;
    }

    .core-stage[b-0i7lcyw8df] {
        min-height: 330px;
    }

    .capture-field[b-0i7lcyw8df],
    .schedule-controls[b-0i7lcyw8df],
    .scheduling-mode-options[b-0i7lcyw8df],
    .scheduling-mode-settings[b-0i7lcyw8df],
    .recurrence-head[b-0i7lcyw8df],
    .recurrence-settings[b-0i7lcyw8df],
    .sidequest-detail-grid[b-0i7lcyw8df],
    .sidequest-read-grid[b-0i7lcyw8df],
    .detail-form[b-0i7lcyw8df],
    .focus-item[b-0i7lcyw8df] {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .alias-input-row[b-0i7lcyw8df] {
        grid-template-columns: 1fr;
    }

    .recurrence-toggle[b-0i7lcyw8df],
    .recurrence-end-toggle[b-0i7lcyw8df] {
        width: 100%;
        justify-content: flex-start;
    }

    .capture-field input[b-0i7lcyw8df] {
        min-height: 44px;
    }

    .primary-action[b-0i7lcyw8df] {
        width: 100%;
    }

    .deck-primary-actions[b-0i7lcyw8df],
    .deck-secondary-actions[b-0i7lcyw8df] {
        display: grid;
        grid-template-columns: 1fr;
    }

    .deck-secondary-actions[b-0i7lcyw8df] {
        justify-items: stretch;
    }

    .quiet-action[b-0i7lcyw8df] {
        width: 100%;
        min-height: 38px;
        background: rgba(255,255,255,.035);
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
.aeden-home[b-9wo4g83rek] {
    --ink: #edf7f6;
    --muted: #8fa3ae;
    --soft: #b8cbd1;
    --line: rgba(186, 222, 232, .12);
    --calm: #65f0c6;
    --money: #f5c86b;
    --recovery: #8df7a7;
    --shadow: 0 24px 90px rgba(0, 0, 0, .42);
    --glow-calm: 0 0 24px rgba(101, 240, 198, .36), 0 0 80px rgba(22, 168, 143, .16);
    min-height: 100vh;
    padding: clamp(30px, 3vw, 42px) 24px 24px;
    color: var(--ink);
    background:
        radial-gradient(circle at 50% -18%, rgba(101, 240, 198, .18), transparent 32rem),
        radial-gradient(circle at 88% 8%, rgba(245, 200, 107, .14), transparent 24rem),
        radial-gradient(circle at 6% 74%, rgba(150, 169, 255, .11), transparent 30rem),
        linear-gradient(180deg, #07101b 0%, #05080f 62%, #04070d 100%);
    position: relative;
    overflow: hidden;
}

.aeden-home[b-9wo4g83rek]::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 70%);
    opacity: .42;
}

.home-topbar[b-9wo4g83rek],
.home-hero[b-9wo4g83rek],
.home-system[b-9wo4g83rek],
.philosophy-panel[b-9wo4g83rek],
.quote-panel[b-9wo4g83rek] {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin-inline: auto;
}

.home-topbar[b-9wo4g83rek] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 58px;
}

.home-brand[b-9wo4g83rek],
.home-actions[b-9wo4g83rek],
.hero-actions[b-9wo4g83rek] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-brand[b-9wo4g83rek] {
    color: var(--ink);
    text-decoration: none;
    font-family: var(--aeden-brand-font);
    font-size: 26px;
    font-weight: 400;
    letter-spacing: .03em;
}

.home-sigil[b-9wo4g83rek] {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(101,240,198,.22), rgba(101,240,198,.05) 58%, transparent 60%), rgba(255,255,255,.03);
    border: 1px solid rgba(101, 240, 198, .28);
    box-shadow: var(--glow-calm);
}

.home-actions form[b-9wo4g83rek] {
    margin: 0;
}

.ghost-link[b-9wo4g83rek],
.primary-link[b-9wo4g83rek] {
    display: inline-grid;
    min-height: 42px;
    place-items: center;
    padding: 0 16px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid var(--line);
    font: inherit;
}

button.ghost-link[b-9wo4g83rek],
.ghost-link[b-9wo4g83rek] {
    color: var(--ink);
    background: rgba(255,255,255,.07);
}

.primary-link[b-9wo4g83rek] {
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    box-shadow: var(--glow-calm);
    font-weight: 760;
}

.large[b-9wo4g83rek] {
    min-height: 52px;
    padding-inline: 22px;
}

.home-hero[b-9wo4g83rek] {
    display: grid;
    grid-template-columns: minmax(0, .94fr) minmax(360px, .72fr);
    gap: clamp(26px, 6vw, 76px);
    align-items: center;
    min-height: calc(100vh - 150px);
    padding: 68px 0 72px;
}

.eyebrow[b-9wo4g83rek] {
    display: block;
    margin-bottom: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
}

.hero-copy h1[b-9wo4g83rek] {
    max-width: 860px;
    margin: 0;
    font-size: clamp(48px, 7.4vw, 94px);
    line-height: .92;
    font-weight: 820;
    letter-spacing: 0;
    text-shadow: 0 0 44px rgba(101, 240, 198, .22);
}

.hero-copy p[b-9wo4g83rek] {
    max-width: 640px;
    margin: 24px 0 0;
    color: var(--soft);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.55;
}

.hero-actions[b-9wo4g83rek] {
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-hud[b-9wo4g83rek] {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 50% 10%, rgba(101,240,198,.18), transparent 16rem),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
        rgba(12, 22, 33, .55);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.preview-core[b-9wo4g83rek] {
    display: grid;
    width: min(330px, 100%);
    aspect-ratio: 1;
    place-items: center;
    justify-self: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 44%, rgba(237,247,246,.96) 0 2%, rgba(101,240,198,.34) 9%, rgba(14,51,55,.42) 36%, rgba(5,8,15,.9) 66%),
        conic-gradient(from 225deg, var(--calm) 78%, rgba(255,255,255,.08) 0);
    box-shadow: inset 0 0 60px rgba(255,255,255,.09), 0 0 80px rgba(101,240,198,.2);
    text-align: center;
    animation: home-pulse-b-9wo4g83rek 5s ease-in-out infinite;
}

.preview-core strong[b-9wo4g83rek] {
    display: block;
    font-size: 82px;
    line-height: .85;
}

.preview-core span[b-9wo4g83rek] {
    display: block;
    margin-top: 14px;
    color: var(--soft);
}

.preview-stack[b-9wo4g83rek] {
    display: grid;
    gap: 10px;
}

.preview-stack article[b-9wo4g83rek] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 62px;
    padding: 14px 16px;
    border-radius: 18px;
    color: var(--soft);
    background: color-mix(in srgb, var(--tone), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 76%);
    box-shadow: 0 0 22px color-mix(in srgb, var(--tone), transparent 90%);
}

.preview-stack strong[b-9wo4g83rek] {
    color: var(--tone);
    font-size: 22px;
}

.philosophy-panel[b-9wo4g83rek] {
    display: grid;
    grid-template-columns: minmax(220px, .6fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 72px);
    margin-top: 8px;
    padding: clamp(30px, 5vw, 58px);
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 0%, rgba(101,240,198,.12), transparent 18rem),
        linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.016)),
        rgba(12, 22, 33, .46);
    border: 1px solid rgba(186, 222, 232, .1);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.philosophy-panel[b-9wo4g83rek]::before,
.quote-panel[b-9wo4g83rek]::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.1), transparent 30%, transparent 74%, rgba(101,240,198,.045));
    opacity: .42;
}

.philosophy-panel h2[b-9wo4g83rek] {
    position: relative;
    z-index: 1;
    max-width: 260px;
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
    font-weight: 780;
}

.philosophy-panel > .eyebrow[b-9wo4g83rek] {
    align-self: start;
}

.philosophy-panel > div[b-9wo4g83rek] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
}

.philosophy-panel p[b-9wo4g83rek] {
    max-width: 720px;
    margin: 0;
    color: var(--soft);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.62;
}

.home-system[b-9wo4g83rek] {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding: clamp(38px, 6vw, 76px) 0;
}

.home-system article[b-9wo4g83rek] {
    min-height: 210px;
    padding: 24px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 0%, rgba(101,240,198,.08), transparent 12rem),
        linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.014)),
        rgba(12, 22, 33, .42);
    border: 1px solid rgba(186, 222, 232, .09);
    box-shadow: var(--shadow);
}

.home-system span[b-9wo4g83rek] {
    color: var(--calm);
    font-size: 12px;
    font-weight: 760;
}

.home-system h2[b-9wo4g83rek] {
    margin: 22px 0 12px;
    font-size: 20px;
}

.home-system p[b-9wo4g83rek] {
    margin: 0;
    color: var(--soft);
    line-height: 1.55;
}

.quote-panel[b-9wo4g83rek] {
    display: grid;
    min-height: 280px;
    place-items: center;
    margin-bottom: 38px;
    overflow: hidden;
    border-radius: 34px;
    background:
        radial-gradient(circle at 50% 50%, rgba(101,240,198,.16), transparent 22rem),
        radial-gradient(circle at 76% 18%, rgba(245,200,107,.08), transparent 20rem),
        rgba(255,255,255,.025);
    border: 1px solid rgba(186, 222, 232, .08);
    box-shadow: 0 28px 110px rgba(0, 0, 0, .35);
}

.quote-panel p[b-9wo4g83rek] {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0;
    padding: 0 24px;
    text-align: center;
    color: var(--ink);
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.02;
    font-weight: 780;
    text-shadow: 0 0 46px rgba(101, 240, 198, .24);
}

@keyframes home-pulse-b-9wo4g83rek {
    0%, 100% { transform: scale(1); filter: saturate(1); }
    50% { transform: scale(1.018); filter: saturate(1.14); }
}

@media (max-width: 900px) {
    .home-hero[b-9wo4g83rek],
    .home-system[b-9wo4g83rek],
    .philosophy-panel[b-9wo4g83rek] {
        grid-template-columns: 1fr;
    }

    .home-hero[b-9wo4g83rek] {
        min-height: auto;
    }

    .hero-hud[b-9wo4g83rek] {
        max-width: 520px;
    }

    .philosophy-panel h2[b-9wo4g83rek] {
        max-width: none;
    }
}

@media (max-width: 620px) {
    .aeden-home[b-9wo4g83rek] {
        padding: 16px;
    }

    .home-topbar[b-9wo4g83rek] {
        align-items: flex-start;
    }

    .home-actions[b-9wo4g83rek] {
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .hero-copy h1[b-9wo4g83rek] {
        font-size: clamp(44px, 15vw, 68px);
    }

    .preview-core[b-9wo4g83rek] {
        width: min(260px, 100%);
    }
}
/* /Components/Pages/MainQuestInit.razor.rz.scp.css */
:host[b-7iwx9h75h2] {
    color-scheme: dark;
}

.init-hud[b-7iwx9h75h2] {
    --panel: rgba(12, 22, 33, .56);
    --ink: #edf7f6;
    --muted: #8fa3ae;
    --soft: #b8cbd1;
    --line: rgba(186, 222, 232, .12);
    --calm: #65f0c6;
    --money: #f5c86b;
    --family: #ff8a7b;
    --creative: #96a9ff;
    --recovery: #8df7a7;
    --stress: #ff5b63;
    --shadow: 0 24px 90px rgba(0, 0, 0, .42);
    --glow-calm: 0 0 24px rgba(101, 240, 198, .36), 0 0 80px rgba(22, 168, 143, .16);
    min-height: 100vh;
    padding: clamp(30px, 3vw, 42px) 24px 24px;
    color: var(--ink);
    background:
        radial-gradient(circle at 45% -18%, rgba(101, 240, 198, .18), transparent 34rem),
        radial-gradient(circle at 90% 12%, rgba(245, 200, 107, .12), transparent 24rem),
        radial-gradient(circle at 8% 78%, rgba(150, 169, 255, .12), transparent 28rem),
        linear-gradient(180deg, #07101b 0%, #05080f 62%, #04070d 100%);
    position: relative;
    overflow: hidden;
}

.init-hud[b-7iwx9h75h2]::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 70%);
    opacity: .38;
}

button[b-7iwx9h75h2],
input[b-7iwx9h75h2],
textarea[b-7iwx9h75h2] {
    font: inherit;
}

button[b-7iwx9h75h2] {
    border: 0;
    cursor: pointer;
}

.init-topbar[b-7iwx9h75h2],
.init-shell[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
    width: min(1320px, 100%);
    margin-inline: auto;
}

.init-topbar[b-7iwx9h75h2] {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.brand-link[b-7iwx9h75h2] {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    text-decoration: none;
}

.brand-link strong[b-7iwx9h75h2],
.brand-link small[b-7iwx9h75h2] {
    display: block;
}

.brand-link strong[b-7iwx9h75h2] {
    font-family: var(--aeden-brand-font);
    font-size: 26px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: .03em;
}

.brand-link small[b-7iwx9h75h2] {
    margin-top: 4px;
    color: var(--muted);
}

.sigil[b-7iwx9h75h2] {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--calm);
    background: radial-gradient(circle, rgba(101,240,198,.22), rgba(101,240,198,.05) 58%, transparent 60%), rgba(255,255,255,.03);
    border: 1px solid rgba(101, 240, 198, .28);
    border-radius: 50%;
    box-shadow: var(--glow-calm);
}

.sigil span[b-7iwx9h75h2] {
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: inset 0 0 14px rgba(101, 240, 198, .42);
}

.ghost-action[b-7iwx9h75h2],
.primary-action[b-7iwx9h75h2] {
    display: inline-grid;
    min-height: 44px;
    place-items: center;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
}

.ghost-action[b-7iwx9h75h2] {
    color: var(--ink);
    background: rgba(255,255,255,.07);
    border: 1px solid var(--line);
}

.primary-action[b-7iwx9h75h2] {
    width: 100%;
    color: #03110f;
    background: linear-gradient(135deg, var(--calm), #b8ffe9);
    box-shadow: var(--glow-calm);
    font-weight: 780;
}

.primary-action:disabled[b-7iwx9h75h2] {
    cursor: wait;
    opacity: .72;
}

.init-shell[b-7iwx9h75h2] {
    display: grid;
    gap: 22px;
}

.hero-panel[b-7iwx9h75h2],
.intention-panel[b-7iwx9h75h2],
.dimension-picker[b-7iwx9h75h2],
.summary-panel[b-7iwx9h75h2] {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
        var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
}

.hero-panel[b-7iwx9h75h2]::before,
.intention-panel[b-7iwx9h75h2]::before,
.dimension-picker[b-7iwx9h75h2]::before,
.summary-panel[b-7iwx9h75h2]::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255,255,255,.12), transparent 30%, transparent 74%, rgba(101,240,198,.045));
    opacity: .36;
}

.hero-panel[b-7iwx9h75h2] {
    min-height: 280px;
    padding: clamp(28px, 5vw, 58px);
    background:
        radial-gradient(circle at 76% 10%, rgba(101,240,198,.16), transparent 20rem),
        radial-gradient(circle at 14% 94%, rgba(150,169,255,.12), transparent 18rem),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
        var(--panel);
}

.eyebrow[b-7iwx9h75h2] {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
}

.hero-panel h1[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .96;
    letter-spacing: 0;
    text-shadow: 0 0 44px rgba(101, 240, 198, .18);
}

.hero-panel p[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--soft);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.58;
}

.version-pill[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
    display: inline-grid;
    min-height: 34px;
    place-items: center;
    margin-bottom: 18px;
    padding: 0 13px;
    color: var(--calm);
    background: rgba(101, 240, 198, .08);
    border: 1px solid rgba(101, 240, 198, .18);
    border-radius: 999px;
    box-shadow: 0 0 24px rgba(101, 240, 198, .12);
    font-size: 12px;
    font-weight: 760;
}

.intention-panel[b-7iwx9h75h2] {
    display: grid;
    gap: 16px;
    padding: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(150,169,255,.12), transparent 16rem),
        radial-gradient(circle at 0% 100%, rgba(101,240,198,.11), transparent 16rem),
        linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
        var(--panel);
}

.section-note[b-7iwx9h75h2] {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--soft);
    font-size: 14px;
    line-height: 1.45;
}

.ai-state[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
    display: inline-grid;
    min-height: 32px;
    place-items: center;
    padding: 0 11px;
    color: var(--creative);
    background: rgba(150, 169, 255, .08);
    border: 1px solid rgba(150, 169, 255, .18);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 760;
}

.intention-compose[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
}

.intention-compose textarea[b-7iwx9h75h2] {
    width: 100%;
    min-height: 148px;
    resize: vertical;
    padding: 18px;
    color: var(--ink);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    outline: 0;
    line-height: 1.5;
}

.intention-compose textarea:focus[b-7iwx9h75h2] {
    border-color: rgba(101, 240, 198, .34);
    box-shadow: 0 0 0 3px rgba(101, 240, 198, .08);
}

.intention-compose textarea[b-7iwx9h75h2]::placeholder {
    color: rgba(184, 203, 209, .58);
}

.intention-actions[b-7iwx9h75h2] {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.intention-actions span[b-7iwx9h75h2] {
    color: var(--muted);
    font-size: 13px;
}

.ai-suggestion[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid rgba(101, 240, 198, .18);
    border-radius: 20px;
    background: rgba(101, 240, 198, .065);
    animation: rise-b-7iwx9h75h2 .22s ease both;
}

.ai-suggestion > div[b-7iwx9h75h2] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ai-suggestion > div span[b-7iwx9h75h2] {
    display: inline-grid;
    min-height: 32px;
    place-items: center;
    padding: 0 11px;
    color: var(--ink);
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 999px;
    font-size: 13px;
}

.compact[b-7iwx9h75h2] {
    width: fit-content;
    min-height: 36px;
}

.init-layout[b-7iwx9h75h2] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
    gap: 22px;
    align-items: start;
}

.dimension-picker[b-7iwx9h75h2],
.summary-panel[b-7iwx9h75h2] {
    padding: 22px;
}

.section-head[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.section-head h2[b-7iwx9h75h2],
.summary-panel h2[b-7iwx9h75h2] {
    margin: 0;
    font-size: 18px;
}

.version-meta[b-7iwx9h75h2] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.version-meta span[b-7iwx9h75h2] {
    display: inline-grid;
    min-height: 30px;
    place-items: center;
    padding: 0 10px;
    color: var(--soft);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 999px;
    font-size: 12px;
}

.selection-count[b-7iwx9h75h2] {
    display: grid;
    min-width: 66px;
    min-height: 40px;
    place-items: center;
    border-radius: 999px;
    font-weight: 780;
}

.selection-count.valid[b-7iwx9h75h2] {
    color: #03110f;
    background: var(--calm);
    box-shadow: var(--glow-calm);
}

.selection-count.attention[b-7iwx9h75h2] {
    color: var(--ink);
    background: rgba(245, 200, 107, .14);
    border: 1px solid rgba(245, 200, 107, .25);
}

.init-alert[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
    margin-bottom: 14px;
    padding: 14px 16px;
    color: #ffe1c0;
    background: rgba(245, 200, 107, .1);
    border: 1px solid rgba(245, 200, 107, .22);
    border-radius: 18px;
}

.dimension-list[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.dimension-card[b-7iwx9h75h2] {
    --tone: var(--calm);
    --weight: 45;
    display: grid;
    gap: 16px;
    min-height: 170px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 22px;
    background:
        radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--tone), transparent 90%), transparent 12rem),
        rgba(255,255,255,.035);
    opacity: .64;
    transition: opacity .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.dimension-card.active[b-7iwx9h75h2] {
    opacity: 1;
    border-color: color-mix(in srgb, var(--tone), transparent 70%);
    box-shadow: 0 0 30px color-mix(in srgb, var(--tone), transparent 90%);
}

.dimension-card:hover[b-7iwx9h75h2] {
    transform: translateY(-1px);
}

.dimension-toggle[b-7iwx9h75h2] {
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 12px;
    align-items: start;
    cursor: pointer;
}

.dimension-toggle input[b-7iwx9h75h2] {
    margin-top: 8px;
    accent-color: var(--tone);
}

.dimension-mark[b-7iwx9h75h2] {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: color-mix(in srgb, var(--tone), transparent 82%);
    box-shadow: 0 0 24px color-mix(in srgb, var(--tone), transparent 78%);
    font-weight: 820;
}

.dimension-toggle strong[b-7iwx9h75h2],
.dimension-toggle small[b-7iwx9h75h2] {
    display: block;
}

.dimension-toggle strong[b-7iwx9h75h2] {
    font-size: 16px;
}

.dimension-toggle small[b-7iwx9h75h2] {
    margin-top: 6px;
    color: var(--soft);
    line-height: 1.4;
}

.weight-control[b-7iwx9h75h2] {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    color: var(--muted);
    font-size: 12px;
}

.weight-control input[b-7iwx9h75h2] {
    width: 100%;
    accent-color: var(--tone);
}

.weight-control b[b-7iwx9h75h2] {
    color: var(--tone);
    font-size: 16px;
    text-shadow: 0 0 18px color-mix(in srgb, var(--tone), transparent 54%);
}

.state-control[b-7iwx9h75h2] {
    margin-top: -4px;
}

.state-control b[b-7iwx9h75h2] {
    font-size: 18px;
}

.importance-control[b-7iwx9h75h2] {
    opacity: .62;
}

.importance-control input[b-7iwx9h75h2] {
    filter: saturate(.7);
}

.importance-control b[b-7iwx9h75h2] {
    font-size: 13px;
}

.init-summary[b-7iwx9h75h2] {
    position: sticky;
    top: 22px;
}

.summary-panel[b-7iwx9h75h2] {
    display: grid;
    gap: 18px;
}

.summary-panel > *[b-7iwx9h75h2] {
    position: relative;
    z-index: 1;
}

.constellation[b-7iwx9h75h2] {
    display: grid;
    min-height: 220px;
    place-items: center;
    border-radius: 24px;
    background:
        radial-gradient(circle, rgba(101,240,198,.12), transparent 48%),
        rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.065);
    position: relative;
    overflow: hidden;
}

.constellation[b-7iwx9h75h2]::before,
.constellation[b-7iwx9h75h2]::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.constellation[b-7iwx9h75h2]::before {
    width: 230px;
    aspect-ratio: 1;
    border: 1px solid rgba(101, 240, 198, .14);
}

.constellation[b-7iwx9h75h2]::after {
    width: 136px;
    aspect-ratio: 1;
    border: 1px solid rgba(245, 200, 107, .1);
}

.constellation span[b-7iwx9h75h2] {
    --weight: 45;
    --tone: var(--calm);
    position: absolute;
    display: grid;
    width: calc(30px + var(--weight) * .13px);
    aspect-ratio: 1;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--tone), white 28%), color-mix(in srgb, var(--tone), transparent 44%) 58%, rgba(255,255,255,.04));
    box-shadow: 0 0 24px color-mix(in srgb, var(--tone), transparent 44%), 0 0 70px color-mix(in srgb, var(--tone), transparent 78%);
    font-size: 12px;
    font-weight: 820;
    animation: drift-b-7iwx9h75h2 6s ease-in-out infinite;
}

.constellation span:nth-child(1)[b-7iwx9h75h2] { transform: translate(-74px, -42px); animation-delay: -.4s; }
.constellation span:nth-child(2)[b-7iwx9h75h2] { transform: translate(28px, -64px); animation-delay: -1s; }
.constellation span:nth-child(3)[b-7iwx9h75h2] { transform: translate(86px, 2px); animation-delay: -1.6s; }
.constellation span:nth-child(4)[b-7iwx9h75h2] { transform: translate(-62px, 58px); animation-delay: -2.2s; }
.constellation span:nth-child(5)[b-7iwx9h75h2] { transform: translate(42px, 62px); animation-delay: -2.8s; }
.constellation span:nth-child(6)[b-7iwx9h75h2] { transform: translate(-108px, 18px); animation-delay: -3.4s; }
.constellation span:nth-child(7)[b-7iwx9h75h2] { transform: translate(108px, 44px); animation-delay: -4s; }

.active-stack[b-7iwx9h75h2] {
    display: grid;
    gap: 10px;
}

.active-row[b-7iwx9h75h2] {
    --tone: var(--calm);
    --weight: 45;
    position: relative;
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(255,255,255,.035);
    border: 1px solid color-mix(in srgb, var(--tone), transparent 84%);
}

.active-row[b-7iwx9h75h2]::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    width: calc(var(--weight) * 1%);
    height: 3px;
    background: linear-gradient(90deg, var(--tone), color-mix(in srgb, var(--tone), white 42%));
}

.active-row strong[b-7iwx9h75h2] {
    color: var(--tone);
}

.summary-panel p[b-7iwx9h75h2] {
    margin: 0;
    color: var(--soft);
    line-height: 1.5;
}

@keyframes drift-b-7iwx9h75h2 {
    0%, 100% { margin-top: 0; filter: saturate(1); }
    50% { margin-top: -7px; filter: saturate(1.22); }
}

@keyframes rise-b-7iwx9h75h2 {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 980px) {
    .init-layout[b-7iwx9h75h2],
    .dimension-list[b-7iwx9h75h2] {
        grid-template-columns: 1fr;
    }

    .init-summary[b-7iwx9h75h2] {
        position: static;
    }
}

@media (max-width: 620px) {
    .init-hud[b-7iwx9h75h2] {
        padding: 16px;
    }

    .init-topbar[b-7iwx9h75h2] {
        align-items: flex-start;
    }

    .ghost-action[b-7iwx9h75h2] {
        display: none;
    }

    .hero-panel[b-7iwx9h75h2] {
        min-height: auto;
    }

    .dimension-toggle[b-7iwx9h75h2] {
        grid-template-columns: auto 1fr;
    }

    .dimension-toggle input[b-7iwx9h75h2] {
        grid-row: span 2;
    }
}
