:root {
  color-scheme: light;
  --ink: #101815;
  --muted: #607068;
  --paper: #f5f2ea;
  --white: #ffffff;
  --line: rgba(25, 33, 29, .16);
  --green: #254f44;
  --green-2: #dfe9e4;
  --brass: #a47d3f;
  --plum: #58435b;
  --steel: #4c6071;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-rows: auto 1fr;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 12, 10, .86) 0%, rgba(18, 25, 22, .6) 45%, rgba(18, 25, 22, .18) 100%),
    url("/assets/prive-document-workspace.png") center / cover no-repeat;
}

.nav {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mark {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, .74);
  display: grid;
  place-items: center;
  font-size: 13px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
}

.nav-links a:last-child {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 4px;
}

.hero-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 9vh 0 12vh;
  display: grid;
  align-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: #d9c28f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 720px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 9vw, 124px);
  line-height: .86;
  letter-spacing: 0;
}

.lead {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(18px, 2.3vw, 25px);
  line-height: 1.46;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .46);
  background: rgba(255, 255, 255, .09);
  color: #fff;
  font-weight: 760;
}

.button.primary {
  border-color: #d9c28f;
  background: #d9c28f;
  color: #18211d;
}

.band {
  padding: 72px 0;
}

.band.white {
  background: #fff;
}

.container {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: start;
}

.section-kicker {
  margin: 0 0 13px;
  color: var(--brass);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  max-width: 680px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.body-copy {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.overview-list {
  display: grid;
  gap: 12px;
}

.overview-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.overview-item b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 4px;
  color: #fff;
  background: var(--green);
  font-size: 13px;
}

.overview-item strong {
  display: block;
  margin-bottom: 5px;
}

.overview-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.workflow {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.workflow span {
  color: var(--brass);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.workflow h3 {
  margin: 13px 0 9px;
  font-size: 19px;
}

.workflow p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .split,
  .workflows {
    grid-template-columns: 1fr;
  }

  .closing {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 86vh;
  }

  .nav,
  .hero-inner,
  .container {
    width: min(100% - 24px, 1160px);
  }

  .nav-links a:not(:last-child) {
    display: none;
  }

  .lead {
    font-size: 17px;
  }
}
