:root {
  --ink: #10231f;
  --muted: #50635d;
  --paper: #fbfcfa;
  --sage: #e8efe8;
  --line: #d8e1da;
  --forest: #1d5a44;
  --forest-dark: #123d2e;
  --amber: #d97925;
  --radius: 18px;
  --shadow: 0 18px 42px rgba(16, 35, 31, 0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.site-shell { overflow: hidden; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: 8px 12px;
  color: #fff;
  background: var(--forest-dark);
  border-radius: 6px;
}

.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(216, 225, 218, 0.82);
  background: rgba(251, 252, 250, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--forest);
  border-radius: 10px;
  font-family: Georgia, serif;
  font-weight: 700;
}

.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 0.96rem; letter-spacing: 0.01em; }
.brand-copy span { margin-top: 3px; color: var(--muted); font-size: 0.73rem; letter-spacing: 0.12em; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a { color: var(--muted); font-size: 0.92rem; font-weight: 600; text-decoration: none; }
.site-nav a:hover { color: var(--forest); }

.hero {
  position: relative;
  padding: 104px 0 88px;
  background: linear-gradient(135deg, #edf4ed 0%, #fbfcfa 50%, #f8eee5 100%);
}

.hero::after {
  position: absolute;
  width: 430px;
  height: 430px;
  right: -160px;
  bottom: -260px;
  content: "";
  background: rgba(217, 121, 37, 0.12);
  border-radius: 50%;
  filter: blur(4px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--forest-dark);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before { width: 8px; height: 8px; content: ""; background: var(--amber); border-radius: 50%; }

h1, h2, h3 { margin: 0; color: var(--ink); line-height: 1.13; letter-spacing: -0.03em; }
h1 { max-width: 760px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.7rem, 7vw, 5.4rem); font-weight: 600; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 600; }
h3 { font-size: 1.15rem; letter-spacing: -0.015em; }

.hero-copy { max-width: 680px; margin: 26px 0 0; color: #385048; font-size: clamp(1.1rem, 2vw, 1.33rem); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-size: 0.93rem;
  font-weight: 750;
  text-decoration: none;
}

.button:hover { background: var(--forest-dark); }
.button.secondary { color: var(--forest-dark); background: transparent; }
.button.secondary:hover { color: var(--forest-dark); background: #fff; }

.section { padding: 92px 0; }
.section.tint { background: var(--sage); }
.section-heading { max-width: 720px; }
.section-heading p { max-width: 630px; margin: 20px 0 0; color: var(--muted); font-size: 1.08rem; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.card { padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 20px rgba(16, 35, 31, 0.03); }
.card .number { display: block; margin-bottom: 20px; color: var(--amber); font-family: Georgia, serif; font-size: 1.15rem; font-weight: 700; }
.card p { margin: 12px 0 0; color: var(--muted); }

.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; margin-top: 46px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.step { min-height: 226px; padding: 31px; border-right: 1px solid var(--line); }
.step:last-child { border: 0; }
.step-label { display: block; margin-bottom: 30px; color: var(--forest); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.step p { margin: 12px 0 0; color: var(--muted); }

.promise { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 54px; align-items: center; }
.promise-panel { padding: 35px; color: #eaf6ef; background: var(--forest-dark); border-radius: var(--radius); box-shadow: var(--shadow); }
.promise-panel h3 { color: #fff; font-family: Georgia, serif; font-size: 1.9rem; }
.promise-panel p { margin: 15px 0 0; color: #c8ddd0; }

.pilot-note { padding: 28px; border: 1px solid #ead3bf; border-radius: var(--radius); background: #fff9f4; }
.pilot-note p { margin: 10px 0 0; color: #654c3a; }

.legal-page { padding: 74px 0 94px; }
.legal-title { max-width: 760px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.legal-title p { margin: 18px 0 0; color: var(--muted); }
.legal-content { max-width: 780px; padding-top: 28px; }
.legal-content section { padding: 20px 0; }
.legal-content p, .legal-content li { color: #41534d; }
.legal-content ul { padding-left: 22px; }
.legal-content a { color: var(--forest); font-weight: 650; }
.release-marker { padding: 16px 18px; color: #674319; background: #fff3e6; border-left: 4px solid var(--amber); border-radius: 8px; font-size: 0.9rem; }

.site-footer { padding: 36px 0; border-top: 1px solid var(--line); background: #f1f5f1; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-inner p { margin: 0; color: var(--muted); font-size: 0.88rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); font-size: 0.88rem; text-decoration: none; }
.footer-links a:hover { color: var(--forest); }

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1120px); }
  .site-nav { gap: 12px; }
  .site-nav a:first-child { display: none; }
  .hero { padding: 78px 0 68px; }
  .section { padding: 68px 0; }
  .principles, .steps, .promise { grid-template-columns: 1fr; }
  .step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .promise { gap: 28px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
