:root {
  color-scheme: dark;
  --dusk: #10221d;
  --dusk-soft: #20372f;
  --moss: #253c2f;
  --paper: #f3ead8;
  --paper-soft: rgba(243, 234, 216, 0.76);
  --amber: #f5b547;
  --glow: #d9ea6f;
  --ink: #fff8e8;
  --muted: rgba(255, 248, 232, 0.74);
  --line: rgba(255, 248, 232, 0.18);
  --shadow: rgba(0, 0, 0, 0.38);
  --sans:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  --serif: Georgia, "Times New Roman", ui-serif, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--dusk);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: geometricPrecision;
}

a {
  color: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -3;
  width: 100%;
  height: 100%;
  filter: brightness(1.52) contrast(0.96) saturate(1.08);
  object-fit: cover;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 18, 16, 0.28) 0%, rgba(8, 18, 16, 0.14) 34%, rgba(8, 18, 16, 0.04) 68%, transparent 100%),
    linear-gradient(180deg, transparent 0%, transparent 58%, rgba(8, 18, 16, 0.06) 100%);
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 28px 0;
}

.brand,
.nav-link,
.primary-action {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 22px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow:
    0 0 12px rgba(217, 234, 111, 0.44),
    0 0 24px rgba(19, 111, 146, 0.26);
}

.nav-link {
  color: var(--paper);
  font-size: 14px;
  font-weight: 760;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 10vh 0 12vh;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--paper-soft);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(54px, 7.8vw, 106px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.34);
}

h1 span {
  display: block;
}

.lede {
  max-width: 570px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 560;
  line-height: 1.34;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  width: min(100%, 620px);
  margin-top: 28px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid rgba(245, 181, 71, 0.64);
  border-radius: 999px;
  background: rgba(245, 181, 71, 0.94);
  color: #1c1208;
  font-size: 15px;
  font-weight: 830;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.trust-line {
  width: auto;
  max-width: 320px;
  color: rgba(255, 248, 232, 0.72);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
  overflow-wrap: break-word;
}

.below-hero {
  background:
    linear-gradient(180deg, #f7eedf 0%, #f3e5cd 100%);
  color: #152019;
}

.section-inner {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
  padding: 62px 0 72px;
}

.section-kicker {
  color: #7a5a20;
}

h2 {
  max-width: 760px;
  color: #101a14;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.98;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 42px;
}

.steps article {
  display: grid;
  gap: 13px;
  padding-top: 24px;
  border-top: 1px solid rgba(21, 32, 25, 0.18);
}

.steps span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #17251c;
  color: var(--glow);
  font-size: 13px;
  font-weight: 820;
}

h3 {
  color: #101a14;
  font-size: 22px;
  font-weight: 780;
  letter-spacing: -0.01em;
}

.steps p {
  max-width: 330px;
  color: rgba(21, 32, 25, 0.7);
  font-size: 16px;
  font-weight: 560;
  line-height: 1.48;
}

@media (max-width: 860px) {
  .hero {
    min-height: 92svh;
  }

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

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(8, 18, 16, 0.06) 0%, transparent 36%, rgba(8, 18, 16, 0.18) 100%),
      linear-gradient(90deg, rgba(8, 18, 16, 0.18) 0%, transparent 100%);
  }

  .nav,
  .hero-copy,
  .section-inner {
    width: min(100% - 34px, 1180px);
  }

  .nav {
    padding-top: 20px;
  }

  .hero-copy {
    align-self: end;
    padding: 12vh 0 60px;
  }

  h1 {
    max-width: 560px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 19px;
  }

  .nav-link {
    font-size: 13px;
  }

  .hero-copy {
    padding-bottom: 64px;
  }

  h1 {
    max-width: 350px;
    font-size: clamp(41px, 11.4vw, 48px);
  }

  .lede {
    max-width: 340px;
    font-size: 18px;
  }

  .trust-line {
    max-width: 330px;
  }

  .primary-action {
    width: auto;
  }
}
