:root {
  --green: #123b31;
  --green-2: #1e5b49;
  --lime: #d7ef72;
  --paper: #fff;
  --bg: #edf2ef;
  --ink: #20332d;
  --muted: #63726c;
  --line: #d6dfda;
}
* { box-sizing: border-box; }
html { color-scheme: light; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.5; }
a { color: inherit; }
.preview-bar { background: #17211e; color: #fff; padding: .7rem 1rem; text-align: center; font-weight: 750; }
.preview-bar strong { color: var(--lime); }
.wrap { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }
.hero { padding: clamp(3rem, 8vw, 7rem) 0 2rem; }
.brand { font-size: 1.25rem; font-weight: 900; color: var(--green); }
.eyebrow { margin: 0 0 .5rem; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 850; color: #2d8566; }
h1 { max-width: 16ch; margin: .25rem 0 1rem; font-size: clamp(2.5rem, 7vw, 5rem); line-height: .98; letter-spacing: -.055em; }
h2 { margin: 0 0 .75rem; line-height: 1.1; }
.lead { max-width: 62ch; color: var(--muted); font-size: 1.1rem; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; padding: 1rem 0 4rem; }
.card { display: flex; min-height: 250px; flex-direction: column; padding: 1.5rem; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: 0 16px 48px rgba(18,59,49,.08); }
.card p { color: var(--muted); }
.card.compact { min-height: 0; margin: 1rem 0; }
.card.final-card { margin-bottom: 4rem; }
.table-scroll { overflow-x: auto; }
.card .button { margin-top: auto; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; border-radius: 13px; padding: .75rem 1rem; background: var(--green); color: #fff; font-weight: 800; text-decoration: none; }
.button.secondary { border: 1px solid var(--line); background: #fff; color: var(--green); }
.top { background: var(--green); color: #fff; }
.top .wrap { display: flex; min-height: 72px; align-items: center; justify-content: space-between; gap: 1rem; }
.top .brand { color: #fff; }
.nav { display: flex; flex-wrap: wrap; gap: .5rem; }
.nav a { padding: .6rem .8rem; border-radius: 10px; text-decoration: none; font-weight: 750; }
.nav a[aria-current="page"] { background: var(--lime); color: var(--green); }
.page-head { padding: 2.5rem 0 1rem; }
.page-head h1 { font-size: clamp(2.2rem, 6vw, 4rem); }
.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin: 1rem 0; }
.stat { padding: 1.25rem; border-radius: 18px; background: #f6f9f7; }
.stat strong { display: block; font-size: 2rem; color: var(--green); }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; }
.tag { display: inline-block; border-radius: 999px; padding: .25rem .6rem; background: #e2f4e9; color: #17613f; font-size: .82rem; font-weight: 800; }
.sales-layout { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr); gap: 1rem; padding-bottom: 4rem; }
.script-step { padding: 1.4rem; border-left: 6px solid var(--lime); border-radius: 18px; background: #fff; }
.coach { padding: 1.4rem; border-radius: 18px; background: var(--green); color: #fff; }
.coach p { color: #d9e6e1; }
.coach .eyebrow { color: var(--lime); }
.coach-rule { border: 0; border-top: 1px solid #54766c; }
.note { border-radius: 14px; padding: .8rem 1rem; background: #fff6cf; color: #614b00; }
:focus-visible { outline: 4px solid #111; outline-offset: 3px; }
@media (max-width: 760px) {
  .grid, .stats, .sales-layout { grid-template-columns: 1fr; }
  .top .wrap { align-items: flex-start; flex-direction: column; padding: 1rem 0; }
}
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; } }
@media (forced-colors: active) { .button, .nav a[aria-current="page"] { border: 1px solid ButtonText; } }
