:root {
  color-scheme: light;
  --ink: #172a3b;
  --muted: #526779;
  --soft: #eef3f0;
  --paper: #f7f8f5;
  --surface: #ffffff;
  --line: #dce5e1;
  --green: #1d6b55;
  --green-dark: #15523f;
  --mint: #e0f1e7;
  --blue: #e9eff7;
  --shadow: 0 24px 70px rgb(23 42 59 / 8%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); line-height: 1.65; }
a { color: var(--green-dark); text-underline-offset: .2em; }
a:hover { color: #0d4938; }
.site-header { width: min(1120px, calc(100% - 40px)); margin: 0 auto; min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); text-decoration: none; font-weight: 750; letter-spacing: -.03em; }
.brand-mark { width: 38px; height: 38px; border-radius: 13px; display: grid; place-items: center; background: var(--green); color: white; font-size: 13px; letter-spacing: -.08em; }
.brand-label { display: grid; line-height: 1.15; }
.brand-label small { margin-top: 5px; color: var(--muted); font-size: 11px; font-weight: 550; letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; font-size: 14px; }
.site-nav a { color: var(--muted); text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.hero { padding: 76px 0 74px; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); align-items: center; gap: 56px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; color: var(--green-dark); background: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #55a17d; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin: 23px 0 20px; font-size: clamp(42px, 6vw, 70px); letter-spacing: -.065em; line-height: 1.02; }
.lead { max-width: 670px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { min-height: 48px; padding: 12px 18px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 12px; background: #fff; color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 700; }
.button-primary { border-color: var(--green); background: var(--green); color: #fff; }
.button-primary:hover { background: var(--green-dark); color: #fff; }
.hero-card { position: relative; overflow: hidden; border: 1px solid #dce7e1; border-radius: 26px; padding: 27px; background: linear-gradient(145deg, #f0f7f2 0%, #e7f0ed 50%, #e7edf7 100%); box-shadow: var(--shadow); }
.hero-card::after { content: ""; position: absolute; width: 170px; height: 170px; right: -62px; top: -66px; border: 1px solid rgb(29 107 85 / 15%); border-radius: 50%; box-shadow: 0 0 0 22px rgb(255 255 255 / 16%), 0 0 0 44px rgb(255 255 255 / 13%); }
.card-kicker { position: relative; z-index: 1; color: var(--green-dark); font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.vault-icon { width: 68px; height: 68px; margin: 36px 0 20px; position: relative; z-index: 1; display: grid; place-items: center; border: 1px solid rgb(29 107 85 / 20%); border-radius: 21px; background: rgb(255 255 255 / 78%); color: var(--green); }
.vault-icon svg { width: 34px; height: 34px; }
.hero-card h2 { max-width: 270px; position: relative; z-index: 1; margin-bottom: 8px; font-size: 22px; letter-spacing: -.035em; line-height: 1.2; }
.hero-card p { max-width: 300px; position: relative; z-index: 1; margin-bottom: 0; color: var(--muted); font-size: 14px; }
.section { padding: 76px 0; }
.section-white { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 670px; margin-bottom: 34px; }
.section-heading h2 { margin-bottom: 10px; font-size: clamp(30px, 4vw, 44px); line-height: 1.12; letter-spacing: -.055em; }
.section-heading p { color: var(--muted); }
.grid-three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-card { min-height: 210px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.step { width: 34px; height: 34px; margin-bottom: 19px; display: grid; place-items: center; border-radius: 11px; background: var(--mint); color: var(--green-dark); font-size: 13px; font-weight: 800; }
.info-card h3 { margin-bottom: 9px; font-size: 17px; letter-spacing: -.02em; }
.info-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }
.note { padding: 22px 24px; border-left: 3px solid var(--green); border-radius: 0 14px 14px 0; background: #f1f6f2; color: var(--muted); }
.note strong { color: var(--ink); }
.page-hero { padding: 60px 0 34px; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin: 8px 0 14px; font-size: clamp(38px, 5vw, 56px); }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 17px; }
.updated { color: #6b7d88; font-size: 13px; }
.prose { max-width: 800px; padding: 10px 0 80px; }
.prose section { padding: 25px 0; border-top: 1px solid var(--line); }
.prose h2 { margin-bottom: 10px; font-size: 21px; letter-spacing: -.03em; }
.prose h3 { margin: 18px 0 7px; font-size: 16px; }
.prose p, .prose li { color: #435a6a; font-size: 15px; }
.prose ul { padding-left: 22px; }
.prose li + li { margin-top: 6px; }
.callout { margin: 20px 0; padding: 18px 20px; border: 1px solid #d9e7dc; border-radius: 14px; background: #f1f7f2; color: #405a4d; }
.site-footer { width: min(1120px, calc(100% - 40px)); margin: 0 auto; padding: 26px 0 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
@media (max-width: 760px) {
  .site-header { min-height: 74px; align-items: flex-start; padding: 18px 0; flex-direction: column; gap: 14px; }
  .site-nav { gap: 18px; }
  .hero { padding: 48px 0; grid-template-columns: 1fr; gap: 34px; }
  .hero-card { max-width: 480px; }
  .section { padding: 54px 0; }
  .grid-three { grid-template-columns: 1fr; }
  .info-card { min-height: auto; }
  .page-hero { padding: 42px 0 24px; }
  .prose { padding-bottom: 52px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
