:root {
  --navy: #0c2238;
  --ink: #17212b;
  --ivory: #f7f5ef;
  --white: #ffffff;
  --slate: #66717d;
  --line: #d9dee2;
  --mist: #eaf0f3;
  --steel: #5e7d8e;
  --steel-dark: #345566;
  --radius: 10px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Inter, Geist, "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--steel);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(12, 34, 56, 0.12);
  background: rgba(247, 245, 239, 0.94);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  font-size: 14.5px;
  font-weight: 660;
  letter-spacing: -0.01em;
}

.logo-mark {
  display: inline-grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 9px;
  background: var(--navy);
}

.logo-mark--compact {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.logo-mark svg {
  width: 72%;
  height: 72%;
  fill: none;
  stroke: var(--ivory);
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2.4;
}

.logo-mark__detail {
  stroke: var(--steel);
  stroke-width: 2;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #46525f;
  font-size: 13.5px;
  font-weight: 560;
}

.desktop-nav a,
.email-link {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.email-link:hover {
  color: var(--steel-dark);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 13.5px;
  font-weight: 650;
  padding: 9px 0;
}

.nav-toggle__icon {
  display: grid;
  width: 20px;
  gap: 4px;
}

.nav-toggle__icon span {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:first-child {
  transform: translateY(2.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:last-child {
  transform: translateY(-2.5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--steel), transparent);
  content: "";
  opacity: 0.25;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  min-height: 690px;
  align-items: center;
  padding-block: 86px 100px;
}

.hero__copy {
  grid-column: 1 / span 10;
}

.eyebrow,
.section-label,
.final-cta__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--steel-dark);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.eyebrow > span,
.section-label::before,
.final-cta__label::before {
  display: block;
  width: 22px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--steel);
  content: "";
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.1rem, 5.25vw, 4.65rem);
  font-weight: 570;
  letter-spacing: -0.052em;
  line-height: 1.01;
}

.hero__support {
  display: grid;
  max-width: 900px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 34px;
}

.hero__support p {
  margin: 0;
  color: #45515d;
  font-size: 17px;
  line-height: 1.72;
}

.hero__actions {
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 650;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
  transition: transform 180ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.button--primary {
  background: var(--navy);
  color: var(--white);
  padding: 0 22px;
}

.button--primary:hover {
  background: var(--steel-dark);
}

.hero__reassurance {
  max-width: 850px;
  margin: 18px 0 0;
  color: var(--steel-dark);
  font-size: 13.5px;
  line-height: 1.65;
}

.section {
  padding-block: 112px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.section-heading {
  grid-column: 1 / span 5;
  padding-right: 34px;
}

.section-heading h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 560;
  letter-spacing: -0.048em;
  line-height: 1.04;
}

.section-copy {
  grid-column: 7 / -1;
  max-width: 690px;
}

.section-copy p,
.about-copy p {
  margin: 0;
  color: #45515d;
  font-size: 17px;
  line-height: 1.78;
}

.section-copy p + p,
.about-copy p + p {
  margin-top: 22px;
}

.valid-answer {
  margin-top: 34px;
  border-left: 3px solid var(--steel);
  background: var(--white);
  padding: 22px 24px;
}

.valid-answer span {
  display: block;
  margin-bottom: 7px;
  color: var(--steel-dark);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.valid-answer strong {
  color: var(--navy);
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
}

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

.expect-section .section-label {
  color: #bed0da;
}

.expect-section .section-label::before {
  background: #8cabbc;
}

.expect-heading {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
}

.expect-heading > div {
  grid-column: 1 / span 6;
}

.expect-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 4vw, 4rem);
  font-weight: 550;
  letter-spacing: -0.046em;
  line-height: 1.04;
}

.expect-intro {
  grid-column: 8 / -1;
  margin: 0;
  color: #d8e2e7;
  font-size: 17px;
  line-height: 1.72;
}

.expect-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 58px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.expect-list li {
  display: grid;
  min-height: 220px;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 32px 34px;
}

.expect-list li > span {
  color: #a9c0cc;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.expect-list h3 {
  margin: -2px 0 10px;
  color: var(--white);
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.expect-list p {
  margin: 0;
  color: #d5e0e6;
  font-size: 15.5px;
  line-height: 1.72;
}

.about-section {
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.about-section .section-heading {
  grid-column: 1 / span 4;
}

.about-copy {
  grid-column: 6 / -1;
  max-width: 760px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  padding-block: 112px;
}

.final-cta::after {
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(94, 125, 142, 0.2);
  border-radius: 50%;
  content: "";
}

.final-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.final-cta__heading {
  grid-column: 1 / span 6;
}

.final-cta__copy {
  grid-column: 8 / -1;
  align-self: end;
}

.final-cta__copy > p {
  margin: 0;
  color: #45515d;
  font-size: 17px;
  line-height: 1.72;
}

.final-cta__actions {
  margin-top: 30px;
}

.contact-line {
  margin-top: 18px !important;
  color: var(--steel-dark) !important;
  font-size: 14px !important;
}

.email-link {
  border-bottom: 1px solid var(--steel);
  color: var(--navy);
  font-weight: 620;
}

.site-footer {
  background: var(--navy);
  color: #d9e2e7;
  padding-block: 64px 34px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  padding-bottom: 44px;
}

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

.footer-identity > p {
  max-width: 480px;
  margin: 22px 0 0;
  color: #b8c7cf;
  font-size: 14px;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.footer-nav > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav span,
.footer-disclosure > span {
  margin-bottom: 14px;
  color: #8ca7b5;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-nav a {
  margin-top: 8px;
  color: #e1e8eb;
  font-size: 13.5px;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-disclosure {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-block: 30px;
}

.footer-disclosure > span {
  margin: 2px 0 0;
}

.footer-disclosure p {
  max-width: 920px;
  margin: 0;
  color: #9fb2bc;
  font-size: 12px;
  line-height: 1.75;
}

.footer-base {
  padding-top: 26px;
}

.footer-base p {
  margin: 0;
  color: #8098a5;
  font-size: 11px;
  letter-spacing: 0.03em;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero__copy {
    grid-column: 1 / -1;
  }

  .hero h1 {
    max-width: 900px;
  }

  .section-heading,
  .about-section .section-heading {
    grid-column: 1 / span 5;
  }

  .section-copy,
  .about-copy {
    grid-column: 6 / -1;
  }

  .expect-heading > div {
    grid-column: 1 / span 6;
  }

  .expect-intro {
    grid-column: 7 / -1;
  }

  .expect-list li {
    min-height: 224px;
    padding: 28px;
  }

  .final-cta__heading {
    grid-column: 1 / span 6;
  }

  .final-cta__copy {
    grid-column: 7 / -1;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .nav-shell {
    min-height: 68px;
    flex-wrap: wrap;
    gap: 0;
  }

  .brand {
    max-width: calc(100% - 84px);
    font-size: 12.5px;
  }

  .desktop-nav {
    order: 3;
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    padding-block: 8px 14px;
  }

  .desktop-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(12, 34, 56, 0.08);
  }

  .desktop-nav a:last-child {
    border-bottom: 0;
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .js .desktop-nav {
    display: none;
  }

  .js .desktop-nav.is-open {
    display: flex;
  }

  .hero__grid {
    display: block;
    min-height: 0;
    padding-block: 72px 78px;
  }

  .eyebrow,
  .section-label,
  .final-cta__label {
    margin-bottom: 20px;
    font-size: 10.5px;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.3rem);
    line-height: 1.01;
  }

  .hero__support {
    display: block;
    margin-top: 28px;
  }

  .hero__support p {
    font-size: 16px;
  }

  .hero__support p + p {
    margin-top: 18px;
  }

  .hero__actions {
    margin-top: 30px;
  }

  .button--primary {
    width: 100%;
    justify-content: space-between;
  }

  .hero__reassurance {
    font-size: 13px;
  }

  .section,
  .final-cta {
    padding-block: 78px;
  }

  .section-grid,
  .expect-heading,
  .final-cta__grid {
    display: block;
  }

  .section-heading {
    padding-right: 0;
  }

  .section-heading h2,
  .expect-heading h2,
  .final-cta h2 {
    font-size: 2.65rem;
  }

  .section-copy,
  .about-copy,
  .expect-intro,
  .final-cta__copy {
    margin-top: 32px;
  }

  .section-copy p,
  .about-copy p,
  .expect-intro,
  .final-cta__copy > p {
    font-size: 16px;
    line-height: 1.72;
  }

  .valid-answer {
    margin-top: 28px;
    padding: 20px;
  }

  .valid-answer strong {
    font-size: 19px;
  }

  .expect-list {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .expect-list li {
    min-height: 0;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 26px 22px;
  }

  .final-cta__copy {
    margin-top: 36px;
  }

  .site-footer {
    padding-block: 48px 32px;
  }

  .footer-main,
  .footer-disclosure {
    display: block;
  }

  .footer-main {
    padding-bottom: 34px;
  }

  .footer-nav {
    gap: 28px;
    margin-top: 36px;
  }

  .footer-disclosure {
    padding-block: 26px;
  }

  .footer-disclosure > span {
    display: block;
    margin-bottom: 12px;
  }

  .footer-base {
    padding-top: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 9px;
  object-fit: cover;
}

.brand-logo--compact {
  width: 34px;
  height: 34px;
  border-radius: 7px;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
