:root {
  --ink: #2d3c2f;
  --ink-soft: #626b66;
  --paper: #f1f0ec;
  --surface: #fcfbf8;
  --line: #c9cec8;
  --line-strong: #87918a;
  --brand: #487151;
  --brand-dark: #35573d;
  --mint: #d7e0d7;
  --sky: #d2dadd;
  --olive: #80866e;
  --mineral: #5a6872;
  --accent: #b45b47;
  --accent-dark: #8f4636;
  --focus: #315c72;
  --charcoal: #2d3c2f;
  --success: #2e6b4f;
  --danger: #a23d34;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-sm: 0 8px 28px rgba(45, 60, 47, 0.08);
  --shadow-lg: 0 22px 60px rgba(45, 60, 47, 0.12);
  --wrap: 1180px;
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { touch-action: manipulation; }

.ci-skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
}
.ci-skip-link:focus { transform: translateY(0); }
.ci-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.ci-wrap { width: min(calc(100% - 40px), var(--wrap)); margin-inline: auto; }
.ci-narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.ci-section { padding: 72px 0; }
.ci-section-sm { padding: 48px 0; }
.ci-band-mint { background: var(--mint); }
.ci-band-sky { background: var(--sky); }
.ci-band-white { background: var(--surface); }
.ci-band-dark { background: var(--charcoal); color: #fff; }
.ci-anchor { scroll-margin-top: 112px; }

.ci-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
.ci-eyebrow::before {
  width: 20px;
  height: 3px;
  background: var(--accent);
  content: "";
}
.ci-band-dark .ci-eyebrow { color: #d7e4da; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
}
h1 { max-width: 850px; margin-bottom: 20px; font-size: 66px; }
h2 { max-width: 820px; margin-bottom: 20px; font-size: 44px; }
h3 { margin-bottom: 10px; font-family: var(--font-body); font-size: 24px; font-weight: 700; line-height: 1.22; }
.ci-lead { max-width: 720px; color: var(--ink-soft); font-size: 20px; line-height: 1.62; }
.ci-copy { max-width: 690px; color: var(--ink-soft); }
.ci-muted { color: var(--ink-soft); }
.ci-meta { color: var(--ink-soft); font-size: 13px; }

.ci-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}
.ci-btn:hover { background: #eef1ee; }
.ci-btn:focus-visible, .ci-choice:focus-visible, .ci-nav-toggle:focus-visible, summary:focus-visible, input:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}
.ci-btn-primary { border-color: var(--accent); background: var(--accent); color: #fff; }
.ci-btn-primary:hover { border-color: var(--accent-dark); background: var(--accent-dark); color: #fff; }
.ci-btn-brand { border-color: var(--brand); background: var(--brand); color: #fff; }
.ci-btn-brand:hover { border-color: var(--brand-dark); background: var(--brand-dark); }
.ci-btn-light { border-color: #fff; background: #fff; color: var(--ink); }
.ci-btn-light:hover { background: var(--sky); }
.ci-btn-link { min-height: 44px; padding-inline: 0; border-color: transparent; text-decoration: underline; text-underline-offset: 4px; }
.ci-btn-link:hover { background: transparent; color: var(--brand); }
.ci-btn[disabled] { cursor: not-allowed; opacity: 0.45; }
.ci-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.ci-announcement { background: var(--ink); color: #fff; font-size: 13px; }
.ci-announcement .ci-wrap { display: flex; min-height: 36px; align-items: center; justify-content: center; gap: 18px; text-align: center; }
.ci-announcement span + span::before { margin-right: 18px; color: var(--accent); content: "/"; }

.ci-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(45, 60, 47, 0.12);
  background: rgba(241, 240, 236, 0.97);
  backdrop-filter: blur(14px);
}
.ci-header-row { display: grid; min-height: 76px; grid-template-columns: 210px 1fr auto; align-items: center; gap: 28px; }
.ci-brand { display: inline-flex; align-items: center; text-decoration: none; }
.ci-brand img { width: 166px; height: auto; }
.ci-main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; }
.ci-main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.ci-main-nav a:hover, .ci-main-nav a[aria-current="page"] { border-color: var(--accent); }
.ci-nav-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; cursor: pointer; }
.ci-nav-toggle span, .ci-nav-toggle::before, .ci-nav-toggle::after { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--ink); content: ""; }
.ci-nav-toggle[aria-expanded="true"] span { opacity: 0; }
.ci-nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.ci-nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }
.ci-nav-toggle span, .ci-nav-toggle::before, .ci-nav-toggle::after { transition: opacity 160ms ease, transform 160ms ease; }

.ci-hero { padding: 56px 0 64px; }
.ci-hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr); align-items: center; gap: 40px; }
.ci-hero h1 { max-width: 760px; }
.ci-hero-visual { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-md); background: var(--sky); box-shadow: var(--shadow-lg); }
.ci-hero-visual > img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; object-position: center 26%; }
.ci-visual-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(23, 35, 33, 0.91);
  color: #fff;
  font-size: 13px;
}
.ci-visual-label strong { font-size: 15px; }

.ci-proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.ci-proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ci-proof-item { min-height: 108px; padding: 20px 26px; border-right: 1px solid var(--line); }
.ci-proof-item:last-child { border-right: 0; }
.ci-proof-value { display: block; margin-bottom: 4px; font-family: var(--font-display); font-size: 34px; font-weight: 700; line-height: 1; }
.ci-proof-value .ci-star { color: var(--accent); }
.ci-proof-label { color: var(--ink-soft); font-size: 13px; font-weight: 700; }

.ci-scene-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; align-items: start; gap: 56px; }
.ci-scene-copy { position: sticky; top: 120px; }
.ci-moment-list { border-top: 1px solid rgba(45, 60, 47, 0.2); }
.ci-moment { display: grid; grid-template-columns: 108px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid rgba(45, 60, 47, 0.2); }
.ci-moment time { color: var(--brand-dark); font-size: 13px; font-weight: 700; text-transform: uppercase; }
.ci-moment strong { display: block; margin-bottom: 6px; font-family: var(--font-body); font-size: 21px; font-weight: 700; line-height: 1.25; }
.ci-moment p { margin-bottom: 0; color: var(--ink-soft); }

.ci-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 36px; background: rgba(255,255,255,0.25); }
.ci-step { min-height: 250px; padding: 30px; background: var(--charcoal); }
.ci-step-number { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 34px; border: 1px solid var(--line-strong); border-radius: 50%; color: #d7e4da; font-weight: 700; }
.ci-step p { margin-bottom: 0; color: #cbd3ce; }

.ci-method-table-wrap, .ci-product-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-sm); }
.ci-method-table, .ci-product-table { width: 100%; min-width: 760px; border-collapse: collapse; }
.ci-method-table th, .ci-method-table td, .ci-product-table th, .ci-product-table td { padding: 18px 22px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.ci-method-table thead th, .ci-product-table thead th { background: var(--ink); color: #fff; }
.ci-method-table th:first-child, .ci-product-table th:first-child { width: 28%; }
.ci-method-table td:last-child { background: #edf3ee; color: var(--brand-dark); font-weight: 700; }
.ci-method-table tr:last-child td, .ci-product-table tr:last-child td { border-bottom: 0; }
.ci-table-note { margin-top: 14px; color: var(--ink-soft); font-size: 13px; }

.ci-product-head { display: grid; grid-template-columns: 170px 1fr; align-items: center; gap: 18px; }
.ci-product-head img { width: 170px; aspect-ratio: 1 / 1; object-fit: contain; background: #f3f5f3; }
.ci-product-head strong { display: block; margin-bottom: 4px; font-size: 18px; }
.ci-product-head span { color: #d7ddd9; font-size: 12px; }
.ci-product-table td:not(:first-child) { width: 36%; }
.ci-product-table td:first-child { color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.ci-product-table td:nth-child(2) { background: #eef2ef; }
.ci-product-table .ci-table-actions td { padding-block: 22px; }
.ci-check { color: var(--brand); font-weight: 700; }
.ci-dash { color: var(--line-strong); }

.ci-quote-band { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 68px; align-items: center; }
.ci-quote-band h2 { margin-bottom: 0; }
.ci-question-stack { display: grid; gap: 1px; background: rgba(255,255,255,0.34); }
.ci-question-line { padding: 18px 22px; background: var(--sky); font-family: var(--font-body); font-size: 20px; font-weight: 700; line-height: 1.35; }

.ci-faq-preview { border-top: 1px solid var(--line); }
.ci-faq-preview details, .ci-faq-list details { border-bottom: 1px solid var(--line); }
details summary { position: relative; min-height: 64px; display: flex; align-items: center; padding: 15px 54px 15px 0; cursor: pointer; font-family: var(--font-body); font-size: 18px; font-weight: 700; line-height: 1.35; list-style: none; }
details summary::-webkit-details-marker { display: none; }
details summary::after { position: absolute; right: 6px; width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; content: "+"; font-family: var(--font-body); font-size: 18px; }
details[open] summary::after { content: "-"; }
.ci-faq-answer { max-width: 850px; padding: 0 54px 24px 0; color: var(--ink-soft); }
.ci-faq-answer p:last-child { margin-bottom: 0; }
.ci-inline-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.ci-inline-links a { color: var(--brand-dark); font-size: 13px; font-weight: 700; text-underline-offset: 4px; }

.ci-cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 36px; padding: 40px; border-radius: var(--radius-md); background: var(--ink); color: #fff; }
.ci-cta-panel h2 { max-width: 720px; margin-bottom: 14px; }
.ci-cta-panel p { max-width: 680px; margin-bottom: 0; color: #d3d9d5; }
.ci-cta-panel .ci-actions { margin-top: 0; justify-content: flex-end; }

.ci-page-hero { padding: 64px 0 48px; }
.ci-page-hero h1 { max-width: 920px; }
.ci-page-hero-split { display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: end; gap: 40px; }
.ci-page-hero-aside { padding: 22px; border-left: 5px solid var(--accent); background: var(--surface); }
.ci-page-hero-aside strong { display: block; margin-bottom: 6px; font-family: var(--font-body); font-size: 20px; font-weight: 700; }
.ci-page-hero-aside p { margin: 0; color: var(--ink-soft); font-size: 14px; }

.ci-finder-shell { min-height: 590px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--surface); box-shadow: var(--shadow-lg); }
.ci-finder-top { display: grid; grid-template-columns: 1fr auto; gap: 20px; margin-bottom: 30px; }
.ci-progress-track { grid-column: 1 / -1; height: 7px; overflow: hidden; border-radius: 4px; background: #d7dcd8; }
.ci-progress-bar { width: 0; height: 100%; background: var(--accent); transition: transform 280ms ease, width 280ms ease; }
.ci-finder-meta { color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.ci-finder-stage { min-height: 430px; }
.ci-finder-screen { display: none; min-height: 430px; animation: ciFadeUp 260ms ease both; }
.ci-finder-screen.active { display: flex; flex-direction: column; }
.ci-finder-screen.is-leaving { opacity: 0; transform: translateY(-8px); transition: opacity 180ms ease, transform 180ms ease; }
.ci-finder-screen h1, .ci-finder-screen h2 { max-width: 900px; font-size: 48px; }
.ci-finder-start .ci-lead { max-width: 790px; }
.ci-finder-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 24px 0 0; background: var(--line); border: 1px solid var(--line); }
.ci-finder-proof div { min-height: 92px; padding: 16px; background: var(--surface); }
.ci-finder-proof strong { display: block; margin-bottom: 4px; font-family: var(--font-display); font-size: 30px; line-height: 1; }
.ci-finder-proof span { color: var(--ink-soft); font-size: 13px; font-weight: 700; }
.ci-question-kicker { margin-bottom: 14px; color: var(--brand); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.ci-choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 10px; margin-top: 24px; }
.ci-choice { min-height: 84px; display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 14px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); color: var(--ink); cursor: pointer; text-align: left; transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease; }
.ci-choice:hover { border-color: var(--brand); background: #edf3ee; box-shadow: 0 0 0 2px rgba(72,113,81,0.12); }
.ci-choice.is-selected { border-color: var(--brand); background: var(--mint); box-shadow: 0 0 0 2px rgba(72,113,81,0.16); }
.ci-choice-index { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); font-size: 12px; font-weight: 700; }
.ci-choice strong { display: block; margin-bottom: 2px; font-size: 15px; }
.ci-choice small { display: block; color: var(--ink-soft); font-size: 12px; }
.ci-finder-nav { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 26px; }
.ci-finder-nav[hidden] { display: none; }

.ci-result-grid { display: grid; grid-template-columns: 310px 1fr; align-items: center; gap: 34px; }
.ci-result-media { min-height: 410px; display: grid; place-items: center; overflow: hidden; border-radius: var(--radius-md); background: var(--sky); }
.ci-result-media img { width: 100%; height: 410px; object-fit: cover; object-position: center; }
.ci-result-copy h2 { margin-bottom: 16px; font-size: 42px; }
.ci-result-reasons { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 26px; }
.ci-result-reasons span { padding: 7px 10px; border-radius: 999px; background: var(--mint); color: var(--brand-dark); font-size: 12px; font-weight: 700; }
.ci-result-reasons .ci-confidence { background: var(--ink); color: #fff; }
.ci-market-row { display: flex; flex-wrap: wrap; gap: 10px; }

.ci-faq-tools { position: sticky; top: 96px; z-index: 30; padding: 18px 0 16px; background: var(--paper); }
.ci-search-wrap { position: relative; }
.ci-search-wrap svg { position: absolute; top: 50%; left: 17px; width: 20px; height: 20px; transform: translateY(-50%); color: var(--ink-soft); }
.ci-faq-search { width: 100%; min-height: 58px; padding: 14px 18px 14px 50px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; color: var(--ink); }
.ci-filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.ci-filter-chip { min-height: 40px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; cursor: pointer; font-size: 12px; font-weight: 700; }
.ci-filter-chip.active { border-color: var(--ink); background: var(--ink); color: #fff; }
.ci-faq-empty { padding: 40px 0; color: var(--ink-soft); }
.ci-input-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 14px 0 20px; border: 1px solid var(--line); }
.ci-input-column { padding: 22px; }
.ci-input-column + .ci-input-column { border-left: 1px solid var(--line); }
.ci-input-column h4 { margin: 0 0 10px; font-size: 14px; }
.ci-input-column ul { margin: 0; padding-left: 20px; color: var(--ink-soft); }

.ci-contact-hero { padding: 64px 0 30px; }
.ci-contact-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 56px; align-items: start; }
.ci-contact-intro { position: sticky; top: 118px; }
.ci-contact-routes { border-top: 1px solid var(--line); }
.ci-contact-route { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.ci-route-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--mint); color: var(--brand-dark); font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.ci-contact-route h3 { margin-bottom: 6px; font-size: 24px; }
.ci-contact-route p { max-width: 540px; margin-bottom: 0; color: var(--ink-soft); font-size: 14px; }
.ci-marketplace-band { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 28px; padding: 28px; border-radius: var(--radius-md); background: var(--sky); }
.ci-marketplace-band h3 { margin-bottom: 6px; }
.ci-marketplace-band p { margin-bottom: 0; color: var(--ink-soft); }

.ci-about-hero { padding: 70px 0 58px; background: var(--ink); color: #fff; }
.ci-about-hero .ci-lead { color: #d3d9d5; }
.ci-context-numbers { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 36px; border-top: 1px solid #64736a; }
.ci-context-number { min-height: 145px; padding: 24px 20px; border-right: 1px solid #64736a; }
.ci-context-number:last-child { border-right: 0; }
.ci-context-number strong { display: block; margin-bottom: 10px; color: #d7e4da; font-family: var(--font-display); font-size: 40px; line-height: 1; }
.ci-context-number span { color: #d3d9d5; font-size: 13px; }
.ci-editorial-split { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 56px; align-items: start; }
.ci-editorial-split > h2 { position: sticky; top: 120px; }
.ci-editorial-copy { max-width: 760px; }
.ci-editorial-copy p { color: var(--ink-soft); font-size: 18px; }
.ci-editorial-copy blockquote { margin: 30px 0; padding: 22px 0 22px 24px; border-left: 5px solid var(--accent); font-family: var(--font-display); font-size: 30px; font-weight: 400; line-height: 1.25; }
.ci-principle { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 21px 0; border-top: 1px solid var(--line); }
.ci-principle:last-child { border-bottom: 1px solid var(--line); }
.ci-principle span { color: var(--accent-dark); font-family: var(--font-display); font-size: 30px; font-weight: 700; }
.ci-principle p { margin-bottom: 0; }
.ci-source-list { margin: 24px 0 0; padding: 0; list-style: none; }
.ci-source-list li { padding: 14px 0; border-top: 1px solid var(--line); }
.ci-source-list a { color: var(--brand-dark); font-weight: 700; text-underline-offset: 4px; }

.ci-legal-hero { padding: 58px 0 24px; }
.ci-legal-document { padding: 18px 0 72px; }
.ci-legal-document h2 { margin-top: 38px; margin-bottom: 12px; font-family: var(--font-body); font-size: 22px; font-weight: 700; line-height: 1.35; }
.ci-legal-document h3 { margin-top: 28px; font-family: var(--font-body); font-size: 18px; line-height: 1.4; }
.ci-legal-document p, .ci-legal-document li { color: #465149; }
.ci-legal-document ul, .ci-legal-document ol { padding-left: 22px; }
.ci-legal-document a { color: var(--brand-dark); text-underline-offset: 4px; }
.ci-legal-meta { padding-bottom: 24px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-size: 13px; }

.ci-site-footer { margin-top: 0; background: var(--ink); color: #fff; }
.ci-footer-cta { border-bottom: 1px solid #536157; }
.ci-footer-cta-row { display: grid; min-height: 160px; grid-template-columns: 1fr auto; align-items: center; gap: 36px; }
.ci-footer-cta h2 { max-width: 720px; margin-bottom: 8px; font-size: 40px; }
.ci-footer-cta p { margin: 0; color: #cbd3ce; }
.ci-footer-main { display: grid; grid-template-columns: 1.4fr repeat(3, 0.72fr); gap: 44px; padding: 44px 0 38px; }
.ci-footer-brand img { width: 190px; margin-bottom: 20px; }
.ci-footer-brand p { max-width: 350px; color: #bec8c1; font-size: 13px; }
.ci-footer-brand .ci-operator { margin-top: 20px; color: #fff; font-weight: 700; }
.ci-footer-col h3 { margin-bottom: 16px; color: #d1d6c4; font-family: var(--font-body); font-size: 12px; text-transform: uppercase; }
.ci-footer-col a { display: block; min-height: 38px; color: #f0efed; font-size: 13px; text-decoration: none; }
.ci-footer-col a:hover { color: #d7e4da; text-decoration: underline; text-underline-offset: 4px; }
.ci-footer-bottom { display: flex; min-height: 70px; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid #536157; color: #aeb8b1; font-size: 12px; }
.ci-footer-bottom-links { display: flex; flex-wrap: wrap; gap: 22px; }
.ci-footer-bottom a { color: #dde3df; }

.ci-reveal { opacity: 0; transform: translateY(18px); transition: opacity 420ms ease, transform 420ms ease; }
.ci-reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes ciFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .ci-wrap, .ci-narrow { width: min(calc(100% - 32px), var(--wrap)); }
  .ci-section { padding: 60px 0; }
  .ci-header-row { grid-template-columns: 1fr auto; }
  .ci-header-cta { display: none; }
  .ci-nav-toggle { display: block; }
  .ci-main-nav { position: fixed; inset: 113px 0 auto; display: none; max-height: calc(100dvh - 113px); overflow-y: auto; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 28px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .ci-main-nav.open, .ci-main-nav.is-open { display: flex; }
  .ci-main-nav a { min-height: 54px; justify-content: space-between; border-bottom: 1px solid var(--line); }
  .ci-hero-grid, .ci-page-hero-split, .ci-scene-grid, .ci-contact-layout, .ci-editorial-split, .ci-quote-band { grid-template-columns: 1fr; }
  .ci-hero { padding-top: 44px; }
  .ci-hero-visual { min-height: 460px; }
  .ci-hero-visual > img { min-height: 460px; }
  .ci-scene-copy, .ci-contact-intro, .ci-editorial-split > h2 { position: static; }
  .ci-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .ci-proof-item:nth-child(2) { border-right: 0; }
  .ci-proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .ci-steps { grid-template-columns: 1fr; }
  .ci-step { min-height: auto; }
  .ci-step-number { margin-bottom: 24px; }
  .ci-cta-panel, .ci-footer-cta-row, .ci-marketplace-band { grid-template-columns: 1fr; }
  .ci-cta-panel .ci-actions, .ci-footer-cta-row .ci-actions { justify-content: flex-start; }
  .ci-result-grid { grid-template-columns: 280px 1fr; }
  .ci-context-numbers { grid-template-columns: 1fr; }
  .ci-context-number { border-right: 0; border-bottom: 1px solid #64736a; }
  .ci-footer-main { grid-template-columns: 1.3fr 1fr 1fr; }
  .ci-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .ci-announcement .ci-wrap { gap: 8px; }
  .ci-announcement span:nth-child(2) { display: none; }
  .ci-header-row { min-height: 68px; }
  .ci-brand img { width: 145px; }
  .ci-main-nav { inset: 104px 0 auto; }
  .ci-section { padding: 48px 0; }
  .ci-section-sm { padding: 38px 0; }
  h1 { font-size: 43px; }
  h2 { font-size: 33px; }
  h3 { font-size: 22px; }
  .ci-lead { font-size: 18px; }
  .ci-actions { flex-direction: column; align-items: stretch; }
  .ci-actions .ci-btn { width: 100%; }
  .ci-hero { padding: 34px 0 48px; }
  .ci-hero-grid { gap: 28px; }
  .ci-hero-visual, .ci-hero-visual > img { min-height: 380px; }
  .ci-visual-label { align-items: flex-start; flex-direction: column; }
  .ci-proof-grid { grid-template-columns: 1fr 1fr; }
  .ci-proof-item { min-height: 112px; padding: 20px 16px; }
  .ci-proof-value { font-size: 29px; }
  .ci-moment { grid-template-columns: 1fr; gap: 8px; }
  .ci-cta-panel { padding: 30px 22px; }
  .ci-page-hero { padding: 46px 0 36px; }
  .ci-finder-shell { min-height: 560px; padding: 22px 16px; }
  .ci-finder-stage, .ci-finder-screen { min-height: 420px; }
  .ci-finder-screen h1, .ci-finder-screen h2 { font-size: 35px; }
  .ci-result-copy h2 { font-size: 34px; }
  .ci-finder-proof { grid-template-columns: repeat(3, 1fr); }
  .ci-finder-proof div { min-height: 88px; padding: 14px 10px; }
  .ci-finder-proof strong { font-size: 24px; }
  .ci-finder-proof span { font-size: 11px; line-height: 1.35; }
  .ci-choices { grid-template-columns: 1fr; }
  .ci-choice { min-height: 76px; }
  .ci-result-grid { grid-template-columns: 1fr; }
  .ci-result-media, .ci-result-media img { min-height: 270px; height: 270px; }
  .ci-market-row { flex-direction: column; }
  .ci-market-row .ci-btn { width: 100%; }
  .ci-faq-tools { top: 102px; }
  .ci-input-columns { grid-template-columns: 1fr; }
  .ci-input-column + .ci-input-column { border-top: 1px solid var(--line); border-left: 0; }
  .ci-contact-route { grid-template-columns: 48px 1fr; }
  .ci-contact-route .ci-btn { grid-column: 1 / -1; width: 100%; }
  .ci-editorial-copy blockquote { font-size: 26px; }
  .ci-footer-cta-row { padding: 34px 0; }
  .ci-footer-cta h2 { font-size: 32px; }
  .ci-footer-main { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .ci-footer-brand { grid-column: 1 / -1; }
  .ci-footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 22px 0; }
}

/* Mobile product decision flow: one complete question per viewport. */
@media (max-width: 680px) {
  body.ci-products-page .ci-announcement { display: none; }
  body.ci-products-page .ci-header-row { min-height: 58px; }
  body.ci-products-page .ci-brand img { width: 124px; }
  body.ci-products-page .ci-main-nav { inset: 58px 0 auto; }
  body.ci-products-page .ci-product-hero-compact { padding: 8px 0 9px; }
  body.ci-products-page .ci-product-hero-compact h1 {
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 1.2;
  }
  body.ci-products-page .ci-product-hero-compact .ci-lead {
    max-width: 34rem;
    font-size: 12px;
    line-height: 1.35;
  }
  body.ci-products-page #product-finder { padding: 8px 0 18px; }
  body.ci-products-page #product-finder .ci-wrap { width: min(calc(100% - 20px), var(--wrap)); }
  body.ci-products-page .ci-finder-shell {
    min-height: 0;
    padding: 13px;
    border-radius: 10px;
    box-shadow: 0 10px 28px rgba(28, 39, 34, .1);
  }
  body.ci-products-page .ci-finder-top {
    margin-bottom: 10px;
    gap: 7px;
  }
  body.ci-products-page .ci-finder-meta { font-size: 11px; }
  body.ci-products-page .ci-finder-stage,
  body.ci-products-page .ci-finder-screen { min-height: 0; }
  body.ci-products-page .ci-finder-screen h2 {
    margin-bottom: 8px;
    font-size: 29px;
    line-height: .98;
  }
  body.ci-products-page .ci-finder-start .ci-lead {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.35;
  }
  body.ci-products-page .ci-finder-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 11px;
  }
  body.ci-products-page .ci-finder-proof div {
    min-height: 62px;
    padding: 8px 6px;
  }
  body.ci-products-page .ci-finder-proof div + div {
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,.2);
  }
  body.ci-products-page .ci-finder-proof strong { margin-bottom: 2px; font-size: 17px; }
  body.ci-products-page .ci-finder-proof span { font-size: 9px; line-height: 1.25; }
  body.ci-products-page .ci-finder-start .ci-actions { margin-top: 11px; }
  body.ci-products-page .ci-finder-start .ci-btn { width: 100%; min-height: 46px; }
  body.ci-products-page .ci-question-kicker { margin-bottom: 5px; font-size: 10px; }
  body.ci-products-page .ci-choices { gap: 7px; margin-top: 10px; }
  body.ci-products-page .ci-choice {
    min-height: 62px;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
  }
  body.ci-products-page .ci-choice-index { width: 32px; height: 32px; }
  body.ci-products-page .ci-choice strong { font-size: 14px; line-height: 1.22; }
  body.ci-products-page .ci-choice small { margin-top: 2px; font-size: 10.5px; line-height: 1.28; }
  body.ci-products-page .ci-finder-nav { padding-top: 9px; }
  body.ci-products-page .ci-finder-nav .ci-meta { display: none; }
  body.ci-products-page .ci-finder-nav .ci-btn { min-height: 44px; }
  body.ci-products-page .ci-result-media,
  body.ci-products-page .ci-result-media img { min-height: 132px; height: 132px; }
  body.ci-products-page .ci-result-copy h2 { font-size: 27px; }
  body.ci-products-page .ci-result-copy .ci-lead { font-size: 12px; line-height: 1.35; }
  body.ci-products-page .ci-result-reasons { gap: 5px; margin: 8px 0; }
  body.ci-products-page .ci-result-reasons span { padding: 5px 7px; font-size: 10px; }
  body.ci-products-page .ci-market-row { gap: 7px; }
  body.ci-products-page .ci-market-row .ci-btn { min-height: 44px; padding: 9px 12px; font-size: 12px; }
}

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

/* Homepage approved theme: Canopy & Lichen. */
body.ci-home-v3 {
  --ink: #1c2722;
  --ink-soft: #536159;
  --paper: #f3f4ef;
  --surface: #ffffff;
  --line: #c9d0c8;
  --line-strong: #7f8d83;
  --brand: #355e4b;
  --brand-dark: #294a3b;
  --mint: #b8c7a2;
  --sky: #d9dfd4;
  --olive: #71845f;
  --mineral: #426258;
  --accent: #b8c7a2;
  --accent-dark: #9dac88;
  --focus: #355e4b;
  --charcoal: #1c2722;
  --font-display: "DM Serif Display", Georgia, serif;
  background: var(--paper);
}

body.ci-home-v3 h1,
body.ci-home-v3 h2 {
  font-optical-sizing: auto;
  font-weight: 600;
}

body.ci-home-v3 h1 {
  max-width: 720px;
  font-size: 58px;
  line-height: 1.04;
}

body.ci-home-v3 h2 {
  font-size: 41px;
  line-height: 1.1;
}

body.ci-home-v3 .ci-section { padding: 56px 0; }
body.ci-home-v3 .ci-eyebrow { display: none; }

body.ci-home-v3 .ci-announcement {
  background: var(--brand);
}

body.ci-home-v3 .ci-announcement span + span::before { color: var(--mint); }

body.ci-home-v3 .ci-site-header {
  background: rgba(243, 244, 239, 0.97);
}

body.ci-home-v3 .ci-main-nav a:hover,
body.ci-home-v3 .ci-main-nav a[aria-current="page"] {
  border-color: var(--brand);
}

body.ci-home-v3 .ci-btn {
  border-radius: 10px;
  font-weight: 600;
}

body.ci-home-v3 .ci-btn-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

body.ci-home-v3 .ci-btn-primary:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
}

body.ci-home-v3 .ci-btn-brand {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

body.ci-home-v3 .ci-btn-brand:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

body.ci-home-v3 .ci-hero {
  padding: 46px 0 50px;
  background: var(--paper);
}

body.ci-home-v3 .ci-hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: 34px;
}

body.ci-home-v3 .ci-hero .ci-lead {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.58;
}

body.ci-home-v3 .ci-hero-visual {
  min-height: 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 20px 44px rgba(28, 39, 34, 0.12);
}

body.ci-home-v3 .ci-hero-visual > img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #edf1e8;
}

body.ci-home-v3 .ci-visual-label {
  position: static;
  padding: 15px 18px;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
}

body.ci-home-v3 .ci-visual-label span:last-child {
  color: var(--ink-soft);
  text-align: right;
}

body.ci-home-v3 .ci-visual-label strong { white-space: nowrap; }

body.ci-home-v3 .ci-proof-strip {
  border: 0;
  background: var(--ink);
  color: #fff;
}

body.ci-home-v3 .ci-proof-grid {
  grid-template-columns: 1.15fr 1.15fr 1fr 0.8fr;
}

body.ci-home-v3 .ci-proof-item {
  min-height: 122px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  border-color: rgba(255, 255, 255, 0.2);
}

body.ci-home-v3 .ci-proof-value {
  margin-bottom: 8px;
  color: var(--mint);
  font-family: var(--font-body);
  font-size: 30px;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 700;
  letter-spacing: 0;
}

body.ci-home-v3 .ci-proof-featured .ci-proof-value { font-size: 43px; }
body.ci-home-v3 .ci-proof-label { max-width: 230px; color: #ffffff; font-weight: 500; line-height: 1.4; }

body.ci-home-v3 .ci-band-mint {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--sky);
  color: var(--ink);
}

body.ci-home-v3 .ci-band-mint::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../images/food-waste-canopy-v1.jpg") center 52% / cover no-repeat;
  content: "";
  filter: saturate(0.7);
  opacity: 0.16;
}

body.ci-home-v3 .ci-band-mint .ci-copy,
body.ci-home-v3 .ci-band-mint .ci-moment p {
  color: var(--ink-soft);
}

body.ci-home-v3 .ci-scene-grid { gap: 46px; }
body.ci-home-v3 .ci-scene-copy {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

body.ci-home-v3 .ci-moment-list { border-color: rgba(28, 39, 34, 0.26); }
body.ci-home-v3 .ci-moment { grid-template-columns: 128px 1fr; padding: 24px 0; border-color: rgba(28, 39, 34, 0.2); }
body.ci-home-v3 .ci-moment time { color: var(--brand); }
body.ci-home-v3 .ci-moment strong { color: var(--ink); font-size: 20px; }

body.ci-home-v3 .ci-band-dark { background: var(--ink); }
body.ci-home-v3 .ci-process-intro { max-width: 780px; margin-bottom: 26px; color: #d9e2dc; font-size: 18px; }

body.ci-home-v3 .ci-process-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px 8px 0 0;
  background: #fff;
}

body.ci-home-v3 .ci-process-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center 54%;
}

body.ci-home-v3 .ci-steps {
  margin-top: 0;
  background: rgba(255, 255, 255, 0.2);
}

body.ci-home-v3 .ci-step {
  min-height: 272px;
  padding: 25px;
}

body.ci-home-v3 .ci-step-number {
  width: auto;
  height: auto;
  margin-bottom: 24px;
  border: 0;
  border-radius: 0;
  color: var(--mint);
  font-family: var(--font-body);
  font-size: 24px;
  font-variant-numeric: lining-nums proportional-nums;
  font-weight: 700;
}

body.ci-home-v3 .ci-step h3 { color: #fff; font-size: 20px; }
body.ci-home-v3 .ci-step p { color: #d4ddd7; font-size: 14px; line-height: 1.65; }

body.ci-home-v3 .ci-method-intro { margin-bottom: 26px; font-size: 18px; }
body.ci-home-v3 .ci-method-table-wrap,
body.ci-home-v3 .ci-product-table-wrap {
  border-color: var(--line-strong);
  box-shadow: 0 14px 36px rgba(24, 33, 28, 0.1);
}

body.ci-home-v3 .ci-method-table { min-width: 860px; }
body.ci-home-v3 .ci-method-table th,
body.ci-home-v3 .ci-method-table td {
  padding: 17px 18px;
  line-height: 1.5;
}

body.ci-home-v3 .ci-method-table thead th { background: var(--ink); }
body.ci-home-v3 .ci-method-table thead th:last-child { background: var(--brand); }
body.ci-home-v3 .ci-method-table tbody tr:nth-child(even) td { background: #f4f5f1; }
body.ci-home-v3 .ci-method-table td:first-child { color: var(--ink); font-weight: 700; }
body.ci-home-v3 .ci-method-table td:last-child { background: #e7ece3; color: var(--ink); }
body.ci-home-v3 .ci-method-table tbody tr:nth-child(even) td:last-child { background: var(--sky); }

body.ci-home-v3 .ci-band-sky { background: var(--sky); }
body.ci-home-v3 .ci-product-table { min-width: 920px; }
body.ci-home-v3 .ci-product-table thead th:first-child {
  width: 22%;
  background: var(--ink);
  color: #fff;
  vertical-align: bottom;
}

body.ci-home-v3 .ci-product-table thead th:nth-child(2) {
  padding: 0;
  background: var(--mint);
  color: var(--ink);
}

body.ci-home-v3 .ci-product-table thead th:nth-child(3) {
  padding: 0;
  background: #cdd6c5;
  color: var(--ink);
}

body.ci-home-v3 .ci-product-head {
  position: relative;
  display: flex;
  min-height: 308px;
  overflow: hidden;
  align-items: stretch;
  justify-content: flex-end;
  flex-direction: column;
  background-color: var(--surface);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.ci-home-v3 .ci-product-head-terralite {
  background-image: url("../images/terralite-compare-canopy-v3.jpg");
}

body.ci-home-v3 .ci-product-head-terraplus {
  background-image: url("../images/terraplus-compare-canopy-v3.jpg");
}

body.ci-home-v3 .ci-product-head-label {
  width: 100%;
  padding: 16px 18px;
  background: rgba(28, 39, 34, 0.9);
  color: #fff;
}

body.ci-home-v3 .ci-product-head strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.3;
}

body.ci-home-v3 .ci-product-head span { display: block; margin-top: 3px; color: #e2e9e4; font-size: 13px; }
body.ci-home-v3 .ci-product-table td:nth-child(2) { background: #eef2eb; }
body.ci-home-v3 .ci-product-table td:nth-child(3) { background: #f7f7f2; }
body.ci-home-v3 .ci-product-table td strong { display: block; margin-bottom: 4px; }
body.ci-home-v3 .ci-product-table td small { display: block; color: var(--ink-soft); font-size: 12px; line-height: 1.5; }
body.ci-home-v3 .ci-product-table .ci-table-actions td { text-align: center; vertical-align: middle; }

body.ci-home-v3 .ci-faq-preview details { border-color: var(--line); }
body.ci-home-v3 details summary::after { border-color: var(--brand); color: var(--brand); }

body.ci-home-v3 .ci-cta-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 26px;
  padding: 34px;
  background: var(--mint);
  color: var(--ink);
  text-align: center;
}

body.ci-home-v3 .ci-cta-panel h2,
body.ci-home-v3 .ci-cta-panel p { margin-right: auto; margin-left: auto; }
body.ci-home-v3 .ci-cta-panel p { color: var(--ink); }

body.ci-home-v3 .ci-market-actions {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  margin: 0 auto;
}

body.ci-home-v3 .ci-market-actions .ci-btn { width: 100%; }
body.ci-home-v3 .ci-market-actions .ci-whatsapp-buy { grid-column: 1 / -1; }
body.ci-home-v3 .ci-market-btn {
  min-height: 68px;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-color: rgba(28, 39, 34, 0.28);
}

body.ci-home-v3 .ci-market-btn > span { color: var(--ink-soft); font-size: 11px; font-weight: 600; text-transform: uppercase; }
body.ci-home-v3 .ci-market-btn img { width: auto; max-width: 116px; height: 26px; object-fit: contain; }
body.ci-home-v3 .ci-market-btn:last-child img { width: 27px; height: 27px; }
body.ci-home-v3 .ci-market-btn strong { color: var(--ink); font-size: 14px; white-space: nowrap; }

body.ci-home-v3 .ci-site-footer { background: var(--ink); }
body.ci-home-v3 .ci-footer-cta { border-color: #537060; background: var(--brand); }
body.ci-home-v3 .ci-footer-cta .ci-btn-primary { border-color: var(--mint); background: var(--mint); color: var(--ink); }
body.ci-home-v3 .ci-footer-cta .ci-btn-primary:hover { border-color: var(--accent-dark); background: var(--accent-dark); color: var(--ink); }
body.ci-home-v3 .ci-footer-col h3 { color: var(--mint); }
body.ci-home-v3 .ci-footer-brand p { color: #d7ded9; }
body.ci-home-v3 .ci-vine-cta {
  min-width: 330px;
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  padding: 24px 38px;
  background: url("../images/vine-button-frame.svg") center / contain no-repeat;
}

body.ci-home-v3 .ci-vine-cta .ci-btn {
  min-height: 54px;
  padding-inline: 24px;
  box-shadow: 0 8px 18px rgba(20, 32, 26, 0.2);
}

@media (max-width: 980px) {
  body.ci-home-v3 .ci-section { padding: 50px 0; }
  body.ci-home-v3 .ci-hero-grid { grid-template-columns: 1fr; }
  body.ci-home-v3 .ci-proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body.ci-home-v3 h1 { font-size: 42px; }
  body.ci-home-v3 h2 { font-size: 32px; }
  body.ci-home-v3 .ci-section { padding: 42px 0; }
  body.ci-home-v3 .ci-hero { padding: 32px 0 40px; }
  body.ci-home-v3 .ci-hero-grid { gap: 24px; }
  body.ci-home-v3 .ci-hero-visual > img { height: auto; min-height: 0; }
  body.ci-home-v3 .ci-visual-label { align-items: flex-start; gap: 5px; }
  body.ci-home-v3 .ci-visual-label span:last-child { text-align: left; }
  body.ci-home-v3 .ci-proof-item { min-height: 116px; padding: 18px 14px; }
  body.ci-home-v3 .ci-proof-value,
  body.ci-home-v3 .ci-proof-featured .ci-proof-value { font-size: 28px; }
  body.ci-home-v3 .ci-proof-label { font-size: 12px; }
  body.ci-home-v3 .ci-moment { grid-template-columns: 1fr; gap: 7px; }
  body.ci-home-v3 .ci-process-media { border-radius: 6px 6px 0 0; }
  body.ci-home-v3 .ci-process-media img { min-height: 0; aspect-ratio: 16 / 9; object-position: center 54%; }
  body.ci-home-v3 .ci-step { min-height: 0; padding: 22px; }
  body.ci-home-v3 .ci-product-head { min-height: 270px; }
  body.ci-home-v3 .ci-market-actions { grid-template-columns: 1fr; }
  body.ci-home-v3 .ci-market-actions .ci-whatsapp-buy { grid-column: auto; }
  body.ci-home-v3 .ci-vine-cta { width: 100%; min-width: 0; padding-inline: 26px; }
}

/* Shared Canopy & Lichen system for supporting pages. */
body.ci-canopy {
  --ink: #1c2722;
  --ink-soft: #536159;
  --paper: #f3f4ef;
  --surface: #ffffff;
  --line: #c9d0c8;
  --line-strong: #7f8d83;
  --brand: #355e4b;
  --brand-dark: #294a3b;
  --mint: #b8c7a2;
  --sky: #d9dfd4;
  --olive: #71845f;
  --mineral: #426258;
  --accent: #b8c7a2;
  --accent-dark: #9dac88;
  --focus: #355e4b;
  --charcoal: #1c2722;
  --font-display: "DM Serif Display", Georgia, serif;
  background: var(--paper);
}

body.ci-canopy h1,
body.ci-canopy h2 {
  font-optical-sizing: auto;
  font-weight: 600;
}

body.ci-canopy h1 { font-size: 56px; line-height: 1.04; }
body.ci-canopy h2 { font-size: 40px; line-height: 1.1; }
body.ci-canopy .ci-section { padding: 56px 0; }
body.ci-canopy .ci-section-sm { padding: 44px 0 56px; }
body.ci-canopy .ci-eyebrow { display: none; }
body.ci-canopy .ci-announcement { background: var(--brand); }
body.ci-canopy .ci-announcement span + span::before { color: var(--mint); }
body.ci-canopy .ci-site-header { background: rgba(243, 244, 239, 0.97); }
body.ci-canopy .ci-main-nav a:hover,
body.ci-canopy .ci-main-nav a[aria-current="page"] { border-color: var(--brand); }
body.ci-canopy .ci-btn { border-radius: 10px; font-weight: 600; }
body.ci-canopy .ci-btn-primary { border-color: var(--brand); background: var(--brand); color: #fff; }
body.ci-canopy .ci-btn-primary:hover { border-color: var(--brand-dark); background: var(--brand-dark); color: #fff; }
body.ci-canopy .ci-btn-brand { border-color: var(--ink); background: var(--ink); color: #fff; }
body.ci-canopy .ci-btn-brand:hover { border-color: var(--brand-dark); background: var(--brand-dark); }
body.ci-canopy .ci-band-mint { background: #e4e9df; }
body.ci-canopy .ci-band-sky { background: var(--sky); }
body.ci-canopy .ci-band-white { background: var(--surface); }
body.ci-canopy .ci-band-dark { background: var(--ink); }
body.ci-canopy .ci-reveal { opacity: 1; transform: none; }

body.ci-canopy .ci-page-hero {
  padding: 48px 0 44px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

body.ci-canopy .ci-page-hero h1 { max-width: 860px; }
body.ci-canopy .ci-page-hero .ci-lead { max-width: 760px; font-size: 18px; }
body.ci-canopy .ci-page-hero-split { grid-template-columns: minmax(0, 1fr) 330px; gap: 50px; }
body.ci-canopy .ci-page-hero-aside {
  padding: 24px;
  border: 0;
  border-top: 5px solid var(--brand);
  background: var(--sky);
}

body.ci-canopy .ci-site-footer { background: var(--ink); }
body.ci-canopy .ci-footer-cta { border-color: #537060; background: var(--brand); }
body.ci-canopy .ci-footer-cta .ci-btn-primary { border-color: var(--mint); background: var(--mint); color: var(--ink); }
body.ci-canopy .ci-footer-cta .ci-btn-primary:hover { border-color: var(--accent-dark); background: var(--accent-dark); color: var(--ink); }
body.ci-canopy .ci-footer-col h3 { color: var(--mint); }
body.ci-canopy .ci-footer-brand p { color: #d7ded9; }
body.ci-canopy .ci-vine-cta {
  min-width: 330px;
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: center;
  padding: 24px 38px;
  background: url("../images/vine-button-frame.svg") center / contain no-repeat;
}
body.ci-canopy .ci-vine-cta .ci-btn { min-height: 54px; padding-inline: 24px; box-shadow: 0 8px 18px rgba(20, 32, 26, 0.2); }

/* Product finder and comparison. */
body.ci-products-page #product-finder { padding-top: 52px; background: var(--sky); }
body.ci-products-page .ci-finder-shell {
  min-height: 560px;
  padding: 30px;
  border-color: var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(28, 39, 34, 0.12);
}
body.ci-products-page .ci-progress-track { height: 6px; border-radius: 0; background: #e2e6df; }
body.ci-products-page .ci-progress-bar { background: var(--brand); }
body.ci-products-page .ci-finder-screen h2 { max-width: 820px; font-size: 44px; }
body.ci-products-page .ci-finder-proof { margin-top: 26px; border: 0; background: var(--ink); }
body.ci-products-page .ci-finder-proof div { min-height: 104px; padding: 20px; background: var(--ink); color: #fff; }
body.ci-products-page .ci-finder-proof div + div { border-left: 1px solid rgba(255,255,255,0.2); }
body.ci-products-page .ci-finder-proof strong {
  color: var(--mint);
  font-family: var(--font-body);
  font-size: 26px;
  font-variant-numeric: lining-nums proportional-nums;
}
body.ci-products-page .ci-finder-proof span { color: #fff; font-weight: 500; }
body.ci-products-page .ci-choices { gap: 12px; }
body.ci-products-page .ci-choice { min-height: 92px; border-radius: 8px; background: #fbfcf9; }
body.ci-products-page .ci-choice:hover { border-color: var(--brand); background: #edf2ea; }
body.ci-products-page .ci-choice-index { border-radius: 7px; background: var(--sky); }
body.ci-products-page .ci-choice.is-selected .ci-choice-index { background: var(--brand); color: #fff; }
body.ci-products-page .ci-result-media { border-radius: 6px; background: #e8ede5; }
body.ci-products-page .ci-result-reasons span { border-radius: 6px; background: var(--sky); color: var(--ink); }
body.ci-products-page #compare h2 { margin-bottom: 28px; }
body.ci-products-page .ci-product-table-wrap { border-color: var(--line-strong); box-shadow: 0 14px 36px rgba(24, 33, 28, 0.1); }
body.ci-products-page .ci-product-table { min-width: 920px; }
body.ci-products-page .ci-product-table th,
body.ci-products-page .ci-product-table td { padding: 17px 18px; line-height: 1.5; }
body.ci-products-page .ci-product-table thead th:first-child { width: 22%; vertical-align: bottom; background: var(--ink); }
body.ci-products-page .ci-product-table thead th:nth-child(2),
body.ci-products-page .ci-product-table thead th:nth-child(3) { padding: 0; }
body.ci-products-page .ci-product-head {
  position: relative;
  min-height: 300px;
  display: flex;
  overflow: hidden;
  align-items: stretch;
  justify-content: flex-end;
  flex-direction: column;
  background-color: var(--surface);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
body.ci-products-page .ci-product-head-terralite { background-image: url("../images/terralite-compare-canopy-v3.jpg"); }
body.ci-products-page .ci-product-head-terraplus { background-image: url("../images/terraplus-compare-canopy-v3.jpg"); }
body.ci-products-page .ci-product-head-label { width: 100%; padding: 16px 18px; background: rgba(28, 39, 34, 0.9); color: #fff; }
body.ci-products-page .ci-product-head strong { color: #fff; font-size: 18px; }
body.ci-products-page .ci-product-head span { color: #e2e9e4; font-size: 13px; }
body.ci-products-page .ci-product-table td:nth-child(2) { background: #eef2eb; }
body.ci-products-page .ci-product-table td:nth-child(3) { background: #f7f7f2; }
body.ci-products-page .ci-table-actions td { text-align: center; }

/* Search-first FAQ. */
body.ci-faq-page .ci-page-hero { background: var(--ink); color: #fff; }
body.ci-faq-page .ci-page-hero h1 { max-width: 820px; }
body.ci-faq-page .ci-page-hero .ci-lead { color: #d5ddd8; }
body.ci-faq-page .ci-faq-tools {
  top: 76px;
  margin-bottom: 8px;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
}
body.ci-faq-page .ci-faq-search { min-height: 62px; border-color: var(--line-strong); border-radius: 10px; font-size: 16px; }
body.ci-faq-page .ci-filter-chip { min-height: 42px; border-color: var(--line); background: var(--paper); }
body.ci-faq-page .ci-filter-chip.active { border-color: var(--brand); background: var(--brand); }
body.ci-faq-page .ci-faq-list { border-top: 1px solid var(--line); }
body.ci-faq-page .ci-faq-item { background: #fff; }
body.ci-faq-page .ci-faq-item summary { min-height: 76px; padding-block: 20px; font-size: 19px; }
body.ci-faq-page .ci-faq-item[open] { background: #f6f8f3; }
body.ci-faq-page .ci-faq-answer { max-width: 940px; padding-bottom: 30px; }
body.ci-faq-page details summary::after { border-color: var(--brand); color: var(--brand); }
body.ci-faq-page .ci-input-columns { background: #fff; }

/* Contact directory. */
body.ci-contact-page .ci-contact-hero { padding: 52px 0 50px; background: var(--paper); }
body.ci-contact-page .ci-contact-layout { grid-template-columns: 0.74fr 1.26fr; gap: 62px; }
body.ci-contact-page .ci-contact-intro h1 { font-size: 52px; }
body.ci-contact-page .ci-contact-intro .ci-lead { font-size: 18px; }
body.ci-contact-page .ci-contact-routes { border-color: var(--line-strong); }
body.ci-contact-page .ci-contact-route { min-height: 148px; padding: 24px 0; }
body.ci-contact-page .ci-route-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
}
body.ci-contact-page .ci-contact-route .ci-btn { min-width: 154px; }
body.ci-contact-page .ci-marketplace-band { padding: 34px; border-radius: 8px; background: var(--mint); }
body.ci-contact-page .ci-marketplace-band h3 { font-family: var(--font-display); font-size: 34px; font-weight: 600; }
body.ci-contact-page .ci-market-actions { display: grid; grid-template-columns: repeat(3, minmax(150px, 1fr)); }
body.ci-contact-page .ci-market-btn { min-height: 68px; justify-content: center; gap: 9px; border-color: rgba(28,39,34,0.28); background: #fff; }
body.ci-contact-page .ci-market-btn span { color: var(--ink-soft); font-size: 10px; font-weight: 600; text-transform: uppercase; }
body.ci-contact-page .ci-market-btn img { width: auto; max-width: 100px; height: 24px; object-fit: contain; }
body.ci-contact-page .ci-market-btn:last-child img { width: 25px; }
body.ci-contact-page .ci-market-btn strong { font-size: 13px; white-space: nowrap; }
body.ci-contact-page .ci-quote-band { gap: 54px; }
body.ci-contact-page .ci-question-line { background: rgba(255,255,255,0.52); text-decoration: none; }
body.ci-contact-page .ci-question-line:hover { background: #fff; color: var(--brand); }

/* Editorial about page. */
body.ci-about-page .ci-hero { padding: 46px 0 50px; }
body.ci-about-page .ci-hero-grid { grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr); gap: 34px; }
body.ci-about-page .ci-hero h1 { max-width: 760px; font-size: 54px; }
body.ci-about-page .ci-hero .ci-lead { font-size: 18px; }
body.ci-about-page .ci-hero-visual { min-height: 0; display: flex; flex-direction: column; border: 1px solid var(--line); background: #fff; box-shadow: 0 20px 44px rgba(28,39,34,.12); }
body.ci-about-page .ci-hero-visual > img { width: 100%; height: auto; min-height: 0; aspect-ratio: 4 / 3; object-fit: contain; background: #edf1e8; }
body.ci-about-page .ci-visual-label { position: static; padding: 15px 18px; border-top: 1px solid var(--line); border-radius: 0; background: #fff; color: var(--ink); }
body.ci-about-page .ci-visual-label span:last-child { color: var(--ink-soft); }
body.ci-about-page .ci-proof-strip { border: 0; background: var(--ink); color: #fff; }
body.ci-about-page .ci-proof-item { min-height: 122px; display: flex; justify-content: center; flex-direction: column; border-color: rgba(255,255,255,.2); }
body.ci-about-page .ci-proof-value { color: var(--mint); font-family: var(--font-body); font-size: 28px; font-variant-numeric: lining-nums proportional-nums; }
body.ci-about-page .ci-proof-label { color: #fff; font-weight: 500; line-height: 1.4; }
body.ci-about-page .ci-scene-grid { gap: 46px; }
body.ci-about-page .ci-moment { grid-template-columns: 128px 1fr; padding: 24px 0; }
body.ci-about-page .ci-moment time { color: var(--brand); }
body.ci-about-page .ci-moment strong { color: var(--ink); font-size: 20px; }
body.ci-about-page .ci-band-dark .ci-question-line { background: rgba(255,255,255,.08); color: #fff; }
body.ci-about-page .ci-method-table-wrap { border-color: var(--line-strong); box-shadow: 0 14px 36px rgba(24,33,28,.1); }
body.ci-about-page .ci-method-table thead th { background: var(--ink); }
body.ci-about-page .ci-method-table td:last-child { background: #e7ece3; }
body.ci-about-page .ci-steps { background: rgba(28,39,34,.2); }
body.ci-about-page .ci-step { min-height: 265px; padding: 26px; }
body.ci-about-page .ci-step-number { width: auto; height: auto; margin-bottom: 24px; border: 0; border-radius: 0; color: var(--mint); font-family: var(--font-body); font-size: 24px; }
body.ci-about-page .ci-cta-panel { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 24px; padding: 36px; background: var(--mint); color: var(--ink); text-align: center; }
body.ci-about-page .ci-cta-panel p { color: var(--ink); }
body.ci-about-page .ci-cta-panel .ci-actions { justify-content: center; }

/* Legal page remains a single readable document. */
body.ci-privacy-page { background: #fff; }
body.ci-privacy-page .ci-legal-hero { padding: 52px 0 38px; border-bottom: 1px solid var(--line); background: var(--sky); }
body.ci-privacy-page .ci-legal-hero h1 { max-width: 720px; }
body.ci-privacy-page .ci-legal-hero .ci-lead { max-width: 760px; font-size: 18px; }
body.ci-privacy-page .ci-legal-document { padding: 30px 0 72px; background: #fff; }
body.ci-privacy-page .ci-legal-document h2 { margin-top: 44px; padding-top: 4px; color: var(--ink); font-size: 23px; }
body.ci-privacy-page .ci-legal-document p,
body.ci-privacy-page .ci-legal-document li { color: #3f4b44; line-height: 1.75; }
body.ci-privacy-page .ci-legal-document li + li { margin-top: 7px; }
body.ci-privacy-page .ci-legal-meta { margin-bottom: 30px; }

@media (max-width: 980px) {
  body.ci-canopy .ci-page-hero-split,
  body.ci-contact-page .ci-contact-layout,
  body.ci-about-page .ci-hero-grid { grid-template-columns: 1fr; }
  body.ci-contact-page .ci-contact-intro { position: static; }
  body.ci-contact-page .ci-marketplace-band { grid-template-columns: 1fr; }
  body.ci-contact-page .ci-market-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  body.ci-about-page .ci-proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body.ci-canopy h1 { font-size: 41px; }
  body.ci-canopy h2 { font-size: 31px; }
  body.ci-canopy .ci-section { padding: 42px 0; }
  body.ci-canopy .ci-page-hero { padding: 36px 0 32px; }
  body.ci-canopy .ci-page-hero-split { gap: 24px; }
  body.ci-canopy .ci-footer-cta-row { padding: 34px 0; }
  body.ci-canopy .ci-vine-cta { width: 100%; min-width: 0; padding-inline: 26px; }
  body.ci-products-page .ci-finder-shell { min-height: 540px; padding: 22px 16px; }
  body.ci-products-page .ci-finder-screen h2 { font-size: 34px; }
  body.ci-products-page .ci-finder-proof { grid-template-columns: 1fr; }
  body.ci-products-page .ci-finder-proof div + div { border-top: 1px solid rgba(255,255,255,.2); border-left: 0; }
  body.ci-products-page .ci-finder-proof div { min-height: 82px; }
  body.ci-products-page .ci-product-head { min-height: 260px; }
  body.ci-faq-page .ci-faq-tools { top: 102px; }
  body.ci-faq-page .ci-faq-item summary { font-size: 17px; }
  body.ci-faq-page .ci-input-columns { grid-template-columns: 1fr; }
  body.ci-faq-page .ci-input-column + .ci-input-column { border-top: 1px solid var(--line); border-left: 0; }
  body.ci-contact-page .ci-contact-intro h1 { font-size: 41px; }
  body.ci-contact-page .ci-contact-route { grid-template-columns: 48px 1fr; }
  body.ci-contact-page .ci-contact-route .ci-btn { width: 100%; grid-column: 1 / -1; }
  body.ci-contact-page .ci-market-actions { grid-template-columns: 1fr; }
  body.ci-about-page .ci-hero { padding: 32px 0 40px; }
  body.ci-about-page .ci-hero h1 { font-size: 41px; }
  body.ci-about-page .ci-hero-visual > img { aspect-ratio: 4 / 3; }
  body.ci-about-page .ci-proof-item { min-height: 116px; padding: 18px 14px; }
  body.ci-about-page .ci-proof-value { font-size: 25px; }
  body.ci-about-page .ci-moment { grid-template-columns: 1fr; gap: 7px; }
  body.ci-about-page .ci-step { min-height: 0; padding: 22px; }
  body.ci-privacy-page .ci-legal-hero { padding: 38px 0 30px; }
}

/* Focused product decision page. */
body.ci-products-page .ci-product-hero-compact {
  padding: 18px 0 20px;
  background: var(--paper);
}

body.ci-products-page .ci-product-hero-compact h1 {
  max-width: none;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

body.ci-products-page .ci-product-hero-compact .ci-lead {
  max-width: 940px;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.5;
}

body.ci-products-page #product-finder { padding: 26px 0 46px; }
body.ci-products-page .ci-finder-shell { min-height: 530px; }

/* Equal action columns on the contact page. */
body.ci-contact-page .ci-contact-route .ci-btn {
  width: 176px;
  min-width: 176px;
}

/* About page: immersive editorial story, not a second landing page. */
body.ci-about-page .ci-about-story-hero {
  position: relative;
  min-height: 650px;
  display: grid;
  overflow: hidden;
  align-items: stretch;
  background: var(--ink);
  color: #fff;
}

body.ci-about-page .ci-about-story-image,
body.ci-about-page .ci-about-story-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.ci-about-page .ci-about-story-image {
  object-fit: cover;
  object-position: center;
}

body.ci-about-page .ci-about-story-overlay {
  background: linear-gradient(90deg, rgba(20,31,25,.92) 0%, rgba(20,31,25,.76) 38%, rgba(20,31,25,.18) 72%, rgba(20,31,25,.08) 100%);
}

body.ci-about-page .ci-about-story-content {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

body.ci-about-page .ci-about-chapter-label {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

body.ci-about-page .ci-about-story-content h1 {
  max-width: 730px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 58px;
}

body.ci-about-page .ci-about-story-content > p:not(.ci-about-chapter-label) {
  max-width: 650px;
  margin-bottom: 0;
  color: #eef2ee;
  font-size: 18px;
  line-height: 1.65;
}

body.ci-about-page .ci-about-story-content .ci-btn-primary {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--ink);
}

body.ci-about-page .ci-about-impact .ci-proof-grid { grid-template-columns: 1.1fr .8fr 1fr .9fr; }

body.ci-about-page .ci-about-origin {
  position: relative;
  background: #e4e9df;
}

body.ci-about-page .ci-about-origin .ci-wrap::before,
body.ci-about-page .ci-about-evidence .ci-wrap::before,
body.ci-about-page .ci-about-role .ci-wrap::before,
body.ci-about-page .ci-about-principles .ci-wrap::before {
  display: block;
  margin-bottom: 24px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

body.ci-about-page .ci-about-origin .ci-wrap::before { content: "01  /  Mengapa mulai dari rumah"; }
body.ci-about-page .ci-about-evidence .ci-wrap::before { content: "02  /  Arah perubahan di Indonesia"; }
body.ci-about-page .ci-about-role .ci-wrap::before { content: "03  /  Peran Compost It"; }
body.ci-about-page .ci-about-principles .ci-wrap::before { content: "04  /  Prinsip produk kami"; }

body.ci-about-page .ci-about-origin .ci-scene-copy {
  position: static;
  padding-right: 20px;
}

body.ci-about-page .ci-about-origin .ci-moment-list { border-top-color: var(--line-strong); }

body.ci-about-page .ci-about-evidence h2 { max-width: 900px; }
body.ci-about-page .ci-about-evidence .ci-lead { max-width: 880px; margin-bottom: 30px; }

body.ci-about-page .ci-about-questions .ci-quote-band {
  grid-template-columns: 1fr;
  gap: 34px;
}

body.ci-about-page .ci-about-questions h2 { max-width: 760px; }
body.ci-about-page .ci-about-questions .ci-question-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.2);
}

body.ci-about-page .ci-about-questions .ci-question-line {
  min-height: 112px;
  display: flex;
  align-items: center;
  padding: 24px;
  background: rgba(255,255,255,.07);
  font-size: 18px;
}

body.ci-about-page .ci-about-role .ci-scene-grid {
  grid-template-columns: 1fr;
  gap: 30px;
}

body.ci-about-page .ci-about-role .ci-scene-copy {
  position: static;
  max-width: 820px;
}

body.ci-about-page .ci-about-role .ci-moment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

body.ci-about-page .ci-about-role .ci-moment {
  min-height: 250px;
  display: block;
  padding: 26px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 0;
}

body.ci-about-page .ci-about-role .ci-moment:last-child { border-right: 0; }
body.ci-about-page .ci-about-role .ci-moment time { display: block; margin-bottom: 34px; }

body.ci-about-page .ci-about-principles h2 { max-width: 720px; }
body.ci-about-page .ci-about-final { background: var(--paper); }

@media (max-width: 980px) {
  body.ci-about-page .ci-about-story-hero,
  body.ci-about-page .ci-about-story-content { min-height: 620px; }
  body.ci-about-page .ci-about-story-overlay { background: linear-gradient(90deg, rgba(20,31,25,.92), rgba(20,31,25,.48) 75%, rgba(20,31,25,.24)); }
  body.ci-about-page .ci-about-impact .ci-proof-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body.ci-products-page .ci-product-hero-compact { padding: 14px 0 16px; }
  body.ci-products-page .ci-product-hero-compact h1 { font-size: 20px; }
  body.ci-products-page .ci-product-hero-compact .ci-lead { font-size: 13px; }
  body.ci-products-page #product-finder { padding: 18px 0 34px; }
  body.ci-contact-page .ci-contact-route .ci-btn { width: 100%; min-width: 0; }
  body.ci-about-page .ci-about-story-hero,
  body.ci-about-page .ci-about-story-content { min-height: 680px; }
  body.ci-about-page .ci-about-story-image { object-position: 61% center; }
  body.ci-about-page .ci-about-story-overlay { background: linear-gradient(0deg, rgba(20,31,25,.96) 0%, rgba(20,31,25,.82) 54%, rgba(20,31,25,.22) 100%); }
  body.ci-about-page .ci-about-story-content { justify-content: flex-end; padding-bottom: 42px; }
  body.ci-about-page .ci-about-story-content h1 { font-size: 40px; }
  body.ci-about-page .ci-about-story-content > p:not(.ci-about-chapter-label) { font-size: 16px; }
  body.ci-about-page .ci-about-questions .ci-question-stack,
  body.ci-about-page .ci-about-role .ci-moment-list { grid-template-columns: 1fr; }
  body.ci-about-page .ci-about-role .ci-moment { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line-strong); }
  body.ci-about-page .ci-about-role .ci-moment:last-child { border-bottom: 0; }
  body.ci-about-page .ci-about-role .ci-moment time { margin-bottom: 14px; }
}

/* Final mobile product-page guardrails. Keep one finder screen visible without
   the legacy stacked proof layout winning later in the cascade. */
@media (max-width: 680px) {
  body.ci-products-page .ci-finder-shell {
    min-height: 0;
    padding: 13px;
  }

  body.ci-products-page .ci-finder-stage,
  body.ci-products-page .ci-finder-screen {
    min-height: 0;
  }

  body.ci-products-page .ci-finder-screen h2 {
    margin-bottom: 8px;
    font-size: 29px;
    line-height: .98;
  }

  body.ci-products-page .ci-finder-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 11px;
  }

  body.ci-products-page .ci-finder-proof div {
    min-height: 62px;
    padding: 8px 6px;
  }

  body.ci-products-page .ci-finder-proof div + div {
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,.2);
  }

  body.ci-products-page .ci-finder-proof strong {
    margin-bottom: 2px;
    font-size: 17px;
  }

  body.ci-products-page .ci-finder-proof span {
    font-size: 9px;
    line-height: 1.25;
  }
}

/* 0.7 typography and footer system. Public reading text never drops below 14px. */
.ci-site h1,
.ci-site h2 { font-family: var(--font-display); font-weight: 400; }

.ci-site h3,
.ci-site h4,
.ci-btn,
button,
input,
select,
textarea { font-family: var(--font-body); }

.ci-meta,
.ci-eyebrow,
.ci-announcement,
.ci-proof-label,
.ci-moment time,
.ci-table-note,
.ci-product-head span,
.ci-product-table td:first-child,
.ci-inline-links a,
.ci-finder-meta,
.ci-question-kicker,
.ci-choice small,
.ci-result-reasons span,
.ci-filter-chip,
.ci-legal-meta { font-size: 14px; }

.ci-btn { min-height: 48px; padding: 12px 20px; border-radius: 10px; font-size: 16px; font-weight: 700; }
.ci-lead { font-size: 20px; }

.ci-footer-cta-row {
  min-height: 220px;
  padding: 54px 0;
}
.ci-footer-cta h2 { font-size: clamp(36px, 4vw, 48px); line-height: 1.08; }
.ci-footer-cta p { max-width: 760px; font-size: 17px; line-height: 1.6; }
.ci-footer-main { gap: 48px; padding: 64px 0 52px; }
.ci-footer-brand p { font-size: 16px; line-height: 1.65; }
.ci-footer-col h3 { font-size: 14px; letter-spacing: 0; }
.ci-footer-col a { min-height: 42px; font-size: 16px; }
.ci-footer-bottom { min-height: 76px; font-size: 14px; }

@media (max-width: 680px) {
  body { font-size: 16px; }
  .ci-section { padding: 48px 0; }
  .ci-footer-cta-row { min-height: 0; padding: 46px 0; gap: 24px; }
  .ci-footer-main { gap: 34px 22px; padding: 48px 0 40px; }
  .ci-footer-bottom { padding: 24px 0; }

  body.ci-products-page .ci-product-hero-compact .ci-lead,
  body.ci-products-page .ci-finder-meta,
  body.ci-products-page .ci-finder-proof span,
  body.ci-products-page .ci-question-kicker,
  body.ci-products-page .ci-choice small,
  body.ci-products-page .ci-result-copy .ci-lead,
  body.ci-products-page .ci-result-reasons span,
  body.ci-products-page .ci-market-row .ci-btn { font-size: 14px; }

  body.ci-products-page .ci-product-hero-compact { padding: 12px 0; }
  body.ci-products-page .ci-product-hero-compact h1 { font-size: 22px; }
  body.ci-products-page #product-finder { padding: 10px 0 24px; }
  body.ci-products-page .ci-finder-shell { padding: 14px; }
  body.ci-products-page .ci-finder-screen h2 { font-size: 30px; line-height: 1.02; }
  body.ci-products-page .ci-finder-proof div { min-height: 72px; padding: 9px 7px; }
  body.ci-products-page .ci-choice { min-height: 68px; padding: 10px; }
  body.ci-products-page .ci-choice strong { font-size: 16px; }
}
