/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-am9kyoygwm],
.components-reconnect-repeated-attempt-visible[b-am9kyoygwm],
.components-reconnect-failed-visible[b-am9kyoygwm],
.components-pause-visible[b-am9kyoygwm],
.components-resume-failed-visible[b-am9kyoygwm],
.components-rejoining-animation[b-am9kyoygwm] {
    display: none;
}

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


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

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

}

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

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

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

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

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

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

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

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

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

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

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

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

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

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

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

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/SiteFooter.razor.rz.scp.css */
.footer[b-t8unr37o8p] { color: var(--on-ink-mute); padding: 48px 0 28px; font-size: .92rem; }

.footer__grid[b-t8unr37o8p] { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.4rem; padding-bottom: 2.4rem; }
.footer__brand[b-t8unr37o8p]  .mark { color: var(--paper); }
.footer__tag[b-t8unr37o8p] { max-width: 34ch; margin: 1rem 0 .5rem; color: #B5BBB2; }
.footer__origin[b-t8unr37o8p] { color: var(--on-ink-mute); }

.footer__col[b-t8unr37o8p] { display: flex; flex-direction: column; gap: .55rem; }
.footer__col h4[b-t8unr37o8p] { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--hivis); margin-bottom: .5rem; }
.footer__col a[b-t8unr37o8p] { color: #B5BBB2; text-decoration: none; width: fit-content; }
.footer__col a:hover[b-t8unr37o8p] { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }
.footer__note[b-t8unr37o8p] { margin-top: .3rem; }

.footer__base[b-t8unr37o8p] {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    padding-top: 1.4rem; border-top: 1px solid #2E352D; font-size: .84rem;
}

@media (max-width: 760px) {
    .footer__grid[b-t8unr37o8p] { grid-template-columns: 1fr 1fr; }
    .footer__brand[b-t8unr37o8p] { grid-column: 1 / -1; }
}
@media (max-width: 460px) { .footer__grid[b-t8unr37o8p] { grid-template-columns: 1fr; } }
/* /Components/Layout/TopBar.razor.rz.scp.css */
.masthead[b-5du6jsmqsd] { position: sticky; top: 0; z-index: 100; border-bottom: 1px solid var(--rule-dark); }
.masthead__toggle[b-5du6jsmqsd] { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }

.masthead__inner[b-5du6jsmqsd] { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 16px; }

.masthead__nav[b-5du6jsmqsd] { display: flex; gap: 26px; font-size: 15px; font-weight: 500; margin-left: auto; }
.masthead__nav a[b-5du6jsmqsd] { text-decoration: none; opacity: .82; }
.masthead__nav a:hover[b-5du6jsmqsd] { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }

.masthead__cta[b-5du6jsmqsd] { padding: 11px 18px; font-size: .95rem; }

.masthead__burger[b-5du6jsmqsd] { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; }
.masthead__burger span[b-5du6jsmqsd] { width: 24px; height: 2px; background: var(--paper); transition: transform .2s, opacity .2s; }

.masthead__mobile[b-5du6jsmqsd] {
    display: none; flex-direction: column;
    padding: 0 var(--gutter); max-height: 0; overflow: hidden;
    transition: max-height .25s ease, padding .25s ease;
    background: var(--green); border-top: 1px solid var(--rule-dark);
}
.masthead__mobile a[b-5du6jsmqsd] { padding: .8rem 0; font-weight: 500; text-decoration: none; border-bottom: 1px solid var(--rule-dark); }
.masthead__mobile a.btn[b-5du6jsmqsd] { border-bottom: 0; margin: .9rem 0 1rem; }
.masthead__toggle:checked ~ .masthead__mobile[b-5du6jsmqsd] { max-height: 440px; padding-block: .3rem 0; }

.masthead__toggle:checked ~ .masthead__inner .masthead__burger span:nth-child(1)[b-5du6jsmqsd] { transform: translateY(7px) rotate(45deg); }
.masthead__toggle:checked ~ .masthead__inner .masthead__burger span:nth-child(2)[b-5du6jsmqsd] { opacity: 0; }
.masthead__toggle:checked ~ .masthead__inner .masthead__burger span:nth-child(3)[b-5du6jsmqsd] { transform: translateY(-7px) rotate(-45deg); }
.masthead__toggle:focus-visible ~ .masthead__inner .masthead__burger[b-5du6jsmqsd] { outline: 3px solid var(--hivis); outline-offset: 2px; }

@media (max-width: 860px) {
    .masthead__nav[b-5du6jsmqsd], .masthead__cta[b-5du6jsmqsd] { display: none; }
    .masthead__burger[b-5du6jsmqsd] { display: flex; }
    .masthead__mobile[b-5du6jsmqsd] { display: flex; }
}
/* /Components/Sections/AskTheHand.razor.rz.scp.css */
/* Floating launcher, bottom right, expanding into a chat panel. */
.ask[b-fb54gzhttd] { position: fixed; right: 24px; bottom: 24px; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

/* ---------- launcher ---------- */
.ask__launch[b-fb54gzhttd] {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font); font-size: .98rem; font-weight: 700; color: var(--ink);
    background: var(--hivis); border: 2px solid var(--hivis); border-radius: var(--radius);
    padding: 13px 18px; cursor: pointer;
    box-shadow: 0 10px 28px rgba(22, 28, 21, .3);
    transition: background .15s, border-color .15s, transform .15s;
    order: 2;
}
.ask__launch:hover[b-fb54gzhttd] { background: var(--hivis-hi); border-color: var(--hivis-hi); transform: translateY(-1px); }
.ask--open .ask__launch[b-fb54gzhttd] { display: none; }

/* A speech balloon drawn from a box and a tail: no mascot, no icon set. */
.ask__balloon[b-fb54gzhttd] { position: relative; width: 17px; height: 13px; flex: 0 0 auto; background: var(--ink); border-radius: 2px; }
.ask__balloon[b-fb54gzhttd]::after {
    content: ""; position: absolute; left: 3px; bottom: -4px;
    border-left: 5px solid var(--ink); border-bottom: 5px solid transparent;
}

/* ---------- panel ---------- */
.ask__panel[b-fb54gzhttd] {
    order: 1;
    width: min(400px, calc(100vw - 32px));
    max-height: min(640px, calc(100vh - 48px));
    display: flex; flex-direction: column;
    background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(22, 28, 21, .38);
    overflow: hidden;
}
@media (prefers-reduced-motion: no-preference) {
    .ask__panel[b-fb54gzhttd] { animation: ask-rise-b-fb54gzhttd .16s ease-out; }
}
@keyframes ask-rise-b-fb54gzhttd { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.ask__bar[b-fb54gzhttd] {
    display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
    padding: 14px 16px; background: var(--green); color: var(--paper);
}
.ask__no[b-fb54gzhttd] { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--on-green-mute); margin-bottom: 4px; }
.ask__no[b-fb54gzhttd]::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--hivis); margin-right: 8px; }
.ask__bar h3[b-fb54gzhttd] { font-size: 1.02rem; font-weight: 700; letter-spacing: -.02em; color: var(--paper); }

.ask__close[b-fb54gzhttd] {
    flex: 0 0 auto; background: none; border: 0; cursor: pointer; padding: 2px 4px;
    color: var(--on-green-soft); font-size: 1rem; line-height: 1; font-family: var(--font);
}
.ask__close:hover[b-fb54gzhttd] { color: var(--paper); }

.ask__body[b-fb54gzhttd] { padding: 16px; overflow-y: auto; flex: 1 1 auto; }
.ask__intro[b-fb54gzhttd] { color: var(--muted); font-size: .92rem; margin-bottom: 14px; }

/* ---------- transcript ---------- */
.ask__log[b-fb54gzhttd] { display: flex; flex-direction: column; gap: 14px; }

.msg[b-fb54gzhttd] { display: flex; flex-direction: column; gap: 4px; max-width: 88%; }
.msg--you[b-fb54gzhttd]  { align-self: flex-end; align-items: flex-end; }
.msg--hand[b-fb54gzhttd] { align-self: flex-start; align-items: flex-start; }

.msg__who[b-fb54gzhttd] { font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.msg--hand .msg__who[b-fb54gzhttd]::before {
    content: ""; display: inline-block; width: 7px; height: 7px;
    background: var(--hivis); margin-right: 6px; vertical-align: 1px;
}

.msg__bubble[b-fb54gzhttd] { border-radius: var(--radius); padding: 10px 13px; font-size: .95rem; }
.msg--you .msg__bubble[b-fb54gzhttd] { background: var(--ink); color: var(--paper); font-weight: 500; border-bottom-right-radius: 1px; }
.msg--hand .msg__bubble[b-fb54gzhttd] { background: var(--paper); color: var(--body-soft); border: 1px solid var(--rule); border-bottom-left-radius: 1px; }
.msg--hand .msg__bubble p + p[b-fb54gzhttd],
.msg--hand .msg__bubble ul + p[b-fb54gzhttd],
.msg--hand .msg__bubble p + ul[b-fb54gzhttd] { margin-top: 8px; }
.msg--hand .msg__bubble ul[b-fb54gzhttd] { list-style: none; }
.msg--hand .msg__bubble li[b-fb54gzhttd] { padding: 4px 0 4px 17px; position: relative; }
.msg--hand .msg__bubble li[b-fb54gzhttd]::before { content: ""; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; background: var(--hivis); }

.ask__status[b-fb54gzhttd] { display: inline-flex; align-items: center; gap: 7px; margin-top: 6px; font-size: .82rem; color: var(--muted); }
.ask__spinner[b-fb54gzhttd] {
    width: 12px; height: 12px; flex: 0 0 auto;
    border: 2px solid rgba(22, 28, 21, .25); border-top-color: var(--ink);
    border-radius: 50%; animation: ask-spin-b-fb54gzhttd .7s linear infinite;
}
.ask__spinner--ink[b-fb54gzhttd] { border-color: var(--rule); border-top-color: var(--muted); }
@keyframes ask-spin-b-fb54gzhttd { to { transform: rotate(360deg); } }
.ask__dots[b-fb54gzhttd]::after { content: ""; animation: dots-b-fb54gzhttd 1.2s steps(4, end) infinite; }
@keyframes dots-b-fb54gzhttd { 0% { content: ""; } 25% { content: "."; } 50% { content: ".."; } 75% { content: "..."; } }
@media (prefers-reduced-motion: reduce) { .ask__spinner[b-fb54gzhttd] { animation: none; } }

/* ---------- suggestions ---------- */
.ask__more[b-fb54gzhttd] { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.ask__more-k[b-fb54gzhttd] { width: 100%; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.ask__starter[b-fb54gzhttd] {
    font-family: var(--font); font-size: .86rem; font-weight: 500; color: var(--body-soft); text-align: left;
    background: #fff; border: 1.5px solid var(--rule); border-radius: var(--radius-sm);
    padding: 7px 10px; cursor: pointer;
}
.ask__starter:hover[b-fb54gzhttd] { border-color: var(--ink); color: var(--ink); }

.ask__err[b-fb54gzhttd] {
    margin-top: 12px; padding: .7rem .9rem;
    border-left: 4px solid #B23A1E; background: #F6E9E4; color: #7A2A15;
    font-size: .88rem; line-height: 1.4; border-radius: var(--radius-sm);
}
.ask__err a[b-fb54gzhttd] { font-weight: 600; }

/* ---------- composer ---------- */
.ask__form[b-fb54gzhttd] { padding: 12px 16px 16px; border-top: 1px solid var(--rule); background: var(--card); }
.ask__label[b-fb54gzhttd] { position: absolute; left: -9999px; }
.ask__row[b-fb54gzhttd] { display: flex; gap: 8px; }
.ask__row input[b-fb54gzhttd] {
    flex: 1; min-width: 0; font-family: var(--font); font-size: .95rem; color: var(--ink);
    background: #fff; border: 1.5px solid var(--rule); border-radius: var(--radius-sm); padding: 10px 12px;
}
.ask__row input:focus[b-fb54gzhttd] { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(195, 217, 59, .45); }
.ask__row input:disabled[b-fb54gzhttd] { background: var(--paper); }
.ask__send[b-fb54gzhttd] { padding: 10px 16px; font-size: .95rem; gap: .45em; }
.ask__send:disabled[b-fb54gzhttd] { opacity: 1; }
.ask__send[disabled]:not(:has(.ask__spinner))[b-fb54gzhttd] { opacity: .5; }

/* ---------- phones: the panel takes the screen ---------- */
@media (max-width: 560px) {
    .ask[b-fb54gzhttd] { right: 16px; bottom: 16px; left: 16px; align-items: stretch; }
    .ask__launch[b-fb54gzhttd] { align-self: flex-end; }
    .ask__panel[b-fb54gzhttd] { width: 100%; max-height: calc(100vh - 32px); }
    .msg[b-fb54gzhttd] { max-width: 92%; }
}
/* /Components/Sections/Band.razor.rz.scp.css */
.band[b-4dxtwj9bcs] { padding: 26px 0; }
.band p[b-4dxtwj9bcs] { font-size: clamp(1.05rem, 2vw, 1.38rem); font-weight: 600; letter-spacing: -.02em; max-width: 60ch; }
.band p b[b-4dxtwj9bcs] { color: var(--hivis); font-weight: 700; }
/* /Components/Sections/Faq.razor.rz.scp.css */
.faq__grid[b-b2275dy2vp] { display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: start; }
.faq__head h2[b-b2275dy2vp] { margin-bottom: 14px; max-width: 14ch; }
.faq__head p[b-b2275dy2vp] { color: var(--muted); font-size: 1rem; }
.faq__head a[b-b2275dy2vp] { text-underline-offset: 3px; }

.faq__list[b-b2275dy2vp] { border-top: 2px solid var(--ink); }
.qa[b-b2275dy2vp] { border-bottom: 1px solid var(--rule); }
.qa summary[b-b2275dy2vp] {
    cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em;
    position: relative;
}
.qa summary[b-b2275dy2vp]::-webkit-details-marker { display: none; }
.qa summary[b-b2275dy2vp]::after {
    content: ""; position: absolute; right: 4px; top: 50%; width: 13px; height: 13px;
    border: 2px solid var(--ink); border-width: 0 2px 2px 0; transform: translateY(-70%) rotate(45deg);
    transition: transform .15s;
}
.qa[open] summary[b-b2275dy2vp]::after { transform: translateY(-30%) rotate(225deg); }
.qa p[b-b2275dy2vp] { padding: 0 40px 20px 0; color: var(--body-soft); max-width: 62ch; }

@media (max-width: 860px) { .faq__grid[b-b2275dy2vp] { grid-template-columns: 1fr; gap: 28px; } }
/* /Components/Sections/Hero.razor.rz.scp.css */
.hero[b-i76nhpgd5c] { padding: 60px 0 0; overflow: hidden; }
.hero__grid[b-i76nhpgd5c] {
    display: grid;
    grid-template-columns: 1fr .82fr;
    column-gap: 64px;
    row-gap: 72px;          /* clears the ticket, which hangs below the photo */
    align-items: center;
}
.hero__copy[b-i76nhpgd5c] { grid-column: 1; grid-row: 1; }
.shot[b-i76nhpgd5c] { grid-column: 2; grid-row: 1; }

/* The definition band is a grid item so it can be reordered on a phone, but it still
   reads as a full-width band: these margins bleed it out to the viewport edges. */
.hero[b-i76nhpgd5c]  .kerf { grid-column: 1 / -1; grid-row: 2; margin-inline: calc(50% - 50vw); }

.hero h1[b-i76nhpgd5c] { margin: 0 0 22px; max-width: 12ch; }
.hero__lede[b-i76nhpgd5c] { margin: 0 0 14px; color: var(--on-green); }
.hero__plain[b-i76nhpgd5c] { font-size: 1rem; max-width: 42ch; margin: 0 0 30px; color: var(--on-green-mute); }
.hero__plain b[b-i76nhpgd5c] { color: var(--hivis); font-weight: 600; }
/* Quiet link to the chat, sitting under the buttons. */
.hero__ask[b-i76nhpgd5c] {
    display: inline-flex; align-items: baseline; gap: .45em;
    background: none; border: 0; padding: 0; cursor: pointer;
    font-family: var(--font);
    margin-top: 20px; font-size: .98rem; font-weight: 600;
    color: var(--hivis); text-decoration: none;
    border-bottom: 1.5px solid rgba(195, 217, 59, .45);
    padding-bottom: 2px;
    transition: border-color .15s, color .15s;
}
.hero__ask:hover[b-i76nhpgd5c] { color: var(--hivis-hi); border-bottom-color: var(--hivis-hi); }
.hero__ask span[b-i76nhpgd5c] { transition: transform .18s; display: inline-block; }
.hero__ask:hover span[b-i76nhpgd5c] { transform: translateX(3px); }

/* The job ticket deliberately overlaps into this column, so no block of copy may run
   the full width or its tail disappears behind the card. */
.hero__copy > p[b-i76nhpgd5c] { max-width: 44ch; }

.shot[b-i76nhpgd5c] { position: relative; margin: 0; }
.shot img[b-i76nhpgd5c] {
    width: 100%; height: clamp(430px, 52vw, 600px); object-fit: cover; object-position: 52% 28%;
    border-radius: var(--radius); box-shadow: 0 24px 48px rgba(0,0,0,.34);
}

@media (max-width: 980px) {
    .hero[b-i76nhpgd5c] { padding: 44px 0 0; }
    .hero__grid[b-i76nhpgd5c] { grid-template-columns: 1fr; row-gap: 34px; }
    /* Single column, so place by order instead: copy, definition, then the photo. */
    .hero__copy[b-i76nhpgd5c], .shot[b-i76nhpgd5c], .hero[b-i76nhpgd5c]  .kerf { grid-column: 1; grid-row: auto; }
    .hero__copy[b-i76nhpgd5c] { order: 1; }
    .hero[b-i76nhpgd5c]  .kerf { order: 2; margin-top: 10px; }
    .shot[b-i76nhpgd5c] { order: 3; margin-bottom: 44px; }
    .shot img[b-i76nhpgd5c] { height: clamp(340px, 62vw, 460px); }
}
/* /Components/Sections/HireByMonth.razor.rz.scp.css */
.pay[b-9g4o6fe3hx] { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.pay > div[b-9g4o6fe3hx] { padding: 30px; border-radius: var(--radius); }
.pay__them[b-9g4o6fe3hx] { border: 1px solid var(--rule); }
.pay h3[b-9g4o6fe3hx] { margin: 0 0 18px; font-size: 1.05rem; font-weight: 600; }
.pay__them h3[b-9g4o6fe3hx] { color: var(--muted); }
.pay__us h3[b-9g4o6fe3hx] { color: var(--on-green-soft); }

.amt[b-9g4o6fe3hx] { font-size: clamp(2.4rem, 4.6vw, 3.3rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.amt i[b-9g4o6fe3hx] { font-style: normal; font-size: 1.05rem; font-weight: 500; letter-spacing: 0; color: var(--muted); }
.pay__us .amt i[b-9g4o6fe3hx] { color: var(--on-green-soft); }

.pay ul[b-9g4o6fe3hx] { list-style: none; margin: 20px 0 0; font-size: .97rem; }
.pay li[b-9g4o6fe3hx] { padding: 9px 0; border-top: 1px solid var(--rule); color: var(--muted); }
.pay__us li[b-9g4o6fe3hx] { border-top-color: var(--rule-dark); color: #C9D5C3; }

.payline[b-9g4o6fe3hx] { margin: 30px 0 0; font-size: 1.05rem; font-weight: 600; max-width: 56ch; }
.payfine[b-9g4o6fe3hx] { margin: 10px 0 0; color: var(--muted); max-width: 56ch; font-size: .95rem; }

@media (max-width: 760px) { .pay[b-9g4o6fe3hx] { grid-template-columns: 1fr; } }
/* /Components/Sections/JobTicket.razor.rz.scp.css */
.ticket[b-7iemeo4kud] {
    position: absolute; left: -84px; bottom: -38px; width: 330px; z-index: 3;
    background: var(--card); color: var(--ink); border-radius: var(--radius);
    box-shadow: 0 22px 44px rgba(0,0,0,.42);
}
.ticket__top[b-7iemeo4kud] { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 13px 16px; border-bottom: 2px solid var(--ink); }
.ticket__top strong[b-7iemeo4kud] { font-size: 13.5px; font-weight: 700; letter-spacing: -.01em; }
.ticket__top em[b-7iemeo4kud] { font-style: normal; font-size: 11.5px; color: var(--muted); }

.ticket ul[b-7iemeo4kud] { list-style: none; padding: 2px 16px 8px; }
.ticket li[b-7iemeo4kud] { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--rule); font-size: 13.5px; line-height: 1.35; }
.ticket li:last-child[b-7iemeo4kud] { border-bottom: 0; }
.ticket li small[b-7iemeo4kud] { display: block; color: var(--muted); font-size: 12px; margin-top: 1px; }

.ticket__foot[b-7iemeo4kud] { padding: 11px 16px 13px; border-top: 2px solid var(--ink); font-size: 12.5px; color: var(--muted); }
.ticket__foot b[b-7iemeo4kud] { color: var(--ink); font-weight: 700; }

/* Lines land one at a time, ticks pop after. Pure CSS so Blazor re-renders can't interrupt it. */
@media (prefers-reduced-motion: no-preference) {
    .ticket li[b-7iemeo4kud] { opacity: 0; animation: line-b-7iemeo4kud .34s ease-out forwards; }
    .ticket li:nth-child(1)[b-7iemeo4kud] { animation-delay: .30s; }
    .ticket li:nth-child(2)[b-7iemeo4kud] { animation-delay: .50s; }
    .ticket li:nth-child(3)[b-7iemeo4kud] { animation-delay: .70s; }
    .ticket li:nth-child(4)[b-7iemeo4kud] { animation-delay: .90s; }
    .ticket li:nth-child(5)[b-7iemeo4kud] { animation-delay: 1.10s; }
    .ticket .done .tick[b-7iemeo4kud]::after { transform: rotate(42deg) scale(0); animation: pop-b-7iemeo4kud .22s ease-out forwards; }
    .ticket li:nth-child(1) .tick[b-7iemeo4kud]::after { animation-delay: .47s; }
    .ticket li:nth-child(2) .tick[b-7iemeo4kud]::after { animation-delay: .67s; }
    .ticket li:nth-child(3) .tick[b-7iemeo4kud]::after { animation-delay: .87s; }
    .ticket li:nth-child(4) .tick[b-7iemeo4kud]::after { animation-delay: 1.07s; }
    .ticket li:nth-child(5) .tick[b-7iemeo4kud]::after { animation-delay: 1.27s; }
}
@keyframes line-b-7iemeo4kud { from { opacity: 0; transform: translateY(7px); } to { opacity: 1; transform: none; } }
@keyframes pop-b-7iemeo4kud  { from { transform: rotate(42deg) scale(0); } to { transform: rotate(42deg) scale(1); } }

@media (max-width: 980px) {
    .ticket[b-7iemeo4kud] { position: static; width: 100%; max-width: 420px; margin-top: 18px; box-shadow: 0 14px 28px rgba(0,0,0,.3); }
}
/* /Components/Sections/KerfBand.razor.rz.scp.css */
/* A thin hi-vis rule reads as the cut line the name refers to. Structural, not a drawn blade. */
.kerf[b-ufxmzmdi4n] { padding: 30px 0; border-top: 3px solid var(--hivis); }

.kerf__grid[b-ufxmzmdi4n] { display: grid; grid-template-columns: minmax(0, 20rem) minmax(0, 1fr); gap: 20px 48px; align-items: baseline; }

.kerf__def dt[b-ufxmzmdi4n] {
    font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.03em;
    color: var(--hivis); line-height: 1.1;
}
.kerf__pos[b-ufxmzmdi4n] { font-size: .8rem; font-weight: 500; font-style: italic; letter-spacing: 0; color: var(--on-ink-mute); margin-left: .5em; }
.kerf__def dd[b-ufxmzmdi4n] { margin: 4px 0 0; font-size: 1.05rem; color: var(--paper); }

.kerf__why[b-ufxmzmdi4n] { color: #B5BBB2; font-size: 1rem; max-width: 52ch; }

@media (max-width: 760px) {
    .kerf__grid[b-ufxmzmdi4n] { grid-template-columns: 1fr; gap: 12px; }
}
/* /Components/Sections/PutToWork.razor.rz.scp.css */
.close__grid[b-l7ytj7t0xp] { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.close h2[b-l7ytj7t0xp] { max-width: 16ch; margin-bottom: 16px; }
.close__lede[b-l7ytj7t0xp] { color: var(--on-green); margin-bottom: 28px; }
.close__terms li[b-l7ytj7t0xp] { font-size: .98rem; color: var(--on-green-soft); max-width: 46ch; }
.close__terms b[b-l7ytj7t0xp] { color: var(--paper); display: block; margin-bottom: 2px; }
.close__alt[b-l7ytj7t0xp] { margin-top: 22px; font-size: .92rem; color: var(--on-green-mute); }
.close__alt a[b-l7ytj7t0xp] { color: var(--paper); text-underline-offset: 3px; }

.close__form[b-l7ytj7t0xp] { background: var(--card); border-radius: var(--radius); padding: 28px; box-shadow: 0 22px 44px rgba(0,0,0,.3); }

@media (max-width: 900px) {
    .close__grid[b-l7ytj7t0xp] { grid-template-columns: 1fr; gap: 36px; }
    .close__form[b-l7ytj7t0xp] { padding: 22px; }
}
/* /Components/Sections/Shop.razor.rz.scp.css */
.shop__grid[b-ebeiuizpe8] { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.shop h2[b-ebeiuizpe8] { margin-bottom: 18px; }
.shop p[b-ebeiuizpe8] { max-width: 52ch; color: var(--body-soft); }
.shop p + p[b-ebeiuizpe8] { margin-top: 16px; }
.shop p b[b-ebeiuizpe8] { color: var(--ink); }

.figs[b-ebeiuizpe8] { border-left: 4px solid var(--hivis); padding-left: 24px; }
.fig[b-ebeiuizpe8] { padding: 14px 0; border-bottom: 1px solid var(--rule); }
.fig:last-child[b-ebeiuizpe8] { border-bottom: 0; }
.fig b[b-ebeiuizpe8] { display: block; font-size: 2.1rem; font-weight: 800; letter-spacing: -.035em; line-height: 1; }
.fig span[b-ebeiuizpe8] { display: block; color: var(--muted); font-size: .94rem; margin-top: 5px; }

@media (max-width: 860px) { .shop__grid[b-ebeiuizpe8] { grid-template-columns: 1fr; gap: 36px; } }
/* /Components/Sections/TalkToIt.razor.rz.scp.css */
.talk__grid[b-dac2ux5pus] { display: grid; grid-template-columns: 1fr .9fr; gap: 56px; align-items: center; }
.talk h2[b-dac2ux5pus] { margin-bottom: 16px; max-width: 16ch; }
.talk__lede[b-dac2ux5pus] { color: var(--on-green); margin-bottom: 26px; }
.talk__points li[b-dac2ux5pus] { font-size: .98rem; color: var(--on-green-soft); max-width: 48ch; }
.talk__points b[b-dac2ux5pus] { color: var(--paper); font-weight: 700; display: block; margin-bottom: 2px; }
.talk__rules[b-dac2ux5pus] { margin-top: 22px; font-size: .92rem; color: var(--on-green-mute); max-width: 48ch; }

.log[b-dac2ux5pus] { background: var(--card); color: var(--ink); border-radius: var(--radius); box-shadow: 0 22px 44px rgba(0,0,0,.35); font-size: 14px; }
.log__head[b-dac2ux5pus] { display: flex; justify-content: space-between; gap: 10px; padding: 12px 16px; border-bottom: 2px solid var(--ink); font-size: 11.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.log__head span:first-child[b-dac2ux5pus]::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--hivis); margin-right: 8px; }
.log__q[b-dac2ux5pus] { padding: 12px 16px; font-weight: 600; border-bottom: 1px solid var(--rule); }
.log__a[b-dac2ux5pus] { padding: 12px 16px; border-bottom: 1px solid var(--rule); color: var(--body-soft); }
.log__a p + p[b-dac2ux5pus], .log__a table + p[b-dac2ux5pus] { margin-top: 8px; }
.log__a table[b-dac2ux5pus] { width: 100%; border-collapse: collapse; margin-top: 8px; }
.log__a td[b-dac2ux5pus] { padding: 5px 0; border-top: 1px solid var(--rule); font-variant-numeric: tabular-nums; }
.log__a td:nth-child(2)[b-dac2ux5pus] { color: var(--muted); text-align: right; padding-right: 12px; white-space: nowrap; }
.log__a td:last-child[b-dac2ux5pus] { text-align: right; font-weight: 600; white-space: nowrap; }
.log > :last-child[b-dac2ux5pus] { border-bottom: 0; }

@media (max-width: 900px) {
    .talk__grid[b-dac2ux5pus] { grid-template-columns: 1fr; gap: 36px; }
}
/* /Components/Sections/WhatItDoes.razor.rz.scp.css */
.jobs[b-ihznrfquud] { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; border-top: 2px solid var(--ink); }
.job[b-ihznrfquud] { padding: 24px 0; border-bottom: 1px solid var(--rule); }
.job h3[b-ihznrfquud] { margin: 0 0 6px; }
.job p[b-ihznrfquud] { color: var(--muted); font-size: .98rem; max-width: 42ch; }

.also[b-ihznrfquud] { display: grid; grid-template-columns: 180px 1fr; gap: 24px; margin-top: 36px; align-items: start; }
.also__k[b-ihznrfquud] { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); padding-top: 4px; }
.also__k[b-ihznrfquud]::before { content: ""; display: inline-block; width: 9px; height: 9px; background: var(--hivis); margin-right: 9px; }
.also__list[b-ihznrfquud] { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 32px; }
.also__list li[b-ihznrfquud] { padding: 8px 0; border-bottom: 1px solid var(--rule); font-size: .95rem; color: var(--body-soft); }

@media (max-width: 760px) {
    .jobs[b-ihznrfquud] { grid-template-columns: 1fr; }
    .also[b-ihznrfquud] { grid-template-columns: 1fr; gap: 10px; }
    .also__list[b-ihznrfquud] { grid-template-columns: 1fr; }
}
/* /Components/Shared/LeadForm.razor.rz.scp.css */
.lead[b-qrx1n01yba] { width: 100%; color: var(--ink); }

.lead__no[b-qrx1n01yba] { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.lead__head[b-qrx1n01yba] { margin-bottom: 20px; padding-bottom: 16px; border-bottom: 2px solid var(--ink); }
.lead__head h3[b-qrx1n01yba] { font-size: 1.5rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: 6px; }
.lead__head p[b-qrx1n01yba] { color: var(--muted); font-size: .95rem; max-width: 44ch; }

.lead__row[b-qrx1n01yba] { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead[b-qrx1n01yba]  .field { margin-bottom: 14px; }
.lead__opt[b-qrx1n01yba] { font-weight: 400; color: var(--muted); }

.lead__err[b-qrx1n01yba] {
    margin: 4px 0 14px; padding: .8rem 1rem;
    border-left: 4px solid #B23A1E; background: #F6E9E4; color: #7A2A15;
    font-size: .9rem; line-height: 1.4; border-radius: var(--radius-sm);
}
.lead__err a[b-qrx1n01yba] { font-weight: 600; }

.lead__submit[b-qrx1n01yba] { width: 100%; margin-top: 6px; }
.lead__fine[b-qrx1n01yba] { margin-top: 12px; font-size: .84rem; color: var(--muted); text-align: center; }

.lead__done h3[b-qrx1n01yba] { font-size: 1.5rem; font-weight: 800; letter-spacing: -.025em; margin-bottom: 8px; }
.lead__done p[b-qrx1n01yba] { color: var(--body-soft); font-size: .98rem; max-width: 46ch; }
.lead__next[b-qrx1n01yba] { list-style: none; margin-top: 20px; border-top: 2px solid var(--ink); }
.lead__next li[b-qrx1n01yba] { display: flex; gap: 11px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: .95rem; }
.lead__next li:not(.done)[b-qrx1n01yba] { color: var(--muted); }

@media (max-width: 520px) { .lead__row[b-qrx1n01yba] { grid-template-columns: 1fr; gap: 0; } }
/* /Components/Shared/Logo.razor.rz.scp.css */
.mark[b-ttcdxzuth0] {
    display: inline-flex; align-items: baseline; gap: 9px;
    font-weight: 800; font-size: 21px; letter-spacing: -.02em;
    text-decoration: none; line-height: 1; white-space: nowrap;
}
.mark span[b-ttcdxzuth0] { width: 11px; height: 11px; background: var(--hivis); display: inline-block; transform: translateY(-1px); }
