:root {
  color-scheme: light;
  --ink: #122019;
  --muted: #5f6d62;
  --green: #075f3f;
  --green-2: #0a7c51;
  --lime: #d9f48b;
  --cream: #f4efe3;
  --paper: #fffdf8;
  --line: #ddd6c8;
  --soft-green: #e7f2d0;
  --danger: #9f3829;
  --shadow: 0 22px 60px rgba(18, 32, 25, 0.13);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { background: var(--cream); }

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 4% 6%, rgba(217, 244, 139, 0.78) 0, rgba(217, 244, 139, 0) 25rem),
    radial-gradient(circle at 96% 2%, rgba(7, 95, 63, 0.13) 0, rgba(7, 95, 63, 0) 24rem),
    var(--cream);
  color: var(--ink);
}

a { color: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

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

.page {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 2px solid var(--green);
  border-radius: 14px;
  background: var(--green);
  color: white;
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -0.09em;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(217, 244, 139, 0.68);
  border-radius: 8px;
  content: "";
}

.brand-mark::after {
  top: 22px;
  bottom: -7px;
  border-width: 1px 0 0;
  border-radius: 0;
}

.brand-mark span { position: relative; z-index: 1; }

.brand-copy { display: grid; gap: 1px; }
.brand-copy small { color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: 0; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { background: rgba(255, 253, 248, 0.8); color: var(--green); }

.hero {
  position: relative;
  overflow: hidden;
  margin: 22px 0 24px;
  padding: clamp(30px, 7vw, 74px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 28px;
  background: var(--green);
  box-shadow: var(--shadow);
  color: white;
}

.hero::before,
.hero::after {
  position: absolute;
  border: 1px solid rgba(217, 244, 139, 0.45);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero::before { width: 28rem; height: 28rem; top: -20rem; right: -8rem; }
.hero::after { width: 16rem; height: 16rem; right: 22%; bottom: -12rem; }

.hero > * { position: relative; z-index: 1; }

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

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

h1 {
  max-width: 760px;
  margin-bottom: 17px;
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: -0.065em;
  line-height: 0.98;
}

h2 { margin-bottom: 10px; font-size: clamp(25px, 3vw, 34px); letter-spacing: -0.04em; }
h3 { margin-bottom: 7px; font-size: 17px; letter-spacing: -0.018em; }

.hero-copy {
  max-width: 610px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.83);
  font-size: 17px;
  font-weight: 620;
  line-height: 1.55;
}

.button-row { display: flex; flex-wrap: wrap; gap: 10px; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 13px;
  padding: 0 17px;
  background: var(--lime);
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.button:hover { background: white; }

.button-quiet {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.button-quiet:hover { border-color: white; background: rgba(255, 255, 255, 0.18); color: white; }

.button-secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--green);
}

.button-secondary:hover { border-color: var(--green); background: var(--soft-green); }

.content-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 24px; }
.content-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card,
.document-card,
.info-card,
.steps {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 13px 34px rgba(18, 32, 25, 0.06);
}

.card { padding: 22px; }
.card p, .info-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; font-weight: 610; line-height: 1.55; }

.card-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 11px;
  background: var(--soft-green);
  color: var(--green);
  font-size: 18px;
}

.section { margin: 36px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 15px; }
.section-head > p { max-width: 440px; margin-bottom: 0; color: var(--muted); font-size: 14px; font-weight: 620; line-height: 1.5; }

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

.document-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.document-symbol {
  display: grid;
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 13px;
  background: var(--green);
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

.document-copy { min-width: 0; flex: 1; }
.document-copy h3 { margin-bottom: 4px; }
.document-copy p { margin: 0; color: var(--muted); font-size: 13px; font-weight: 650; line-height: 1.45; }
.document-meta { margin-top: 6px !important; color: var(--green) !important; font-size: 12px !important; font-weight: 850 !important; }

.text-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.policy-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr); gap: 18px; }
.policy-content { padding: clamp(22px, 4vw, 40px); }
.policy-content > p { color: var(--muted); font-size: 16px; font-weight: 620; line-height: 1.65; }

.policy-list { display: grid; gap: 11px; margin: 25px 0 0; padding: 0; list-style: none; }
.policy-list li { position: relative; padding-left: 25px; color: var(--ink); font-size: 14px; font-weight: 680; line-height: 1.48; }
.policy-list li::before { position: absolute; left: 0; top: 0.38em; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); box-shadow: inset 0 0 0 3px var(--green); content: ""; }

.policy-side { display: grid; align-content: start; gap: 14px; }
.info-card { padding: 20px; }
.info-card .label { margin-bottom: 7px; color: var(--green); font-size: 11px; font-weight: 950; letter-spacing: 0.1em; text-transform: uppercase; }
.info-card strong { display: block; margin-bottom: 6px; font-size: 16px; letter-spacing: -0.02em; }
.info-card a { color: var(--green); font-weight: 850; }

.notice {
  margin: 25px 0 0;
  padding: 17px 18px;
  border-left: 4px solid var(--green);
  border-radius: 0 13px 13px 0;
  background: var(--soft-green);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.steps { padding: clamp(22px, 4vw, 34px); }
.steps ol { display: grid; gap: 14px; margin: 20px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { display: grid; grid-template-columns: 31px 1fr; gap: 11px; align-items: start; color: var(--ink); font-size: 15px; font-weight: 760; line-height: 1.45; counter-increment: steps; }
.steps li::before { display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--green); color: white; content: counter(steps); font-size: 12px; font-weight: 950; }

.support-email {
  color: var(--green);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 50px;
  padding: 24px 0 33px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--green); text-decoration: underline; }

.no-script { margin: 40px; color: var(--ink); font-weight: 700; }

@media (max-width: 800px) {
  .page { width: min(100% - 28px, 1120px); }
  .site-header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .site-nav { justify-content: flex-start; margin: -4px -8px; }
  .content-grid, .content-grid.two, .policy-layout { grid-template-columns: 1fr; }
  .hero { margin-top: 8px; border-radius: 23px; }
  .section-head { display: block; }
  .section-head > p { margin-top: -2px; }
  .document-card { align-items: flex-start; flex-wrap: wrap; }
  .document-card .text-link { margin-left: 63px; }
}

@media (max-width: 480px) {
  h1 { font-size: 41px; }
  .site-nav a { padding: 8px; }
  .hero { padding: 29px 23px; }
  .button { width: 100%; }
  .document-card .text-link { margin-left: 0; }
}
