/* /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 solid rgba(150,180,255,.8); border-radius: 50%; transition: inset .2s, border-color .2s; }
#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; }
#cursor-reticle.is-labeled .reticle-label[b-ej20wjf0lg] { opacity: 1; }
/* /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 */
/* Inactive locale uses an AA-legible muted colour (~6:1 on the dark canvas) rather than
   opacity-dimming, which had halved contrast below WCAG AA. Active stays full-strength text. */
.lang-toggle .lang[b-q8m3s0t1fp] { color: var(--c-muted); }
.lang-toggle .lang.is-current[b-q8m3s0t1fp] { color: var(--c-text); }
/* /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/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);
}

.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;
  overflow: hidden;
}

/* 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;
}

.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;
  }
}
/* /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); }
.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/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;
}
