:root {
  --ink: #13231b;
  --muted: #516056;
  --paper: #f7f3ea;
  --panel: #fffdf7;
  --line: #d8d0bf;
  --forest: #16453d;
  --sea: #0f6964;
  --clay: #bd6248;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 52px);
  color: #fff;
  background: rgba(12, 24, 18, 0.62);
  backdrop-filter: blur(12px);
}

.plain-page .site-header {
  position: sticky;
  color: var(--ink);
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 6vw, 72px) 72px;
  color: #fff;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=82") center / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 19, 15, 0.58);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

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

.hero .eyebrow {
  color: #ffb69f;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

h3 {
  margin: 0 0 8px;
  font-size: 19px;
}

p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: #fffdf7;
  color: var(--forest);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
}

.section {
  padding: 76px clamp(20px, 6vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

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

.steps article {
  min-height: 236px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 8px;
  background: var(--sea);
  color: #fff;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: start;
  background: #fffdf7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-list {
  display: grid;
  gap: 14px;
}

.trust-list p {
  margin: 0;
  padding-left: 18px;
  border-left: 3px solid var(--clay);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  justify-content: space-between;
  padding: 28px clamp(20px, 6vw, 72px);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--forest);
  font-weight: 700;
}

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 20px;
}

.legal h1 {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 58px);
}

.legal h2 {
  margin-top: 34px;
  font-size: 24px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    min-height: 90vh;
    padding-top: 150px;
  }

  .steps,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  nav {
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .steps article {
    min-height: 0;
  }
}
