:root {
  --green-950: #0d2416;
  --green-900: #143420;
  --green-800: #1d4a2e;
  --green-600: #2e7d4a;
  --green-100: #e3f2e8;
  --cream: #faf7f0;
  --sand: #e8dcc4;
  --ink: #1a2420;
  --muted: #5c6b62;
  --accent: #d9a441;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

header.site {
  background: var(--green-950);
  color: var(--cream);
  padding: 16px 0;
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.4rem; font-weight: 800; letter-spacing: -0.5px; color: var(--cream); text-decoration: none; }
.logo span { color: var(--accent); }
nav a { color: var(--green-100); text-decoration: none; margin-left: 24px; font-size: 0.95rem; }
nav a:hover { color: var(--accent); }

.hero {
  background: linear-gradient(160deg, var(--green-950) 0%, var(--green-800) 100%);
  color: var(--cream);
  padding: 72px 0 88px;
}
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 2.9rem; line-height: 1.15; letter-spacing: -1px; margin-bottom: 20px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p.sub { font-size: 1.2rem; color: var(--green-100); margin-bottom: 28px; }
.hero img { width: 100%; border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }

.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--green-950);
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.05rem;
}
.cta:hover { filter: brightness(1.08); }
.cta.secondary { background: transparent; color: var(--cream); border: 1.5px solid var(--green-100); margin-left: 12px; }

section { padding: 72px 0; }
section.alt { background: #fff; }
h2 { font-size: 2rem; letter-spacing: -0.5px; margin-bottom: 12px; }
p.lead { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin-bottom: 40px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { background: #fff; border: 1px solid #e5e0d3; border-radius: 14px; padding: 28px; }
section.alt .step { background: var(--cream); }
.step .num {
  display: inline-flex; width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-800); color: #fff; align-items: center; justify-content: center;
  font-weight: 700; margin-bottom: 14px;
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.97rem; }
.step .example {
  margin-top: 14px; background: var(--green-950); color: var(--green-100);
  border-radius: 10px; padding: 12px 14px; font-size: 0.88rem; font-style: italic;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split img { width: 100%; border-radius: 16px; box-shadow: 0 16px 40px rgba(13,36,22,0.18); }
.split ul { list-style: none; margin-top: 18px; }
.split li { padding: 10px 0 10px 34px; position: relative; color: var(--ink); }
.split li::before {
  content: "⛳"; position: absolute; left: 0; top: 10px; font-size: 0.9rem;
}
.split li strong { color: var(--green-800); }

.connect { background: var(--green-950); color: var(--cream); }
.connect h2 { color: #fff; }
.connect p.lead { color: var(--green-100); }
.url-box {
  display: flex; align-items: center; gap: 12px;
  background: var(--green-900); border: 1px solid var(--green-600);
  border-radius: 12px; padding: 18px 22px; margin-bottom: 40px; max-width: 560px;
}
.url-box code { font-size: 1.15rem; color: var(--accent); font-weight: 600; }
.clients { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.client { background: var(--green-900); border-radius: 14px; padding: 24px; }
.client h3 { margin-bottom: 10px; color: #fff; }
.client ol { margin-left: 18px; color: var(--green-100); font-size: 0.93rem; }
.client li { margin-bottom: 6px; }
.note { margin-top: 32px; color: var(--green-100); font-size: 0.9rem; max-width: 720px; }

footer.site { background: var(--green-950); color: var(--muted); padding: 40px 0; border-top: 1px solid var(--green-900); }
footer.site .wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
footer.site a { color: var(--green-100); text-decoration: none; margin-right: 18px; font-size: 0.9rem; }
footer.site a:hover { color: var(--accent); }
footer.site p { color: #6b7f72; font-size: 0.85rem; }

.doc { max-width: 760px; margin: 0 auto; padding: 56px 24px; }
.doc h1 { font-size: 2rem; margin-bottom: 8px; }
.doc .updated { color: var(--muted); margin-bottom: 32px; font-size: 0.9rem; }
.doc h2 { font-size: 1.3rem; margin: 32px 0 10px; }
.doc p, .doc li { color: var(--ink); margin-bottom: 10px; }
.doc ul { margin-left: 22px; }

@media (max-width: 800px) {
  .hero .wrap, .split, .steps, .clients { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  footer.site .wrap { flex-direction: column; }
}
