/* /Components/Layout/Atmosphere.razor.rz.scp.css */
/* Full-viewport decorative overlay. The grain + blue mesh sit ON TOP of content as a texture wash
   (opaque section backgrounds would hide a behind-overlay), so z-index is above content/chrome but
   below the custom cursor (9999) to keep the reticle crisp. pointer-events:none keeps it inert;
   contain:strict + overflow:hidden isolate/clip its paint. Opacities stay low enough to preserve AA. */
.atmosphere[b-altxp0p9n6] { position: fixed; inset: 0; pointer-events: none; z-index: 9000; contain: strict; overflow: hidden; }

/* Static film grain — opacity low enough to preserve AA text contrast above it; never animated. */
.atmosphere-grain[b-altxp0p9n6] { position: absolute; inset: 0; display: block; width: 100%; height: 100%; opacity: .04; }

/* Electric-blue mesh: a large, very-low-alpha radial glow, heavily blurred. Oversized via negative
   inset so the drift never exposes an edge. color-mix keeps the brand token while dialing alpha down.
   Transform-only animation = compositor-friendly. */
.atmosphere-mesh[b-altxp0p9n6] {
    position: absolute;
    inset: -25%;
    background: radial-gradient(45% 45% at 50% 50%, color-mix(in srgb, var(--c-blue) 6%, transparent), transparent 70%);
    filter: blur(110px);
    animation: atmosphere-drift-b-altxp0p9n6 52s linear infinite;
}

@keyframes atmosphere-drift-b-altxp0p9n6 {
    0%   { transform: translate3d(-6%, -4%, 0) scale(1); }
    50%  { transform: translate3d(6%, 5%, 0) scale(1.12); }
    100% { transform: translate3d(-6%, -4%, 0) scale(1); }
}

/* Freeze the drift for reduced-motion (the grain stays — it is static texture, not motion). */
@media (prefers-reduced-motion: reduce) {
    .atmosphere-mesh[b-altxp0p9n6] { animation: none; }
}
/* /Components/Layout/Cursor.razor.rz.scp.css */
/* Scoped reticle styling. Every selector targets #cursor-reticle or its children
   (all rendered by this component, so Blazor's scope attribute matches). The native
   `cursor: none` rule lives in wwwroot/css/motion.css — it must reach every element
   under <body>, which a scoped rule cannot. Hidden until cursor.js adds the body class. */
#cursor-reticle[b-ej20wjf0lg] { position: fixed; top: 0; left: 0; z-index: 9999; width: 36px; height: 36px; pointer-events: none; opacity: 0; transition: width .22s, height .22s, opacity .25s; }
body.has-custom-cursor #cursor-reticle[b-ej20wjf0lg] { opacity: 1; }
#cursor-reticle .reticle-ring[b-ej20wjf0lg] { position: absolute; inset: 0; border: 1px dashed rgba(150,180,255,.8); border-radius: 50%; transition: inset .2s, border-color .2s; animation: cursor-ring-spin-b-ej20wjf0lg 5s linear infinite; }
#cursor-reticle .reticle-dot[b-ej20wjf0lg] { position: absolute; left: 50%; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--c-amber); transform: translate(-50%, -50%); }
#cursor-reticle .reticle-label[b-ej20wjf0lg] { position: absolute; left: 50%; top: 120%; transform: translateX(-50%); white-space: nowrap; font-family: var(--f-mono); font-size: .56rem; letter-spacing: .12em; color: var(--c-blue-text); opacity: 0; transition: opacity .2s; }
#cursor-reticle.is-hot[b-ej20wjf0lg] { width: 58px; height: 58px; }
#cursor-reticle.is-hot .reticle-ring[b-ej20wjf0lg] { border-color: var(--c-blue); inset: -2px; animation-play-state: paused; }
#cursor-reticle.is-labeled .reticle-label[b-ej20wjf0lg] { opacity: 1; }

@keyframes cursor-ring-spin-b-ej20wjf0lg { to { transform: rotate(360deg); } }
/* /Components/Layout/Footer.razor.rz.scp.css */
.site-footer[b-299o8uxgc2] {
    border-top: 1px solid var(--c-line);
    margin-top: var(--space-xl);
    padding-block: var(--space-l);
    color: var(--c-muted);
}

.site-footer .container[b-299o8uxgc2] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.footer-logo[b-299o8uxgc2] {
    width: 200px;
    height: auto;
    margin-bottom: var(--space-s);
}

.footer-controls[b-299o8uxgc2] { display: flex; align-items: center; flex-wrap: wrap; gap: var(--space-m); }

/* In-UI reduce-motion control. Hidden until JS wires it, so no-JS users never see a dead button. */
.motion-toggle[b-299o8uxgc2] {
    display: none; align-items: center; gap: .5rem;
    background: transparent; border: 1px solid var(--c-line); border-radius: 2px;
    color: var(--c-muted); font-family: var(--f-mono); font-size: var(--fs-step--1);
    padding: .35rem .7rem; cursor: pointer;
    transition: color var(--dur-micro) var(--ease-out), border-color var(--dur-micro) var(--ease-out);
}
.motion-toggle[data-wired][b-299o8uxgc2] { display: inline-flex; }
.motion-toggle:hover[b-299o8uxgc2] { color: var(--c-text); border-color: var(--c-text); }
.motion-toggle:focus-visible[b-299o8uxgc2] { outline: 2px solid var(--c-blue); outline-offset: 2px; }
.motion-toggle-dot[b-299o8uxgc2] { width: 8px; height: 8px; border-radius: 50%; background: var(--c-brand-green-text); flex: none; }
.motion-toggle[aria-pressed="true"] .motion-toggle-dot[b-299o8uxgc2] { background: var(--c-muted); }
/* /Components/Layout/Header.razor.rz.scp.css */
.site-header[b-pjj3k6k561] {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(8px);
    background: rgba(10,10,15,.55);
    border-bottom: 1px solid var(--c-line);
}
.row[b-pjj3k6k561] {
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--space-m); padding-block: var(--space-s);
}
.brand[b-pjj3k6k561] { display: flex; align-items: center; gap: .55rem; text-decoration: none; font-family: var(--f-display); font-weight: 700; color: var(--c-text); }
.brand-mark[b-pjj3k6k561] { height: 30px; width: auto; flex: none; }
.brand-name span[b-pjj3k6k561] { color: var(--c-brand-green-text); }
.overlay-mark[b-pjj3k6k561] { height: 44px; width: auto; margin-bottom: var(--space-s); }

nav#primary-nav[b-pjj3k6k561] { display: flex; gap: var(--space-m); }

.hamburger[b-pjj3k6k561] {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 2.5rem; height: 2.5rem; padding: 0.5rem;
    background: transparent; border: none; cursor: pointer;
    color: var(--c-text); border-radius: 4px;
}
.hamburger:focus-visible[b-pjj3k6k561] { outline: 2px solid var(--c-blue); outline-offset: 2px; }
.bar[b-pjj3k6k561] {
    display: block; height: 2px; width: 100%; background: currentColor; border-radius: 2px;
    transition: transform var(--dur-micro) var(--ease-out), opacity var(--dur-micro) var(--ease-out);
}
.hamburger[aria-expanded="true"] .bar:nth-child(1)[b-pjj3k6k561] { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .bar:nth-child(2)[b-pjj3k6k561] { opacity: 0; }
.hamburger[aria-expanded="true"] .bar:nth-child(3)[b-pjj3k6k561] { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay[b-pjj3k6k561] {
    position: fixed; inset: 0; z-index: 200;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: var(--space-l); background: rgba(10,10,15,.97); backdrop-filter: blur(12px);
    opacity: 0; pointer-events: none; transition: opacity var(--dur-reveal) var(--ease-out);
}
.mobile-overlay.is-open[b-pjj3k6k561] { opacity: 1; pointer-events: auto; }
.overlay-close[b-pjj3k6k561] {
    position: absolute; top: var(--space-m); right: var(--space-m);
    background: transparent; border: none; color: var(--c-text);
    font-size: 2rem; line-height: 1; width: 2.5rem; height: 2.5rem;
    display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 4px;
}
.overlay-close:focus-visible[b-pjj3k6k561] { outline: 2px solid var(--c-blue); outline-offset: 2px; }
.mobile-overlay nav[b-pjj3k6k561] { display: flex; flex-direction: column; align-items: center; gap: var(--space-m); }
.overlay-link[b-pjj3k6k561] {
    font-family: var(--f-display); font-size: var(--fs-step-3); font-weight: 700;
    color: var(--c-text); text-decoration: none; transition: color var(--dur-micro) var(--ease-out);
}
.overlay-link:hover[b-pjj3k6k561] { color: var(--c-blue); }
.overlay-link:focus-visible[b-pjj3k6k561] { outline: 2px solid var(--c-blue); outline-offset: 4px; border-radius: 2px; }
.overlay-lang[b-pjj3k6k561] { margin-top: var(--space-s); }

@media (max-width: 720px) {
    nav#primary-nav[b-pjj3k6k561] { display: none; }
    .hamburger[b-pjj3k6k561] { display: flex; }
}
/* /Components/Layout/LangToggle.razor.rz.scp.css */
/* Native <details>/<summary> disclosure — zero JS. Inactive-locale text uses an AA-legible
   muted colour (~6:1 on the dark canvas) rather than opacity-dimming. */
.lang-toggle[b-q8m3s0t1fp] { position: relative; }

.lang-toggle summary[b-q8m3s0t1fp] {
    cursor: pointer;
    list-style: none;
    color: var(--c-text);
}
.lang-toggle summary[b-q8m3s0t1fp]::-webkit-details-marker { display: none; }
.lang-toggle summary:focus-visible[b-q8m3s0t1fp] { outline: 2px solid var(--c-blue); outline-offset: 2px; }

.lang-options[b-q8m3s0t1fp] {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: .4rem;
    padding: .4rem 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    min-width: 3rem;
    background: rgba(10,10,15,.95);
    border: 1px solid var(--c-line);
    border-radius: 4px;
}

.lang-options a[b-q8m3s0t1fp] {
    display: block;
    padding: .3rem .8rem;
    color: var(--c-muted);
    text-decoration: none;
}
.lang-options a:hover[b-q8m3s0t1fp] { color: var(--c-text); }
.lang-options a:focus-visible[b-q8m3s0t1fp] {
    color: var(--c-text);
    outline: 2px solid var(--c-blue);
    outline-offset: 2px;
}
/* /Components/Pages/Error.razor.rz.scp.css */
.err[b-9ihn7brum2] {
    padding-block: var(--space-xl);
}
/* /Components/Pages/NotFound.razor.rz.scp.css */
.nf[b-rfxa2irihd] {
    padding-block: var(--space-xl);
}
/* /Components/Sections/About.razor.rz.scp.css */
.about[b-nlicg8e3g0] {
    padding-block: var(--space-xl);
    background: var(--c-surface);
    overflow: hidden;
}

.about-inner[b-nlicg8e3g0] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-l);
    align-items: start;
}

@media (min-width: 1024px) {
    .about-inner[b-nlicg8e3g0] {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        align-items: center;
    }
}

/* Image column */
.about-image-col[b-nlicg8e3g0] {
    order: -1; /* image above text on mobile */
}

@media (min-width: 1024px) {
    .about-image-col[b-nlicg8e3g0] {
        order: 0;
    }
}

.about-image-wrap[b-nlicg8e3g0] {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    /* portrait aspect ratio */
    aspect-ratio: 4 / 5;
}

.about-image-wrap img[b-nlicg8e3g0] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 75% 25%; /* face + hard hat on the right, upper portion */
    display: block;
    /* subtle on-brand grade — keeps natural/warm skin tones */
    filter: saturate(0.92) contrast(1.03);
}

/* Parallax buffer: oversize the image only under motion so the ±24px scrub never exposes the wrap edges (mirrors the Astro source). */
html.motion-ready .about-image-wrap img[b-nlicg8e3g0] {
    height: calc(100% + 48px);
    margin-top: -24px;
}

/* soft brand accent overlay — lighter than stock-photo treatment */
.about-image-overlay[b-nlicg8e3g0] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        200deg,
        rgba(4, 92, 250, 0.1) 0%,
        rgba(12, 45, 209, 0.04) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* Text column */
.about-text-col[b-nlicg8e3g0] {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.about-heading[b-nlicg8e3g0] {
    font-size: var(--fs-step-3);
    line-height: 1.1;
    max-width: 28ch;
}

.brand-rule[b-nlicg8e3g0] {
    border: none;
    border-top: 1px solid var(--c-blue);
    width: 80px;
    margin-block: 0;
    margin-inline: 0;
}

.about-body[b-nlicg8e3g0] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 60ch;
}
/* /Components/Sections/AmePortalDetail.razor.rz.scp.css */
/* AME Portal product page — dark-canvas layout. Signature accent: the brand green
   (--c-brand-green-text, AA-legible on the dark canvas), the product's "gas" color —
   paralleling Arianna's scoped red thread. Diagram classes (apd-*) style the rebuilt
   SVG exhibits; ame-portal.js animates them via the data-ap-* hooks. */

.portal[b-ys3chskhfq] {
    --c-gas: var(--c-brand-green-text);
    padding-block: var(--space-xl);
}

/* --- Hero --- */

.ap-hero[b-ys3chskhfq] { display: flex; flex-direction: column; gap: var(--space-s); }

.ap-back[b-ys3chskhfq] { color: var(--c-muted); transition: color var(--dur-micro) var(--ease-out); }
.ap-back:hover[b-ys3chskhfq], .ap-back:focus-visible[b-ys3chskhfq] { color: var(--c-text); }

.ap-kicker[b-ys3chskhfq] { color: var(--c-gas); }
.ap-kicker.is-typing[b-ys3chskhfq]::after { content: "▍"; margin-left: 1px; color: var(--c-gas); animation: ap-caret-b-ys3chskhfq 1s steps(1) infinite; }
@keyframes ap-caret-b-ys3chskhfq { 50% { opacity: 0; } }

.ap-title[b-ys3chskhfq] {
    font-family: var(--f-display);
    font-size: var(--fs-step-5);
    line-height: 1;
    letter-spacing: -0.02em;
}

.ap-tagline[b-ys3chskhfq] {
    font-family: var(--f-display);
    font-size: var(--fs-step-3);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    max-width: 24ch;
}

.ap-cursor[b-ys3chskhfq] { color: var(--c-gas); animation: ap-caret-b-ys3chskhfq 1.2s steps(1) infinite; }
@media (prefers-reduced-motion: reduce) { .ap-cursor[b-ys3chskhfq], .ap-kicker.is-typing[b-ys3chskhfq]::after { animation: none; } }

.ap-intro[b-ys3chskhfq] { font-size: var(--fs-step-0); color: var(--c-muted); line-height: 1.7; max-width: 62ch; }

.ap-actions[b-ys3chskhfq] { display: flex; flex-wrap: wrap; gap: var(--space-s) var(--space-m); margin-top: var(--space-m); }

.ap-cta[b-ys3chskhfq] {
    display: inline-block; background: var(--c-blue); color: #fff;
    padding: .8em 1.4em; border-radius: 4px; font-weight: 600;
}
.ap-cta:focus-visible[b-ys3chskhfq] { outline: 2px solid var(--c-blue); outline-offset: 3px; }

.ap-cta-ghost[b-ys3chskhfq] {
    display: inline-block; border: 1px solid var(--c-line); color: var(--c-text);
    padding: .8em 1.4em; border-radius: 4px; font-weight: 600;
    transition: border-color var(--dur-micro) var(--ease-out);
}
.ap-cta-ghost:hover[b-ys3chskhfq], .ap-cta-ghost:focus-visible[b-ys3chskhfq] { border-color: var(--c-gas); }

/* Stats strip */
.ap-stats[b-ys3chskhfq] {
    list-style: none; padding: 0; margin: var(--space-l) 0 0;
    display: grid; grid-template-columns: 1fr; gap: var(--space-m);
}
.ap-stat[b-ys3chskhfq] {
    border: 1px solid var(--c-line); border-radius: 6px; background: var(--c-surface);
    padding: var(--space-m); display: flex; flex-direction: column; gap: .4rem;
}
.ap-stat-v[b-ys3chskhfq] { font-family: var(--f-display); font-size: clamp(1.6rem, 1.3rem + 1.2vw, 2.2rem); font-weight: 700; color: var(--c-gas); }
.ap-stat-v.is-typing[b-ys3chskhfq]::after { content: "▍"; color: var(--c-gas); animation: ap-caret-b-ys3chskhfq 1s steps(1) infinite; }
.ap-stat-k[b-ys3chskhfq] { font-size: var(--fs-step--1); color: var(--c-muted); line-height: 1.55; }

/* --- Beats --- */

.ap-beat[b-ys3chskhfq] { margin-top: var(--space-xl); display: flex; flex-direction: column; gap: var(--space-s); scroll-margin-top: var(--anchor-offset); }
.ap-beat-title[b-ys3chskhfq] { font-family: var(--f-display); font-size: var(--fs-step-3); line-height: 1.1; letter-spacing: -0.01em; max-width: 26ch; }
.ap-beat-body[b-ys3chskhfq] { font-size: var(--fs-step-0); color: var(--c-muted); line-height: 1.7; max-width: 66ch; }
.ap-sub-title[b-ys3chskhfq] { font-family: var(--f-display); font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem); margin-top: var(--space-l); letter-spacing: -0.01em; }

/* Steps */
.ap-steps[b-ys3chskhfq] { list-style: none; padding: 0; margin: var(--space-m) 0 0; display: grid; grid-template-columns: 1fr; gap: var(--space-m); counter-reset: none; }
.ap-step[b-ys3chskhfq] { border: 1px solid var(--c-line); border-radius: 6px; background: var(--c-surface); padding: var(--space-m); display: flex; flex-direction: column; gap: .5rem; }
.ap-step-num[b-ys3chskhfq] { color: var(--c-gas); }

/* Cards */
.ap-grid2[b-ys3chskhfq] { display: grid; grid-template-columns: 1fr; gap: var(--space-m); margin-top: var(--space-m); }
.ap-grid3[b-ys3chskhfq] { display: grid; grid-template-columns: 1fr; gap: var(--space-m); margin-top: var(--space-m); list-style: none; padding: 0; }
.ap-card[b-ys3chskhfq] { border: 1px solid var(--c-line); border-radius: 6px; background: var(--c-surface); padding: var(--space-m); display: flex; flex-direction: column; gap: .5rem; }
.ap-card[b-ys3chskhfq]  .ap-card-icon { width: 26px; height: 26px; color: var(--c-gas); }
.ap-card-title[b-ys3chskhfq] { font-family: var(--f-display); font-size: var(--fs-step-0); font-weight: 700; color: var(--c-text); letter-spacing: -0.01em; }
.ap-card-body[b-ys3chskhfq] { font-size: var(--fs-step--1); color: var(--c-muted); line-height: 1.65; }

/* --- Diagrams (SVG exhibits) --- */

.ap-diagram[b-ys3chskhfq] {
    margin: var(--space-m) 0 0; padding: var(--space-m);
    border: 1px solid var(--c-line); border-radius: 8px; background: var(--c-surface);
    overflow-x: auto;
}
.ap-diagram svg[b-ys3chskhfq] { display: block; min-width: 840px; width: 100%; height: auto; }
.ap-cap[b-ys3chskhfq] {
    font-family: var(--f-mono); font-size: var(--fs-step--1); letter-spacing: .1em;
    text-transform: uppercase; color: var(--c-muted); margin-top: var(--space-s); text-align: center;
}

.apd-zone[b-ys3chskhfq] { fill: rgba(255,255,255,.02); stroke: var(--c-line); }
.apd-box[b-ys3chskhfq] { fill: var(--c-canvas); stroke: rgba(255,255,255,.24); }
.apd-green[b-ys3chskhfq] { stroke: var(--c-gas); }
.apd-bluebox[b-ys3chskhfq] { stroke: var(--c-blue); }
.apd-nodebox[b-ys3chskhfq] { fill: rgba(4,92,250,.05); stroke: rgba(106,161,255,.45); }
.apd-t[b-ys3chskhfq] { fill: var(--c-text); font-family: var(--f-body); font-size: 14px; font-weight: 600; }
.apd-s[b-ys3chskhfq] { fill: var(--c-muted); font-family: var(--f-body); font-size: 12px; }
.apd-mono[b-ys3chskhfq] { fill: var(--c-muted); font-family: var(--f-mono); font-size: 10.5px; letter-spacing: .14em; }
.apd-blue[b-ys3chskhfq] { fill: var(--c-blue-text); }
.apd-greentext[b-ys3chskhfq] { fill: var(--c-gas); }
.apd-red[b-ys3chskhfq] { fill: #FF7A6B; }
.apd-amber[b-ys3chskhfq] { fill: var(--c-amber); }
.apd-dim[b-ys3chskhfq] { fill: rgba(139,147,165,.55); }
.apd-dot[b-ys3chskhfq] { fill: rgba(255,255,255,.25); }

.apd-flow[b-ys3chskhfq] { stroke: var(--c-blue); stroke-width: 2; fill: none; }
.apd-flowg[b-ys3chskhfq] { stroke: var(--c-gas); }
.apd-flowd[b-ys3chskhfq] { stroke: rgba(139,147,165,.6); stroke-dasharray: 5 4; }
/* ame-portal.js adds .is-live after draw-in → marching dashes = signal flowing */
html.motion-ready .apd-flow.is-live[b-ys3chskhfq] { stroke-dasharray: 7 6; animation: ap-march-b-ys3chskhfq 1.1s linear infinite; }
@keyframes ap-march-b-ys3chskhfq { to { stroke-dashoffset: -13; } }

.apd-trend[b-ys3chskhfq] { stroke: var(--c-gas); stroke-width: 2.5; fill: none; filter: drop-shadow(0 0 4px rgba(143,203,58,.5)); }
.apd-limit[b-ys3chskhfq] { stroke: #FF7A6B; stroke-width: 1.5; stroke-dasharray: 5 4; }
.apd-ha[b-ys3chskhfq] { stroke: var(--c-gas); stroke-width: 2; fill: none; }

.apd-grid[b-ys3chskhfq] { stroke: rgba(255,255,255,.06); stroke-width: 1; }
.apd-axis[b-ys3chskhfq] { stroke: rgba(255,255,255,.22); stroke-width: 1; }
.apd-guide[b-ys3chskhfq] { stroke: var(--c-blue-text); stroke-width: 1.2; stroke-dasharray: 6 5; opacity: .7; }
.apd-bar[b-ys3chskhfq] { fill: var(--c-gas); }
.apd-val[b-ys3chskhfq] { fill: var(--c-text); font-family: var(--f-mono); font-size: 11px; text-anchor: middle; }
.apd-xlab text[b-ys3chskhfq] { letter-spacing: .04em; }
.apd-warn[b-ys3chskhfq] { fill: var(--c-amber); opacity: .1; }
.apd-gap[b-ys3chskhfq] { stroke: var(--c-amber); stroke-width: 2; }
.apd-mark-good[b-ys3chskhfq] { stroke: var(--c-gas); stroke-width: 2.5; }
.apd-mark-bad[b-ys3chskhfq] { stroke: #FF7A6B; stroke-width: 2; stroke-dasharray: 5 4; }
.apd-dotg[b-ys3chskhfq] { fill: var(--c-gas); }
.apd-dotr[b-ys3chskhfq] { fill: #FF7A6B; }
.apd-tolbox[b-ys3chskhfq] { fill: rgba(4,92,250,.08); stroke: rgba(106,161,255,.45); }
.apd-sliver[b-ys3chskhfq] { fill: var(--c-gas); }
.apd-down[b-ys3chskhfq] { stroke: #FF7A6B; stroke-dasharray: 6 4; fill: rgba(229,72,77,.05); }
.apd-dead[b-ys3chskhfq] { fill: rgba(255,255,255,.02); stroke: rgba(229,72,77,.35); }

/* Charts share the diagram frame */
.ap-chart-title[b-ys3chskhfq] { font-family: var(--f-display); font-size: var(--fs-step-0); font-weight: 700; }
.ap-chart-sub[b-ys3chskhfq] { font-size: var(--fs-step--1); color: var(--c-muted); line-height: 1.6; max-width: 76ch; margin-top: .3rem; }
.ap-chart-note[b-ys3chskhfq] { color: var(--c-text); margin-top: var(--space-s); }

/* --- Proof quotes --- */

.ap-proof[b-ys3chskhfq] {
    margin: var(--space-m) 0 0; padding: var(--space-l);
    border: 1px solid var(--c-line); border-left: 2px solid var(--c-gas);
    background: var(--c-surface); border-radius: 0 6px 6px 0;
}
.ap-proof-quote[b-ys3chskhfq] { font-family: var(--f-display); font-size: clamp(1.1rem, 1rem + .6vw, 1.4rem); font-weight: 600; line-height: 1.5; max-width: 58ch; color: var(--c-text); }
.ap-proof-src[b-ys3chskhfq] { font-family: var(--f-mono); font-size: var(--fs-step--1); color: var(--c-muted); margin-top: var(--space-s); }

/* --- Comparison / ISO tables --- */

.ap-tablewrap[b-ys3chskhfq] { overflow-x: auto; margin-top: var(--space-m); border: 1px solid var(--c-line); border-radius: 8px; }
.ap-table[b-ys3chskhfq] { width: 100%; min-width: 720px; border-collapse: collapse; font-size: var(--fs-step--1); background: var(--c-surface); }
.ap-table th[b-ys3chskhfq] {
    font-family: var(--f-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--c-blue-text); text-align: left; padding: 14px 18px;
    border-bottom: 1px solid var(--c-line); background: rgba(255,255,255,.02);
}
.ap-table th.ap-th-hl[b-ys3chskhfq] { color: var(--c-gas); }
.ap-table td[b-ys3chskhfq] { padding: 12px 18px; border-bottom: 1px solid var(--c-line); color: var(--c-muted); line-height: 1.5; }
.ap-table td:first-child[b-ys3chskhfq] { color: var(--c-text); font-weight: 600; }
.ap-table tr:last-child td[b-ys3chskhfq] { border-bottom: none; }
.ap-yes[b-ys3chskhfq] { color: var(--c-gas) !important; font-weight: 600; }
.ap-no[b-ys3chskhfq] { color: rgba(139,147,165,.6) !important; }
.ap-part[b-ys3chskhfq] { color: var(--c-amber) !important; }

/* --- Closing CTA --- */

.ap-close[b-ys3chskhfq] {
    margin-top: var(--space-xl); padding: var(--space-l);
    border: 1px solid var(--c-line); border-left: 2px solid var(--c-gas);
    background: var(--c-surface); display: flex; flex-direction: column;
    gap: var(--space-s); align-items: flex-start;
}
.ap-close-title[b-ys3chskhfq] { font-family: var(--f-display); font-size: var(--fs-step-3); line-height: 1.1; letter-spacing: -0.01em; }
.ap-close-body[b-ys3chskhfq] { color: var(--c-muted); line-height: 1.7; max-width: 60ch; }
.ap-close .ap-cta[b-ys3chskhfq] { margin-top: var(--space-s); }

/* --- Responsive --- */

@media (min-width: 640px) {
    .ap-stats[b-ys3chskhfq] { grid-template-columns: repeat(2, 1fr); }
    .ap-steps[b-ys3chskhfq] { grid-template-columns: repeat(3, 1fr); }
    .ap-grid2[b-ys3chskhfq] { grid-template-columns: repeat(2, 1fr); }
    .ap-grid3[b-ys3chskhfq] { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .ap-stats[b-ys3chskhfq] { grid-template-columns: repeat(4, 1fr); }
    .ap-grid3[b-ys3chskhfq] { grid-template-columns: repeat(3, 1fr); }
}
/* /Components/Sections/AmePortalTeaser.razor.rz.scp.css */
/* Teaser card for AME Portal on the Services page. Mirrors the product page's
   brand-green accent (the product's "gas" color). */

.ap-teaser[b-y0of8favn3] {
    margin-top: var(--space-m);
    padding: var(--space-l);
    border: 1px solid var(--c-line);
    border-left: 2px solid var(--c-brand-green-text);
    background: var(--c-surface);
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    align-items: flex-start;
    max-width: 44rem;
}

.ap-teaser-kicker[b-y0of8favn3] {
    color: var(--c-brand-green-text);
}

.ap-teaser-title[b-y0of8favn3] {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.ap-teaser-body[b-y0of8favn3] {
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 60ch;
}

.ap-teaser-link[b-y0of8favn3] {
    font-weight: 600;
    color: var(--c-text);
    transition: color var(--dur-micro) var(--ease-out);
}

.ap-teaser-link:hover[b-y0of8favn3],
.ap-teaser-link:focus-visible[b-y0of8favn3] {
    color: var(--c-brand-green-text);
}
/* /Components/Sections/AriannaDetail.razor.rz.scp.css */
/* Arianna 2.0 product page — dark-canvas layout with the "red thread" accent.
   --c-thread is scoped here on purpose: the Ariadne red belongs to this product only,
   not to the site-wide token palette. --c-thread-text is the AA-legible tint for small text. */

.arianna[b-f8w8i6nt1d] {
    --c-thread: #E8564A;
    --c-thread-text: #FF8A7A;
    padding-block: var(--space-xl);
}

/* --- Hero --- */

.ari-hero[b-f8w8i6nt1d] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    max-width: 70ch;
}

.ari-back[b-f8w8i6nt1d] {
    color: var(--c-muted);
    transition: color var(--dur-micro) var(--ease-out);
}

.ari-back:hover[b-f8w8i6nt1d],
.ari-back:focus-visible[b-f8w8i6nt1d] {
    color: var(--c-text);
}

.ari-kicker[b-f8w8i6nt1d] {
    color: var(--c-thread-text);
}

.ari-title[b-f8w8i6nt1d] {
    font-family: var(--f-display);
    font-size: var(--fs-step-5);
    line-height: 1;
    letter-spacing: -0.02em;
}

.ari-manifesto[b-f8w8i6nt1d] {
    margin: var(--space-m) 0 0;
    padding-left: var(--space-m);
    border-left: 2px solid var(--c-thread);
    font-family: var(--f-display);
    font-size: var(--fs-step-3);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    max-width: 26ch;
}

.ari-intro[b-f8w8i6nt1d] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 60ch;
}

.ari-actions[b-f8w8i6nt1d] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-s) var(--space-m);
    margin-top: var(--space-m);
}

.ari-cta[b-f8w8i6nt1d] {
    display: inline-block;
    background: var(--c-blue);
    color: #fff;
    padding: .8em 1.4em;
    border-radius: 4px;
    font-weight: 600;
}

.ari-cta:focus-visible[b-f8w8i6nt1d] {
    outline: 2px solid var(--c-blue);
    outline-offset: 3px;
}

.ari-cta-ghost[b-f8w8i6nt1d] {
    display: inline-block;
    border: 1px solid var(--c-line);
    color: var(--c-text);
    padding: .8em 1.4em;
    border-radius: 4px;
    font-weight: 600;
    transition: border-color var(--dur-micro) var(--ease-out);
}

.ari-cta-ghost:hover[b-f8w8i6nt1d],
.ari-cta-ghost:focus-visible[b-f8w8i6nt1d] {
    border-color: var(--c-thread);
}

/* --- Story beats with the red thread running down the left --- */

.ari-story[b-f8w8i6nt1d] {
    position: relative;
    margin-top: var(--space-xl);
    padding-left: var(--space-m);
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
}

/* Ariadne's thread — draws itself down the story on scroll (arianna-thread.js scrubs scaleY 0→1).
   Default (no-JS / reduced-motion) stays full-height so the beat still reads. */
.ari-thread[b-f8w8i6nt1d] {
    position: absolute;
    left: 0;
    top: .35em;
    bottom: .35em;
    width: 2px;
    background: linear-gradient(to bottom,
        var(--c-thread) 0%, var(--c-thread) 82%, rgba(232, 86, 74, .15) 100%);
    border-radius: 1px;
    transform-origin: top center;
    transform: scaleY(1);
    box-shadow: 0 0 7px rgba(232, 86, 74, .45);
}

html.motion-ready .ari-thread[b-f8w8i6nt1d] {
    transform: scaleY(0);
    will-change: transform;
}

.ari-beat[b-f8w8i6nt1d] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.ari-beat-title[b-f8w8i6nt1d] {
    font-family: var(--f-display);
    font-size: var(--fs-step-3);
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 24ch;
}

.ari-beat-body[b-f8w8i6nt1d] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 60ch;
}

.ari-principle .ari-beat-body[b-f8w8i6nt1d] {
    color: var(--c-text);
}

/* The six labelled hierarchy levels, threaded together (Client → … → File) */
.ari-levels[b-f8w8i6nt1d] {
    list-style: none;
    padding: 0;
    margin: var(--space-s) 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-s) var(--space-m);
}

.ari-level[b-f8w8i6nt1d] {
    display: flex;
    align-items: center;
    gap: .5em;
    font-family: var(--f-mono);
    font-size: var(--fs-step--1);
    color: var(--c-text);
    white-space: nowrap;
}

.ari-level:not(:last-child)[b-f8w8i6nt1d]::after {
    content: "\2192";
    color: var(--c-thread);
    margin-left: var(--space-s);
}

.ari-level-dot[b-f8w8i6nt1d] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid var(--c-thread);
    background: var(--c-canvas);
    flex: none;
}

.ari-level:first-child .ari-level-dot[b-f8w8i6nt1d] {
    background: var(--c-thread);
}

/* The six workflow statuses as a badge strip */
.ari-flow[b-f8w8i6nt1d] {
    list-style: none;
    padding: 0;
    margin: var(--space-s) 0 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-s);
}

.ari-flow-step[b-f8w8i6nt1d] {
    display: flex;
    align-items: center;
    gap: var(--space-s);
}

.ari-flow-step:not(:last-child)[b-f8w8i6nt1d]::after {
    content: "\2192";
    color: var(--c-thread);
}

.ari-flow-badge[b-f8w8i6nt1d] {
    display: inline-block;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    padding: .3em .85em;
    font-family: var(--f-mono);
    font-size: var(--fs-step--1);
    color: var(--c-muted);
    white-space: nowrap;
}

/* The released state carries the page accent, like the green badge in the app */
.ari-flow-step:nth-child(5) .ari-flow-badge[b-f8w8i6nt1d] {
    border-color: var(--c-thread);
    color: var(--c-text);
}

/* --- Capabilities --- */

.ari-features[b-f8w8i6nt1d] {
    margin-top: var(--space-xl);
}

.ari-cap-grid[b-f8w8i6nt1d] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-l);
}

.ari-cap[b-f8w8i6nt1d] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

/* ::deep reaches into the child LineIcon's scoped SVG */
.ari-cap[b-f8w8i6nt1d]  .ari-cap-icon {
    width: 28px;
    height: 28px;
    color: var(--c-thread);
}

.ari-cap-label[b-f8w8i6nt1d] {
    font-family: var(--f-display);
    font-size: var(--fs-step-0);
    font-weight: 700;
    color: var(--c-text);
    letter-spacing: -0.01em;
}

.ari-cap-desc[b-f8w8i6nt1d] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 42ch;
}

/* --- Technical foundations --- */

.ari-foundations[b-f8w8i6nt1d] {
    margin-top: var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.ari-found-list[b-f8w8i6nt1d] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.ari-found-item[b-f8w8i6nt1d] {
    font-family: var(--f-mono);
    font-size: var(--fs-step--1);
    color: var(--c-muted);
    line-height: 1.7;
    padding-left: var(--space-m);
    position: relative;
    max-width: 70ch;
}

.ari-found-item[b-f8w8i6nt1d]::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 1px;
    background: var(--c-thread);
}

/* --- Closing CTA --- */

.ari-close[b-f8w8i6nt1d] {
    margin-top: var(--space-xl);
    padding: var(--space-l);
    border: 1px solid var(--c-line);
    border-left: 2px solid var(--c-thread);
    background: var(--c-surface);
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    align-items: flex-start;
}

.ari-close-title[b-f8w8i6nt1d] {
    font-family: var(--f-display);
    font-size: var(--fs-step-3);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.ari-close-body[b-f8w8i6nt1d] {
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 60ch;
}

.ari-close .ari-cta[b-f8w8i6nt1d] {
    margin-top: var(--space-s);
}

/* --- Responsive --- */

@media (min-width: 640px) {
    .ari-cap-grid[b-f8w8i6nt1d] { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .ari-cap-grid[b-f8w8i6nt1d] { grid-template-columns: repeat(3, 1fr); }
    .ari-story[b-f8w8i6nt1d] { padding-left: var(--space-l); }
}
/* /Components/Sections/AriannaTeaser.razor.rz.scp.css */
/* Teaser card for Arianna 2.0 on the Services page. Mirrors the product page's
   scoped red-thread accent (deliberately not a site-wide token). */

.ari-teaser[b-3c7sfm2za5] {
    --c-thread: #E8564A;
    --c-thread-text: #FF8A7A;
    margin-top: var(--space-l);
    padding: var(--space-l);
    border: 1px solid var(--c-line);
    border-left: 2px solid var(--c-thread);
    background: var(--c-surface);
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    align-items: flex-start;
    max-width: 44rem;
}

.ari-teaser-kicker[b-3c7sfm2za5] {
    color: var(--c-thread-text);
}

.ari-teaser-title[b-3c7sfm2za5] {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 1.2rem + 1vw, 2rem);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.ari-teaser-body[b-3c7sfm2za5] {
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 60ch;
}

.ari-teaser-link[b-3c7sfm2za5] {
    font-weight: 600;
    color: var(--c-text);
    transition: color var(--dur-micro) var(--ease-out);
}

.ari-teaser-link:hover[b-3c7sfm2za5],
.ari-teaser-link:focus-visible[b-3c7sfm2za5] {
    color: var(--c-thread-text);
}
/* /Components/Sections/Clients.razor.rz.scp.css */
.clients[b-usmuhqyb9u] {
  padding-block: var(--space-xl);
  background: var(--c-surface);
  overflow: hidden;
}

.clients-heading[b-usmuhqyb9u] {
  margin-bottom: var(--space-l);
}

/* marquee viewport: clips the scrolling track */
.marquee[b-usmuhqyb9u] {
  overflow: hidden;
  width: 100%;
}

/* track: both chip-lists side by side; width = sum of both → xPercent:-50 lands at midpoint */
.marquee-track[b-usmuhqyb9u] {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
}

/* chip-list: horizontal, non-wrapping row */
.chip-list[b-usmuhqyb9u] {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-m);
  padding-inline: var(--space-m);
}

/* bordered pill chip */
.chip[b-usmuhqyb9u] {
  padding: .4em 1em;
  border: 1px solid var(--c-line);
  border-radius: 2em;
  font-family: var(--f-mono);
  font-size: var(--fs-step--1);
  color: var(--c-text);
  white-space: nowrap;
}

/* reduced-motion fallback: wrap into a static chip cloud; hide the aria-hidden duplicate */
@media (prefers-reduced-motion: reduce) {
  .marquee[b-usmuhqyb9u] {
    overflow: visible;
  }

  .marquee-track[b-usmuhqyb9u] {
    flex-wrap: wrap;
    width: auto;
    /* GSAP motion is suppressed via initMarquee's prefersReducedMotion() early return */
  }

  .chip-list[b-usmuhqyb9u] {
    flex-wrap: wrap;
  }

  /* hide the second (aria-hidden) copy — redundant in the static wrapped layout */
  .marquee-track > [aria-hidden="true"][b-usmuhqyb9u] {
    display: none;
  }
}
/* /Components/Sections/Contact.razor.rz.scp.css */
/* Contact.razor.css — scoped styles ported verbatim from Contact.astro <style>.
   data-rv removed from markup so no visibility resets needed.
   :global() → ::deep (none required here; all selectors target own elements). */

.contact[b-ar59qlhjq2] {
    padding-block: var(--space-xl);
    background: var(--c-surface);
    /* "Handshake" motion: scrubbed toward --c-surface (navy) via GSAP in Phase 3. */
    transition: background-color 0.3s var(--ease-out);
}

.contact-header[b-ar59qlhjq2] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    margin-bottom: var(--space-l);
    max-width: 60ch;
}

.contact-heading[b-ar59qlhjq2] {
    font-size: var(--fs-step-3);
    line-height: 1.1;
}

.contact-sub[b-ar59qlhjq2] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.6;
}

.brand-rule[b-ar59qlhjq2] {
    border: none;
    border-top: 1px solid var(--c-blue);
    width: 80px;
    margin-block: 0;
    margin-inline: 0;
}

/* Two-column layout: form + aside */
.contact-layout[b-ar59qlhjq2] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-l);
    align-items: start;
}

@media (min-width: 900px) {
    .contact-layout[b-ar59qlhjq2] {
        grid-template-columns: 1fr 340px;
        gap: var(--space-xl);
    }
}

/* Form */
.contact-form[b-ar59qlhjq2] {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
    position: relative;
}

[data-form-body]:not([hidden])[b-ar59qlhjq2] { display: flex; flex-direction: column; gap: var(--space-m); }

.form-grid[b-ar59qlhjq2] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-m);
}

@media (min-width: 600px) {
    .form-grid[b-ar59qlhjq2] {
        grid-template-columns: 1fr 1fr;
    }
}

.form-footer[b-ar59qlhjq2] {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    flex-wrap: wrap;
}

.btn-send[b-ar59qlhjq2] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--c-blue);
    color: #fff;
    font-family: var(--f-display);
    font-size: var(--fs-step-0);
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: -0.01em;
    transition: background var(--dur-micro) var(--ease-out),
                transform var(--dur-micro) var(--ease-out);
}

.btn-send:hover[b-ar59qlhjq2] {
    background: var(--c-blue-2);
}

.btn-send:active[b-ar59qlhjq2] {
    transform: scale(0.98);
}

.btn-send:focus-visible[b-ar59qlhjq2] {
    outline: 2px solid var(--c-blue);
    outline-offset: 3px;
}

.btn-arrow[b-ar59qlhjq2] {
    transition: transform var(--dur-micro) var(--ease-out);
}

.btn-send:hover .btn-arrow[b-ar59qlhjq2] {
    transform: translateX(3px);
}

/* Sending state (contact-form.js toggles .is-sending): the arrow yields to a line spinner */
.btn-send.is-sending[b-ar59qlhjq2] {
    cursor: progress;
}

.btn-send.is-sending .btn-arrow[b-ar59qlhjq2] {
    display: none;
}

.btn-send.is-sending[b-ar59qlhjq2]::after {
    content: "";
    width: 1em;
    height: 1em;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: btn-spin-b-ar59qlhjq2 0.8s linear infinite;
}

@keyframes btn-spin-b-ar59qlhjq2 {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .btn-send.is-sending[b-ar59qlhjq2]::after { animation: none; border-top-color: rgba(255, 255, 255, 0.35); }
}

.form-note[b-ar59qlhjq2] {
    font-family: var(--f-mono);
    font-size: var(--fs-step--1);
    color: var(--c-muted);
    letter-spacing: 0.04em;
}

/* Aside */
.contact-aside-inner[b-ar59qlhjq2] {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
    padding: var(--space-l);
    border: 1px solid var(--c-line);
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.02);
}

.contact-aside-label[b-ar59qlhjq2] {
    color: var(--c-muted);
}

.contact-links[b-ar59qlhjq2] {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.contact-link[b-ar59qlhjq2] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--c-text);
    transition: color var(--dur-micro) var(--ease-out);
    word-break: break-word;
}

.contact-link:hover[b-ar59qlhjq2] {
    color: var(--c-blue-text);
}

.contact-link:focus-visible[b-ar59qlhjq2] {
    outline: 2px solid var(--c-blue);
    outline-offset: 2px;
    border-radius: 2px;
}

.contact-link-icon[b-ar59qlhjq2] {
    font-family: var(--f-mono);
    font-size: 1rem;
    color: var(--c-blue-text);
    width: 1.5rem;
    flex-shrink: 0;
}

.contact-link-text[b-ar59qlhjq2] {
    font-size: var(--fs-step--1);
    font-family: var(--f-mono);
    letter-spacing: 0.03em;
}

.availability-label[b-ar59qlhjq2] {
    color: var(--c-muted);
    margin-bottom: 0.5rem;
}

.availability-text[b-ar59qlhjq2] {
    font-size: var(--fs-step--1);
    color: var(--c-muted);
    line-height: 1.6;
}

/* Honeypot — visually hidden, accessible to screen readers */
.hp[b-ar59qlhjq2] {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status[b-ar59qlhjq2] {
    font-family: var(--f-mono);
    font-size: var(--fs-step--1);
    color: var(--c-blue-text);
    letter-spacing: .04em;
    min-height: 1.2em;
}

.form-fallback[b-ar59qlhjq2] {
    font-size: var(--fs-step--1);
    color: var(--c-muted);
}

.form-fallback a[b-ar59qlhjq2] {
    color: var(--c-blue-text);
}
/* /Components/Sections/ExperienceList.razor.rz.scp.css */
.experience-section[b-f4v6a10xir] {
  padding-block: var(--space-xl);
  background: var(--c-canvas);
}

/* ── Intro ── */
.exp-intro[b-f4v6a10xir] {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  margin-bottom: var(--space-l);
  max-width: 72ch;
}

.exp-heading[b-f4v6a10xir] {
  font-size: var(--fs-step-3);
  line-height: 1.1;
  margin: 0;
}

.exp-intro-text[b-f4v6a10xir] {
  font-size: var(--fs-step-0);
  color: var(--c-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── Filter bar ── */
.filter-bar[b-f4v6a10xir] {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-bottom: var(--space-s);
}

.filter-btn[b-f4v6a10xir] {
  padding: 0.4rem 1rem;
  font-family: var(--f-mono);
  font-size: var(--fs-step--1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-muted);
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 2px;
  cursor: pointer;
  transition:
    color var(--dur-micro) var(--ease-out),
    border-color var(--dur-micro) var(--ease-out),
    background var(--dur-micro) var(--ease-out);
}

.filter-btn:hover[b-f4v6a10xir] {
  color: var(--c-text);
  border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn[aria-pressed="true"][b-f4v6a10xir],
.filter-btn.is-active[b-f4v6a10xir] {
  color: var(--c-blue-text); /* AA-legible blue (~7.5:1); --c-blue is only 3.78:1 as text on dark */
  border-color: var(--c-blue);
  background: rgba(4, 92, 250, 0.08);
}

.filter-btn:focus-visible[b-f4v6a10xir] {
  outline: 2px solid var(--c-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .filter-btn[b-f4v6a10xir] { transition: none; }
}

/* ── Live count ── */
.exp-count[b-f4v6a10xir] {
  font-family: var(--f-mono);
  font-size: var(--fs-step--1);
  color: var(--c-muted);
  letter-spacing: 0.06em;
  margin-bottom: var(--space-l);
}

/* ── Timeline wrapper ── */
.timeline[b-f4v6a10xir] {
  position: relative;
}

/* Vertical rail */
.timeline-rail[b-f4v6a10xir] {
  position: absolute;
  left: 7px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--c-line);
  border-radius: 1px;
  /* --pulse (0→1) is scrubbed by timeline-pulse.js and positions the travelling head */
  --pulse: 0;
}

/* Travelling energization head — rides the rail as the fill draws in.
   Hidden until motion is active (pure progress indicator, no meaning without the scrub). */
.timeline-pulse[b-f4v6a10xir] {
  position: absolute;
  left: 50%;
  top: calc(var(--pulse) * 100%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-blue-text);
  box-shadow: 0 0 10px 2px var(--c-blue), 0 0 22px 6px rgba(4, 92, 250, .35);
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

html.motion-ready .timeline-pulse[b-f4v6a10xir] {
  opacity: 1;
  will-change: top;
}

/* Rail inner line — default full-height; GSAP scrubs scaleY 0→1 under motion-ready */
.timeline-line[b-f4v6a10xir] {
  position: absolute;
  inset: 0;
  background: var(--c-blue);
  transform-origin: top center;
  transform: scaleY(1);
}

/* When motion is active, start collapsed so ScrollTrigger scrubs it in */
html.motion-ready .timeline-line[b-f4v6a10xir] {
  transform: scaleY(0);
  will-change: transform;
}

/* ── List ── */
.timeline-list[b-f4v6a10xir] {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Row ── */
.timeline-row[b-f4v6a10xir] {
  position: relative;
  padding-bottom: var(--space-l);
}

.timeline-dot[b-f4v6a10xir] {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-blue);
  border: 2px solid var(--c-canvas);
  box-shadow: 0 0 0 2px var(--c-blue);
  flex-shrink: 0;
}

/* Under motion, dots start dormant and "energize" as the pulse passes (timeline-pulse.js
   toggles .is-live). No-JS / reduced-motion keeps them fully lit via the base rule above. */
html.motion-ready .timeline-dot[b-f4v6a10xir] {
  background: var(--c-muted);
  box-shadow: 0 0 0 2px var(--c-line);
  transition: background var(--dur-micro) var(--ease-out), box-shadow var(--dur-micro) var(--ease-out);
}

html.motion-ready .timeline-dot.is-live[b-f4v6a10xir] {
  background: var(--c-blue);
  box-shadow: 0 0 0 2px var(--c-blue), 0 0 12px 2px rgba(4, 92, 250, .5);
}

.timeline-content[b-f4v6a10xir] {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-top: 0.1rem;
}

.timeline-meta[b-f4v6a10xir] {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-s);
  margin-bottom: 0.2rem;
}

.timeline-years[b-f4v6a10xir] {
  color: var(--c-amber);
  letter-spacing: 0.1em;
}

.timeline-sector[b-f4v6a10xir] {
  color: var(--c-blue-text);
  letter-spacing: 0.1em;
}

.timeline-client[b-f4v6a10xir] {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 1rem + 1vw, 1.75rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--c-text);
  margin: 0;
}

.timeline-role[b-f4v6a10xir] {
  font-size: var(--fs-step-0);
  font-weight: 600;
  color: var(--c-text);
  margin: 0;
}

.timeline-location[b-f4v6a10xir] {
  font-family: var(--f-mono);
  font-size: var(--fs-step--1);
  color: var(--c-muted);
  letter-spacing: 0.06em;
  margin: 0;
}

.timeline-scope[b-f4v6a10xir] {
  font-size: var(--fs-step-0);
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0;
  max-width: 72ch;
  margin-top: 0.3rem;
}

@media (min-width: 768px) {
  .timeline-rail[b-f4v6a10xir] {
    left: 11px;
  }

  .timeline-list[b-f4v6a10xir] {
    padding-left: 48px;
  }

  .timeline-dot[b-f4v6a10xir] {
    left: -44px;
    top: 6px;
    width: 14px;
    height: 14px;
  }
}

/* filter.js hides rows via [hidden] — must beat the row's own display value */
.timeline-row[hidden][b-f4v6a10xir] {
    display: none;
}
/* /Components/Sections/Hero.razor.rz.scp.css */
.hero[b-cijm0fh6nb] { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; background: var(--c-canvas); }
/* Ambient schematic layer (js/motion/hero-schematic.js draws into it; empty = invisible for no-JS) */
.hero-schematic[b-cijm0fh6nb] { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid[b-cijm0fh6nb] { position: relative; z-index: 3; width: 100%; }
.hero-copy[b-cijm0fh6nb] { position: relative; z-index: 2; max-width: min(36rem, 42vw); }
.hero-title[b-cijm0fh6nb] { font-size: var(--fs-step-5); letter-spacing: -.02em; }
.rule[b-cijm0fh6nb] { display: block; height: 2px; width: 90px; background: var(--c-blue); margin: var(--space-m) 0; }
/* When motion is active the arrival draws the rule 0→90px; default stays 90px for no-JS/reduced-motion. */
html.motion-ready .rule[b-cijm0fh6nb] { width: 0; }
.hero-tagline[b-cijm0fh6nb] { font-size: var(--fs-step-3); color: var(--c-text); opacity: .86; margin-top: var(--space-s); max-width: 18ch; }
.cta[b-cijm0fh6nb] { display: inline-block; margin-top: var(--space-m); background: var(--c-blue); color: #fff; padding: .8em 1.4em; border-radius: 4px; font-weight: 600; }
.cta:focus-visible[b-cijm0fh6nb] { outline: 2px solid var(--c-blue); outline-offset: 3px; }

/* Full-bleed graded portrait on the right (isolated layer) */
.hero-photo[b-cijm0fh6nb] { position: absolute; inset: 0 0 0 46%; z-index: 1; }
.hero-photo-img[b-cijm0fh6nb] { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 75% 25%; filter: grayscale(.35) contrast(1.05) brightness(.92); }
.hero-grade[b-cijm0fh6nb] {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background:
      radial-gradient(60% 70% at 80% 88%, rgba(232,150,74,.20), transparent 60%),
      linear-gradient(90deg, var(--c-canvas) 0%, rgba(10,10,15,.65) 22%, rgba(10,10,15,.08) 55%, transparent 72%);
}
/* instrument-precision seam at the split */
.hero-seam[b-cijm0fh6nb] { position: absolute; left: 0; top: 0; bottom: 0; z-index: 3; width: 0; border-left: 1px solid rgba(120,160,255,.30); }
.hero-seam span[b-cijm0fh6nb] { position: absolute; left: -3px; width: 7px; height: 1px; background: rgba(120,160,255,.5); }
.hero-seam span:nth-child(1)[b-cijm0fh6nb] { top: 18%; } .hero-seam span:nth-child(2)[b-cijm0fh6nb] { top: 50%; } .hero-seam span:nth-child(3)[b-cijm0fh6nb] { top: 82%; }
.hero-cap[b-cijm0fh6nb] { position: absolute; right: 1rem; top: 1rem; z-index: 3; font-family: var(--f-mono); font-size: .6rem; letter-spacing: .14em; color: rgba(255,255,255,.55); }

@media (max-width: 680px) {
    .hero-photo[b-cijm0fh6nb] { inset: 0; }
    .hero-grade[b-cijm0fh6nb] { background: linear-gradient(0deg, var(--c-canvas) 12%, rgba(10,10,15,.78) 42%, rgba(10,10,15,.35) 70%), radial-gradient(70% 50% at 70% 90%, rgba(232,150,74,.18), transparent 60%); }
    .hero-seam[b-cijm0fh6nb] { display: none; }
    .hero-copy[b-cijm0fh6nb] { max-width: none; }
}
/* /Components/Sections/Positioning.razor.rz.scp.css */
.positioning[b-f747e4x5jj] {
    padding-block: var(--space-xl);
    background: var(--c-surface);
}

.positioning .mono-label[b-f747e4x5jj] {
    margin-bottom: var(--space-m);
}

.pos-heading[b-f747e4x5jj] {
    font-size: var(--fs-step-3);
    max-width: 36ch;
    margin-bottom: var(--space-m);
}

.brand-rule[b-f747e4x5jj] {
    border: none;
    border-top: 1px solid var(--c-blue);
    width: 80px;
    margin-block: var(--space-m);
    margin-inline: 0;
}

.pos-body[b-f747e4x5jj] {
    max-width: 65ch;
    color: var(--c-muted);
    font-size: var(--fs-step-0);
}
/* /Components/Sections/Process.razor.rz.scp.css */
.process[b-a82comw6zl] {
    padding-block: var(--space-xl);
    background: var(--c-canvas);
}

.process-header[b-a82comw6zl] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    margin-bottom: var(--space-l);
}

.process-heading[b-a82comw6zl] {
    font-size: var(--fs-step-3);
    line-height: 1.1;
    max-width: 28ch;
}

.brand-rule[b-a82comw6zl] {
    border: none;
    border-top: 1px solid var(--c-blue);
    width: 80px;
    margin-block: 0;
    margin-inline: 0;
}

/* Stepper layout */
.process-body[b-a82comw6zl] {
    position: relative;
}

/* Vertical connector line sits behind the step number column */
.process-line-track[b-a82comw6zl] {
    position: absolute;
    /* align with center of step-number circles */
    left: calc(2rem);          /* matches step-number-col width / 2 */
    top: 1.6rem;               /* half the step-number circle height */
    bottom: 1.6rem;
    width: 2px;
    background: var(--c-line);
    transform-origin: top center;
    /* Full by default (reduced-motion fallback) */
}

.process-line[b-a82comw6zl] {
    position: absolute;
    inset: 0;
    background: var(--c-blue);
    transform-origin: top center;
    transform: scaleY(1); /* full by default — no-JS / reduced-motion fallback */
}

/* Motion-ready: GSAP will scrub scaleY 0→1 on scroll */
html.motion-ready .process-line[b-a82comw6zl] {
    transform: scaleY(0);
    will-change: transform;
}

/* Steps list */
.process-steps[b-a82comw6zl] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
}

.process-step[b-a82comw6zl] {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: var(--space-m);
    align-items: start;
}

/* Number column */
.step-number-col[b-a82comw6zl] {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.2rem;
}

.step-number[b-a82comw6zl] {
    font-family: var(--f-mono);
    font-size: var(--fs-step-3);
    font-weight: 700;
    color: var(--c-blue);
    line-height: 1;
    /* circle */
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--c-blue);
    border-radius: 50%;
    background: var(--c-canvas);
    /* ensure it sits above the connector line */
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* Content column */
.step-content[b-a82comw6zl] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    padding-top: 0.6rem;
}

/* ::deep reaches into the child LineIcon component's scoped DOM */
.step-content[b-a82comw6zl]  .step-icon {
    width: 24px;
    height: 24px;
    color: var(--c-blue);
}

.step-title[b-a82comw6zl] {
    font-family: var(--f-display);
    font-size: var(--fs-step-0);
    font-weight: 700;
    color: var(--c-text);
    letter-spacing: -0.01em;
}

.step-blurb[b-a82comw6zl] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 60ch;
}

@media (min-width: 768px) {
    .process-step[b-a82comw6zl] {
        grid-template-columns: 5rem 1fr;
        gap: var(--space-l);
    }

    .step-number[b-a82comw6zl] {
        width: 4.5rem;
        height: 4.5rem;
    }

    .process-line-track[b-a82comw6zl] {
        left: 2.25rem;
    }

    .step-title[b-a82comw6zl] {
        font-size: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
    }
}
/* /Components/Sections/Proof.razor.rz.scp.css */
.proof[b-831p74rx76] {
  padding-block: var(--space-xl);
  background: var(--c-surface);
}

.proof-header[b-831p74rx76] {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  margin-bottom: var(--space-l);
}

.proof-heading[b-831p74rx76] {
  font-size: var(--fs-step-3);
  line-height: 1.1;
  max-width: 28ch;
}

.brand-rule[b-831p74rx76] {
  border: none;
  border-top: 1px solid var(--c-blue);
  width: 80px;
  margin-block: 0;
  margin-inline: 0;
}

/* Testimonial block: prominent, brand-blue framed */
.testimonial-block[b-831p74rx76] {
  margin: 0 0 var(--space-xl);
  padding: var(--space-l);
  border-left: 3px solid var(--c-blue);
  background: rgba(4, 92, 250, 0.06);
  border-radius: 0 2px 2px 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.testimonial-quote[b-831p74rx76] {
  margin: 0;
  padding: 0;
  border: none;
}

.testimonial-text[b-831p74rx76] {
  font-family: var(--f-display);
  font-size: var(--fs-step-3);
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.4;
  font-style: italic;
  margin: 0;
  max-width: 70ch;
}

.testimonial-attribution[b-831p74rx76] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author[b-831p74rx76] {
  font-family: var(--f-display);
  font-size: var(--fs-step-0);
  font-weight: 600;
  color: var(--c-text);
}

.testimonial-meta[b-831p74rx76] {
  font-family: var(--f-mono);
  font-size: var(--fs-step--1);
  color: var(--c-muted);
  letter-spacing: 0.04em;
}

/* Certifications sub-section */
.certs-section[b-831p74rx76] {
  display: flex;
  flex-direction: column;
  gap: var(--space-m);
}

.certs-heading[b-831p74rx76] {
  color: var(--c-muted);
}

.certs-grid[b-831p74rx76] {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-s);
}

@media (min-width: 480px) {
  .certs-grid[b-831p74rx76] {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .certs-grid[b-831p74rx76] {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .certs-grid[b-831p74rx76] {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
/* /Components/Sections/SectorBlock.razor.rz.scp.css */
/* ── Sector block ── */
.sector-block[b-5jvo4bb9zd] {
    border-top: 1px solid var(--c-line);
    padding-block: var(--space-xl);
}

.sector-block-inner[b-5jvo4bb9zd] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-l);
    align-items: start;
}

@media (min-width: 1024px) {
    .sector-block-inner[b-5jvo4bb9zd] {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        align-items: start;
    }

    /* Alternate: even blocks have image left; odd blocks have image right */
    .sector-block--reversed .sector-block-inner[b-5jvo4bb9zd] {
        direction: rtl;
    }

    .sector-block--reversed .sector-block-inner > *[b-5jvo4bb9zd] {
        direction: ltr;
    }
}

/* ── Image side ── */
.sector-block-image[b-5jvo4bb9zd] {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--c-surface);
}

.sector-block-img[b-5jvo4bb9zd] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* duotone: desaturate + brand-blue tint via overlay */
    filter: grayscale(0.55) brightness(0.72);
    transition: filter var(--dur-reveal) var(--ease-out),
                transform var(--dur-reveal) var(--ease-out);
}

.sector-block-image:hover .sector-block-img[b-5jvo4bb9zd] {
    filter: grayscale(0.25) brightness(0.85);
    transform: scale(1.02);
}

.sector-block-overlay[b-5jvo4bb9zd] {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        145deg,
        rgba(4, 92, 250, 0.28) 0%,
        rgba(12, 45, 209, 0.12) 55%,
        transparent 100%
    );
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
    .sector-block-img[b-5jvo4bb9zd] {
        transition: none;
    }
    .sector-block-image:hover .sector-block-img[b-5jvo4bb9zd] {
        transform: none;
    }
}

/* ── Text side ── */
.sector-block-content[b-5jvo4bb9zd] {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
}

.sector-block-text[b-5jvo4bb9zd] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.sector-block-label[b-5jvo4bb9zd] {
    color: var(--c-blue-text);
    letter-spacing: 0.12em;
}

.sector-block-title[b-5jvo4bb9zd] {
    font-family: var(--f-display);
    font-size: clamp(1.6rem, 1.2rem + 2vw, 2.8rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--c-text);
    margin: 0;
}

.sector-block-blurb[b-5jvo4bb9zd] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.65;
    max-width: 52ch;
    margin: 0;
}

/* ── Project cards grid ── */
.sector-block-projects[b-5jvo4bb9zd] {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-m);
}

@media (min-width: 640px) {
    .sector-block-projects[b-5jvo4bb9zd] {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}
/* /Components/Sections/SectorDetail.razor.rz.scp.css */
/* ── Page intro ── */
.sectors-intro[b-hfd5boitew] {
    padding-block: var(--space-xl) var(--space-l);
}

.sectors-heading[b-hfd5boitew] {
    font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
    font-family: var(--f-display);
    font-weight: 700;
    line-height: 1.05;
    color: var(--c-text);
    margin: 0 0 var(--space-s);
}

.sectors-intro-text[b-hfd5boitew] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 64ch;
    margin: 0;
}
/* /Components/Sections/SectorVault.razor.rz.scp.css */
.vault[b-cbf0ouiv8b] { position: relative; background: var(--c-canvas); padding-block: var(--space-xl); overflow: hidden; }
.vault-heading[b-cbf0ouiv8b] { margin-bottom: var(--space-l); }

/* ── Fallback (default): vertical stack — mobile, no-JS, reduced-motion ── */
.vault-track[b-cbf0ouiv8b] { display: flex; flex-direction: column; gap: var(--space-m); }
.chamber[b-cbf0ouiv8b] { position: relative; overflow: hidden; min-height: 60vh; display: flex; flex-direction: column; justify-content: flex-end; padding: var(--space-l); border: 1px solid var(--c-line); border-radius: 2px; scroll-margin-top: var(--anchor-offset); }
.chamber-img[b-cbf0ouiv8b] { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(.5) brightness(.6); }
.chamber[b-cbf0ouiv8b]::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(6,7,11,.85), rgba(6,7,11,.3) 55%, transparent), linear-gradient(0deg, rgba(7,9,14,.6), transparent 50%); }
.chamber-ghost[b-cbf0ouiv8b] { position: absolute; top: var(--space-m); right: var(--space-l); z-index: 2; font-family: var(--f-display); font-weight: 700; font-size: 6rem; color: rgba(255,255,255,.06); }
.chamber-body[b-cbf0ouiv8b] { position: relative; z-index: 3; }
.chamber-title[b-cbf0ouiv8b] { font-size: var(--fs-step-3); margin: .2rem 0 .4rem; }
.chamber-blurb[b-cbf0ouiv8b] { color: #cdd4de; max-width: 46ch; }

.vault-index[b-cbf0ouiv8b] { list-style: none; display: flex; flex-wrap: wrap; gap: var(--space-m); margin-top: var(--space-l); padding: 0; }
.vault-jump[b-cbf0ouiv8b] { display: flex; align-items: center; gap: .5rem; color: var(--c-muted); opacity: .7; }
.vault-jump[b-cbf0ouiv8b]  .vj-icon { width: 16px; height: 16px; flex: none; }
.vault-jump.is-active[b-cbf0ouiv8b] { opacity: 1; color: var(--c-text); }
.vj-num[b-cbf0ouiv8b] { font-family: var(--f-mono); font-size: .7rem; color: var(--c-amber); letter-spacing: .12em; }
.vault-jump:focus-visible[b-cbf0ouiv8b] { outline: 2px solid var(--c-blue); outline-offset: 3px; }

/* ── Active (JS, desktop, motion): horizontal pinned chambers — added by vault.js ── */
.vault.is-vault-active[b-cbf0ouiv8b] { padding-block: 0; }
.vault.is-vault-active .vault-heading[b-cbf0ouiv8b] { position: absolute; top: var(--space-m); left: var(--space-m); z-index: 6; margin: 0; }
.vault.is-vault-active .vault-track[b-cbf0ouiv8b] { flex-direction: row; gap: 0; }
.vault.is-vault-active .chamber[b-cbf0ouiv8b] { min-width: 100vw; height: 100vh; min-height: 0; justify-content: center; padding: 0 6vw; border: 0; border-right: 1px solid rgba(255,255,255,.08); border-radius: 0; }
.vault.is-vault-active .chamber-body[b-cbf0ouiv8b] { max-width: 44ch; }
.vault.is-vault-active .vault-index[b-cbf0ouiv8b] { position: absolute; left: 0; right: 0; bottom: 0; z-index: 6; margin: 0; padding: var(--space-s) var(--space-m); display: grid; grid-template-columns: repeat(var(--vault-count, 4), 1fr); gap: var(--space-s); background: linear-gradient(0deg, rgba(6,7,11,.92), transparent); }
.vault.is-vault-active .vault-jump[b-cbf0ouiv8b] { border-top: 2px solid rgba(255,255,255,.14); padding-top: .5rem; }
.vault.is-vault-active .vault-jump.is-active[b-cbf0ouiv8b] { border-top-color: var(--c-blue); }
/* /Components/Sections/SelectedProjects.razor.rz.scp.css */
.selected-projects[b-pak087koam] {
  padding-block: var(--space-xl);
  background: var(--c-canvas);
}

.selected-projects-header[b-pak087koam] {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  margin-bottom: var(--space-l);
}

.selected-projects-heading[b-pak087koam] {
  font-size: var(--fs-step-3);
  line-height: 1.1;
  max-width: 28ch;
}

.brand-rule[b-pak087koam] {
  border: none;
  border-top: 1px solid var(--c-blue);
  width: 80px;
  margin-block: 0;
  margin-inline: 0;
}

/* Responsive grid: 1-col mobile → 2-col tablet → 2-col with larger gap desktop */
.projects-grid[b-pak087koam] {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-m);
  margin-bottom: var(--space-l);
}

@media (min-width: 640px) {
  .projects-grid[b-pak087koam] {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid[b-pak087koam] {
    gap: var(--space-l);
  }
}

/* CTA link */
.projects-cta[b-pak087koam] {
  display: flex;
  justify-content: flex-start;
}

.projects-all-link[b-pak087koam] {
  display: inline-flex;
  align-items: center;
  gap: var(--space-s);
  font-family: var(--f-display);
  font-size: var(--fs-step-0);
  font-weight: 600;
  color: var(--c-blue);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--c-blue);
  border-radius: 2px;
  transition: background var(--dur-micro) var(--ease-out),
              color var(--dur-micro) var(--ease-out),
              transform var(--dur-micro) var(--ease-out);
}

.projects-all-link:hover[b-pak087koam] {
  background: var(--c-blue);
  color: #fff;
  transform: translateY(-2px);
}

.projects-all-arrow[b-pak087koam] {
  transition: transform var(--dur-micro) var(--ease-out);
  display: inline-block;
}

.projects-all-link:hover .projects-all-arrow[b-pak087koam] {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .projects-all-link[b-pak087koam],
  .projects-all-arrow[b-pak087koam] {
    transition: none;
  }
}
/* /Components/Sections/ServiceBlock.razor.rz.scp.css */
.service-block[b-sy43nwwzog] {
    padding-block: var(--space-xl);
    scroll-margin-top: var(--anchor-offset);
}

.service-head[b-sy43nwwzog] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    margin-bottom: var(--space-l);
}

.service-title[b-sy43nwwzog] {
    font-family: var(--f-display);
    font-size: var(--fs-step-3);
    line-height: 1.1;
    letter-spacing: -0.01em;
    max-width: 24ch;
}

.brand-rule[b-sy43nwwzog] {
    border: none;
    border-top: 1px solid var(--c-blue);
    width: 80px;
    margin: 0;
}

.service-intro[b-sy43nwwzog] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 60ch;
}

.cap-grid[b-sy43nwwzog] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-l);
}

.cap[b-sy43nwwzog] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

/* ::deep reaches into the child LineIcon's scoped SVG */
.cap[b-sy43nwwzog]  .cap-icon {
    width: 28px;
    height: 28px;
    color: var(--c-blue);
}

.cap-label[b-sy43nwwzog] {
    font-family: var(--f-display);
    font-size: var(--fs-step-0);
    font-weight: 700;
    color: var(--c-text);
    letter-spacing: -0.01em;
}

.cap-desc[b-sy43nwwzog] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 42ch;
}

@media (min-width: 640px) {
    .cap-grid[b-sy43nwwzog] { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .cap-grid[b-sy43nwwzog] { grid-template-columns: repeat(3, 1fr); }
    .service-title[b-sy43nwwzog] { font-size: clamp(2rem, 1.6rem + 2vw, 3rem); }
}
/* /Components/Sections/ServicesDetail.razor.rz.scp.css */
.services-intro[b-3p8ju4iqty] {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    margin-block: var(--space-xl) var(--space-l);
}

.services-heading[b-3p8ju4iqty] {
    font-family: var(--f-display);
    font-size: var(--fs-step-5);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.services-intro-text[b-3p8ju4iqty] {
    font-size: var(--fs-step-0);
    color: var(--c-muted);
    line-height: 1.7;
    max-width: 60ch;
}
/* /Components/Sections/Stats.razor.rz.scp.css */
.stats[b-vb488bppv0] {
  padding-block: var(--space-xl);
  background: var(--c-canvas);
}

.stats-heading[b-vb488bppv0] {
  margin-bottom: var(--space-l);
}

.stats-grid[b-vb488bppv0] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
}

/* hairline grid: internal dividers using left + top borders only */
.stats-grid[b-vb488bppv0] >  .stat {
  border: none;
  border-left: 1px solid var(--c-line);
  border-top: 1px solid var(--c-line);
}

/* first cell: no left or top border (no perimeter on the outside) */
.stats-grid[b-vb488bppv0] >  .stat:first-child {
  border-left: none;
  border-top: none;
}

@media (min-width: 768px) {
  .stats-grid[b-vb488bppv0] {
    grid-template-columns: repeat(5, 1fr);
  }

  /* all cells in the first row: no top border */
  .stats-grid[b-vb488bppv0] >  .stat:nth-child(-n+5) {
    border-top: none;
  }

  /* first column cells: no left border */
  .stats-grid[b-vb488bppv0] >  .stat:nth-child(5n+1) {
    border-left: none;
  }
}

/* on small screens with auto-fit: only first cell has no borders */
@media (max-width: 767px) {
  .stats-grid[b-vb488bppv0] >  .stat:first-child {
    border-left: none;
    border-top: none;
  }
}
/* /Components/Ui/CertBadge.razor.rz.scp.css */
.cert-badge[b-izik30dxgv] {
  display: flex;
  align-items: flex-start;
  gap: var(--space-s);
  padding: var(--space-s) var(--space-m);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 2px;
  transition: border-color var(--dur-micro) var(--ease-out),
              box-shadow var(--dur-micro) var(--ease-out);
}

.cert-badge:hover[b-izik30dxgv] {
  border-color: rgba(4, 92, 250, 0.4);
  box-shadow: 0 4px 16px rgba(4, 92, 250, 0.12);
}

.cert-badge-icon[b-izik30dxgv] {
  font-family: var(--f-mono);
  font-size: var(--fs-step--1);
  color: var(--c-blue);
  line-height: 1.6;
  flex-shrink: 0;
}

.cert-badge-text[b-izik30dxgv] {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cert-badge-name[b-izik30dxgv] {
  /* mono-label base class handles font; override color for clarity */
  color: var(--c-text);
  letter-spacing: 0.04em;
}

.cert-badge-issuer[b-izik30dxgv] {
  font-family: var(--f-mono);
  font-size: var(--fs-step--1);
  color: var(--c-muted);
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  .cert-badge[b-izik30dxgv] {
    transition: none;
  }
}
/* /Components/Ui/Field.razor.rz.scp.css */
/* Field.razor.css — scoped styles ported verbatim from Field.astro <style>.
   :global(.field-select option) → .field-select ::deep option */

.field[b-jxrq7q4dig] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-label[b-jxrq7q4dig] {
    font-family: var(--f-mono);
    font-size: var(--fs-step--1);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-required[b-jxrq7q4dig] {
    color: var(--c-blue);
    font-size: 0.9em;
}

.field-control[b-jxrq7q4dig] {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--c-line);
    border-radius: 2px;
    color: var(--c-text);
    font-family: var(--f-body);
    font-size: var(--fs-step-0);
    padding: 0.75rem 1rem;
    width: 100%;
    transition: border-color var(--dur-micro) var(--ease-out),
                background var(--dur-micro) var(--ease-out);
    /* Reset browser defaults */
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

.field-control:focus-visible[b-jxrq7q4dig] {
    border-color: var(--c-blue);
    background: rgba(4, 92, 250, 0.06);
    box-shadow: 0 0 0 2px rgba(4, 92, 250, 0.25);
}

.field-control[b-jxrq7q4dig]::placeholder {
    color: rgba(138, 147, 163, 0.5);
}

/* Select arrow */
.field-select[b-jxrq7q4dig] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A93A3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Select options — browser-native, dark context.
   ::deep so the rule applies to <option> elements from ChildContent (parent scope). */
.field-select[b-jxrq7q4dig]  option {
    background: var(--c-surface);
    color: var(--c-text);
}

.field-textarea[b-jxrq7q4dig] {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}
/* /Components/Ui/LineIcon.razor.rz.scp.css */
/* Self-scoped default so the icon is never unsized/oversized even if a
   parent's scoped rule can't reach it across the component boundary.
   color:inherit lets it pick up the surrounding text colour (currentColor). */
.line-icon[b-ydr260c1b1] { width: 1.5rem; height: 1.5rem; color: inherit; flex: none; display: inline-block; vertical-align: middle; }
/* /Components/Ui/ProjectCard.razor.rz.scp.css */
.project-card[b-w7oqvqbsoh] {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  padding: var(--space-m);
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 2px;
  transition: transform var(--dur-micro) var(--ease-out),
              box-shadow var(--dur-micro) var(--ease-out),
              border-color var(--dur-micro) var(--ease-out);
}

.project-card:hover[b-w7oqvqbsoh] {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(4, 92, 250, 0.18);
  border-color: rgba(4, 92, 250, 0.4);
}

.project-card-header[b-w7oqvqbsoh] {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-s);
  flex-wrap: wrap;
}

.project-card-client[b-w7oqvqbsoh] {
  font-family: var(--f-display);
  font-size: var(--fs-step-3);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.1;
  margin: 0;
}

.project-card-sector[b-w7oqvqbsoh] {
  /* mono-label class provides base styling; add sector-specific colour */
  color: var(--c-blue-text);
  flex-shrink: 0;
}

.project-card-role[b-w7oqvqbsoh] {
  font-size: var(--fs-step-0);
  font-weight: 600;
  color: var(--c-text);
  margin: 0;
}

.project-card-scope[b-w7oqvqbsoh] {
  font-size: var(--fs-step-0);
  color: var(--c-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.project-card-footer[b-w7oqvqbsoh] {
  margin-top: auto;
  padding-top: var(--space-s);
  border-top: 1px solid var(--c-line);
}

.project-card-meta[b-w7oqvqbsoh] {
  font-family: var(--f-mono);
  font-size: var(--fs-step--1);
  color: var(--c-muted);
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  .project-card[b-w7oqvqbsoh] {
    transition: none;
  }
}
/* /Components/Ui/SectionWipe.razor.rz.scp.css */
/* Full-width hairline beat between sections. transform-origin:left so the JS scaleX 0->1 wipes
   left-to-right. Transform-only (no width / clip-path) to protect CLS + INP. */
.section-wipe[b-1wk6voukpm] {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-blue);
    transform-origin: left center;
    transform: scaleX(1); /* default (no-JS / reduced-motion): full-width static rule */
}

/* Motion-allowed start-state: collapsed; section-wipe.js animates scaleX 0->1 on scroll-enter. */
html.motion-ready .section-wipe[b-1wk6voukpm] { transform: scaleX(0); will-change: transform; }
/* /Components/Ui/Stat.razor.rz.scp.css */
.stat[b-asith1h0rt] {
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  padding: var(--space-m);
  border: 1px solid var(--c-line);
}

.stat-number[b-asith1h0rt] {
  font-family: var(--f-mono);
  font-size: var(--fs-step-5);
  font-weight: 700;
  color: var(--c-blue);
  line-height: 1;
  letter-spacing: -.02em;
}

.stat-label[b-asith1h0rt] {
  font-size: var(--fs-step--1);
  color: var(--c-muted);
  line-height: 1.4;
}

.sr-only[b-asith1h0rt] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
