@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/roboto-latin-var-v51.woff2") format("woff2");
}

/*
 * Shared public-site header and footer.
 *
 * These tokens live on the shell itself rather than :root so page-specific
 * design systems can keep their own variable names without changing the
 * homepage navigation or footer.
 */
.hd,
.ft,
.mobile-nav-backdrop,
.back-to-top {
  --shell-ink: #0d1526;
  --shell-ink-2: #16233a;
  --shell-ink-3: #2b3a52;
  --shell-slate: #41506b;
  --shell-muted: #5c6b83;
  --shell-green: #0a8a45;
  --shell-green-lit: #0aa05f;
  --shell-green-deep: #037a3f;
  --shell-green-shade: #0b3f27;
  --shell-green-bright: #35b37e;
  --shell-mint: #e9f7f0;
  --shell-mint-soft: #f1faf5;
  --shell-mint-line: #e2f0e9;
  --shell-line: #e8eef1;
  --shell-line-soft: #eef3f5;
  --shell-ground: #fbfdfd;
  --shell-surface: #fff;
  --shell-social-instagram: #e4405f;
  --shell-social-threads: #101010;
  --shell-social-tiktok: #010101;
  --shell-social-linkedin: #0a66c2;
  --shell-social-facebook: #1877f2;
  --shell-social-email: #079455;
  --shell-shadow-card: 0 10px 30px -18px rgba(15, 50, 40, .28);
  --shell-shadow-lift: 0 18px 44px -22px rgba(15, 50, 40, .34);
  color: var(--shell-slate);
  font-family: Roboto, system-ui, -apple-system, "Segoe UI", sans-serif;
}

html[data-theme="dark"] .hd,
html[data-theme="dark"] .ft,
html[data-theme="dark"] .mobile-nav-backdrop,
html[data-theme="dark"] .back-to-top {
  --shell-ink: #f4f7f5;
  --shell-ink-2: #e5ede9;
  --shell-ink-3: #ccd8d2;
  --shell-slate: #b1c0b9;
  --shell-muted: #8fa198;
  --shell-green: #3add91;
  --shell-green-lit: #45e39a;
  --shell-green-deep: #25c77b;
  --shell-green-bright: #45e39a;
  --shell-mint: #153329;
  --shell-mint-soft: #10271f;
  --shell-mint-line: #234438;
  --shell-line: #263a31;
  --shell-line-soft: #1d3028;
  --shell-ground: #07110d;
  --shell-surface: #101e18;
  --shell-social-threads: #fff;
  --shell-social-tiktok: #fff;
  --shell-shadow-card: 0 14px 36px -22px rgba(0, 0, 0, .75);
  --shell-shadow-lift: 0 20px 48px -24px rgba(0, 0, 0, .82);
}

.hd *,
.ft *,
.back-to-top { box-sizing: border-box; }

.site-shell-container {
  width: min(1490px, calc(100% - 96px));
  margin-inline: auto;
}

.site-shell-skip {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 200;
  padding: 12px 18px;
  border-radius: 0 0 10px 10px;
  background: #0b3f27;
  color: #fff;
  font: 700 15px/1.2 Roboto, sans-serif;
  text-decoration: none;
  transition: top .16s ease;
}
.site-shell-skip:focus { top: 0; }
.site-shell-sentinel { display: block; height: 1px; }

.hd {
  position: sticky;
  top: 0;
  z-index: 90;
  /* 10px top and bottom, asked for directly. Both states carry the same figure so
     the bar does not grow by 4px the moment it sticks -- the transition is still
     doing work on the background and the shadow. */
  padding: 10px 0;
  transition: padding .2s ease, background .2s ease, box-shadow .2s ease;
}
.hd.is-stuck {
  padding: 10px 0;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  box-shadow: 0 10px 30px -22px rgba(15, 50, 40, .5);
}
html[data-theme="dark"] .hd.is-stuck { background: rgba(7, 17, 13, .92); }
.hd a,
.ft a { color: inherit; text-decoration: none; }
.hd img,
.ft img { display: block; max-width: 100%; }
.hd svg,
.ft svg,
.back-to-top svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hd-in { position: relative; display: flex; align-items: center; gap: 40px; }
.hd-brand { display: flex; align-items: center; gap: 14px; }
.hd-mark { width: 54px; height: 54px; }
.hd-brand-text { display: flex; flex-direction: column; gap: 3px; }
.hd-name { font-size: 26px; font-weight: 700; letter-spacing: -.3px; line-height: 1; }
.hd-name b { color: var(--shell-ink); }
.hd-name i { color: var(--shell-green); font-style: normal; }
.hd-tag { color: var(--shell-muted); font-size: 13.2px; letter-spacing: -.1px; }
.hd-nav { position: relative; display: flex; align-items: center; gap: 46px; margin-left: 82px; margin-right: auto; }
.hd-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--shell-ink-3);
  font: 400 15.8px/1.2 Roboto, sans-serif;
  cursor: pointer;
  transition: color .16s ease;
}
.hd-link:hover,
.hd-link[aria-expanded="true"] { color: var(--shell-green); }
.hd-link svg { stroke-width: 2.1; opacity: .75; }
.hd-link[aria-expanded="true"] svg { transform: rotate(180deg); }
.hd-act { display: flex; align-items: center; gap: 26px; }
.theme-toggle,
.mobile-nav-toggle {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--shell-line);
  border-radius: 50%;
  background: var(--shell-surface);
  color: var(--shell-ink-2);
  box-shadow: var(--shell-shadow-card);
  cursor: pointer;
}
.theme-toggle { transition: transform .16s ease, border-color .16s ease, color .16s ease; }
.theme-toggle:hover { transform: translateY(-1px); border-color: var(--shell-green); color: var(--shell-green); }
.theme-toggle svg { width: 20px; height: 20px; stroke-width: 2; }
.theme-toggle .theme-sun { display: none; }
html[data-theme="dark"] .theme-toggle .theme-sun { display: block; }
html[data-theme="dark"] .theme-toggle .theme-moon { display: none; }
.hd-signin { color: var(--shell-ink); font-size: 16.5px; font-weight: 600; }
.hd-signin:hover { color: var(--shell-green); }
.hd .btn-green {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(96deg, var(--shell-green-deep), var(--shell-green-lit));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 26px -14px rgba(4, 122, 63, .75);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.hd .btn-green:hover { transform: translateY(-1px); filter: saturate(1.06); }
.hd-cta { height: 50px; padding: 0 26px; border-radius: 999px; font-size: 16px; }
.hd-cta-short { display: none; }
.hd-cta svg { stroke-width: 2.2; }

.mobile-nav-toggle { display: none; align-content: center; gap: 4px; color: var(--shell-ink); }
.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 120;
  display: none;
  width: min(420px, 100%);
  max-height: calc(100vh - 100px);
  padding: 20px;
  overflow-y: auto;
  border: 1px solid var(--shell-line);
  border-radius: 18px;
  background: var(--shell-surface);
  box-shadow: var(--shell-shadow-lift);
}
.mobile-nav-section + .mobile-nav-section { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--shell-line-soft); }
.mobile-nav-section h2 { margin: 0; color: var(--shell-green-deep); font-size: 12px; letter-spacing: 1.3px; line-height: 1; text-transform: uppercase; }
.mobile-nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }
.mobile-nav-links a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--shell-mint-soft);
  color: var(--shell-ink-2);
  font-size: 14px;
  font-weight: 600;
}
.mobile-nav-links a:hover { background: var(--shell-mint); color: var(--shell-green-deep); }
.mobile-nav-actions { display: grid; grid-template-columns: 1fr 1.45fr; gap: 10px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--shell-line-soft); }
.mobile-nav-signin,
.mobile-nav-cta { display: flex; align-items: center; justify-content: center; min-height: 48px; border-radius: 11px; font-size: 14.5px; font-weight: 700; }
.mobile-nav-signin { border: 1px solid var(--shell-line); color: var(--shell-ink); }
.mobile-nav-cta { gap: 8px; }
.mobile-nav-backdrop { position: fixed; inset: 0; z-index: 80; background: rgba(7, 17, 13, .34); backdrop-filter: blur(2px); }
.mobile-nav[hidden],
.mobile-nav-backdrop[hidden] { display: none; }

.mm {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  z-index: 95;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 26px;
  width: 460px;
  padding: 18px;
  transform: translateX(-50%);
  border: 1px solid var(--shell-line);
  border-radius: 18px;
  background: var(--shell-surface);
  box-shadow: 0 30px 70px -34px rgba(9, 50, 33, .45), 0 2px 8px rgba(16, 24, 40, .05);
}
.mm[hidden] { display: none; }
.mm-wide { grid-template-columns: minmax(0, 1fr) 232px; width: 760px; }
.mm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 10px; }
.mm-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px; border-radius: 12px; color: var(--shell-ink); }
.mm-item:hover { background: var(--shell-mint-soft); }
.mm-ico { display: grid; place-items: center; flex: none; width: 38px; height: 38px; border-radius: 11px; background: var(--shell-mint); color: var(--shell-green); }
.mm-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mm-txt b { font-size: 14.5px; letter-spacing: -.2px; }
.mm-txt small { color: var(--shell-muted); font-size: 12.6px; line-height: 1.45; }
.mm-promo { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px; border: 1px solid var(--shell-mint-line); border-radius: 14px; background: linear-gradient(180deg, var(--shell-mint-soft), var(--shell-mint)); }
.mm-promo img { width: 76px; height: auto; }
.mm-promo b { color: var(--shell-ink); font-size: 15px; }
.mm-promo p { margin: 0; color: var(--shell-slate); font-size: 12.6px; line-height: 1.5; }
.mm-promo-cta { display: inline-flex; align-items: center; justify-content: center; width: 100%; height: 40px; margin-top: auto; border-radius: 10px; background: linear-gradient(180deg, var(--shell-green-lit), var(--shell-green)); color: #fff !important; font-size: 13.8px; font-weight: 600; }

.ft {
  position: relative;
  padding: 48px 0 0;
  border: 0;
  border-top: 1px solid var(--shell-mint-line);
  background: transparent;
}
/*
 * The link columns are fixed widths totalling 1239px, and the shell is only
 * 1290px wide at the 1330px breakpoint below -- which left the last column 51px
 * for links that need 64px, so "Overview" hung past the page edge and every page
 * scrolled sideways. The brand column absorbs the shrink instead, and the last
 * column keeps a floor.
 */
.ft-top { display: grid; grid-template-columns: minmax(0, 624px) 291px 324px minmax(150px, 1fr); align-items: start; }
.ft-logo { display: flex; align-items: center; gap: 18px; }
.ft-logo img { width: 68px; height: 68px; }
.ft-word { font-size: 32px; font-weight: 700; letter-spacing: -.5px; line-height: 1; }
.ft-word b { color: var(--shell-ink); }
.ft-word i { color: var(--shell-green); font-style: normal; }
.ft-tag { margin: 24px 0 0; color: var(--shell-ink); font-size: 18px; font-weight: 600; }
.ft-note { margin: 14px 0 0; color: var(--shell-slate); font-size: 16px; line-height: 1.65; }
.ft-address { margin: 12px 0 0; color: var(--shell-slate); font-size: 14px; font-style: normal; line-height: 1.55; }
.ft-address strong { color: var(--shell-ink); }
.ft ul { margin: 0; padding: 0; list-style: none; }
.ft-social { display: flex; gap: 14px; margin: 16px 0 0 !important; }
.ft-social a { display: grid; place-items: center; width: 52px; height: 52px; padding: 0; border: 1px solid var(--shell-line); border-radius: 13px; background: var(--shell-surface); color: var(--social-color, var(--shell-ink-2)); box-shadow: 0 8px 20px -16px rgba(15, 50, 40, .5); transition: transform .16s ease, border-color .16s ease; }
.ft-social a:hover { transform: translateY(-2px); border-color: var(--social-color); color: var(--social-color); text-decoration: none; }
.ft-social .social-instagram { --social-color: var(--shell-social-instagram); }
.ft-social .social-threads { --social-color: var(--shell-social-threads); }
.ft-social .social-tiktok { --social-color: var(--shell-social-tiktok); }
.ft-social .social-linkedin { --social-color: var(--shell-social-linkedin); }
.ft-social .social-facebook { --social-color: var(--shell-social-facebook); }
.ft-social .social-email { --social-color: var(--shell-social-email); }
.ft-head { display: flex; align-items: center; gap: 12px; margin: 0; color: var(--shell-ink); font-size: 21px; font-weight: 600; letter-spacing: -.3px; }
.ft-tile { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--shell-mint); color: var(--shell-green); }
.ft-col { position: relative; }
.ft-col::before { content: ""; position: absolute; top: 56px; left: 0; width: 46px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--shell-green), var(--shell-green-bright)); }
.ft-col ul { margin: 28px 0 0; }
.ft-col li + li { margin-top: 22px; }
.ft-col a { color: var(--shell-slate); font-size: 16px; transition: color .16s ease; }
.ft-col a:hover { color: var(--shell-green); text-decoration: none; }
.ft-base { margin-top: 48px; border-top: 1px solid var(--shell-line); background: var(--shell-ground); }
.ft-base-in { display: flex; align-items: center; min-height: 88px; }
.ft-copy { display: flex; align-items: center; gap: 10px; margin: 0; color: var(--shell-ink-3); font-size: 15.5px; }
.ft-copy svg { flex: none; color: var(--shell-green-lit); }

.back-to-top {
  position: fixed;
  right: 48px;
  bottom: 20px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 1.6px solid var(--shell-green-lit);
  border-radius: 50%;
  background: var(--shell-surface);
  color: var(--shell-green);
  box-shadow: var(--shell-shadow-card);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.back-to-top.is-up { visibility: visible; opacity: 1; transform: none; }
.back-to-top:hover { box-shadow: var(--shell-shadow-lift); }

@media (max-width: 1330px) {
  .hd-nav { gap: 26px; }
  .ft-top { grid-template-columns: 1fr 1fr 1fr; row-gap: 32px; }
  .ft-brand { grid-column: 1 / -1; }
}

@media (max-width: 1120px) {
  .hd-nav,
  .hd-tag,
  .hd-signin { display: none; }
  .hd-act { margin-left: auto; }
  .mobile-nav-toggle { display: grid; }
  .mobile-nav:not([hidden]) { display: block; }
  .hd-cta { white-space: nowrap; }
}

@media (max-width: 820px) {
  .site-shell-container { width: min(1490px, calc(100% - 40px)); }
  .ft { padding-top: 40px; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .ft-word { font-size: 28px; }
  .ft-head { font-size: 18px; }
  .ft-col a { font-size: 15px; }
  .ft-col li + li { margin-top: 18px; }
  .ft-base-in { min-height: 78px; }
  .ft-copy { font-size: 14.5px; }
  .back-to-top { right: 16px; width: 52px; height: 52px; }
}

@media (max-width: 700px) {
  /* 10px, as at every other width. This was 22px from a mobile polish pass,
     which left the phone header lopsided once the base rule became 10px 0. */
  .hd { padding-top: 10px; }
  .hd-in { gap: 16px; }
  .hd-act { gap: 12px; }
  .hd-brand-text { display: none; }
  .theme-toggle,
  .mobile-nav-toggle { width: 42px; height: 42px; }
  .hd-mark { width: 46px; height: 46px; }
  .hd-cta { height: 46px; padding: 0 18px; font-size: 15px; }
}

@media (max-width: 560px) {
  .ft { padding-top: 32px; }
  .ft-top { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px 8px; align-items: start; }
  .ft-brand { grid-column: 1 / -1; margin-bottom: 10px; }
  .ft-social { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 3px; width: 100%; }
  .ft-social li { min-width: 0; }
  .ft-social a { justify-self: center; width: 100%; max-width: 48px; height: auto; aspect-ratio: 1; margin: 0; border-radius: 12px; }
  .ft-col { min-width: 0; padding: 0; border: 0; background: transparent; box-shadow: none; }
  .ft-head { flex-direction: column; align-items: flex-start; gap: 8px; font-size: 15px; letter-spacing: -.2px; }
  .ft-tile { width: 24px; height: 24px; border-radius: 0; background: transparent; }
  .ft-tile svg { width: 19px; height: 19px; }
  .ft-col::before { display: none; }
  .ft-col ul { display: grid; grid-template-columns: minmax(0, 1fr); gap: 0; margin: 12px 0 0; }
  .ft-col li { border-bottom: 1px solid var(--shell-line-soft); }
  .ft-col li:last-child { border-bottom: 0; }
  .ft-col li + li { margin-top: 0; }
  .ft-col a,
  .ft-col a:hover { display: flex; align-items: center; min-height: 40px; margin: 0; padding: 8px 0; border: 0; background: transparent; color: var(--shell-ink-2); font-size: 13px; line-height: 1.25; overflow-wrap: anywhere; }
  .ft-base { margin-top: 28px; }
  .ft-copy { flex-wrap: wrap; gap: 8px; line-height: 1.45; }
  .hd-cta-full { display: none; }
  .hd-cta-short { display: inline; }
}

@media (max-width: 430px) {
  .hd-in { gap: 14px; }
  .hd-mark { width: 42px; height: 42px; }
  .hd-act { gap: 10px; }
  .theme-toggle,
  .mobile-nav-toggle { width: 40px; height: 40px; }
  .hd-cta { height: 44px; padding: 0 16px; font-size: 14.5px; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  .hd,
  .hd *,
  .ft *,
  .back-to-top { transition: none !important; }
}
