:root {
  --ink: #18231d;
  --muted: #5f6b64;
  --paper: #f6f3eb;
  --surface: #fffdf7;
  --forest: #274a38;
  --forest-dark: #173227;
  --moss: #dbe2cf;
  --amber: #d7a94b;
  --line: #d9ddd4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 4%, rgba(215, 169, 75, 0.13), transparent 26rem),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  border-bottom: 1px solid rgba(39, 74, 56, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--forest);
  color: white;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  letter-spacing: -0.08em;
}

.site-nav,
.footer-links {
  display: flex;
  gap: 24px;
}

.site-nav {
  color: var(--muted);
  font-size: 14px;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.hero {
  max-width: 890px;
  padding: 112px 0 82px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--forest);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #dce9df;
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(48px, 7.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.hero-copy {
  max-width: 770px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.trust-strip div {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px;
}

.trust-strip div + div {
  border-left: 1px solid var(--line);
}

.trust-strip span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-grid,
.safeguards {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

.section-grid {
  padding: 122px 0;
}

.section-heading p,
.info-card p,
.contact-panel p,
.policy-intro {
  color: var(--muted);
}

.card-stack {
  display: grid;
  gap: 14px;
}

.info-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 247, 0.82);
}

.info-card p {
  margin-bottom: 0;
}

.step {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--moss);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.safeguards {
  padding: 72px;
  border-radius: 28px;
  background: var(--forest-dark);
  color: white;
}

.safeguards p {
  color: #c7d1ca;
}

.safeguards ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.safeguards li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-panel {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 110px 0;
}

.text-link {
  color: var(--forest);
  font-weight: 750;
  text-underline-offset: 5px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.policy-main {
  width: min(820px, calc(100% - 40px));
  padding: 92px 0 110px;
}

.policy-main h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 7vw, 72px);
}

.policy-intro {
  margin-bottom: 52px;
  font-size: 18px;
}

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

.policy-section h2 {
  font-size: 26px;
  letter-spacing: -0.03em;
}

.policy-section p,
.policy-section li {
  color: #465149;
}

.policy-note {
  padding: 24px;
  border-left: 4px solid var(--amber);
  background: var(--surface);
}

@media (max-width: 820px) {
  .hero {
    padding: 82px 0 62px;
  }

  .trust-strip,
  .section-grid,
  .safeguards {
    grid-template-columns: 1fr;
  }

  .trust-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-grid {
    padding: 88px 0;
  }

  .safeguards {
    padding: 42px 30px;
  }

  .contact-panel {
    align-items: start;
    flex-direction: column;
    padding: 82px 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    font-size: 14px;
  }

  .site-nav a:first-child {
    display: none;
  }

  .info-card {
    grid-template-columns: 1fr;
  }

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