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

:root {
  color-scheme: light;
  --bg: #fbfcfb;
  --ink: #111512;
  --muted: #5d675f;
  --soft: #eef3ef;
  --line: #dce5df;
  --green: #063f2c;
  --green-2: #0a5a3d;
  --green-soft: #eaf3ed;
  --panel: #ffffff;
  --shadow: 0 20px 60px rgba(13, 31, 22, .08);
  --serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 10%, rgba(6, 63, 44, .06), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 55%, #f5f8f6 100%);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
  padding: 18px clamp(22px, 5vw, 72px);
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(220, 229, 223, .82);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 240px;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: .95;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.brand span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 42px);
  color: #202821;
  font-size: 14px;
  font-weight: 500;
}

.nav a {
  opacity: .82;
}

.nav a:hover {
  opacity: 1;
  color: var(--green);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid var(--green);
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: .01em;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  background: var(--green-2);
  border-color: var(--green-2);
  transform: translateY(-1px);
}

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

.button.secondary:hover {
  background: var(--green-soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
  padding: clamp(58px, 8vw, 112px) clamp(22px, 5vw, 72px) clamp(48px, 7vw, 96px);
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(50px, 6.4vw, 92px);
  font-weight: 500;
  line-height: .96;
  letter-spacing: 0;
}

.lead {
  max-width: 590px;
  margin-top: 24px;
  color: #38433b;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.62;
}

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

.assurance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 56px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.assurance div {
  min-height: 92px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, .86);
}

.assurance strong {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.assurance span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.data-visual {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(6, 63, 44, .07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 63, 44, .07) 1px, transparent 1px),
    #ffffff;
  background-size: 64px 64px;
  box-shadow: var(--shadow);
}

.data-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 22%, rgba(6, 63, 44, .08), transparent 18rem),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, .84) 100%);
  pointer-events: none;
}

.table-window {
  position: absolute;
  top: 58px;
  left: 52px;
  right: 52px;
  border: 1px solid #cddbd2;
  background: rgba(255, 255, 255, .94);
}

.table-row {
  display: grid;
  grid-template-columns: .8fr 1.2fr 1.4fr .9fr;
  min-height: 48px;
  border-bottom: 1px solid #e4ece6;
  color: #435047;
  font-size: 12px;
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row.header {
  min-height: 40px;
  color: #6b746d;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.table-row span {
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid #e4ece6;
}

.table-row span:last-child {
  border-right: 0;
}

.document-stack {
  position: absolute;
  right: 42px;
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, 112px);
  gap: 12px;
  align-items: end;
}

.doc {
  min-height: 140px;
  padding: 20px 16px;
  border: 1px solid #cddbd2;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 18px 38px rgba(13, 31, 22, .08);
}

.doc:nth-child(2) {
  min-height: 180px;
}

.doc:nth-child(3) {
  min-height: 122px;
}

.doc i,
.doc b {
  display: block;
  height: 1px;
  margin-bottom: 14px;
  background: #9db6a7;
}

.doc b {
  width: 44%;
  height: 22px;
  border: 1px solid var(--green);
  background: transparent;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(22px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: end;
  margin-bottom: 46px;
}

h2 {
  font-family: var(--serif);
  color: var(--green);
  font-size: clamp(34px, 4.1vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.section-head p {
  max-width: 690px;
  color: #405047;
  font-size: 17px;
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability {
  min-height: 260px;
  padding: 32px clamp(22px, 3vw, 38px);
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, .66);
}

.capability:last-child {
  border-right: 0;
}

.icon {
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: var(--green);
}

h3 {
  color: #18201a;
  font-size: 20px;
  font-weight: 680;
  line-height: 1.25;
}

.capability p,
.workflow p,
.policy-card p,
.legal-page p,
.legal-page li {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: var(--panel);
}

.step {
  position: relative;
  min-height: 184px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.step:last-child {
  border-right: 0;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--green);
  border-right: 1px solid var(--green);
  transform: rotate(45deg);
  background: #fff;
}

.step-number {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .08em;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.policy-card {
  min-height: 210px;
  padding: 30px 26px;
  background: #fff;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .55fr);
  gap: clamp(32px, 5vw, 74px);
  padding: clamp(58px, 7vw, 96px) clamp(22px, 5vw, 72px);
  background: var(--green);
  color: #fff;
}

.contact h2 {
  color: #fff;
}

.contact p {
  max-width: 680px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.72;
}

.contact-list {
  display: grid;
  gap: 18px;
  align-content: start;
  padding-top: 8px;
}

.contact-row {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.contact-row strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .64);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-row span,
.contact-row a {
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(22px, 5vw, 72px);
  background: #052e21;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.legal-hero {
  max-width: 980px;
  padding: clamp(56px, 8vw, 104px) clamp(22px, 5vw, 72px) 36px;
}

.legal-hero h1 {
  font-size: clamp(44px, 5.2vw, 76px);
}

.legal-hero p {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-page {
  max-width: 980px;
  padding: 0 clamp(22px, 5vw, 72px) 88px;
}

.legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  font-size: 28px;
}

.legal-page ul {
  margin: 14px 0 0 20px;
  padding: 0;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .data-visual {
    min-height: 420px;
  }

  .workflow,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step:nth-child(2n),
  .policy-card:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .section,
  .contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .assurance,
  .capability-grid,
  .workflow,
  .policy-grid,
  .contact,
  .section-head {
    grid-template-columns: 1fr;
  }

  .capability,
  .step,
  .policy-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .capability:last-child,
  .step:last-child,
  .policy-card:last-child {
    border-bottom: 0;
  }

  .step::after {
    display: none;
  }

  .data-visual {
    min-height: 370px;
  }

  .table-window {
    left: 18px;
    right: 18px;
    top: 28px;
  }

  .table-row {
    grid-template-columns: .8fr 1fr;
  }

  .table-row span:nth-child(n+3) {
    display: none;
  }

  .document-stack {
    right: 18px;
    bottom: 20px;
    grid-template-columns: repeat(2, 100px);
  }

  .document-stack .doc:nth-child(3) {
    display: none;
  }

  .footer {
    flex-direction: column;
  }
}
