:root {
  color-scheme: light;
  --ink: #10251e;
  --muted: #60736b;
  --paper: #f7faf8;
  --card: #ffffff;
  --line: #dce8e1;
  --green: #166b4f;
  --green-dark: #0d4634;
  --mint: #dff1e7;
  --gold: #d5a23f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
}
* { box-sizing: border-box; }
body { margin: 0; background: radial-gradient(circle at 85% 0%, #e9f6ef 0, transparent 34rem), var(--paper); }
a { color: var(--green-dark); }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); text-decoration: none; font-weight: 750; letter-spacing: -.03em; }
.mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; color: white; background: var(--green-dark); font-size: 15px; }
.links { display: flex; align-items: center; gap: 22px; font-size: .92rem; }
.links a { text-decoration: none; color: var(--muted); }
.links a:hover, .links a:focus-visible { color: var(--green-dark); }
.hero { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 72px; padding: 76px 0 86px; }
.eyebrow { color: var(--green); text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; font-weight: 800; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.055em; margin: 0 0 18px; }
h1 { max-width: 690px; font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.25rem; letter-spacing: -.025em; }
.lead { max-width: 640px; font-size: 1.18rem; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border: 1px solid var(--green-dark); border-radius: 999px; color: white; background: var(--green-dark); text-decoration: none; font-weight: 700; font-size: .92rem; }
.button.secondary { color: var(--green-dark); background: transparent; }
.button[aria-disabled="true"] { cursor: not-allowed; opacity: .6; }
.orb { min-height: 390px; border: 1px solid #c8e2d3; border-radius: 34px; background: linear-gradient(145deg, #e8f7ee, #c5e7d2); position: relative; overflow: hidden; box-shadow: 0 24px 70px rgba(17, 83, 56, .12); }
.orb::before, .orb::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(13, 70, 52, .18); }
.orb::before { width: 350px; height: 350px; left: 16%; top: 13%; }
.orb::after { width: 230px; height: 230px; left: 34%; top: 28%; background: rgba(255,255,255,.35); }
.signal { position: absolute; inset: 0; display: grid; place-items: center; color: var(--green-dark); font-size: 4rem; font-weight: 800; letter-spacing: -.1em; }
section { padding: 74px 0; }
.section-intro { max-width: 680px; margin-bottom: 32px; }
.section-intro p { color: var(--muted); font-size: 1.05rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { padding: 26px; background: var(--card); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 8px 30px rgba(16, 37, 30, .04); }
.card p, .card li { color: var(--muted); }
.card ul { padding-left: 18px; }
.band { background: var(--green-dark); color: white; }
.band .muted { color: #c3ded1; }
.band a { color: white; }
.pill { display: inline-block; margin-bottom: 13px; padding: 5px 9px; border-radius: 999px; background: var(--mint); color: var(--green-dark); font-size: .75rem; font-weight: 800; }
.integration-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.integration { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.integration p { margin: 4px 0 0; color: var(--muted); font-size: .9rem; }
.status { color: var(--gold); font-size: .78rem; font-weight: 800; text-align: right; }
.footer { padding: 42px 0 56px; color: var(--muted); font-size: .88rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); padding-top: 24px; }
.footer a { margin-left: 16px; }
.notice { padding: 20px; border-left: 3px solid var(--gold); background: #fffaf0; color: #624919; }
.prose { max-width: 760px; padding: 70px 0 90px; }
.prose p, .prose li { color: var(--muted); font-size: 1.05rem; }
.prose strong { color: var(--ink); }
@media (max-width: 780px) { .hero { grid-template-columns: 1fr; gap: 36px; padding-top: 42px; } .orb { min-height: 280px; } .grid, .integration-list { grid-template-columns: 1fr; } .links { gap: 12px; } .links a:nth-child(3) { display: none; } .footer-inner { display: block; } .footer a { margin: 0 14px 0 0; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; } }
