/* [project]/src/app/globals.css [app-client] (css) */
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-400.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-400-latin-ext.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-600.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/inter-600-latin-ext.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-700.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-700-latin-ext.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/inter-800.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/fonts/inter-800-latin-ext.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --navy: #102a43;
  --navy-deep: #081f33;
  --teal: #19b6a5;
  --teal-deep: #0b8f83;
  --teal-bright: #35cabb;
  --teal-text: #08756b;
  --teal-on-navy: #7ee2d8;
  --pale-blue: #eaf4f4;
  --mist: #f5f7f8;
  --line: #d9e2ec;
  --ink: #172b4d;
  --slate: #334e68;
  --body-text: #486581;
  --muted-text: #526f8b;
  --white: #fff;
  --on-navy: #e2edf2;
  --on-navy-muted: #b8cbd7;
  --rule-on-navy: #ffffff38;
  --danger: #b3261e;
  --danger-bg: #fbeceb;
  --warn-bg: #fff7e0;
  --warn-line: #e6c56b;
  --font: "Inter", "Segoe UI", Arial, sans-serif;
  --shadow: 0 18px 46px #081f3324;
  --shadow-sm: 0 1px 2px #081f3314;
  --wrap: 1160px;
  --gutter: 24px;
}

*, :before, :after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  background: var(--mist);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  color: var(--navy);
  letter-spacing: -.025em;
  text-wrap: balance;
  margin: 0 0 10px;
  font-weight: 800;
  line-height: 1.12;
}

h1 {
  letter-spacing: -.04em;
  font-size: 2.25rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

h4 {
  letter-spacing: -.01em;
  font-size: 1rem;
  font-weight: 700;
}

p {
  margin: 0 0 14px;
}

a {
  color: var(--teal-text);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--navy);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  margin: 0;
}

address {
  font-style: normal;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

::selection {
  background: #19b6a547;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2 * var(--gutter)));
  margin-inline: auto;
}

.skip-link {
  z-index: 100;
  background: var(--teal);
  color: var(--navy-deep);
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
  position: absolute;
  top: 0;
  left: 16px;
  transform: translateY(-120%);
}

.skip-link:focus-visible {
  transform: translateY(8px);
}

main:focus, main:focus-visible {
  outline: none;
}

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

.muted {
  color: var(--muted-text);
  font-size: .875rem;
}

.error {
  color: var(--danger);
  font-size: .875rem;
  font-weight: 600;
}

.stack {
  gap: 14px;
  display: grid;
}

.stack > * {
  margin-block: 0;
}

.row {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

.row-between {
  justify-content: space-between;
}

.btn {
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 42px;
  color: var(--navy);
  font: inherit;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .15s, border-color .15s, color .15s;
  display: inline-flex;
}

.btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btn-primary {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--navy-deep);
}

.btn-primary:hover {
  border-color: var(--teal-bright);
  background: var(--teal-bright);
  color: var(--navy-deep);
}

.btn-primary:active {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
}

.btn-secondary {
  background: var(--white);
}

.btn-secondary:hover {
  background: var(--mist);
}

.btn-ghost {
  color: var(--teal-text);
  background: none;
  border-color: #0000;
  padding-inline: 10px;
}

.btn-ghost:hover {
  background: var(--pale-blue);
  color: var(--navy);
  border-color: #0000;
}

.btn-on-dark {
  color: var(--white);
  background: none;
  border-color: #ffffff8c;
}

.btn-on-dark:hover {
  border-color: var(--white);
  color: var(--white);
  background: #ffffff1a;
}

.btn-lg {
  min-height: 48px;
  padding-inline: 22px;
  font-size: .9rem;
}

.btn-block {
  width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .btn-primary:hover {
    transform: translateY(-1px);
  }
}

.field {
  gap: 6px;
  min-width: 0;
  margin: 0;
  display: grid;
}

.field > label, .field > legend {
  color: var(--slate);
  font-size: .8125rem;
  font-weight: 600;
}

fieldset.field {
  border: 0;
  padding: 0;
}

fieldset.field > label {
  color: var(--ink);
  align-items: center;
  gap: 8px;
  font-size: .9375rem;
  font-weight: 400;
  display: flex;
}

.input, textarea, select {
  background: var(--white);
  width: 100%;
  min-height: 42px;
  color: var(--ink);
  font: inherit;
  caret-color: var(--teal-text);
  border: 1px solid #bccbd9;
  border-radius: 0;
  padding: 9px 12px;
  font-size: .9375rem;
}

.input::placeholder, textarea::placeholder {
  color: #7b93ab;
  opacity: 1;
}

.input:hover, textarea:hover, select:hover {
  border-color: var(--muted-text);
}

.input:focus-visible, textarea:focus-visible, select:focus-visible {
  border-color: var(--teal-deep);
  outline-offset: 0;
  outline: 3px solid #19b6a559;
}

.input:disabled, textarea:disabled, select:disabled {
  background: var(--mist);
  color: var(--muted-text);
}

textarea {
  resize: vertical;
  min-height: 96px;
}

input[type="checkbox"], input[type="radio"] {
  accent-color: var(--teal-deep);
}

input[type="file"].input {
  padding: 8px;
}

.form-narrow {
  max-width: 36rem;
}

.hp-field {
  width: 1px;
  height: 1px;
  position: absolute;
  left: -10000px;
  overflow: hidden;
}

.seg {
  background: var(--white);
  border: 1px solid #bccbd9;
  display: inline-flex;
}

.seg-opt {
  min-height: 40px;
  color: var(--slate);
  align-items: center;
  padding: 0 14px;
  font-size: .8125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.seg-opt + .seg-opt {
  border-left: 1px solid #bccbd9;
}

.seg-opt:hover {
  background: var(--mist);
  color: var(--navy);
}

.seg-opt.is-active {
  background: var(--navy);
  color: var(--white);
}

.tag {
  align-items: center;
  padding: 3px 9px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.4;
  display: inline-flex;
}

.tag-accent {
  background: var(--pale-blue);
  color: var(--teal-text);
  box-shadow: inset 3px 0 0 var(--teal);
}

.tag-neutral {
  color: var(--slate);
  background: #edf1f5;
  box-shadow: inset 3px 0 #9fb3c8;
}

dialog.dialog-backdrop {
  width: fit-content;
  max-width: calc(100% - 32px);
  height: fit-content;
  max-height: calc(100% - 32px);
  color: inherit;
  background: none;
  border: 0;
  margin: auto;
  padding: 0;
  inset: 0;
}

dialog.dialog-backdrop:not([open]) {
  display: none;
}

dialog.dialog-backdrop::backdrop {
  background: #081f3399;
}

.dialog {
  border-top: 4px solid var(--teal);
  background: var(--white);
  width: min(480px, 100%);
  box-shadow: var(--shadow);
  gap: 16px;
  padding: 26px 28px;
  display: grid;
}

.dialog-title {
  margin: 0;
  font-size: 1.25rem;
}

.dialog-body {
  font-size: .9375rem;
}

.dialog-check {
  cursor: pointer;
}

.dialog-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  display: flex;
}

.utility {
  background: var(--navy-deep);
  color: #dce8ef;
  font-size: .82rem;
}

.utility .wrap {
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  min-height: 38px;
  display: flex;
}

.utility a {
  color: #e8f2f5;
  text-decoration: none;
}

.utility a:hover {
  color: var(--teal);
}

.site-header {
  z-index: 20;
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background: #fffffff7;
  position: sticky;
  top: 0;
}

.nav {
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 80px;
  display: flex;
  position: relative;
}

.brand {
  align-items: center;
  gap: 11px;
  text-decoration: none;
  display: inline-flex;
}

.brand-mark {
  object-fit: contain;
  width: 55px;
  height: 55px;
}

.brand-copy {
  line-height: 1;
  display: grid;
}

.brand-copy b {
  color: var(--navy);
  letter-spacing: -.025em;
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-copy small {
  color: var(--teal-text);
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-top: 5px;
  font-size: .62rem;
  font-weight: 800;
}

.nav-links {
  align-items: center;
  gap: 28px;
  display: flex;
}

.nav-links a:not(.btn) {
  color: var(--slate);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.nav-links a:not(.btn):hover {
  color: var(--teal-text);
}

.nav-links a:not(.btn)[aria-current="page"] {
  color: var(--navy);
}

.nav-links a:not(.btn)[aria-current="page"]:after {
  background: var(--teal);
  content: "";
  height: 3px;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
}

.nav-cta {
  min-height: 45px;
  padding-inline: 20px;
}

.menu-button {
  border: 1px solid var(--line);
  min-height: 44px;
  color: var(--navy);
  font: inherit;
  cursor: pointer;
  background: none;
  padding: 0 14px;
  font-size: .875rem;
  font-weight: 800;
  display: none;
}

@media (max-width: 860px) {
  .nav {
    min-height: 70px;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    top: 100%;
    right: calc(-1 * var(--gutter));
    left: calc(-1 * var(--gutter));
    padding: 8px var(--gutter) 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
    position: absolute;
    box-shadow: 0 15px 30px #081f331a;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a:not(.btn) {
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    font-size: 1rem;
  }

  .nav-links a:not(.btn)[aria-current="page"]:after {
    top: 12px;
    bottom: 12px;
    left: calc(-1 * var(--gutter));
    width: 4px;
    height: auto;
    right: auto;
  }

  .nav-cta {
    margin-top: 18px;
  }

  .utility .wrap {
    justify-content: center;
    gap: 15px;
    font-size: .75rem;
  }
}

.eyebrow {
  color: var(--teal-text);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 13px;
  font-size: .73rem;
  font-weight: 800;
}

.section-title {
  max-width: 720px;
  color: var(--navy);
  letter-spacing: -.04em;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.section-copy {
  max-width: 630px;
  color: var(--body-text);
  margin: 18px 0 0;
  font-size: 1.05rem;
}

.section-more {
  margin: 30px 0 0;
  font-size: .95rem;
  font-weight: 700;
}

.section-more a {
  text-decoration-thickness: 2px;
  -webkit-text-decoration-color: var(--teal);
  text-decoration-color: var(--teal);
}

.qualification-note {
  border-left: 4px solid var(--teal);
  background: var(--pale-blue);
  max-width: 630px;
  color: var(--navy);
  align-items: flex-start;
  gap: 13px;
  margin: 25px 0 0;
  padding: 15px 17px;
  font-size: .94rem;
  font-weight: 700;
  display: flex;
}

.qualification-note span {
  color: var(--teal-text);
  letter-spacing: .11em;
  text-transform: uppercase;
  flex: none;
  font-size: .71rem;
  font-weight: 800;
  line-height: 1.85;
}

.hero {
  background: var(--navy);
  min-height: 675px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 42%;
}

.hero-photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.hero-photo:after {
  background: linear-gradient(90deg, var(--navy) 0%, #102a43e0 10%, #102a433d 58%, #081f334d 100%);
  content: "";
  position: absolute;
  inset: 0;
}

.hero:after {
  z-index: 1;
  content: "";
  pointer-events: none;
  border: 1px solid #ffffff29;
  border-radius: 50%;
  width: 680px;
  height: 680px;
  position: absolute;
  bottom: -260px;
  right: -200px;
}

.hero .wrap {
  z-index: 2;
  padding: 104px 0 57px;
  position: relative;
}

.hero-copy {
  max-width: 695px;
}

.hero .eyebrow {
  color: var(--teal-on-navy);
}

.hero h1 {
  max-width: 660px;
  color: var(--white);
  letter-spacing: -.06em;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.35rem);
  font-weight: 800;
  line-height: .96;
}

.hero h1 span {
  color: #86e8df;
}

.hero-intro {
  max-width: 550px;
  color: var(--on-navy);
  margin: 27px 0 0;
  font-size: clamp(1.06rem, 1.7vw, 1.22rem);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  display: flex;
}

.hero-strip {
  border-top: 1px solid #ffffff59;
  grid-template-columns: repeat(3, 1fr);
  width: min(805px, 100%);
  margin: 83px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.hero-strip li {
  border-right: 1px solid var(--rule-on-navy);
  min-height: 91px;
  padding: 20px 18px 0 0;
}

.hero-strip li + li {
  padding-left: 20px;
}

.hero-strip li:last-child {
  border-right: 0;
}

.hero-strip strong {
  color: var(--white);
  font-size: .93rem;
  display: block;
}

.hero-strip span {
  color: var(--on-navy-muted);
  margin-top: 4px;
  font-size: .8rem;
  display: block;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero:after {
  content: "";
  pointer-events: none;
  border: 1px solid #ffffff24;
  border-radius: 50%;
  width: 560px;
  height: 560px;
  position: absolute;
  bottom: -330px;
  right: -160px;
}

.page-hero .wrap {
  z-index: 1;
  padding: 72px 0 64px;
  position: relative;
}

.page-hero .eyebrow {
  color: var(--teal-on-navy);
}

.page-hero h1 {
  max-width: 760px;
  color: var(--white);
  letter-spacing: -.05em;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1;
}

.page-hero-copy {
  max-width: 620px;
  color: var(--on-navy);
  margin-top: 22px;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.page-hero-copy p {
  margin: 0;
}

.intro {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intro-grid {
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 70px;
  padding: 89px 0;
  display: grid;
}

.intro-panel {
  border-left: 7px solid var(--teal);
  background: var(--pale-blue);
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.intro-panel:after {
  color: #19b6a529;
  content: "SE";
  letter-spacing: -.02em;
  pointer-events: none;
  font-size: 5.5rem;
  font-weight: 800;
  line-height: .72;
  position: absolute;
  bottom: 24px;
  right: 26px;
}

.intro-panel blockquote {
  z-index: 1;
  margin: 0;
  position: relative;
}

.intro-panel blockquote p {
  color: var(--navy);
  margin: 0;
  font-size: 1.16rem;
  font-weight: 600;
  line-height: 1.55;
}

.intro-panel figcaption {
  z-index: 1;
  color: var(--teal-text);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 23px;
  font-size: .75rem;
  font-weight: 800;
  position: relative;
}

.intro-panel cite {
  font-style: normal;
}

.services {
  padding: 95px 0;
}

.services-heading {
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
  display: flex;
}

.services-heading .section-copy {
  margin-bottom: 3px;
}

.service-grid {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

.service {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  min-height: 256px;
  padding: 30px 34px 35px;
  transition: box-shadow .15s;
}

.service:hover {
  box-shadow: inset 0 5px 0 var(--teal);
}

.service-number {
  color: var(--teal-text);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 800;
  display: block;
}

.service h3 {
  margin: 38px 0 10px;
  font-size: 1.43rem;
  font-weight: 800;
  line-height: 1.15;
}

.service p {
  max-width: 450px;
  color: var(--muted-text);
  margin: 0;
  font-size: .96rem;
}

.process {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.process > .wrap {
  padding: 91px 0;
}

.process .eyebrow {
  color: var(--teal-on-navy);
}

.process .section-title {
  color: var(--white);
}

.process .section-copy {
  color: #c4d5df;
}

.process .section-more a {
  color: var(--teal-on-navy);
}

.process .section-more a:hover {
  color: var(--white);
}

.process-grid {
  border-top: 1px solid #ffffff40;
  border-bottom: 1px solid #ffffff40;
  grid-template-columns: repeat(3, 1fr);
  margin: 52px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.process-step {
  padding: 25px 31px 27px 0;
}

.process-step + .process-step {
  border-left: 1px solid var(--rule-on-navy);
  padding-left: 31px;
}

.step-number {
  color: var(--teal-on-navy);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 800;
}

.process h3 {
  color: var(--white);
  margin: 27px 0 9px;
  font-size: 1.28rem;
  line-height: 1.18;
}

.process p {
  color: #bed0db;
  margin: 0;
  font-size: .93rem;
}

.process-grid.steps {
  border-bottom: 0;
}

.steps .process-step {
  border-bottom: 1px solid #ffffff40;
}

.steps .process-step:nth-child(3n+1) {
  border-left: 0;
  padding-left: 0;
}

.reporting {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.reporting-grid {
  grid-template-columns: .85fr 1.15fr;
  align-items: start;
  gap: 70px;
  padding: 93px 0;
  display: grid;
}

.report-spec {
  border-top: 4px solid var(--teal);
  box-shadow: var(--shadow);
}

.report-spec-header {
  background: var(--navy);
  color: var(--white);
  padding: 23px 27px;
}

.report-spec-header span {
  color: #8feae1;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 800;
  display: block;
}

.report-spec-header strong {
  margin-top: 8px;
  font-size: 1.12rem;
  display: block;
}

.report-lines {
  background: var(--white);
  margin: 0;
  padding: 8px 27px 21px;
  list-style: none;
}

.report-line {
  border-bottom: 1px solid var(--line);
  grid-template-columns: 37px 1fr;
  gap: 14px;
  padding: 18px 0;
  display: grid;
}

.report-line:last-child {
  border-bottom: 0;
}

.report-line b {
  color: var(--teal-text);
  font-size: .8rem;
}

.report-line span {
  color: var(--body-text);
  font-size: .92rem;
}

.report-line-fact {
  grid-template-columns: 110px 1fr;
}

.report-line-fact dt {
  color: var(--teal-text);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.9;
}

.report-line-fact dd {
  color: var(--navy);
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
}

.report-copy {
  padding-top: 2px;
}

.check-list {
  gap: 15px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.check-list li {
  color: var(--body-text);
  padding-left: 25px;
  position: relative;
}

.check-list li:before {
  background: var(--teal);
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: .62em;
  left: 0;
}

.onsite-figure {
  margin-top: 34px;
}

.contact {
  background: linear-gradient(135deg, #e4f2f2, #f8fbfb 62%);
  padding: 95px 0;
  position: relative;
  overflow: hidden;
}

.contact:before {
  content: "";
  pointer-events: none;
  border-left: 1px solid #102a4317;
  border-right: 1px solid #102a4317;
  width: 255px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 8%;
  transform: skewX(-17deg);
}

.contact-grid {
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: 68px;
  display: grid;
  position: relative;
}

.contact-card {
  background: var(--navy);
  box-shadow: var(--shadow);
  padding: 34px;
}

.contact-card > p {
  color: #d8e5eb;
  margin: 0 0 24px;
}

.contact-details {
  border-top: 1px solid #ffffff40;
  margin: 30px 0 0;
  display: grid;
}

.contact-details > a, .contact-details > span, .contact-details > div {
  color: var(--white);
  border-bottom: 1px solid #ffffff30;
  padding: 14px 0;
  font-size: .91rem;
  text-decoration: none;
}

.contact-details > span {
  color: #c2d4df;
}

.contact-details a {
  color: var(--white);
  text-decoration: none;
}

.contact-details a:hover {
  color: #86e8df;
  text-decoration: underline;
}

.contact-details dt {
  color: var(--teal-on-navy);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 800;
}

.contact-details dd {
  color: var(--white);
  margin: 3px 0 0;
}

.compare-section {
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 95px 0;
}

.compare {
  border-collapse: collapse;
  border-top: 3px solid var(--navy);
  text-align: left;
  width: 100%;
  font-size: .96rem;
}

.compare th, .compare td {
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  padding: 20px 24px;
}

.compare thead th {
  width: 39%;
  color: var(--navy);
  letter-spacing: -.02em;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.2;
}

.compare thead th .service-number {
  margin-bottom: 12px;
}

.compare thead th + th {
  background: var(--pale-blue);
  box-shadow: inset 0 4px 0 var(--teal);
}

.compare tbody td:last-child {
  background: var(--pale-blue);
}

.compare tbody th {
  width: 22%;
  color: var(--navy);
  padding-left: 0;
  font-size: .9rem;
  font-weight: 700;
}

.compare tbody td {
  color: var(--body-text);
}

.scope-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.scope {
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding: 89px 0;
  display: grid;
}

.scope-col h2 {
  letter-spacing: -.03em;
  margin-bottom: 22px;
  font-size: 1.5rem;
}

.scope-col ul {
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.scope-col li {
  color: var(--body-text);
  padding-left: 25px;
  position: relative;
}

.scope-col li:before {
  background: var(--teal);
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: .62em;
  left: 0;
}

.scope-col-out {
  background: var(--mist);
  border-left: 4px solid #9fb3c8;
  padding: 30px 34px;
}

.scope-col-out li:before {
  background: none;
  border: 2px solid #9fb3c8;
}

.materials-section {
  padding: 95px 0;
}

.materials {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  display: grid;
}

.framed-figure {
  border-top: 4px solid var(--teal);
  background: var(--white);
}

.framed-figure img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.framed-figure figcaption {
  color: var(--muted-text);
  padding: 14px 18px 18px;
  font-size: .85rem;
}

.onsite-figure img {
  aspect-ratio: 16 / 9;
}

.contact-page {
  padding: 72px 0 95px;
}

.contact-page-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr);
  align-items: start;
  gap: 48px;
  display: grid;
}

.form-panel {
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  background: var(--white);
  padding: 36px 38px 40px;
}

.form-panel h2 {
  letter-spacing: -.03em;
  font-size: 1.5rem;
}

.form-panel > .muted {
  margin-bottom: 26px;
}

.contact-form {
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
  display: grid;
}

.contact-form > .cf-turnstile, .contact-form > .btn, .contact-form > p {
  grid-column: 1 / -1;
}

.contact-form > .field:has(textarea) {
  grid-column: 1 / -1;
}

.contact-form > .btn {
  justify-self: start;
  min-height: 48px;
  padding-inline: 26px;
}

.contact-form > p {
  margin: 0;
}

.contact-aside {
  gap: 24px;
  display: grid;
}

.contact-aside .contact-card {
  box-shadow: none;
}

.prose-layout {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 64px;
  padding: 72px 0 95px;
  display: grid;
}

.prose {
  max-width: 68ch;
  color: var(--body-text);
}

.prose h2 {
  letter-spacing: -.02em;
  margin: 44px 0 12px;
  font-size: 1.35rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose ul {
  gap: 10px;
  padding-left: 20px;
  display: grid;
}

.prose li::marker {
  color: var(--teal-deep);
}

.prose strong {
  color: var(--navy);
}

.prose-aside {
  border-top: 4px solid var(--teal);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 26px 28px;
  position: sticky;
  top: 110px;
}

.prose-aside h2 {
  color: var(--teal-text);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: .73rem;
}

.facts {
  margin: 0;
}

.facts > div {
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.facts > div:last-child {
  border-bottom: 0;
}

.facts dt {
  color: var(--muted-text);
  font-size: .78rem;
  font-weight: 600;
}

.facts dd {
  color: var(--navy);
  overflow-wrap: anywhere;
  margin: 2px 0 0;
  font-weight: 600;
}

.site-footer {
  background: var(--navy-deep);
  color: #a9bfcd;
}

.footer-main {
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding: 37px 0;
  display: flex;
}

.footer-brand {
  align-items: center;
  gap: 12px;
  display: inline-flex;
}

.footer-mark {
  background: var(--white);
  object-fit: contain;
  width: 55px;
  height: 55px;
}

.footer-brand span {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
}

.footer-main p {
  text-align: right;
  max-width: 510px;
  margin: 0;
  font-size: .8rem;
}

.footer-links {
  border-top: 1px solid #ffffff1f;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 30px;
  padding: 20px 0 30px;
  font-size: .82rem;
  display: flex;
}

.footer-links nav, .footer-links address {
  flex-wrap: wrap;
  gap: 8px 22px;
  display: flex;
}

.footer-links a {
  color: #dce8ef;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal);
  text-decoration: underline;
}

@media (max-width: 980px) {
  .intro-grid, .reporting-grid, .contact-grid, .scope, .contact-page-grid, .prose-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .prose-aside {
    position: static;
  }

  .materials, .process-grid.steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps .process-step:nth-child(3n+1) {
    border-left: 1px solid var(--rule-on-navy);
    padding-left: 31px;
  }

  .steps .process-step:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 780px) {
  :root {
    --gutter: 18px;
  }

  .hero {
    min-height: 0;
  }

  .hero-photo {
    opacity: .43;
    inset: 0;
  }

  .hero-photo:after {
    background: linear-gradient(90deg, #081f33f2, #102a43bf);
  }

  .hero .wrap {
    padding: 82px 0 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.4rem);
  }

  .hero-strip {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .hero-strip li, .hero-strip li + li {
    border-right: 0;
    border-bottom: 1px solid var(--rule-on-navy);
    min-height: 0;
    padding: 16px 0;
  }

  .hero-strip li:last-child {
    border-bottom: 0;
  }

  .page-hero .wrap {
    padding: 56px 0 48px;
  }

  .intro-grid, .reporting-grid, .scope {
    padding: 66px 0;
  }

  .services, .materials-section, .contact, .compare-section {
    padding: 67px 0;
  }

  .compare thead {
    clip: rect(0, 0, 0, 0);
    width: 1px;
    height: 1px;
    position: absolute;
    overflow: hidden;
  }

  .compare, .compare tbody, .compare tr, .compare th, .compare td {
    width: auto;
    display: block;
  }

  .compare tr {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .compare tbody th, .compare tbody td {
    border: 0;
    width: auto;
    padding: 0;
  }

  .compare tbody th {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .compare tbody td {
    padding: 12px 16px;
  }

  .compare tbody td:before {
    color: var(--teal-text);
    content: attr(data-label);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-size: .72rem;
    font-weight: 800;
    display: block;
  }

  .services-heading {
    margin-bottom: 31px;
    display: block;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service {
    min-height: 0;
    padding: 27px;
  }

  .service h3 {
    margin-top: 26px;
  }

  .process > .wrap {
    padding: 68px 0;
  }

  .process-grid, .process-grid.steps {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .process-step, .process-step + .process-step, .steps .process-step:nth-child(n) {
    border-left: 0;
    padding: 23px 0;
  }

  .process-step + .process-step {
    border-top: 1px solid var(--rule-on-navy);
  }

  .steps .process-step {
    border-bottom: 0;
  }

  .materials {
    grid-template-columns: 1fr;
  }

  .scope-col-out {
    padding: 24px;
  }

  .contact-page {
    padding: 48px 0 67px;
  }

  .form-panel {
    padding: 26px 22px 30px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form > .btn {
    justify-self: stretch;
  }

  .prose-layout {
    padding: 48px 0 67px;
  }

  .footer-main {
    padding: 31px 0;
    display: block;
  }

  .footer-main p {
    text-align: left;
    margin-top: 20px;
  }

  .footer-links {
    display: grid;
  }

  .report-line-fact {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.portal-header {
  z-index: 20;
  background: var(--navy);
  color: var(--white);
  border-bottom: 3px solid var(--teal);
  position: sticky;
  top: 0;
}

.portal-bar {
  max-width: 1240px;
  min-height: 62px;
  padding-inline: var(--gutter);
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
  display: flex;
  position: relative;
}

.portal-brand {
  color: var(--white);
  align-items: center;
  gap: 10px;
  text-decoration: none;
  display: inline-flex;
}

.portal-brand:hover {
  color: var(--white);
}

.portal-mark {
  background: var(--white);
  object-fit: contain;
  width: 34px;
  height: 34px;
  padding: 2px;
}

.portal-brand span {
  letter-spacing: -.02em;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.1;
  display: grid;
}

.portal-brand small {
  color: var(--teal-on-navy);
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .62rem;
  font-weight: 800;
}

.portal-nav {
  align-items: center;
  gap: 4px;
  display: flex;
}

.portal-nav a {
  color: #c4d5df;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
}

.portal-nav a:hover {
  color: var(--white);
  background: #ffffff14;
}

.portal-nav a[aria-current="page"] {
  color: var(--white);
  box-shadow: inset 0 -3px 0 var(--teal);
}

.portal-nav form {
  margin-left: 10px;
}

.portal-nav .btn, .portal-bar > .btn {
  min-height: 38px;
}

.portal-header .menu-button {
  color: var(--white);
  border-color: #ffffff59;
}

@media (max-width: 720px) {
  .portal-header .menu-button {
    display: block;
  }

  .portal-nav {
    padding: 6px var(--gutter) 18px;
    border-bottom: 3px solid var(--teal);
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }

  .portal-nav.open {
    display: flex;
  }

  .portal-nav a {
    border-bottom: 1px solid var(--rule-on-navy);
    min-height: 48px;
    padding: 0;
  }

  .portal-nav a[aria-current="page"] {
    box-shadow: inset 4px 0 0 var(--teal);
    padding-left: 14px;
  }

  .portal-nav form {
    margin: 16px 0 0;
  }

  .portal-nav form .btn {
    width: 100%;
    min-height: 44px;
  }
}

.portal-shell {
  max-width: 1040px;
  padding: 36px var(--gutter) 80px;
  gap: 20px;
  margin-inline: auto;
  display: grid;
}

.portal-shell > * {
  margin-block: 0;
}

.portal-shell h1 {
  margin: 0;
  font-size: 1.9rem;
}

.portal-shell h2 {
  letter-spacing: -.015em;
  margin: 0;
  font-size: 1.15rem;
}

.portal-shell h3 {
  margin: 0;
  font-size: 1.05rem;
}

.portal-page-head {
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding-bottom: 18px;
  display: flex;
}

.portal-page-head p {
  margin: 4px 0 0;
}

.portal-back {
  margin: 0;
}

.portal-back .btn-ghost {
  padding-left: 0;
}

.portal-back .btn-ghost:before {
  content: "‹";
  font-size: 1.2em;
  line-height: 1;
}

.portal-panel {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 24px 26px;
}

.portal-panel > h2:not(:first-child), .portal-panel > .row-between:not(:first-child) {
  border-top: 1px solid var(--line);
  margin-top: 14px;
  padding-top: 22px;
}

.portal-panel > h2:first-child, .portal-panel > .row-between:first-child h2 {
  border-left: 4px solid var(--teal);
  padding-left: 12px;
}

.portal-inspection {
  border-top: 4px solid var(--teal);
}

.portal-inspection > .row-between:first-child h3 {
  font-size: 1.1rem;
}

.portal-panel .row > .field {
  flex: 180px;
}

.portal-panel ul:not([class]) {
  margin: 0;
  padding-left: 20px;
}

.portal-shell--auth {
  background: linear-gradient(180deg, var(--navy) 0 180px, transparent 180px);
  place-items: start center;
  min-height: calc(100vh - 65px);
  padding-top: 72px;
}

.portal-auth-panel {
  border-top: 4px solid var(--teal);
  background: var(--white);
  width: min(420px, 100%);
  box-shadow: var(--shadow);
  gap: 20px;
  padding: 30px 32px 32px;
  display: grid;
}

.portal-auth-panel form .btn-primary {
  width: 100%;
  min-height: 46px;
}

.portal-auth-back {
  margin: 0;
}

.portal-list-toolbar {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.portal-list-search {
  flex: 260px;
}

.portal-list {
  border: 1px solid var(--line);
  background: var(--white);
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-list > li + li {
  border-top: 1px solid var(--line);
}

.portal-list-link, .portal-list-static {
  color: inherit;
  gap: 4px;
  padding: 16px 20px;
  text-decoration: none;
  display: grid;
}

.portal-list-link {
  transition: background-color .12s, box-shadow .12s;
}

.portal-list-link:hover {
  box-shadow: inset 4px 0 0 var(--teal);
  color: inherit;
  background: #fbffff;
}

.portal-list-link:hover .portal-list-ref {
  color: var(--teal-text);
}

.portal-list-row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  display: flex;
}

.portal-list-ref {
  color: var(--navy);
  letter-spacing: -.01em;
  font-weight: 800;
}

.portal-list-empty {
  text-align: center;
  margin: 0;
  padding: 28px 20px;
  font-size: .9375rem;
}

.portal-lock, .portal-draft-banner {
  border: 1px solid var(--warn-line);
  border-left: 4px solid var(--warn-line);
  background: var(--warn-bg);
  gap: 10px;
  padding: 14px 18px;
  display: grid;
}

.portal-lock p, .portal-draft-banner p {
  margin: 0;
}

.portal-lock .btn {
  justify-self: start;
}

.portal-save-status {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.portal-save-status [data-status="saved"]:before {
  background: var(--teal);
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
}

.portal-save-status [data-status="unsaved"]:before, .portal-save-status [data-status="saving"]:before {
  background: var(--warn-line);
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 6px;
  display: inline-block;
}

.portal-check-row {
  cursor: pointer;
  align-items: flex-start;
  gap: 10px;
  min-height: 44px;
  font-size: .9375rem;
  display: flex;
}

.portal-check-row input[type="checkbox"] {
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.portal-upload-queue {
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  font-size: .8125rem;
  list-style: none;
  display: grid;
}

.portal-upload-progress {
  width: min(100%, 16rem);
  height: 8px;
  accent-color: var(--teal);
  margin-top: 4px;
  display: block;
}

.portal-touch-target {
  min-width: 44px;
  min-height: 44px;
}

.media-list {
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.file-chip {
  border: 1px solid var(--line);
  background: var(--mist);
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 8px;
  font-size: .875rem;
  display: flex;
}

.file-chip > span:not(.muted) {
  overflow-wrap: anywhere;
  flex: 160px;
}

.media-thumb {
  object-fit: cover;
  background: var(--line);
  flex: none;
  width: 96px;
  height: 72px;
}

.version-list {
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.version-list > li {
  border: 1px solid var(--line);
  background: var(--mist);
  color: var(--navy);
  padding: 14px 16px;
  font-weight: 700;
}

.send-form {
  margin-top: 10px;
  font-weight: 400;
}

.send-form .input {
  flex: 240px;
  width: auto;
}

.totp-qr {
  border: 1px solid var(--line);
  background: var(--white);
  width: 220px;
  height: 220px;
  padding: 8px;
}

.backup-codes {
  background: var(--mist);
  border: 1px dashed #9fb3c8;
  grid-template-columns: repeat(auto-fill, minmax(9rem, 1fr));
  gap: 6px;
  margin: 0;
  padding: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .8125rem;
  list-style: none;
  display: grid;
}

@media (pointer: coarse) {
  .portal-shell .input, .portal-shell textarea, .portal-shell select {
    min-height: 46px;
    font-size: 16px;
  }

  .portal-shell .btn {
    min-height: 46px;
  }
}

@media (max-width: 720px) {
  .portal-shell {
    padding-top: 24px;
  }

  .portal-panel {
    padding: 18px 16px;
  }

  .portal-shell--auth {
    padding-top: 40px;
  }

  .portal-auth-panel {
    padding: 24px 20px;
  }

  .portal-list-toolbar .seg {
    width: 100%;
  }

  .portal-list-toolbar .seg-opt {
    flex: 1;
    justify-content: center;
  }

  .portal-list-toolbar > .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, :before, :after {
    transition: none !important;
    animation: none !important;
  }
}

/*# sourceMappingURL=src_app_globals_162hn9o.css.map*/