/* ==========================================================================
   Webline Technologies: the daylight glass build.
   Tokens first (the scrollcraft floor is themed, never edited), then the
   site's own markup. Nothing here restyles a [data-sc-*] mechanism.
   ========================================================================== */

@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/Geist-Italic-Variable.woff2") format("woff2");
  font-weight: 100 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Geist Mono";
  src: url("/assets/fonts/GeistMono-Variable.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  --sc-canvas: #F5F7FA;
  --sc-surface: #FFFFFF;
  --sc-ink: #0A2468;
  --sc-ink-soft: #3A4A70;
  --sc-accent: #0A8BFF;
  --sc-accent-ink: #FFFFFF;
  --sc-font-display: "Geist", system-ui, sans-serif;
  --sc-font-text: "Geist", system-ui, sans-serif;
  --sc-font-mono: "Geist Mono", ui-monospace, monospace;

  /* light canvas: shadows tinted to the navy, at roughly half the dark alphas */
  --sc-shadow-color: 224 70% 22%;
  --sc-e1: 0 1px 2px hsl(var(--sc-shadow-color) / 0.08), 0 2px 6px -1px hsl(var(--sc-shadow-color) / 0.08);
  --sc-e2: 0 2px 4px hsl(var(--sc-shadow-color) / 0.07), 0 10px 24px -6px hsl(var(--sc-shadow-color) / 0.14);
  --sc-e3: 0 4px 8px hsl(var(--sc-shadow-color) / 0.06), 0 22px 48px -12px hsl(var(--sc-shadow-color) / 0.2);
  --sc-edge: inset 0 1px 0 rgb(255 255 255 / 0.85);
  --sc-hairline: rgb(10 36 104 / 0.12);
  --sc-hairline-strong: rgb(10 36 104 / 0.22);

  /* one hue, two stops: cobalt for marks and large graphics, a deeper cobalt
     wherever it has to carry small text at 4.5:1 */
  --wl-cobalt: #0A8BFF;
  --wl-cobalt-text: #0063C6;
  --wl-sky: #7BCBFE;
  --wl-navy: #0A2468;
  --wl-navy-2: #14338C;
  --wl-teal: #00B3AA;
  --wl-teal-text: #00766F;
  --wl-crimson: #FF2A3B;
  --wl-crimson-text: #C8102E;
  --wl-lede: #2E3D63;

  --wl-r: 10px;
  --wl-bar-h: 68px;
}

html { scroll-behavior: auto; }
body { font-feature-settings: "ss01" on; }
::selection { background: var(--wl-navy); color: #fff; }
:focus-visible { outline: 2px solid var(--wl-cobalt); outline-offset: 3px; border-radius: 6px; }
a { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 100;
  background: var(--wl-navy); color: #fff; padding: 10px 14px; border-radius: var(--wl-r);
  text-decoration: none; font-weight: 550;
}
.skip-link:focus { top: 12px; }

/* ---------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  min-height: 48px; padding: 0 1.25em;
  border-radius: var(--wl-r); border: 1px solid transparent;
  font: 550 1rem/1 var(--sc-font-text); letter-spacing: -0.01em;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color 160ms var(--sc-ease-out), transform 120ms var(--sc-ease-out), box-shadow 160ms var(--sc-ease-out);
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--wl-navy); color: #fff; box-shadow: var(--sc-e1), inset 0 1px 0 rgb(255 255 255 / 0.14); }
.btn--ghost { background: rgb(255 255 255 / 0.7); color: var(--wl-navy); border-color: var(--sc-hairline-strong); }
.btn--sm { min-height: 40px; padding: 0 1em; font-size: 0.9375rem; }
.btn .ar { transition: transform 160ms var(--sc-ease-out); }
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover { background: var(--wl-navy-2); }
  .btn--ghost:hover { background: #fff; border-color: var(--wl-navy); }
  .btn:hover .ar { transform: translateX(3px); }
}
.btn[aria-disabled="true"], .btn:disabled { opacity: 0.5; pointer-events: none; }

.link {
  color: var(--wl-cobalt-text); font-weight: 550; text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 0.28em;
  text-decoration-color: rgb(0 99 198 / 0.35);
  transition: text-decoration-color 160ms var(--sc-ease-out);
}
.link:hover { text-decoration-color: currentColor; }

/* -------------------------------------------------------------------- bar -- */
.bar {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--wl-bar-h);
  display: flex; align-items: center; gap: clamp(12px, 2vw, 28px);
  padding-inline: var(--sc-gutter);
  transition: background-color 220ms var(--sc-ease-out), box-shadow 220ms var(--sc-ease-out);
}
.bar.is-solid { background: rgb(245 247 250 / 0.94); box-shadow: 0 1px 0 var(--sc-hairline); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--wl-navy); }
.brand svg { width: 38px; height: auto; }
.brand__word { font-weight: 680; font-size: 1.3rem; letter-spacing: -0.035em; }
.brand__word i { font-style: normal; color: var(--wl-cobalt); }

.status { position: relative; }
.status__btn {
  display: inline-flex; align-items: center; gap: 8px; height: 32px; padding: 0 10px 0 9px;
  border: 1px solid var(--sc-hairline); border-radius: 8px; background: rgb(255 255 255 / 0.55);
  font: 500 0.72rem/1 var(--sc-font-mono); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--wl-navy); cursor: pointer;
  transition: border-color 160ms var(--sc-ease-out), background-color 160ms var(--sc-ease-out);
}
.status__btn:hover { border-color: var(--sc-hairline-strong); background: #fff; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--status, var(--wl-cobalt)); flex: none; transition: background-color 240ms var(--sc-ease-out); }
.status__label { min-width: 9ch; text-align: left; }
.status__list {
  position: absolute; top: calc(100% + 8px); left: 0; margin: 0; padding: 6px; list-style: none;
  min-width: 15rem; background: #fff; border-radius: 12px; box-shadow: var(--sc-e3), 0 0 0 1px var(--sc-hairline);
}
.status__list a {
  display: flex; align-items: center; gap: 10px; padding: 9px 10px; border-radius: 8px;
  font: 500 0.75rem/1 var(--sc-font-mono); letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--wl-navy); text-decoration: none;
}
.status__list a:hover, .status__list a[aria-current="step"] { background: var(--sc-canvas); }
.status__list a::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--c, var(--wl-cobalt)); }

.bar__nav { margin-left: auto; }
.bar__nav ul { display: flex; gap: clamp(14px, 1.8vw, 26px); margin: 0; padding: 0; list-style: none; }
.bar__nav a { color: var(--wl-navy); text-decoration: none; font-size: 0.9375rem; font-weight: 500; padding: 6px 0; background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat; transition: background-size 200ms var(--sc-ease-out); }
.bar__nav a:hover, .bar__nav a[aria-current="page"] { background-size: 100% 1px; }
.burger { display: none; }

@media (max-width: 960px) {
  .bar__nav, .bar .btn { display: none; }
  .burger {
    display: inline-flex; align-items: center; justify-content: center; margin-left: auto;
    width: 44px; height: 44px; border: 1px solid var(--sc-hairline); border-radius: var(--wl-r);
    background: rgb(255 255 255 / 0.6); color: var(--wl-navy); cursor: pointer;
  }
  .burger span { position: relative; width: 18px; height: 10px; }
  .burger span::before, .burger span::after {
    content: ""; position: absolute; left: 0; right: 0; height: 1.6px; background: currentColor; border-radius: 2px;
    transition: transform 200ms var(--sc-ease-out), top 200ms var(--sc-ease-out);
  }
  .burger span::before { top: 0; } .burger span::after { top: 8px; }
  .burger[aria-expanded="true"] span::before { top: 4px; transform: rotate(45deg); }
  .burger[aria-expanded="true"] span::after { top: 4px; transform: rotate(-45deg); }
}
@media (max-width: 480px) { .status__label { min-width: 0; } .brand__word { font-size: 1.15rem; } }

.mnav {
  position: fixed; inset: 0; z-index: 55; background: var(--sc-canvas);
  padding: calc(var(--wl-bar-h) + 24px) var(--sc-gutter) 32px; display: flex; flex-direction: column; justify-content: space-between;
}
.mnav ul { margin: 0; padding: 0; list-style: none; }
.mnav li a { display: block; padding: 10px 0; font-size: clamp(1.9rem, 8vw, 2.6rem); font-weight: 620; letter-spacing: -0.035em; color: var(--wl-navy); text-decoration: none; }
.mnav__foot { display: flex; flex-direction: column; gap: 10px; font-size: 1rem; }
.mnav__foot a { color: var(--wl-cobalt-text); }

/* ---------------------------------------------------------------- eyebrow -- */
.eyebrow {
  margin: 0 0 1.4rem; font: 500 0.75rem/1.2 var(--sc-font-mono); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--wl-lede);
}
@media (max-width: 860px) { .eyebrow { margin-bottom: 1rem; } }

html:not(.js) [data-sc-in], html:not(.js) [data-sc-stagger] > *, html:not(.js) [data-sc-cue] { opacity: 1 !important; transform: none !important; }

.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
