:root {
  color-scheme: light;
  --ink: #142126;
  --muted: #526269;
  --line: #d9e1df;
  --paper: #f7f8f5;
  --white: #ffffff;
  --navy: #102b3a;
  --teal: #1c766f;
  --teal-dark: #10524e;
  --gold: #c6914a;
  --sky: #dfeeed;
  --shadow: 0 18px 45px rgba(16, 43, 58, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
}

.site-header.compact,
.legal-page .site-header {
  position: sticky;
  color: var(--ink);
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 750;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 34px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  letter-spacing: 0;
}

.brand-text {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 14px;
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 34, 0.86) 0%, rgba(7, 26, 34, 0.70) 36%, rgba(7, 26, 34, 0.18) 74%),
    linear-gradient(0deg, rgba(7, 26, 34, 0.28), rgba(7, 26, 34, 0.08));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 72px;
  color: var(--white);
}

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

.hero .eyebrow,
.contact .eyebrow {
  color: #8fd5cc;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(28, 118, 111, 0.28);
}

.button.primary:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.intro p,
.contact p,
.proof li,
.step p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.card-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.band {
  background: var(--sky);
}

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

.step {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(20, 33, 38, 0.18);
}

.step span {
  color: var(--teal);
  font-weight: 850;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 84px);
}

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

.principles li {
  padding-left: 24px;
  border-left: 4px solid var(--teal);
}

.contact {
  background: var(--navy);
  color: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
}

.contact p {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer nav {
  display: flex;
  gap: 18px;
}

.legal {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 86px) 0;
}

.legal h1 {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 64px);
}

.legal h2 {
  margin-top: 36px;
  font-size: 24px;
  line-height: 1.2;
}

.legal p {
  color: var(--muted);
  font-size: 18px;
}

.legal a {
  color: var(--teal-dark);
  font-weight: 750;
}

@media (max-width: 980px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .proof-grid,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 16px 20px;
  }

  .site-header.compact,
  .legal-page .site-header {
    position: sticky;
  }

  .nav {
    gap: 12px;
    font-size: 13px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    min-height: 720px;
    align-items: end;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(7, 26, 34, 0.92) 0%, rgba(7, 26, 34, 0.72) 52%, rgba(7, 26, 34, 0.16) 100%),
      linear-gradient(90deg, rgba(7, 26, 34, 0.32), rgba(7, 26, 34, 0.04));
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 112px 0 44px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 20px;
  }

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

  .solution-card {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}
