:root {
  --ink: #132d32;
  --ink-soft: #3f565b;
  --green: #0f6b63;
  --green-dark: #0a4f4a;
  --green-pale: #e9f3f1;
  --coral: #cf5647;
  --coral-pale: #fff0ed;
  --gold: #d8a42d;
  --paper: #ffffff;
  --canvas: #f4f7f6;
  --line: #cad6d4;
  --line-dark: #9fb2af;
  --focus: #146eff;
  --shadow: 0 10px 28px rgba(19, 45, 50, 0.1);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

a {
  color: var(--green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(20, 110, 255, 0.34);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 9px 13px;
  color: #fff;
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: 72px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--green);
  border: 1px solid var(--green-dark);
  border-radius: 6px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1;
  place-items: center;
}

.brand-mark::after {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 13px;
  height: 13px;
  content: "";
  background: var(--coral);
  border: 2px solid #fff;
  border-radius: 2px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-legal {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.desktop-nav a {
  padding: 10px 13px;
  color: var(--ink-soft);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--green-dark);
  background: var(--green-pale);
}

.desktop-nav .nav-contact {
  margin-left: 5px;
  color: #fff;
  background: var(--green);
}

.desktop-nav .nav-contact:hover,
.desktop-nav .nav-contact[aria-current="page"] {
  color: #fff;
  background: var(--green-dark);
}

.icon-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 5px;
  cursor: pointer;
  place-items: center;
}

.icon-button svg {
  width: 22px;
  height: 22px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  width: min(340px, calc(100% - 40px));
  height: 100dvh;
  padding: 22px;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -12px 0 36px rgba(19, 45, 50, 0.16);
  transform: translateX(105%);
  transition: transform 180ms ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu-title {
  font-size: 17px;
  font-weight: 800;
}

.mobile-menu .icon-button {
  display: grid;
}

.mobile-nav {
  display: grid;
  gap: 5px;
  padding-top: 18px;
}

.mobile-nav a {
  padding: 12px 10px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-weight: 750;
  text-decoration: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  visibility: hidden;
  background: rgba(7, 22, 25, 0.58);
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.menu-overlay.open {
  visibility: visible;
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: #152e32;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(8, 27, 30, 0.72);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 520px;
  align-items: center;
  padding-block: 64px;
}

.hero-copy {
  width: min(720px, 100%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: #b8e2db;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 66px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-kicker {
  margin: 18px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-description {
  max-width: 650px;
  margin: 14px 0 0;
  color: #d8e5e4;
  font-size: 18px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  color: #fff;
  background: var(--coral);
  border: 1px solid var(--coral);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
}

.button:hover {
  color: #fff;
  background: #b9473a;
  border-color: #b9473a;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button.green {
  background: var(--green);
  border-color: var(--green);
}

.button.green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button svg {
  width: 17px;
  height: 17px;
}

.capability-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.capability {
  display: flex;
  min-height: 116px;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.capability:first-child {
  border-left: 1px solid var(--line);
}

.capability svg {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--coral);
}

.capability strong {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
}

.capability span {
  display: block;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  padding-block: 78px;
}

.section.white {
  background: #fff;
}

.section.compact {
  padding-block: 56px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head > div {
  max-width: 760px;
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-kicker svg {
  width: 17px;
  height: 17px;
}

h2,
h3 {
  letter-spacing: 0;
}

.section h2,
.content-body h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.16;
}

.section-lead {
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 72px;
  align-items: start;
}

.intro-copy p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 17px;
}

.year-panel {
  padding: 27px;
  background: var(--ink);
  border-left: 5px solid var(--gold);
  border-radius: 6px;
  color: #fff;
}

.year-panel .year {
  display: block;
  color: #f1c963;
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
}

.year-panel h3 {
  margin: 14px 0 8px;
  font-size: 23px;
}

.year-panel p {
  margin: 0;
  color: #cfdddd;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.service-card {
  position: relative;
  min-height: 260px;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 150ms ease, box-shadow 150ms ease, transform 150ms ease;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-icon {
  display: grid;
  width: 43px;
  height: 43px;
  color: var(--green);
  background: var(--green-pale);
  border: 1px solid #bed9d4;
  border-radius: 5px;
  place-items: center;
}

.service-icon.coral {
  color: var(--coral);
  background: var(--coral-pale);
  border-color: #edc1bb;
}

.service-icon.gold {
  color: #8c650c;
  background: #fff7dd;
  border-color: #ead591;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  margin: 17px 0 7px;
  font-size: 20px;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.text-link svg {
  width: 16px;
  height: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}

.process-step {
  position: relative;
  padding: 26px 24px 25px 0;
  border-top: 2px solid var(--line-dark);
  counter-increment: steps;
}

.process-step:not(:last-child) {
  margin-right: 26px;
}

.process-step::before {
  display: grid;
  width: 34px;
  height: 34px;
  margin-top: -44px;
  margin-bottom: 18px;
  color: #fff;
  content: counter(steps, decimal-leading-zero);
  background: var(--green);
  border: 4px solid #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
  place-items: center;
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  background: var(--ink);
  color: #fff;
}

.split-image {
  min-height: 470px;
  object-fit: cover;
}

.split-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px;
}

.split-copy h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.15;
}

.split-copy > p {
  color: #d3e0df;
}

.plain-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plain-list svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  margin-top: 3px;
  color: #f1c963;
}

.platform-note {
  margin-top: 26px;
  padding: 15px 17px;
  color: #d3e0df;
  border: 1px solid #476165;
  border-radius: 5px;
  font-size: 13px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 35px 38px;
  color: #fff;
  background: var(--green);
  border-left: 6px solid var(--gold);
}

.cta-band h2 {
  margin: 0;
  font-size: 30px;
}

.cta-band p {
  margin: 5px 0 0;
  color: #d7ece9;
}

.cta-band .button {
  flex: 0 0 auto;
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.page-hero {
  padding-block: 58px 54px;
  background: #edf3f2;
  border-bottom: 1px solid var(--line);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--line-dark);
}

.page-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: 50px;
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.page-hero .legal-name {
  display: block;
  margin-top: 12px;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 64px;
  align-items: start;
}

.content-body {
  min-width: 0;
  padding: 58px 0 78px;
}

.content-body h2 {
  margin-top: 48px;
  padding-top: 3px;
}

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

.content-body h3 {
  margin: 30px 0 8px;
  font-size: 21px;
}

.content-body p,
.content-body li {
  color: var(--ink-soft);
}

.content-body p {
  margin: 12px 0 0;
}

.content-body ul,
.content-body ol {
  margin: 14px 0 0;
  padding-left: 22px;
}

.content-body li + li {
  margin-top: 8px;
}

.content-body .lead {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.sidebar {
  position: sticky;
  top: 96px;
  margin-top: 58px;
}

.sidebar-box {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.sidebar-box + .sidebar-box {
  margin-top: 14px;
}

.sidebar-box h2,
.sidebar-box h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.sidebar-box p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.sidebar-nav {
  display: grid;
  gap: 4px;
}

.sidebar-nav a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

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

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.detail-item {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.detail-item h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 8px;
  font-size: 18px;
}

.detail-item h3 svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
}

.detail-item p {
  margin: 0;
  font-size: 14px;
}

.notice {
  margin-top: 28px;
  padding: 18px 20px;
  color: var(--ink-soft);
  background: #fff8e5;
  border: 1px solid #e8d49c;
  border-left: 5px solid var(--gold);
  border-radius: 5px;
  font-size: 14px;
}

.contact-panel {
  margin-top: 28px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 6px;
}

.contact-panel strong {
  display: block;
  margin-bottom: 4px;
  font-size: 20px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: 17px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-email svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.site-footer {
  color: #d5e0df;
  background: #10282d;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(2, minmax(150px, 0.7fr));
  gap: 50px;
  padding-block: 54px 44px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand-legal {
  color: #adc1bf;
}

.footer-brand p {
  max-width: 480px;
  margin: 17px 0 0;
  color: #adc1bf;
  font-size: 14px;
}

.footer-column h2 {
  margin: 0 0 13px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #c9d8d6;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid #355055;
  font-size: 12px;
}

.footer-bottom a {
  color: #c9d8d6;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .header-menu-button {
    display: grid;
  }

  .hero h1 {
    font-size: 58px;
  }

  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capability:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .capability:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 52px;
  }

  .split-copy {
    padding: 42px;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sidebar {
    position: static;
    margin: 0 0 60px;
  }
}

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

  .site-header {
    height: 64px;
  }

  .brand-mark {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-legal {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 510px;
  }

  .hero-inner {
    align-items: end;
    padding-block: 52px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.03;
  }

  .hero-kicker {
    font-size: 19px;
  }

  .hero-description {
    font-size: 16px;
  }

  .button-row {
    margin-top: 23px;
  }

  .button {
    min-height: 44px;
  }

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

  .capability,
  .capability:first-child,
  .capability:nth-child(3) {
    min-height: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section {
    padding-block: 56px;
  }

  .section-head {
    display: block;
    margin-bottom: 26px;
  }

  .section h2,
  .content-body h2 {
    font-size: 31px;
  }

  .intro-grid,
  .service-grid,
  .split-feature,
  .detail-list {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 28px;
  }

  .service-card {
    min-height: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 12px;
  }

  .process-step:not(:last-child) {
    margin-right: 0;
  }

  .split-image {
    width: 100%;
    min-height: 280px;
    max-height: 360px;
  }

  .split-copy {
    padding: 34px 24px;
  }

  .split-copy h2 {
    font-size: 31px;
  }

  .cta-band {
    display: block;
    padding: 28px 24px;
  }

  .cta-band h2 {
    font-size: 26px;
  }

  .cta-band .button {
    width: 100%;
    margin-top: 20px;
  }

  .page-hero {
    padding-block: 38px 40px;
  }

  .breadcrumb {
    margin-bottom: 22px;
  }

  .page-hero h1 {
    font-size: 39px;
  }

  .page-hero p {
    font-size: 16px;
  }

  .content-body {
    padding-block: 44px 54px;
  }

  .content-body .lead {
    font-size: 18px;
  }

  .contact-panel {
    padding: 22px 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 44px 36px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
  }

  .footer-bottom a {
    display: inline-block;
    margin-top: 6px;
  }
}

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

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