/* /Components/Loading.razor.rz.scp.css */
body[b-r5pt68algq] {
}
.groovy-loader-container[b-r5pt68algq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fadeIn-b-r5pt68algq 0.5s ease-in-out;
}

.groovy-loader[b-r5pt68algq] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .groovy-loader span[b-r5pt68algq] {
        width: 1.5rem;
        height: 1.5rem;
        background: linear-gradient(45deg, #00c3ff, #ffff1c);
        border-radius: 50%;
        animation: pulse-b-r5pt68algq 1.2s infinite ease-in-out;
        transform-origin: center;
    }

        .groovy-loader span:nth-child(2)[b-r5pt68algq] {
            animation-delay: 0.2s;
        }

        .groovy-loader span:nth-child(3)[b-r5pt68algq] {
            animation-delay: 0.4s;
        }

.loader-text[b-r5pt68algq] {
    font-size: 1.1rem;
    color: #ccc;
    letter-spacing: 0.05rem;
    text-align: center;
}

@keyframes pulse-b-r5pt68algq {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

@keyframes fadeIn-b-r5pt68algq {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* /Pages/Index.razor.rz.scp.css */
/* Home page. Scoped to Index.razor, so nothing here reaches the rest of the app.

   Everything colour-bearing is derived from Bootstrap variables, so the page follows whichever
   Bootswatch theme is selected instead of committing to a palette of its own. The hero deliberately
   echoes .gradient-header from site.css — primary to secondary, white text, success accent — which
   is the header treatment used on every other page. */

.hero[b-33sypfx6it] {
    position: relative;
    overflow: hidden;
    border-radius: var(--bs-border-radius-xl, 1rem);
    border-left: 5px solid var(--bs-success);

    /* The theme's primary, deepened by a scrim, rather than .gradient-header's primary-to-secondary.
       Two measured reasons for the deviation: several themes (Lumen, Zephyr) use a near-white
       secondary, which swallows white text and the translucent panel on the right; and pastel
       themes (Minty) are too light even at full primary — white on bare Minty primary measures
       2.08:1. A thin header bar gets away with both; a surface this size does not. The scrim keeps
       every theme above 4.5:1 while the hue still reads as the theme's own. */
    background-color: var(--bs-primary);
    background-image: linear-gradient(100deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 100%);
    color: #fff;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
}

/* Two slow-drifting light fields. Plain white at low opacity rather than a colour of their own, so
   they read as depth over any theme's gradient instead of fighting it. */
.hero[b-33sypfx6it]::before,
.hero[b-33sypfx6it]::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
}

.hero[b-33sypfx6it]::before {
    width: 30rem;
    height: 30rem;
    top: -12rem;
    right: -7rem;
    animation: drift-a-b-33sypfx6it 18s ease-in-out infinite alternate;
}

.hero[b-33sypfx6it]::after {
    width: 24rem;
    height: 24rem;
    bottom: -13rem;
    left: -5rem;
    opacity: 0.6;
    animation: drift-b-b-33sypfx6it 22s ease-in-out infinite alternate;
}

@keyframes drift-a-b-33sypfx6it {
    to { transform: translate3d(-4rem, 3rem, 0) scale(1.15); }
}

@keyframes drift-b-b-33sypfx6it {
    to { transform: translate3d(3rem, -2.5rem, 0) scale(1.1); }
}

.hero-inner[b-33sypfx6it] {
    position: relative;
    z-index: 1;
}

.hero-mark[b-33sypfx6it] {
    width: 3.75rem;
    height: 3.75rem;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.3));
}

.wordmark[b-33sypfx6it] {
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: clamp(2.25rem, 5.5vw, 3.5rem);
    line-height: 1;
    color: #fff;
}

.hero-lead[b-33sypfx6it] {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Matches the muted-on-gradient treatment the app already uses for header subtitles. */
.hero-note[b-33sypfx6it] {
    color: rgba(255, 255, 255, 0.82);
}

/* A vignette of a run in progress. Deliberately static markup — it illustrates the product without
   pretending to be live data, which on a public page would just be fiction. */
.vignette[b-33sypfx6it] {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--bs-border-radius-lg, 0.5rem);
    padding: 1.1rem 1.25rem;
}

.vignette-title[b-33sypfx6it] {
    font-weight: 700;
}

.vignette-sub[b-33sypfx6it] {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.8rem;
}

.vstep[b-33sypfx6it] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
}

.vstep-dot[b-33sypfx6it] {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.7rem;
    flex: 0 0 auto;
}

/* The same status colours the app uses everywhere else: success for done, warning for the step
   currently being waited on. */
.vstep-done[b-33sypfx6it]   { background: var(--bs-success); color: rgba(0, 0, 0, 0.72); }
.vstep-active[b-33sypfx6it] { background: var(--bs-warning); color: var(--bs-dark); animation: pulse-b-33sypfx6it 2s ease-in-out infinite; }
.vstep-todo[b-33sypfx6it]   { background: rgba(255, 255, 255, 0.22); color: rgba(255, 255, 255, 0.85); }

@keyframes pulse-b-33sypfx6it {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.45); }
    50%      { box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0); }
}

.vstep-who[b-33sypfx6it] {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    white-space: nowrap;
}

.vprogress[b-33sypfx6it] {
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.22);
    overflow: hidden;
}

.vprogress > span[b-33sypfx6it] {
    display: block;
    height: 100%;
    width: 60%;
    border-radius: 99px;
    background: var(--bs-success);
    animation: fill-b-33sypfx6it 2.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fill-b-33sypfx6it {
    from { width: 0; }
}

/* ---------------------------------------------------------------- features */

/* Layered on .card rather than replacing it, so the card itself stays whatever the theme makes it. */
.feature-card[b-33sypfx6it] {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover[b-33sypfx6it] {
    transform: translateY(-4px);
    box-shadow: var(--bs-box-shadow, 0 0.5rem 1rem rgba(0, 0, 0, 0.15)) !important;
}

/* The hero's recipe, reused: the theme's primary deepened by a scrim, carrying a white glyph.
   Two alternatives were measured and rejected — white on bare primary bottoms out at 2.08:1 on
   Minty, and Bootstrap's own --bs-primary-bg-subtle / --bs-primary-text-emphasis pair, which ought
   to be safe by definition, measures 2.47:1 on Slate. This is the only version that clears AA on
   all 25 themes. */
.feature-icon[b-33sypfx6it],
.step-num[b-33sypfx6it] {
    background-color: var(--bs-primary);
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.52));
    color: #fff;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.feature-icon[b-33sypfx6it] {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--bs-border-radius, 0.375rem);
    font-size: 1.3rem;
    margin-bottom: 0.85rem;
}

.step-num[b-33sypfx6it] {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    font-weight: 700;
}

.feature-title[b-33sypfx6it] {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.section-title[b-33sypfx6it] {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-kicker[b-33sypfx6it] {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--bs-primary);
}

/* ---------------------------------------------------------------- entrance */

.reveal[b-33sypfx6it] {
    animation: reveal-b-33sypfx6it 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes reveal-b-33sypfx6it {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: none; }
}

/* Motion here is decoration; anyone who has asked the OS to stop it gets the page without it. */
@media (prefers-reduced-motion: reduce) {
    .hero[b-33sypfx6it]::before,
    .hero[b-33sypfx6it]::after,
    .vstep-active[b-33sypfx6it],
    .vprogress > span[b-33sypfx6it],
    .reveal[b-33sypfx6it] {
        animation: none;
    }

    .feature-card[b-33sypfx6it] {
        transition: none;
    }
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-02qk7gdatm] {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-brand[b-02qk7gdatm] {
    font-size: 1.1rem;
}

.nav-item a[b-02qk7gdatm] {
    color: #d7d7d7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

    .nav-item a.active[b-02qk7gdatm] {
        background-color: rgba(255, 255, 255, 0.25);
        color: white;
    }

    .nav-item a:hover[b-02qk7gdatm] {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
