:root {
  color-scheme: light;
  --ink: #102019;
  --muted: #52645c;
  --green: #0e6b59;
  --green-dark: #074c40;
  --mint: #dcefe8;
  --cream: #faf9f6;
  --white: #ffffff;
  --coral: #f26b3a;
  --line: #d9e2de;
  --max: 1120px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); }
img { display: block; max-width: 100%; }
a { color: var(--green); }
a:hover { color: var(--green-dark); }
a:focus-visible, summary:focus-visible { outline: 3px solid rgba(242, 107, 58, .45); outline-offset: 4px; }

.shell { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(250, 249, 246, .96); }
.site-header .shell { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 760; text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.site-nav { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.site-nav a { color: var(--muted); font-size: 15px; font-weight: 650; text-decoration: none; }
.site-nav a:hover { color: var(--green); }

.hero { padding: 76px 0 84px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(330px, .78fr); gap: 72px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--green); font-size: 13px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
h1, h2, h3 { text-wrap: balance; }
h1 { max-width: 760px; margin: 0; font-size: clamp(44px, 6.1vw, 72px); line-height: .99; letter-spacing: -.055em; }
.hero-copy { max-width: 680px; margin: 25px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 21px; border: 2px solid var(--green); border-radius: 13px; background: var(--green); color: var(--white); font-weight: 760; text-decoration: none; }
.button:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--white); }
.button.secondary { background: transparent; color: var(--green); }
.button.secondary:hover { background: var(--mint); color: var(--green-dark); }
.fine-print { margin: 15px 0 0; color: var(--muted); font-size: 14px; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-end; min-height: 590px; padding: 24px 0 0; background: var(--mint); border-radius: 44px; overflow: hidden; }
.hero-visual > img { width: min(72%, 340px); filter: drop-shadow(0 20px 25px rgba(16, 32, 25, .18)); }
.hero-icon { position: absolute; top: 22px; left: 22px; width: 84px !important; border-radius: 21px; box-shadow: 0 12px 25px rgba(16, 32, 25, .17); }

.trust-bar { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 24px 22px; text-align: center; }
.trust-grid div + div { border-left: 1px solid var(--line); }
.trust-grid strong { display: block; font-size: 16px; }
.trust-grid span { display: block; margin-top: 5px; color: var(--muted); font-size: 14px; }

.section { padding: 88px 0; }
.section.alt { background: var(--white); border-block: 1px solid var(--line); }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading h2, .content-page h1 { margin: 0; font-size: clamp(34px, 4.3vw, 52px); line-height: 1.06; letter-spacing: -.04em; }
.section-heading p { margin: 17px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-block: 1px solid var(--line); }
.feature { padding: 30px 30px 34px 0; }
.feature + .feature { padding-left: 30px; border-left: 1px solid var(--line); }
.feature h3 { margin: 0; font-size: 22px; }
.feature p { margin: 12px 0 0; color: var(--muted); line-height: 1.62; }
.feature-mark { display: inline-flex; width: 34px; height: 34px; margin-bottom: 20px; align-items: center; justify-content: center; border-radius: 50%; background: var(--coral); color: var(--white); font-weight: 850; }

.screenshot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.screenshot-grid figure { margin: 0; }
.screenshot-grid img { width: 100%; border: 1px solid var(--line); border-radius: 26px; box-shadow: 0 18px 34px rgba(16, 32, 25, .1); }
.screenshot-grid figcaption { margin-top: 13px; color: var(--muted); font-size: 14px; text-align: center; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; align-items: start; }
.split h2 { margin: 0; font-size: clamp(34px, 4.3vw, 52px); line-height: 1.05; letter-spacing: -.04em; }
.split-copy p, .split-copy li { color: var(--muted); font-size: 17px; line-height: 1.65; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 14px 0 14px 34px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 850; }

.price-block { padding: 38px; border: 2px solid var(--green); border-radius: 24px; background: var(--white); }
.price-block strong { display: block; font-size: 30px; letter-spacing: -.03em; }
.price-block p { margin: 10px 0 22px; color: var(--muted); line-height: 1.6; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 22px 2px; font-weight: 740; }
.faq p { margin: -4px 0 24px; max-width: 760px; color: var(--muted); line-height: 1.65; }

.seo-hero { padding: 68px 0 46px; border-bottom: 1px solid var(--line); }
.seo-hero .shell { max-width: 880px; }
.seo-hero h1 { font-size: clamp(42px, 6vw, 66px); }
.seo-hero p { max-width: 700px; color: var(--muted); font-size: 20px; line-height: 1.6; }
.seo-body { max-width: 880px; padding: 64px 0 84px; }
.seo-body h2 { margin: 46px 0 14px; font-size: 30px; letter-spacing: -.025em; }
.seo-body h2:first-child { margin-top: 0; }
.seo-body p, .seo-body li { color: var(--muted); font-size: 17px; line-height: 1.7; }
.seo-body img { width: min(100%, 430px); margin: 36px auto; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 18px 36px rgba(16, 32, 25, .1); }
.inline-cta { margin-top: 46px; padding: 30px; background: var(--mint); border-radius: 20px; }
.inline-cta h2 { margin: 0 0 10px; }

.resource-strip { background: var(--mint); border-block: 1px solid var(--line); }
.resource-strip-grid { align-items: center; }
.resource-strip-copy { max-width: 560px; color: var(--muted); font-size: 18px; line-height: 1.6; }
.resource-link-grid { display: grid; gap: 12px; }
.resource-link { display: block; padding: 21px 24px; border: 1px solid rgba(14, 107, 89, .3); border-radius: 16px; background: var(--white); color: var(--ink); text-decoration: none; }
.resource-link:hover { border-color: var(--green); box-shadow: 0 10px 22px rgba(16, 32, 25, .08); color: var(--ink); }
.resource-link strong, .resource-link span { display: block; }
.resource-link strong { font-size: 18px; }
.resource-link span { margin-top: 6px; color: var(--muted); line-height: 1.45; }

.resource-hero { padding-bottom: 52px; }
.resource-hero h1 { max-width: 860px; }
.resource-hero .shell > p:not(.eyebrow):not(.resource-note) { max-width: 780px; }
.resource-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.resource-actions button { font: inherit; cursor: pointer; }
.resource-note { margin: 14px 0 0; color: var(--muted); font-size: 14px; }
.resource-body { padding: 64px 0 92px; }
.resource-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; max-width: 940px; margin: 0 auto 48px; }
.resource-intro h2, .handoff-checklist h2, .workflow h2 { margin: 0; font-size: clamp(30px, 4vw, 44px); line-height: 1.08; letter-spacing: -.035em; }
.resource-intro p { margin: 0 0 15px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.printable-card { max-width: 940px; margin: 0 auto; padding: clamp(24px, 4vw, 46px); border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: 0 18px 36px rgba(16, 32, 25, .08); }
.example-card { margin-top: 28px; background: #f5faf7; }
.printable-header { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; padding-bottom: 24px; border-bottom: 2px solid var(--green); }
.printable-header .eyebrow { margin-bottom: 8px; }
.printable-header h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); line-height: 1; letter-spacing: -.04em; }
.printable-header p:not(.eyebrow) { margin: 10px 0 0; color: var(--muted); }
.print-badge { flex: 0 0 auto; padding: 8px 11px; border: 1px solid var(--green); border-radius: 999px; color: var(--green); font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.print-badge.example { border-color: var(--coral); color: #b84922; }
.field-grid { display: grid; gap: 17px; margin-top: 24px; }
.field-grid.two { grid-template-columns: repeat(2, 1fr); }
.field-grid.three { grid-template-columns: 1.15fr .85fr 1fr; }
.line-field { min-width: 0; min-height: 48px; padding: 9px 12px 7px; border: 1px solid var(--line); border-radius: 9px; background: #fbfcfa; }
.line-field span { display: block; color: var(--muted); font-size: 11px; font-weight: 760; letter-spacing: .04em; text-transform: uppercase; }
.line-field i { display: block; min-height: 20px; margin-top: 5px; border-bottom: 1px solid #8ea49b; }
.line-field.filled { background: var(--white); }
.line-field.filled b { display: block; min-height: 20px; margin-top: 5px; color: var(--ink); font-size: 15px; line-height: 1.3; }
.line-field.wide { margin-top: 17px; }
.line-field.tall { min-height: 82px; }
.form-section { margin-top: 30px; }
.form-section h3 { margin: 0; font-size: 19px; }
.form-help { margin: 8px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.routine-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 17px; }
.routine-grid > div { min-height: 98px; padding: 13px; border: 1px solid var(--line); border-radius: 9px; background: #fbfcfa; }
.routine-grid b { display: block; color: var(--green); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; }
.routine-grid i, .routine-grid span { display: block; margin-top: 17px; color: var(--muted); font-size: 14px; line-height: 1.4; }
.routine-grid i { border-bottom: 1px solid #8ea49b; }
.notes-lines { display: grid; gap: 20px; margin-top: 17px; }
.notes-lines i { display: block; border-bottom: 1px solid #8ea49b; }
.filled-notes span { color: var(--ink); font-size: 14px; }
.form-footer { margin: 28px 0 0; padding-top: 15px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; line-height: 1.45; }
.handoff-checklist { max-width: 940px; margin: 64px auto 0; padding-top: 50px; border-top: 1px solid var(--line); }
.handoff-checklist .eyebrow { margin-bottom: 11px; }
.handoff-checklist .check-list { max-width: 780px; margin-top: 18px; }
.log-table { width: 100%; margin-top: 17px; border-collapse: collapse; table-layout: fixed; }
.log-table th, .log-table td { border: 1px solid #cbd8d2; padding: 10px 9px; text-align: left; vertical-align: middle; }
.log-table th { background: var(--green); color: var(--white); font-size: 11px; line-height: 1.25; }
.log-table td { height: 43px; color: var(--ink); font-size: 13px; }
.log-table th:nth-child(1), .log-table td:nth-child(1) { width: 14%; }
.log-table th:nth-child(2), .log-table td:nth-child(2) { width: 17%; }
.log-table th:nth-child(3), .log-table td:nth-child(3) { width: 22%; }
.log-table th:nth-child(4), .log-table td:nth-child(4) { width: 29%; }
.log-table th:nth-child(5), .log-table td:nth-child(5) { width: 18%; }
.example-log tbody tr:nth-child(odd) { background: #f0f7f3; }
.workflow { display: grid; grid-template-columns: 1.1fr 1fr auto; gap: 32px; align-items: end; max-width: 940px; margin: 64px auto 0; padding-top: 50px; border-top: 1px solid var(--line); }
.workflow-steps { display: grid; gap: 9px; }
.workflow-steps div { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: 14px; line-height: 1.35; }
.workflow-steps b { display: inline-flex; width: 27px; height: 27px; flex: 0 0 27px; align-items: center; justify-content: center; border-radius: 50%; background: var(--coral); color: var(--white); }

@media print {
  @page { size: Letter; margin: .42in; }
  :root { background: #fff; }
  body { background: #fff; }
  .site-header, .site-footer, .resource-hero, .screen-only, .example-card, .resource-intro, .handoff-checklist, .workflow { display: none !important; }
  .resource-body { width: 100%; max-width: none; padding: 0; }
  .printable-card.blank-card { display: block !important; max-width: none; margin: 0; padding: 0; border: 0; border-radius: 0; box-shadow: none; }
  .printable-header { padding-bottom: 14px; }
  .printable-header h2 { font-size: 27px; }
  .printable-header p { font-size: 11px; }
  .print-badge { font-size: 9px; }
  .field-grid { gap: 9px; margin-top: 14px; }
  .line-field { min-height: 38px; padding: 6px 8px 4px; }
  .line-field span { font-size: 8px; }
  .line-field i { min-height: 15px; margin-top: 3px; }
  .line-field.wide { margin-top: 9px; }
  .line-field.tall { min-height: 60px; }
  .form-section { margin-top: 16px; }
  .form-section h3 { font-size: 14px; }
  .form-help { font-size: 9px; }
  .routine-grid { gap: 8px; margin-top: 9px; }
  .routine-grid > div { min-height: 62px; padding: 8px; }
  .routine-grid b { font-size: 9px; }
  .routine-grid i { margin-top: 9px; }
  .notes-lines { gap: 14px; margin-top: 9px; }
  .form-footer { margin-top: 16px; padding-top: 8px; font-size: 9px; }
  .log-table { margin-top: 9px; }
  .log-table th, .log-table td { padding: 6px 5px; }
  .log-table th { font-size: 8px; }
  .log-table td { height: 34px; font-size: 9px; }
}

.content-page { max-width: 780px; padding: 58px 0 82px; }
.content-page .date { color: #6c7772; }
.content-page h2 { margin-top: 38px; font-size: 24px; letter-spacing: -.02em; }
.content-page p, .content-page li { color: var(--muted); font-size: 17px; line-height: 1.68; }
.content-page footer { margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }

.site-footer { padding: 38px 0 48px; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); font-size: 14px; }
.copyright { color: var(--muted); font-size: 14px; }

@media (max-width: 820px) {
  .site-header .shell { padding-block: 14px; align-items: flex-start; }
  .site-nav { justify-content: flex-end; gap: 12px 16px; }
  .hero { padding-top: 50px; }
  .hero-grid, .split { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { min-height: 520px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .trust-grid div:nth-child(4) { border-top: 1px solid var(--line); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature, .feature + .feature { padding: 26px 0; border-left: 0; }
  .feature + .feature { border-top: 1px solid var(--line); }
  .screenshot-grid { gap: 14px; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px, var(--max)); }
  .site-header .shell { display: block; }
  .site-nav { margin-top: 14px; justify-content: flex-start; }
  .site-nav .hide-small { display: none; }
  .hero { padding: 46px 0 58px; }
  h1 { font-size: 46px; }
  .hero-visual { min-height: 460px; border-radius: 30px; }
  .hero-icon { width: 68px !important; border-radius: 17px; }
  .section { padding: 66px 0; }
  .screenshot-grid { grid-template-columns: 1fr; gap: 34px; }
  .screenshot-grid img { width: min(100%, 390px); margin-inline: auto; }
  .footer-grid { display: block; }
  .footer-links { margin-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
