:root {
  color-scheme: light;
  --ink: #111218;
  --muted: #5f665f;
  --green: #238a43;
  --green-dark: #003522;
  --cream: #fff7e8;
  --paper: #ffffff;
  --line: rgba(17, 18, 24, 0.12);
  --shadow: 0 22px 70px rgba(17, 18, 24, 0.12);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 56px);
  background: rgba(255, 247, 232, 0.92);
  border-bottom: 1px solid rgba(17, 18, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 1.04rem;
  font-weight: 850;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.site-nav a:hover {
  color: var(--green);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 8vw, 92px) 0 48px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.94;
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  font-weight: 920;
}

h3 {
  font-size: 1.16rem;
  font-weight: 880;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.lead {
  max-width: 680px;
  color: #303730;
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff;
  background: #000000;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(35, 138, 67, 0.11);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 56px 0;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 26px;
}

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

.card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.card strong {
  color: var(--green);
  font-size: 1.4rem;
}

.legal-layout {
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 74px;
}

.legal-layout article {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 14px 40px rgba(17, 18, 24, 0.06);
}

.legal-layout h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-layout h2 {
  margin-top: 16px;
  font-size: 1.45rem;
}

.legal-layout ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.legal-layout li {
  padding-left: 2px;
}

.notice {
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(35, 138, 67, 0.1);
  color: var(--green-dark);
  font-weight: 750;
}

.site-footer {
  display: grid;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 56px);
  border-top: 1px solid rgba(17, 18, 24, 0.1);
  background: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}

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

.small {
  color: #778077;
  font-size: 0.9rem;
}

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

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

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