:root {
  color-scheme: light dark;
  --paper: #f6f5ef;
  --paper-strong: #fffef9;
  --ink: #17231e;
  --muted: #5d6963;
  --line: #d8ddd6;
  --line-strong: #b8c2ba;
  --green: #1f7354;
  --green-dark: #14553e;
  --green-soft: #dcece3;
  --lime: #c5ee77;
  --amber: #a95f1b;
  --shadow: 0 24px 70px rgba(24, 45, 35, 0.12);
  --radius: 18px;
  --shell: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
button, input { font: inherit; }
button { cursor: pointer; }
.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.narrow-shell { max-width: 800px; }
.section-pad { padding: 108px 0; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 9px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper-strong);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.site-header { border-bottom: 1px solid var(--line); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 22px; letter-spacing: -0.04em; text-decoration: none; }
.brand-dot { color: var(--green); }
.brand-mark { width: 27px; height: 27px; display: inline-flex; align-items: flex-end; gap: 3px; padding: 5px; border-radius: 7px; background: var(--green); }
.brand-mark span { width: 4px; border-radius: 2px; background: var(--paper-strong); }
.brand-mark span:nth-child(1) { height: 7px; }
.brand-mark span:nth-child(2) { height: 12px; }
.brand-mark span:nth-child(3) { height: 16px; }
.header-inner nav { display: flex; gap: 28px; }
.header-inner nav a { color: var(--muted); font-size: 14px; font-weight: 650; text-decoration: none; }
.header-inner nav a:hover { color: var(--green); }

.hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(380px, .75fr); align-items: center; gap: clamp(48px, 7vw, 96px); min-height: 755px; padding-top: 72px; padding-bottom: 86px; }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; right: -180px; top: 45px; z-index: -1; border-radius: 50%; background: radial-gradient(circle, rgba(31, 115, 84, .12) 0, rgba(31, 115, 84, 0) 68%); }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 17px; color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px var(--green-soft); }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 760px; margin-bottom: 24px; font-size: clamp(45px, 5.5vw, 74px); font-weight: 770; }
h1 em { color: var(--green); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h2 { font-size: clamp(34px, 4vw, 52px); }
h3 { font-size: 23px; }
.hero-subhead { max-width: 700px; margin: 0 0 28px; color: var(--muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.answer-capsule { position: relative; max-width: 710px; margin-bottom: 28px; padding: 25px 28px 22px; border: 1px solid var(--line-strong); border-left: 4px solid var(--green); border-radius: 0 var(--radius) var(--radius) 0; background: rgba(255, 254, 249, .65); }
.answer-capsule p { margin: 0; color: #324039; font-size: 14px; line-height: 1.7; }
.capsule-label { position: absolute; top: -11px; left: 20px; padding: 1px 9px; border: 1px solid var(--line-strong); border-radius: 99px; background: var(--paper); color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-actions { display: flex; align-items: flex-start; gap: 18px; flex-wrap: wrap; }
.subscribe-form { flex: 1 1 470px; }
.hero .subscribe-form { max-width: 520px; }
.form-row { display: flex; }
.form-row input[type="email"] { min-width: 0; flex: 1; min-height: 52px; padding: 0 17px; border: 1px solid var(--line-strong); border-right: 0; border-radius: 10px 0 0 10px; background: var(--paper-strong); color: var(--ink); }
.form-row input[type="email"]::placeholder { color: #7f8984; }
.form-row button, .button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 8px; padding: 0 20px; border: 1px solid var(--green); border-radius: 0 10px 10px 0; background: var(--green); color: #fff; font-size: 14px; font-weight: 750; text-decoration: none; transition: background .16s ease, transform .16s ease; }
.form-row button:hover, .button:hover { background: var(--green-dark); }
.form-row button:active, .button:active { transform: translateY(1px); }
.form-row button:disabled { cursor: wait; opacity: .7; }
.button { border-radius: 10px; }
.button-detail { font-weight: 500; opacity: .72; }
.text-link { margin-top: 14px; color: var(--green); font-size: 14px; font-weight: 750; text-underline-offset: 4px; }
.form-status { min-height: 24px; margin: 7px 0 0; font-size: 13px; }
.form-status.is-error { color: #9d2e25; }
.form-status.is-success { color: var(--green-dark); font-weight: 700; }
.prelaunch-note { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.prelaunch-note span { color: var(--amber); margin-right: 5px; }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.launched-only { display: none !important; }
.is-launched .launched-only { display: inline-flex !important; }
.is-launched .prelaunch-only { display: none !important; }

.audit-card { position: relative; padding: 27px; border: 1px solid var(--line-strong); border-radius: 24px; background: var(--paper-strong); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.audit-card::before, .audit-card::after { content: ""; position: absolute; z-index: -1; border: 1px solid var(--line); border-radius: 24px; background: var(--paper-strong); inset: 11px -12px -11px 12px; }
.audit-card::after { opacity: .55; inset: 22px -24px -22px 24px; }
.audit-topline { display: flex; align-items: center; justify-content: space-between; padding-bottom: 19px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.local-pill { padding: 3px 8px; border-radius: 99px; background: var(--green-soft); color: var(--green-dark); }
.score-block { display: flex; align-items: center; gap: 20px; padding: 26px 0 23px; }
.score-ring { position: relative; width: 94px; height: 94px; flex: 0 0 94px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: radial-gradient(closest-side, var(--paper-strong) 79%, transparent 80% 99%), conic-gradient(var(--green) 74%, var(--green-soft) 0); }
.score-ring strong { font-size: 31px; line-height: 1; letter-spacing: -.06em; }
.score-ring span { color: var(--muted); font-size: 10px; }
.score-label { color: var(--green-dark); font-weight: 800; }
.score-block p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.audit-bars { display: grid; gap: 11px; }
.audit-bars div { display: grid; grid-template-columns: 110px 1fr 24px; gap: 8px; align-items: center; color: var(--muted); font-size: 10px; }
.audit-bars i { height: 6px; overflow: hidden; border-radius: 99px; background: #e7ebe6; }
.audit-bars b { display: block; height: 100%; border-radius: inherit; background: var(--green); }
.audit-bars strong { color: var(--ink); text-align: right; }
.priority-card { display: grid; grid-template-columns: auto 1fr auto; gap: 11px; align-items: center; margin-top: 23px; padding: 13px; border: 1px solid var(--line); border-radius: 12px; background: #f5f8f5; }
.priority-number { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 800; }
.priority-card strong { font-size: 11px; }
.priority-card p { margin: 1px 0 0; color: var(--muted); font-size: 9px; }
.impact { color: var(--green); font-size: 11px; font-weight: 800; }

.traffic-section { border-block: 1px solid var(--line); background: var(--ink); color: #fff; }
.traffic-section .eyebrow { color: var(--lime); }
.split-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: start; }
.split-intro h2 { max-width: 530px; margin-bottom: 0; }
.prose p { margin: 0 0 1.2em; }
.prose p:last-child { margin-bottom: 0; }
.large-prose { color: var(--muted); font-size: 18px; line-height: 1.8; }
.traffic-section .large-prose { color: #c5cec9; }
.section-title { margin-bottom: 54px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-block: 1px solid var(--line); }
.feature-grid article { position: relative; padding: 38px 36px 46px; border-right: 1px solid var(--line); }
.feature-grid article:first-child { padding-left: 0; }
.feature-grid article:last-child { padding-right: 0; border-right: 0; }
.feature-number { position: absolute; top: 20px; right: 20px; color: var(--line-strong); font-size: 12px; font-weight: 800; }
.feature-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; border-radius: 14px; background: var(--green-soft); color: var(--green); }
.bars-icon { gap: 4px; align-items: flex-end; padding-bottom: 12px; }
.bars-icon i { width: 5px; border-radius: 3px; background: currentColor; }
.bars-icon i:nth-child(1) { height: 9px; }.bars-icon i:nth-child(2) { height: 18px; }.bars-icon i:nth-child(3) { height: 13px; }
.edit-icon { font-size: 30px; }
.coexist-icon i { width: 20px; height: 20px; border: 3px solid currentColor; border-radius: 6px; }
.coexist-icon i + i { margin-left: -7px; background: var(--green-soft); }
.feature-grid h3 { max-width: 300px; margin-bottom: 17px; }
.feature-grid p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

.compare-section { background: #ebece5; }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 50px; margin-bottom: 42px; }
.section-heading-row h2 { margin-bottom: 0; }
.section-heading-row > p { max-width: 440px; margin: 0 0 5px; color: var(--muted); }
.table-wrap { overflow-x: auto; border: 1px solid var(--line-strong); border-radius: var(--radius); background: var(--paper-strong); }
table { width: 100%; min-width: 650px; border-collapse: collapse; }
th, td { padding: 15px 22px; border-bottom: 1px solid var(--line); }
thead th { padding-block: 20px; background: #f6f6f1; color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
th:first-child { text-align: left; }
thead th:not(:first-child), td { width: 130px; text-align: center; }
tbody th { color: #39453f; font-size: 14px; font-weight: 550; }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: 0; }
.pro-column { background: rgba(220, 236, 227, .45); }
thead .pro-column span { display: inline-block; padding: 2px 10px; border-radius: 99px; background: var(--green); color: #fff; }
.check { width: 24px; height: 24px; display: inline-grid; place-items: center; border-radius: 50%; background: var(--green-soft); color: var(--green-dark); font-weight: 900; }
.dash { color: #9aa49e; }
.honesty-note { display: grid; grid-template-columns: auto 1fr; gap: 12px; margin: 22px 0 0; color: var(--muted); font-size: 13px; }
.honesty-note > span { width: 21px; height: 21px; display: grid; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--green); font-weight: 800; }

.audience-section .eyebrow { justify-content: center; }
.audience-section h2 { margin-bottom: 35px; text-align: center; }
.promise-section { background: #e1eee5; }
.promise-inner { display: grid; grid-template-columns: 170px 1fr; gap: 60px; max-width: 980px; }
.promise-mark { width: 150px; height: 150px; display: grid; place-items: center; border: 1px solid rgba(31,115,84,.3); border-radius: 50%; color: var(--green); font-family: Georgia, serif; font-size: 80px; }
.promise-section h2 { margin-bottom: 26px; }
.promise-section .large-prose { color: #3d5147; }

.faq-layout { display: grid; grid-template-columns: 330px 1fr; gap: 100px; align-items: start; }
.faq-heading { position: sticky; top: 30px; }
.faq-list article { padding: 0 0 31px; margin-bottom: 31px; border-bottom: 1px solid var(--line); }
.faq-list article:last-child { margin-bottom: 0; }
.faq-list h3 { margin-bottom: 13px; font-size: 21px; }
.faq-list p { margin: 0; color: var(--muted); }

.signup-section { background: var(--ink); color: #fff; }
.signup-section .eyebrow { color: var(--lime); }
.signup-inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.signup-inner h2 { margin-bottom: 18px; }
.signup-inner > div > p:last-child { max-width: 500px; color: #bdc7c1; }
.signup-section .form-row input { border-color: #52625a; background: #24342c; color: #fff; }
.signup-section .form-row button { border-color: var(--lime); background: var(--lime); color: #153225; }
.signup-section .form-row button:hover { background: #d7f5a1; }
.signup-section .privacy-line { margin: 11px 0 0; color: #99a69f; font-size: 12px; }
.signup-section .privacy-line a { color: #d6ded9; }
.signup-section .form-status.is-success { color: var(--lime); }
.signup-section .form-status.is-error { color: #ffaaa4; }

.site-footer { padding: 60px 0 25px; background: #111a16; color: #b9c4be; }
.footer-main { display: flex; justify-content: space-between; gap: 50px; padding-bottom: 50px; }
.footer-brand { margin-bottom: 20px; color: #fff; }
.footer-main p { margin: 5px 0; font-size: 13px; }
.footer-main p a { text-underline-offset: 3px; }
.footer-main nav { display: flex; align-items: start; gap: 25px; }
.footer-main nav a { color: #d9dfdc; font-size: 14px; text-underline-offset: 4px; }
.footer-meta { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid #2b3731; color: #829087; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }

.simple-page main { min-height: calc(100vh - 300px); }
.simple-hero { padding: 105px 0 55px; }
.simple-hero h1 { max-width: 760px; font-size: clamp(42px, 6vw, 68px); }
.simple-content { max-width: 760px; padding-bottom: 110px; }
.simple-content h2 { margin: 52px 0 15px; font-size: 29px; }
.simple-content p, .simple-content li { color: var(--muted); font-size: 17px; }
.simple-content a { color: var(--green); }
.error-layout { min-height: calc(100vh - 220px); display: grid; place-content: center; padding: 90px 20px; text-align: center; }
.error-code { margin: 0; color: var(--green); font-family: Georgia, serif; font-size: 120px; line-height: 1; }
.error-layout h1 { margin: 10px 0 20px; font-size: 50px; }
.error-layout p { max-width: 520px; margin: 0 auto 27px; color: var(--muted); font-size: 18px; }
.error-layout .button { border-radius: 10px; }

@media (max-width: 950px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .audit-card { width: min(100%, 580px); margin: 0 auto; transform: none; }
  .split-intro, .signup-inner { grid-template-columns: 1fr; gap: 45px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article, .feature-grid article:first-child, .feature-grid article:last-child { padding: 34px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .feature-grid article:last-child { border-bottom: 0; }
  .feature-number { right: 5px; }
  .faq-layout { grid-template-columns: 1fr; gap: 45px; }
  .faq-heading { position: static; }
}

@media (max-width: 690px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section-pad { padding: 74px 0; }
  .header-inner { min-height: 66px; }
  .header-inner nav a { display: none; }
  .header-inner nav a:last-child { display: inline; }
  .hero { padding-top: 55px; padding-bottom: 70px; gap: 52px; }
  .answer-capsule { padding-inline: 20px; }
  .hero-actions { display: block; }
  .text-link { display: inline-block; margin-top: 16px; }
  .form-row { display: grid; gap: 9px; }
  .form-row input[type="email"], .form-row button { width: 100%; border: 1px solid var(--line-strong); border-radius: 9px; }
  .audit-card { padding: 20px; }
  .audit-card::before, .audit-card::after { display: none; }
  .score-ring { width: 80px; height: 80px; flex-basis: 80px; }
  .audit-bars div { grid-template-columns: 95px 1fr 24px; }
  .section-heading-row { display: block; }
  .section-heading-row > p { margin-top: 20px; }
  th, td { padding-inline: 15px; }
  .promise-inner { grid-template-columns: 1fr; gap: 25px; }
  .promise-mark { width: 80px; height: 80px; font-size: 46px; }
  .footer-main { display: block; }
  .footer-main nav { margin-top: 30px; flex-wrap: wrap; }
  .footer-meta { display: grid; gap: 8px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #121a16;
    --paper-strong: #19231e;
    --ink: #eef3ef;
    --muted: #abb8b0;
    --line: #35423b;
    --line-strong: #506159;
    --green: #72c99d;
    --green-dark: #9fe3c1;
    --green-soft: #243d31;
    --shadow: 0 24px 70px rgba(0,0,0,.35);
  }
  .answer-capsule { background: rgba(25, 35, 30, .86); }
  .answer-capsule p { color: #c5d0ca; }
  .form-row button, .button { color: #10231a; }
  .priority-card, thead th { background: #1f2b25; }
  .audit-bars i { background: #2b3b33; }
  .compare-section { background: #101713; }
  .pro-column { background: rgba(55, 103, 78, .22); }
  tbody th { color: #d5ddd8; }
  .promise-section { background: #1b3026; }
  .promise-section .large-prose { color: #c2cec7; }
  .signup-section, .traffic-section { background: #0d1411; }
  .form-status.is-error { color: #ffaaa4; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
