:root {
  --ink: #14201c;
  --muted: #596761;
  --paper: #f6f2e9;
  --paper-deep: #eee7da;
  --white: #fffdf9;
  --line: #d7ddd8;
  --green: #12382d;
  --green-deep: #0b2a22;
  --green-mid: #245b49;
  --gold: #d7ae78;
  --gold-dark: #7b552d;
  --soft: #eaf1ec;
  --shadow: 0 24px 70px rgba(12, 40, 32, .14);
  --shadow-small: 0 12px 35px rgba(12, 40, 32, .09);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
section[id] { scroll-margin-top: 84px; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.muted { color: var(--muted); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: 9px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  box-shadow: var(--shadow-small);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #d89545; outline-offset: 3px; }

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(20, 32, 28, .09);
  background: rgba(246, 242, 233, .94);
  backdrop-filter: blur(16px);
}
nav { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: #34233c; text-decoration: none; font-weight: 850; letter-spacing: -.02em; }
.brand-mark { width: 36px; height: 36px; display: block; object-fit: contain; border: 1px solid rgba(52, 35, 60, .14); border-radius: 11px; background: #fff8f1; padding: 5px; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; }
.nav-links a, .nav-login { color: #34423c; text-decoration: none; }
.nav-links a:hover, .nav-login:hover { color: var(--green-mid); }
.nav-actions { display: flex; align-items: center; gap: 14px; font-size: 14px; }

.btn {
  min-height: 46px;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 9px 24px rgba(20, 32, 28, .1); }
.btn.primary { border-color: var(--green); background: var(--green); color: white; }
.btn.gold { border-color: var(--gold); background: var(--gold); color: #15251f; }
.btn.dark-outline { border-color: rgba(255, 255, 255, .36); background: transparent; color: white; }
.btn.secondary { border-color: #aeb7b2; background: transparent; }
.btn.small { min-height: 40px; padding: 8px 14px; font-size: 13px; }
.btn:disabled { cursor: wait; opacity: .65; }
.text-link { display: inline-block; margin-top: 18px; color: var(--green-mid); font-weight: 850; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.light-link { color: #f2d4aa; }

h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.035em; }
h1 { max-width: 720px; font-size: clamp(50px, 6vw, 78px); line-height: .99; }
h2 { font-size: clamp(36px, 4.5vw, 56px); line-height: 1.04; }
h3 { font-size: 25px; line-height: 1.18; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 20px; color: var(--gold-dark); font-size: 11px; font-weight: 900; letter-spacing: .14em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 1px; background: currentColor; content: ""; }
.eyebrow.light { color: #f0cea2; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 74px;
  background:
    radial-gradient(circle at 82% 15%, rgba(212, 172, 119, .2), transparent 31%),
    radial-gradient(circle at 7% 92%, rgba(75, 138, 112, .2), transparent 30%),
    var(--green-deep);
  color: white;
}
.hero::after { position: absolute; inset: 0; pointer-events: none; opacity: .17; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; content: ""; mask-image: linear-gradient(to bottom, black, transparent 85%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.03fr .97fr; gap: 60px; align-items: center; }
.hero-copy > p:not(.cta-note) { max-width: 670px; margin: 25px 0 28px; color: #d4e0da; font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-note { margin: 13px 0 0; color: #aebfb7; font-size: 12px; }
.trustline { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 23px; color: #c7d4ce; font-size: 12px; }
.trustline span::before { margin-right: 6px; color: #efd1a9; font-weight: 900; content: "✓"; }

.product-shell { transform: rotate(1deg); border: 1px solid rgba(255, 255, 255, .16); border-radius: 30px; background: rgba(255, 255, 255, .08); padding: 14px; box-shadow: 0 34px 90px rgba(0, 0, 0, .3); }
.product-card { overflow: hidden; border: 1px solid #dde3de; border-radius: 20px; background: white; color: var(--ink); }
.demo-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid #edf0ed; padding: 15px 18px; }
.demo-brand { font-weight: 850; }
.demo-brand small { color: #6a756f; font-weight: 500; }
.demo-chip { border-radius: 999px; background: #e9f1ec; color: var(--green-mid); padding: 6px 9px; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.demo-body { padding: 24px; }
.demo-progress { display: flex; gap: 5px; margin-bottom: 22px; }
.demo-progress i { height: 4px; flex: 1; border-radius: 999px; background: #e5e8e6; }
.demo-progress i.on { background: var(--green); }
.demo-question { margin-bottom: 8px; font: 500 27px/1.1 Georgia, serif; letter-spacing: -.025em; }
.demo-sub { margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.demo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-bottom: 9px; }
.demo-option { border: 1px solid #dfe5e1; border-radius: 12px; padding: 12px; font-size: 13px; }
.demo-option.selected { border-color: var(--green); background: #f0f5f1; }
.estimate { margin-top: 14px; border-radius: 14px; background: var(--green); color: white; padding: 17px; }
.estimate small { display: block; margin-bottom: 4px; opacity: .78; }
.estimate b { display: block; margin: 2px 0 4px; font: 500 31px/1.1 Georgia, serif; }
.handoff-mini { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; margin-top: 11px; }
.handoff-mini span { display: flex; align-items: center; gap: 6px; border: 1px solid #dde4df; border-radius: 9px; padding: 8px; color: #53605a; font-size: 10px; font-weight: 800; }
.handoff-mini i { width: 18px; height: 18px; flex: 0 0 18px; display: grid; place-items: center; border-radius: 50%; background: var(--soft); color: var(--green-mid); font-style: normal; font-size: 9px; }

.proof-bar { border-bottom: 1px solid var(--line); background: #e7ede8; }
.proof-grid { min-height: 84px; display: grid; grid-template-columns: minmax(250px, 1.35fr) repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 0; font-size: 12px; }
.proof-grid strong, .proof-grid span { display: flex; align-items: center; }
.proof-grid strong { padding-right: 28px; color: var(--green); font-size: 14px; line-height: 1.4; }
.proof-grid span { border-left: 1px solid #c8d3cc; padding: 18px 22px; color: #4e5d56; line-height: 1.45; }

.compatibility-bar { border-bottom: 1px solid var(--line); background: var(--white); }
.compatibility-grid { min-height: 68px; display: grid; grid-template-columns: max-content repeat(6, max-content); align-items: center; justify-content: center; gap: 10px; color: #5b6862; font-size: 11px; }
.compatibility-grid strong { margin-right: 8px; color: var(--ink); font-size: 12px; }
.compatibility-grid span { border: 1px solid #d8dfda; border-radius: 999px; background: #f7f8f5; padding: 6px 11px; font-weight: 750; }

.section { padding: 96px 0; }
.section.alt { background: var(--white); }
.section-head { max-width: 800px; margin-bottom: 45px; }
.section-head p, .lead-copy { margin: 16px 0 0; color: var(--muted); font-size: 18px; }
.split-head { max-width: none; display: grid; grid-template-columns: minmax(0, 1fr) 270px; gap: 70px; align-items: end; }
.split-head > div:first-child { max-width: 790px; }

.demo-section { background: #f2eee5; }
.demo-facts { display: grid; gap: 8px; border-left: 1px solid #cdd4cf; padding-left: 24px; color: var(--muted); font-size: 12px; }
.demo-facts span::before { margin-right: 7px; color: var(--green-mid); content: "✓"; font-weight: 900; }
.demo-facts a { margin-top: 4px; color: var(--green); font-weight: 850; text-underline-offset: 3px; }
.live-demo-shell { overflow: hidden; border: 1px solid #cbd4ce; border-radius: 27px; background: white; box-shadow: var(--shadow); content-visibility: auto; contain-intrinsic-size: 900px; }
.live-demo-bar { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 18px; background: var(--green); color: white; padding: 14px 22px; font-size: 12px; }
.live-demo-bar span { display: flex; align-items: center; gap: 8px; color: #cce0d6; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.live-demo-bar i { width: 8px; height: 8px; border-radius: 50%; background: #80d5a6; box-shadow: 0 0 0 4px rgba(128, 213, 166, .14); }
.live-demo-shell [data-eventquote] { min-height: 650px; }

.outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.outcome-card { min-height: 470px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.outcome-card.featured { border-color: var(--green); background: var(--green); color: white; box-shadow: var(--shadow-small); }
.outcome-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #d9d2c5; }
.outcome-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.outcome-card:first-child .outcome-media img { object-position: 54% 52%; }
.outcome-card:nth-child(2) .outcome-media img { object-position: 50% 48%; }
.outcome-card:nth-child(3) .outcome-media img { object-position: 55% 52%; }
.outcome-copy { min-height: 245px; display: flex; flex: 1; flex-direction: column; justify-content: flex-end; padding: 28px; }
.outcome-copy > span, .card-kicker, .price-label, .implementation-details > div > span { margin-bottom: auto; color: var(--gold-dark); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.outcome-card.featured .outcome-copy > span { color: #f1cca0; }
.outcome-card p { margin: 12px 0 0; color: var(--muted); }
.outcome-card.featured p { color: #cbd9d2; }

.flow { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; margin: 0; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; background: var(--line); padding: 0; list-style: none; }
.flow li { min-height: 210px; display: flex; flex-direction: column; background: var(--white); padding: 25px 22px; }
.flow li::after { position: absolute; transform: translateX(14px); color: #99aaa1; content: "→"; }
.flow li:last-child::after { display: none; }
.flow li > span { color: var(--gold-dark); font-size: 11px; font-weight: 900; letter-spacing: .1em; }
.flow strong { margin-top: auto; font: 500 21px/1.15 Georgia, serif; letter-spacing: -.025em; }
.flow small { margin-top: 8px; color: var(--muted); line-height: 1.5; }
.flow-summary { max-width: 920px; margin: 24px auto 0; color: var(--muted); text-align: center; }
.flow-summary strong { color: var(--green); }

.comparison-head { max-width: 1000px; margin-bottom: 34px; }
.comparison-head h2 { max-width: 970px; text-wrap: balance; }
.comparison-head h2 span { display: block; }
.comparison-head p { max-width: 760px; }
.comparison { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: white; box-shadow: var(--shadow-small); }
.compare-panel { min-width: 0; display: flex; flex-direction: column; padding: 38px; }
.compare-panel-before { border-right: 1px solid var(--line); background: #eeece6; }
.compare-panel-after { background: linear-gradient(145deg, #edf4ef 0%, #fffdf9 72%); }
.compare-label { color: var(--gold-dark); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.compare-panel-after .compare-label { color: var(--green-mid); }
.comparison h3 { margin: 8px 0 8px; font-size: 31px; line-height: 1.14; }
.compare-list { display: grid; margin: 12px 0 0; padding: 0; list-style: none; }
.compare-item { min-width: 0; display: flex; align-items: flex-start; gap: 13px; border-top: 1px solid rgba(20, 32, 28, .1); padding: 18px 0; color: #4b5752; }
.compare-copy { min-width: 0; }
.compare-copy strong { display: block; color: var(--ink); line-height: 1.35; }
.compare-copy p { margin: 4px 0 0; line-height: 1.5; }
.x, .check { width: 25px; height: 25px; flex: 0 0 25px; display: grid; place-items: center; border-radius: 50%; font-size: 12px; font-weight: 900; }
.x { background: #e2dfd8; color: #6d675d; }
.check { background: #dfece4; color: var(--green); }

.fit-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.fit-copy p { color: var(--muted); font-size: 17px; }
.fit-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fit-card { border: 1px solid var(--line); border-radius: 22px; background: var(--white); padding: 26px; }
.fit-card.good { border-color: #b8d1c1; background: var(--soft); }
.fit-card h3 { font-size: 23px; }
.fit-card ul, .included-card ul, .implementation-details ul, .audit-copy ul { margin: 19px 0 0; padding: 0; list-style: none; }
.fit-card li, .included-card li, .implementation-details li, .audit-copy li { position: relative; margin-top: 11px; padding-left: 20px; color: var(--muted); font-size: 14px; }
.fit-card li::before, .included-card li::before, .implementation-details li::before, .audit-copy li::before { position: absolute; left: 0; color: var(--green-mid); font-weight: 900; content: "✓"; }
.fit-card:not(.good) li::before { color: #8d765c; content: "·"; }

.pricing-section { background: var(--green-deep); color: white; }
.light-head p { color: #b9cac2; }
.pricing-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; align-items: stretch; }
.price-card { border: 1px solid rgba(255, 255, 255, .15); border-radius: 28px; background: #164235; padding: 36px; box-shadow: 0 24px 70px rgba(0, 0, 0, .19); }
.price-label { color: #f1cca0; }
.price-main { margin: 18px 0 10px; font: 500 clamp(58px, 7vw, 82px)/.95 Georgia, serif; letter-spacing: -.04em; }
.price-main small { font: 700 13px/1.2 Inter, sans-serif; opacity: .75; letter-spacing: 0; }
.price-lead { color: #c7d6cf; }
.renewal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 22px 0; }
.renewal-grid div { border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; background: rgba(255, 255, 255, .05); padding: 15px; }
.renewal-grid strong, .renewal-grid span { display: block; }
.renewal-grid strong { font-size: 18px; }
.renewal-grid span { margin-top: 4px; color: #b8cbc2; font-size: 11px; }
.price-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 25px; }
.price-badges span { border-radius: 999px; background: rgba(255, 255, 255, .08); color: #d7e2dd; padding: 6px 10px; font-size: 10px; font-weight: 800; }
.terms { color: #aebfb7; font-size: 11px; line-height: 1.55; }
.included-card { display: flex; flex-direction: column; border: 1px solid rgba(255, 255, 255, .14); border-radius: 28px; background: rgba(255, 255, 255, .06); padding: 34px; }
.included-card .card-kicker { color: #f1cca0; }
.included-card h3 { margin: 14px 0 8px; font-size: 35px; }
.included-card li { color: #c9d7d0; }
.included-card li::before { color: #f1cca0; }
.included-card .text-link { margin-top: auto; padding-top: 25px; }
.roi-card { display: grid; grid-template-columns: .8fr 1fr .7fr; gap: 26px; align-items: center; margin-top: 18px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 22px; background: rgba(255, 255, 255, .04); padding: 24px; }
.roi-card .card-kicker { display: block; color: #f1cca0; }
.roi-card h3 { margin-top: 8px; font-size: 26px; }
.roi-card p { margin: 8px 0 0; color: #aebfb7; font-size: 11px; }
.roi-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.roi-inputs label { color: #c7d6cf; font-size: 10px; font-weight: 800; }
.roi-inputs label span { display: none; }
.roi-inputs input { width: 100%; margin-top: 6px; border: 1px solid #4e7063; border-radius: 10px; background: #0e3027; color: white; padding: 11px; }
.roi-card output { border-left: 1px solid rgba(255, 255, 255, .16); padding-left: 24px; color: #f1d7b5; font: 500 21px/1.3 Georgia, serif; }

.implementation-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; }
.implementation-details { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.implementation-details > div { border: 1px solid var(--line); border-radius: 20px; background: var(--paper); padding: 24px; }
.implementation-details > div > span { display: block; color: var(--gold-dark); }
.implementation-details li { font-size: 13px; }
.live-definition { grid-column: 1 / -1; margin: 0; border-left: 4px solid var(--gold-dark); border-radius: 0 14px 14px 0; background: #eee5d7; padding: 18px 20px; color: #4f5c56; }
.live-definition strong { color: var(--ink); }
.implementation-steps { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 0; padding: 0; list-style: none; }
.implementation-steps li { display: flex; align-items: flex-start; gap: 12px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); padding: 16px; }
.implementation-steps li > span { width: 27px; height: 27px; flex: 0 0 27px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 11px; font-weight: 900; }
.implementation-steps strong, .implementation-steps small { display: block; }
.implementation-steps strong { font-size: 13px; line-height: 1.35; }
.implementation-steps small { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.trust-panel { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center; border-radius: 30px; background: var(--green); color: white; padding: 48px; box-shadow: var(--shadow); }
.trust-panel p { max-width: 790px; margin: 16px 0 0; color: #c6d6ce; font-size: 17px; }
.trust-actions { display: grid; gap: 10px; min-width: 240px; }

.audit-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.audit-copy p { color: var(--muted); font-size: 17px; }
.audit-card { border: 1px solid var(--line); border-radius: 28px; background: white; padding: 34px; box-shadow: var(--shadow-small); }
form { display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.field label { display: block; margin-bottom: 6px; color: #3e4c46; font-size: 12px; font-weight: 850; }
.field input, .field select, .field textarea { width: 100%; min-height: 47px; border: 1px solid #cbd4ce; border-radius: 11px; background: #fff; color: var(--ink); padding: 11px 13px; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(23, 63, 51, .1); }
.form-note { margin: 0; color: var(--muted); font-size: 11px; }
.form-status { min-height: 22px; font-size: 13px; font-weight: 750; }
.purchase-email-verification { display: grid; grid-template-columns: 1fr auto; gap: 12px 16px; align-items: center; border: 1px solid #cbd4ce; border-radius: 14px; background: #f2f6f3; padding: 16px; }
.purchase-email-verification strong { display: block; color: var(--green); }
.purchase-email-code { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; }
.purchase-email-code[hidden] { display: none; }
.purchase-email-verification .form-status { grid-column: 1 / -1; }
.purchase-email-verification[data-verified="true"] { border-color: #8fbaa3; background: #e8f2ec; }
.honeypot { position: absolute; left: -10000px; }

.faq { display: grid; grid-template-columns: .72fr 1.28fr; gap: 58px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
summary { display: flex; justify-content: space-between; gap: 20px; cursor: pointer; font-weight: 800; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { color: var(--green-mid); font-size: 20px; font-weight: 500; content: "+"; }
details[open] summary::after { content: "–"; }
details p { margin: 11px 35px 2px 0; color: var(--muted); }

.resources-section .section-head { max-width: 850px; }
.seo-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.seo-link { display: block; border: 1px solid var(--line); border-radius: 18px; background: white; padding: 23px; text-decoration: none; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.seo-link:hover { transform: translateY(-2px); border-color: #abc0b4; box-shadow: var(--shadow-small); }
.seo-link strong, .seo-link span { display: block; }
.seo-link span { margin-top: 6px; color: var(--muted); font-size: 13px; }

.cta { padding: 76px 0; background: var(--green-deep); color: white; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-box .card-kicker { display: block; margin-bottom: 11px; color: #f1cca0; }
.cta-box h2 { max-width: 750px; }

.footer { border-top: 1px solid var(--line); padding: 46px 0; color: var(--muted); font-size: 13px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; }
.footer-grid p { margin: 11px 0 0; }
.footer-links { max-width: 700px; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px 18px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.legal { max-width: 800px; margin-top: 24px; font-size: 10px; line-height: 1.55; }

/* Search-focused article pages */
.content-hero { padding: 78px 0 44px; }
.content-hero h1 { max-width: 920px; }
.content-hero p { max-width: 790px; color: var(--muted); font-size: 20px; }
.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 54px; align-items: start; }
.article { border: 1px solid var(--line); border-radius: 26px; background: #fff; padding: 40px; }
.article h2 { margin: 38px 0 15px; font-size: 36px; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin: 28px 0 9px; font: 800 20px/1.3 Inter, sans-serif; letter-spacing: -.02em; }
.article p, .article li { color: #46534d; }
.article ul, .article ol { padding-left: 22px; }
.article a { color: var(--green-mid); font-weight: 700; text-underline-offset: 3px; }
.answer-box { margin: 20px 0; border-left: 4px solid var(--green); border-radius: 0 14px 14px 0; background: #edf3ef; padding: 18px 20px; }
.answer-box strong { display: block; margin-bottom: 4px; }
.purchase-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 24px 0 30px; }
.purchase-facts div { border: 1px solid var(--line); border-radius: 14px; background: #f3f7f4; padding: 14px; }
.purchase-facts strong, .purchase-facts span { display: block; }
.purchase-facts strong { color: var(--green); font-size: 14px; }
.purchase-facts span { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.4; }
.checkout-path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin: 22px 0 28px; padding: 0; list-style: none; }
.checkout-path li { display: flex; align-items: flex-start; gap: 9px; border-radius: 14px; background: #f4f0e8; padding: 14px; }
.checkout-path li > span { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-size: 10px; font-weight: 900; }
.checkout-path strong, .checkout-path small { display: block; }
.checkout-path strong { color: var(--ink); font-size: 12px; line-height: 1.35; }
.checkout-path small { margin-top: 4px; color: var(--muted); font-size: 10px; line-height: 1.4; }
.sidebar-card { position: sticky; top: 94px; border-radius: 22px; background: var(--green); color: white; padding: 25px; }
.sidebar-card h3 { font-size: 28px; }
.sidebar-card p { opacity: .82; }
.sidebar-card .btn { width: 100%; margin-top: 12px; }
.table-scroll { overflow: auto; }
.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th, .data-table td { border-bottom: 1px solid var(--line); padding: 13px; text-align: left; vertical-align: top; }
.data-table th { color: var(--muted); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.breadcrumbs { margin-bottom: 20px; color: var(--muted); font-size: 12px; }
.breadcrumbs a { color: var(--green-mid); }

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .hero-grid, .fit-grid, .implementation-grid, .audit-layout { grid-template-columns: 1fr; }
  .comparison { grid-template-columns: 1fr; }
  .compare-panel-before { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-grid { gap: 54px; }
  .product-shell { width: min(720px, 100%); transform: none; }
  .proof-grid { min-height: 0; grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 18px 0 20px; }
  .proof-grid strong { grid-column: 1 / -1; padding: 0 0 10px; }
  .proof-grid span { padding: 4px 18px; }
  .proof-grid span:first-of-type { border-left: 0; padding-left: 0; }
  .compatibility-grid { grid-template-columns: repeat(6, max-content); padding: 14px 0 16px; row-gap: 10px; }
  .compatibility-grid strong { grid-column: 1 / -1; justify-self: center; margin-right: 0; }
  .flow { grid-template-columns: repeat(3, 1fr); }
  .flow li { min-height: 180px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .included-card .text-link { margin-top: 20px; }
  .roi-card { grid-template-columns: 1fr 1fr; }
  .roi-card output { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, .16); border-left: 0; padding: 18px 0 0; }
  .content-grid { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
}

@media (max-width: 760px) {
  .wrap { width: min(calc(100% - 28px), var(--max)); }
  nav { height: 64px; }
  .nav-login { display: none; }
  .nav-actions { margin-left: auto; }
  .hero { padding: 58px 0 50px; }
  .hero-grid { gap: 40px; }
  .hero-copy > p:not(.cta-note), .section-head p, .lead-copy, .content-hero p { font-size: 17px; }
  .hero-actions .btn { flex: 1 1 210px; }
  .trustline { display: grid; }
  .product-shell { padding: 9px; }
  .demo-body { padding: 18px; }
  .handoff-mini { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; gap: 7px; }
  .proof-grid strong { grid-column: auto; padding-bottom: 7px; }
  .proof-grid span { border-left: 0; padding: 0; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 34px; }
  .split-head { grid-template-columns: 1fr; gap: 25px; }
  .demo-facts { border-top: 1px solid #cdd4cf; border-left: 0; padding: 18px 0 0; }
  .live-demo-bar { align-items: flex-start; flex-direction: column; gap: 3px; }
  .outcome-grid, .flow, .fit-lists, .renewal-grid, .implementation-details, .implementation-steps, .purchase-facts, .checkout-path, .form-row, .faq, .seo-links, .purchase-email-verification, .purchase-email-code { grid-template-columns: 1fr; }
  .purchase-email-verification .btn, .purchase-email-code .btn { width: 100%; }
  .outcome-card { min-height: 0; }
  .outcome-media { aspect-ratio: 16 / 9; }
  .outcome-copy { min-height: 230px; padding: 24px; }
  .flow li { min-height: 145px; }
  .flow li::after { display: none; }
  .comparison-head { margin-bottom: 28px; }
  .comparison-head h2 span { display: inline; }
  .compare-panel { padding: 25px; }
  .comparison h3 { font-size: 27px; }
  .compare-item { padding: 16px 0; }
  .price-card, .included-card, .audit-card, .article { padding: 24px; }
  .price-main small { display: block; margin-top: 9px; }
  .roi-card { grid-template-columns: 1fr; }
  .roi-inputs { grid-template-columns: 1fr 1fr; }
  .implementation-grid, .fit-grid, .audit-layout { gap: 38px; }
  .trust-panel { grid-template-columns: 1fr; gap: 28px; padding: 31px; }
  .trust-actions { min-width: 0; }
  .cta-box { align-items: flex-start; flex-direction: column; }
  .footer-grid { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
  .content-hero { padding-top: 58px; }
  .compatibility-grid { display: flex; justify-content: flex-start; flex-wrap: wrap; padding: 15px 0; }
  .compatibility-grid strong { flex: 1 0 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 45px; }
  h2 { font-size: 36px; }
  .brand-mark { width: 32px; height: 32px; }
  .nav-actions .btn { min-height: 38px; padding: 8px 11px; font-size: 11px; }
  .demo-row, .roi-inputs { grid-template-columns: 1fr; }
  .price-main { font-size: 55px; }
  .live-demo-shell { margin-inline: -6px; border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
