@font-face {
  font-family: "Outfit";
  src: url("/assets/outfit.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/space-grotesk.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --navy: #101b41;
  --navy-soft: #253256;
  --green: #cfe2d8;
  --green-strong: #8fb7a8;
  --cream: #fbf7f0;
  --white: #ffffff;
  --yellow: #f8b93f;
  --yellow-dark: #e5a429;
  --line: rgba(16, 27, 65, 0.14);
  --muted: #5e6680;
  --radius-sm: 14px;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(24, 36, 72, 0.11);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--navy);
  background: var(--cream);
  font-family: "Outfit", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.67;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(251, 247, 240, 0.94);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 32px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 104px; height: auto; }

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
}

.site-nav > a,
.nav-dropdown > summary {
  text-decoration: none;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a[aria-current="page"],
.nav-dropdown > summary:hover { color: #547d70; }

.nav-dropdown { position: relative; }
.nav-dropdown > summary { list-style: none; }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary::after { content: "⌄"; margin-left: 7px; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: -18px;
  width: 220px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.dropdown-panel a {
  display: block;
  padding: 9px 10px;
  text-decoration: none;
  border-radius: 8px;
}
.dropdown-panel a:hover { background: var(--cream); }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--navy);
  border-radius: 12px;
  cursor: pointer;
}
.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  gap: 9px;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  border-radius: 8px;
  font-family: "sculpin", "Space Grotesk", "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { background: var(--yellow-dark); border-color: var(--yellow-dark); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(16,27,65,.13); }
.button-outline { background: transparent; border-color: var(--navy); }
.button-outline:hover { color: var(--white); background: var(--navy); border-color: var(--navy); }
.button-light { color: var(--white); border-color: var(--white); background: transparent; }
.button-light:hover { color: var(--navy); background: var(--white); }
.button-arrow::after { content: "→"; }

.eyebrow {
  margin: 0 0 12px;
  color: #50796c;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: "sculpin", "Space Grotesk", "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.035em;
}
h1 { margin-bottom: 24px; font-size: clamp(50px, 4.7vw, 64px); line-height: 1; }
h2 { margin-bottom: 22px; font-size: clamp(32px, 3.1vw, 44px); }
h3 { margin-bottom: 12px; font-size: 24px; }
.lead { max-width: 680px; font-size: clamp(18px, 1.65vw, 20px); line-height: 1.6; }
.copy { max-width: 700px; }
.copy > :last-child { margin-bottom: 0; }
.muted { color: var(--muted); }

.hero {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(90deg, var(--green) 0 56%, var(--cream) 56%);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr);
  align-items: center;
  gap: 44px;
  padding-block: 70px 82px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy p:not(.eyebrow) { max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-art { position: relative; align-self: end; }
.hero-art img { width: 120%; max-width: none; margin-left: -8%; filter: drop-shadow(0 28px 36px rgba(24, 36, 72, .1)); }
.float-label {
  position: absolute;
  padding: 10px 18px;
  background: var(--white);
  border-radius: 7px;
  box-shadow: var(--shadow);
  font-size: 15px;
  font-weight: 600;
}
.float-label.one { left: 0; top: 38%; }
.float-label.two { right: 0; top: 59%; }

.page-hero { padding: 78px 0 92px; background: var(--green); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.page-hero h1 { font-size: clamp(46px, 4.8vw, 66px); }
.page-hero img { max-height: 500px; margin-inline: auto; object-fit: contain; }

.section { padding: 96px 0; }
.section-sm { padding: 70px 0; }
.section-white { background: var(--white); }
.section-green { background: var(--green); }
.section-navy { color: var(--white); background: var(--navy); }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading.center { margin-inline: auto; text-align: center; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 230px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}
.feature-card:hover { transform: translateY(-7px); border-color: rgba(16,27,65,.06); box-shadow: var(--shadow); }
.feature-card img { width: 82px; height: 82px; margin-bottom: 28px; object-fit: contain; }
.feature-card h3 { font-size: 21px; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 76px;
}
.split + .split { margin-top: 100px; }
.split.reverse .split-media { order: 2; }
.split-media {
  overflow: hidden;
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.split-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.split:hover .split-media img { transform: scale(1.025); }
.split-copy ul, .check-list { padding: 0; list-style: none; }
.split-copy li, .check-list li { position: relative; padding-left: 30px; margin: 10px 0; }
.split-copy li::before, .check-list li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #4e8774;
  font-weight: 800;
}

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; background: rgba(255,255,255,.16); border-radius: var(--radius); }
.stat { padding: 48px 28px; background: var(--navy); text-align: center; }
.stat strong { display: block; margin-bottom: 3px; color: var(--yellow); font-size: clamp(38px, 5vw, 62px); line-height: 1; }

.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { padding: 10px 18px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-weight: 600; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(24,36,72,.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .number { color: var(--green-strong); font-size: 46px; font-weight: 750; line-height: 1; }
.card p:last-child { margin-bottom: 0; }

.module-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.module-card { padding: 30px; background: var(--cream); border-radius: var(--radius-sm); }
.module-card::before { display: block; width: 34px; height: 4px; margin-bottom: 24px; content: ""; background: var(--yellow); border-radius: 999px; }
.module-card p { margin-bottom: 0; color: var(--muted); font-size: 16px; }

.quote {
  position: relative;
  padding: 58px;
  background: var(--green);
  border-radius: var(--radius);
}
.quote blockquote { max-width: 900px; margin: 0 0 24px; font-size: clamp(28px, 4vw, 46px); font-weight: 650; line-height: 1.25; letter-spacing: -.03em; }
.quote cite { font-style: normal; font-weight: 650; }
.quote cite span { display: block; color: var(--muted); font-weight: 400; }

.steps { counter-reset: steps; }
.step { display: grid; grid-template-columns: 90px 1fr; padding: 38px 0; border-top: 1px solid var(--line); }
.step::before { counter-increment: steps; content: "0" counter(steps); color: #71988b; font-size: 30px; font-weight: 700; }
.step h3 { margin-top: 5px; }

.benefit-strip {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
}
.benefit-strip .feature-card {
  display: flex;
  min-height: 0;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(24,36,72,.08);
}
.benefit-strip .feature-card img { width: 46px; height: 46px; margin: 0; }
.benefit-strip .feature-card h3 { margin: 0; font-size: 17px; }

.inline-cta {
  max-width: 900px;
  margin: 0 auto;
  padding: 52px;
  background: var(--white);
  border-radius: 4px;
  box-shadow: var(--shadow);
  text-align: center;
}
.inline-cta h2 { font-size: clamp(28px, 3vw, 38px); }

.client-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.client-strip span {
  display: grid;
  min-height: 118px;
  place-items: center;
  padding: 20px;
  font-family: "sculpin", "Space Grotesk", "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.client-strip span + span { border-left: 1px solid var(--line); }

.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { padding: 32px; background: var(--white); border-radius: var(--radius-sm); box-shadow: 0 12px 40px rgba(24,36,72,.06); }
.review-card::before { content: "“"; display: block; height: 42px; color: var(--green-strong); font-family: Georgia, serif; font-size: 64px; line-height: 1; }
.review-card h3 { font-size: 22px; }

.phase-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 58px 0 6px;
  color: #50796c;
  font-family: "sculpin", "Space Grotesk", "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.phase-heading::after { flex: 1; height: 1px; content: ""; background: var(--line); }

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready [data-reveal="left"] { transform: translate3d(-46px, 0, 0); }
.motion-ready [data-reveal="right"] { transform: translate3d(46px, 0, 0); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-art-in {
  from { opacity: 0; transform: translateX(48px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-copy { animation: hero-copy-in .8s .08s both cubic-bezier(.2,.7,.2,1); }
.hero-art { animation: hero-art-in .9s .28s both cubic-bezier(.2,.7,.2,1); }
.page-hero-grid > :first-child { animation: hero-copy-in .75s .05s both cubic-bezier(.2,.7,.2,1); }
.page-hero-grid > img { animation: hero-art-in .85s .2s both cubic-bezier(.2,.7,.2,1); }

.contact-card {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 50px;
  align-items: center;
  padding: 58px;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
}
.contact-card h2 { margin-bottom: 16px; }
.contact-card .button { justify-self: end; }

.details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.detail-card { padding: 34px; background: var(--white); border-radius: var(--radius-sm); }
.detail-card a { color: #376d5d; font-size: 22px; font-weight: 650; }

.privacy { max-width: 820px; }
.privacy h2 { margin-top: 56px; font-size: 32px; }
.privacy h3 { margin-top: 36px; font-size: 23px; }

.site-footer { padding: 76px 0 28px; color: var(--white); background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 60px; }
.footer-logo { width: 104px; margin-bottom: 25px; filter: brightness(0) invert(1); }
.footer-title { margin-bottom: 14px; font-size: 17px; font-weight: 700; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 60px; padding-top: 24px; color: rgba(255,255,255,.62); border-top: 1px solid rgba(255,255,255,.15); font-size: 14px; }

.not-found { min-height: 68vh; display: grid; place-items: center; text-align: center; }

@media (max-width: 980px) {
  .menu-button { display: block; margin-left: auto; }
  .site-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    align-items: stretch;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav[data-open] { display: grid; }
  .site-nav .button { width: 100%; }
  .nav-dropdown > summary { padding-bottom: 6px; }
  .dropdown-panel { position: static; width: auto; margin-top: 8px; padding: 6px 0 0 12px; border: 0; box-shadow: none; }
  .hero { min-height: 0; background: var(--green); }
  .hero-inner, .page-hero-grid { grid-template-columns: 1fr; }
  .hero-inner { padding-block: 70px 40px; }
  .hero-art { width: min(760px, 100%); margin: 0 auto; }
  .hero-art img { width: 110%; }
  .page-hero { padding-block: 70px; }
  .page-hero img { max-height: 420px; }
  .feature-grid, .benefit-strip { grid-template-columns: repeat(2, 1fr); }
  .cards, .module-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 42px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card .button { justify-self: start; }
}

@media (max-width: 700px) {
  :root { --container: min(100% - 28px, 1180px); }
  body { font-size: 16px; }
  .header-inner { min-height: 76px; }
  .brand img { width: 86px; }
  h1 { font-size: clamp(43px, 13vw, 58px); }
  h2 { font-size: clamp(34px, 10vw, 46px); }
  .hero-inner { gap: 20px; }
  .float-label { display: none; }
  .section { padding-block: 76px; }
  .section-sm { padding-block: 52px; }
  .split, .details-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split + .split { margin-top: 70px; }
  .feature-grid, .cards, .module-grid, .stats, .review-grid, .client-strip { grid-template-columns: 1fr; }
  .client-strip span + span { border-top: 1px solid var(--line); border-left: 0; }
  .inline-cta { padding: 38px 24px; }
  .feature-card { min-height: 0; }
  .quote, .contact-card { padding: 36px 26px; }
  .step { grid-template-columns: 64px 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; animation-delay: 0ms !important; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
}
