.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: var(--radius-control);
  font-size: 15.5px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 14px; border-radius: 7px; }
.btn--block { display: flex; width: 100%; padding: 14px; font-size: 14.5px; white-space: normal; text-align: center; }
.btn--primary { background: var(--green); color: var(--paper); }
.btn--primary:hover { background: var(--green-dark); color: var(--paper); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--border-light-strong); }
.btn--outline:hover { color: var(--ink); background: rgba(var(--ink-rgb), 0.04); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { color: var(--ink); opacity: 0.9; }

/* ---------- Nav ---------- */
.site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--section-pad-x);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 50;
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.site-header-left { display: flex; align-items: center; gap: 36px; }
.site-header-right { display: flex; align-items: center; gap: 20px; }
.site-nav { display: flex; gap: 28px; font-size: 14px; font-weight: 500; }
.site-nav a { color: var(--ink); }
.site-nav a.is-active { color: var(--green); }
.faq-link { font-size: 14px; font-weight: 500; color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: 76px var(--section-pad-x) 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  max-width: 640px;
}
.hero-headline--long { font-size: 60px; line-height: 1.05; }
.hero-headline--short { font-size: 52px; line-height: 1.1; }
.hero-headline--xs { font-size: 48px; line-height: 1.12; }
.hero-body {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-light-body);
  max-width: 520px;
  margin: 0 0 20px;
}
.hero-pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--green);
  margin: 0 0 36px;
  max-width: 520px;
}
.hero-callout {
  background: var(--card);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-callout p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-light-body);
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hero-readiness-link {
  display: block;
  margin-bottom: 56px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}
.hero-note-wrap { margin-bottom: 56px; }
.hero-note { font-size: 13px; color: var(--text-light-muted); }
.chip-row { display: flex; gap: 12px; flex-wrap: wrap; }
.chip {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 12px 16px;
  background: var(--card);
  border-radius: var(--radius-control);
}
.chip-value { font-family: var(--font-mono); font-weight: 600; font-size: 17px; color: var(--ink); }
.chip-label { font-size: 13px; color: var(--text-light-muted); }
.pain-chip {
  padding: 12px 16px;
  background: var(--card);
  border-radius: var(--radius-control);
  max-width: 250px;
  font-size: 13px;
  color: rgba(var(--ink-rgb), 0.7);
  line-height: 1.4;
}

/* ---------- Calculator card (dark, sticky) ---------- */
.calc-card {
  background: var(--ink);
  border-radius: 16px;
  padding: 36px;
  color: var(--paper);
  position: sticky;
  top: 100px;
}
.calc-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  margin-bottom: 20px;
}
.calc-inputs { display: flex; flex-direction: column; gap: 18px; margin-bottom: 26px; }
.calc-slider-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-dark-body); margin-bottom: 8px; }
.calc-slider-row span:last-child { font-family: var(--font-mono); color: var(--paper); }
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(var(--paper-rgb), 0.18);
  outline: none;
  margin: 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border: none;
  border-radius: 50%;
  background: var(--paper);
  cursor: pointer;
}
.calc-slider::-webkit-slider-runnable-track { background: transparent; }
.calc-slider::-moz-range-track { background: transparent; }
.calc-slider:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(var(--paper-rgb), 0.35); }
.calc-slider:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 4px rgba(var(--paper-rgb), 0.35); }
.calc-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-field {
  background: rgba(var(--paper-rgb), 0.06);
  border-radius: var(--radius-control);
  padding: 12px 14px;
}
.calc-field-label { font-size: 13px; color: var(--text-dark-label); margin-bottom: 6px; }
.calc-field-input {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 16px;
  background: transparent;
  border: none;
  color: var(--paper);
  padding: 0;
  outline: none;
}
.calc-divider { height: 1px; background: var(--border-dark); margin: 24px 0; }
.calc-outputs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.calc-output-row { display: flex; justify-content: space-between; font-size: 14px; }
.calc-output-row span:first-child { color: var(--text-dark-body); }
.calc-output-row span:last-child { font-family: var(--font-mono); }
.calc-output-row .is-keep { color: var(--green-keep); }
.calc-output-row .is-strike { color: var(--text-dark-muted); text-decoration: line-through; }
.calc-callout {
  background: rgba(14,107,74,0.18);
  border: 1px solid rgba(14,107,74,0.4);
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 22px;
}
.calc-callout--danger { background: rgba(169,59,42,0.18); border-color: rgba(169,59,42,0.4); }
.calc-callout-label { font-size: 12.5px; color: var(--green-tint); margin-bottom: 6px; }
.calc-callout--danger .calc-callout-label { color: #E2A08F; }
.calc-callout-value { font-family: var(--font-mono); font-weight: 600; font-size: 34px; color: var(--paper); }
.calc-callout--danger .calc-callout-value { font-size: 30px; }
.calc-callout-note { font-size: 12.5px; color: var(--green-tint); margin-top: 6px; }
.calc-callout--danger .calc-callout-note { color: #E2A08F; }
.calc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-control);
  font-size: 14.5px;
  font-weight: 600;
  width: 100%;
  border: none;
  cursor: pointer;
}

/* Survival calculator specifics */
.calc-select {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 16px;
  background: transparent;
  border: none;
  color: var(--paper);
  padding: 0;
  outline: none;
  appearance: none;
}
.calc-select option { color: var(--ink); }
.calc-ratio-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 16px; }
.calc-ratio-row span:first-child { color: var(--text-dark-body); }
.calc-ratio-row span:last-child { font-family: var(--font-mono); font-weight: 600; }

/* ---------- Gauge ---------- */
.gauge-track {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green) 55%, var(--amber) 70%, var(--red) 85%, var(--red) 100%);
  position: relative;
}
.gauge-track--lg { height: 8px; margin-bottom: 8px; }
.gauge-tick {
  position: absolute;
  top: -3px;
  width: 2px;
  height: 14px;
  background: var(--ink);
}
.gauge-tick--light { background: var(--paper); top: -4px; height: 16px; }
.gauge-scale { display: flex; justify-content: space-between; font-size: 11px; color: var(--text-light-muted); margin-top: 6px; }
.gauge-scale--dark { color: var(--text-dark-muted); }

/* ---------- Sections shared ---------- */
.hero-tool-anchor { padding: 0 var(--section-pad-x) 88px; }
.hero-tool-panel {
  background: var(--card);
  border-radius: 16px;
  padding: 40px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
}
.hero-tool-copy { font-size: 15px; color: var(--text-light-body); line-height: 1.6; max-width: 440px; }
.hero-tool-figure { text-align: right; }
.hero-tool-figure-label { font-size: 12px; color: var(--text-light-muted); margin-bottom: 6px; }
.hero-tool-figure-value { font-family: var(--font-mono); font-weight: 600; font-size: 36px; color: var(--ink); }

.ce30-panel {
  background: var(--ink);
  border-radius: 16px;
  padding: 40px 44px;
  color: var(--paper);
}
.ce30-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  margin: 0;
  max-width: 760px;
}
.evidence-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.evidence-pill {
  padding: 9px 16px;
  background: rgba(var(--paper-rgb), 0.08);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
}

.seo-copy { max-width: var(--text-max); }
.seo-copy-heading { font-family: var(--font-display); font-weight: 500; font-size: 28px; margin: 0 0 18px; letter-spacing: -0.01em; }
.seo-copy-paragraph { font-size: 15px; line-height: 1.75; color: rgba(var(--ink-rgb), 0.7); margin: 0 0 16px; }
.seo-copy-paragraph:last-child { margin-bottom: 0; }

.qualify-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--card);
  border-radius: 16px;
  padding: 44px 40px;
}
.qualify-title { font-family: var(--font-display); font-weight: 500; font-size: 26px; margin: 0 0 22px; letter-spacing: -0.01em; }
.qualify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.qualify-field--wide { grid-column: span 2; }
.qualify-field label { display: block; font-size: 12.5px; font-weight: 600; color: rgba(var(--ink-rgb), 0.7); margin-bottom: 6px; }
.qualify-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-size: 14px;
  background: var(--paper);
  color: var(--ink);
  outline: none;
}
.qualify-note { font-size: 12.5px; color: rgba(var(--ink-rgb), 0.55); text-align: center; line-height: 1.5; }
.qualify-success { text-align: center; }

/* ---------- Product grid ---------- */
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.product-card {
  border-radius: var(--radius-card);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.product-card--flat { background: var(--card); }
.product-card--outlined { background: var(--paper); border: 1.5px solid var(--green); }
.product-card--elevated { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-elevated); }
.product-badge {
  position: absolute;
  top: -11px;
  right: 18px;
  background: var(--green);
  color: var(--paper);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 5px;
}
.product-index { font-family: var(--font-mono); font-size: 12px; color: var(--text-light-muted); }
.product-card--elevated .product-index { color: var(--text-dark-muted); }
.product-title { font-family: var(--font-display); font-weight: 500; font-size: 18px; margin: 0; line-height: 1.25; }
.product-body { font-size: 13px; line-height: 1.5; color: var(--text-light-body); margin: 0; flex: 1; }
.product-card--elevated .product-body { color: var(--text-dark-body); }
.product-footer { padding-top: 8px; border-top: 1px solid var(--border-light); display: flex; flex-direction: column; gap: 8px; }
.product-card--elevated .product-footer { border-top-color: var(--border-dark); }
.product-footer--link { border-top: none; padding-top: 0; }
.product-footer-link { font-size: 12.5px; font-weight: 600; color: var(--green); }

.checklist-row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; }
.checklist-row .status { }
.checklist-row .status--high { color: var(--red); }
.checklist-row .status--medium { color: var(--amber); }
.checklist-row .status--ok { color: var(--green); }
.checklist-row .label { color: var(--text-light-muted); }

.timeline-row { display: flex; justify-content: space-between; font-size: 12.5px; }
.timeline-row .label { color: var(--text-light-muted); }
.timeline-row .value { font-family: var(--font-mono); }
.timeline-row .value--highlight { color: var(--green); }

.verdict-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-radius: 6px; }
.verdict-row--fight { background: rgba(14,107,74,0.12); }
.verdict-row--fold { background: rgba(var(--ink-rgb), 0.06); }
.verdict-row .label { font-size: 12.5px; font-weight: 600; }
.verdict-row--fight .label { color: var(--green); }
.verdict-row--fold .label { color: var(--text-light-muted); }
.verdict-row .detail { font-family: var(--font-mono); font-size: 12px; }
.verdict-row--fight .detail { color: var(--green); }
.verdict-row--fold .detail { color: var(--text-light-muted); }
.product-card--elevated .verdict-row--fight { background: rgba(14,107,74,0.22); }
.product-card--elevated .verdict-row--fight .label,
.product-card--elevated .verdict-row--fight .detail { color: var(--green-tint); }
.product-card--elevated .verdict-row--fold { background: rgba(var(--paper-rgb), 0.08); }
.product-card--elevated .verdict-row--fold .label,
.product-card--elevated .verdict-row--fold .detail { color: var(--text-dark-body); }

.rows-row { display: flex; justify-content: space-between; font-size: 12.5px; }
.rows-row .label { color: var(--text-light-muted); }
.rows-row .value { font-family: var(--font-mono); color: var(--text-light-muted); }
.rows-row--highlight .label { color: var(--green-tint); }
.rows-row--highlight .value { color: var(--green-tint); }
.product-card--elevated .rows-row .label,
.product-card--elevated .rows-row .value { color: var(--text-dark-muted); }

.card-gauge-row { display: flex; justify-content: space-between; font-size: 12.5px; margin-bottom: 8px; }
.card-gauge-row .label { color: var(--text-light-muted); }
.product-card--elevated .card-gauge-row .label { color: var(--text-dark-muted); }
.card-gauge-row .value.tone-green { color: var(--green); }
.card-gauge-row .value.tone-amber { color: var(--amber); }
.card-gauge-row .value.tone-red { color: var(--red); }
.card-gauge-row .value { font-family: var(--font-mono); }

/* ---------- Readiness score section ---------- */
.readiness-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; }
.readiness-headline { font-family: var(--font-display); font-weight: 500; font-size: 36px; margin: 0 0 20px; letter-spacing: -0.01em; max-width: 420px; }
.readiness-copy { font-size: 15.5px; line-height: 1.6; color: var(--text-light-body); margin: 0 0 20px; max-width: 420px; }
.readiness-quote { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--green); margin: 0 0 28px; max-width: 420px; }
.readiness-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; max-width: 420px; }
.readiness-form-row { display: flex; gap: 10px; }
.readiness-input {
  flex: 1;
  background: var(--card);
  border-radius: var(--radius-control);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  border: 1px solid transparent;
  outline: none;
}
.readiness-input::placeholder { color: rgba(var(--ink-rgb), 0.45); }
.readiness-disclaimer { font-size: 11.5px; color: rgba(var(--ink-rgb), 0.4); }

.readiness-card { background: var(--ink); border-radius: 16px; padding: 36px; color: var(--paper); }
.readiness-card-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; }
.readiness-score-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dark-muted); margin-bottom: 10px; }
.readiness-score-value { font-family: var(--font-mono); font-weight: 600; font-size: 42px; }
.readiness-score-value span { font-size: 20px; color: var(--text-dark-muted); }
.readiness-fixes-note { font-size: 13px; color: var(--text-dark-muted); text-align: right; }
.readiness-checklist { display: flex; flex-direction: column; gap: 14px; }
.readiness-check-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 14px; border-radius: 8px; }
.readiness-check-row .status { font-family: var(--font-mono); font-size: 13px; }
.readiness-check-row .text { font-size: 13.5px; flex: 1; padding: 0 14px; }
.readiness-check-row--high { background: rgba(169,59,42,0.14); }
.readiness-check-row--high .status { color: #E2A08F; }
.readiness-check-row--medium { background: rgba(201,154,61,0.14); }
.readiness-check-row--medium .status { color: #E4C285; }
.readiness-check-row--ok { background: rgba(14,107,74,0.14); }
.readiness-check-row--ok .status { color: var(--green-tint); }
.readiness-card > .btn { margin-top: 24px; }

/* ---------- Price comparison ---------- */
.price-intro { max-width: var(--text-max); margin: 0 auto 48px; text-align: center; }
.price-intro p { font-size: 16px; color: var(--text-light-body); margin: 0 0 10px; }
.price-stepper { display: inline-flex; align-items: center; gap: 6px; vertical-align: middle; margin: 0 4px; }
.stepper-btn {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border-light-strong);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
}
.stepper-value { font-family: var(--font-mono); font-weight: 600; color: var(--ink); min-width: 104px; display: inline-block; text-align: center; }

.price-bars { max-width: var(--text-max); margin: 0 auto 56px; display: flex; flex-direction: column; gap: 14px; }
.price-bar-row { display: grid; grid-template-columns: 150px 1fr 100px; align-items: center; gap: 16px; }
.price-bar-name { font-size: 14px; color: var(--text-light-body); }
.price-bar-name--us { font-weight: 600; color: var(--ink); }
.price-bar-track { height: 30px; background: rgba(169,59,42,0.15); border-radius: 6px; position: relative; overflow: hidden; }
.price-bar-track--us { background: rgba(14,107,74,0.15); }
.price-bar-fill { height: 100%; background: var(--red); border-radius: 6px; }
.price-bar-fill--us { background: var(--green); }
.price-bar-rate {
  position: absolute; left: 10px; top: 0; bottom: 0;
  display: flex; align-items: center;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  color: rgba(var(--paper-rgb), 0.9);
}
.price-bar-rate--us { font-weight: 700; color: var(--paper); }
.price-bar-amount { font-family: var(--font-mono); font-size: 15px; text-align: right; }
.price-bar-amount--us { font-weight: 600; color: var(--green); }
.price-fixed-track { height: 30px; background: rgba(14,107,74,0.1); border-radius: 6px; overflow: hidden; border: 1px dashed rgba(14,107,74,0.5); }
.price-fixed-amount { font-family: var(--font-mono); font-size: 13px; text-align: right; color: var(--green); }
.price-fixed-link { text-align: right; font-size: 12.5px; font-weight: 600; color: var(--green); }
.price-fixed-link-btn {
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit; font-size: 12.5px; font-weight: 600; color: var(--green);
}
.price-footnote { font-size: 11.5px; color: var(--text-light-muted); text-align: right; }

.plans-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; max-width: 1100px; margin: 0 auto; }
.plan-card { border-radius: var(--radius-card); padding: 32px 28px; }
.plan-card--light { background: var(--paper); border: 1px solid var(--border-light); }
.plan-card--dark { background: var(--ink); color: var(--paper); }
.plan-name { font-size: 14px; font-weight: 600; color: var(--text-light-muted); margin-bottom: 8px; }
.plan-card--dark .plan-name { color: var(--text-dark-muted); }
.plan-price { font-family: var(--font-mono); font-size: 34px; font-weight: 600; margin-bottom: 6px; }
.plan-body { font-size: 13.5px; color: rgba(var(--ink-rgb), 0.6); margin-bottom: 24px; }
.plan-card--dark .plan-body { color: var(--text-dark-body); }

/* ---------- Stripe comparison table ---------- */
.compare-table { background: var(--card); border-radius: 16px; padding: 40px 44px; }
.compare-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 0; }
.compare-head { font-family: var(--font-display); font-weight: 500; font-size: 17px; text-align: center; padding-bottom: 14px; border-bottom: 2px solid var(--border-light); }
.compare-head--us { border-bottom-color: var(--green); color: var(--green); }
.compare-row-label { padding: 16px 0; font-size: 14px; color: var(--text-light-body); border-bottom: 1px solid var(--border-light); }
.compare-cell { padding: 16px 0; font-size: 13.5px; text-align: center; color: rgba(var(--ink-rgb), 0.6); border-bottom: 1px solid var(--border-light); }
.compare-cell--mono { font-family: var(--font-mono); font-size: 15px; }
.compare-cell--us { color: var(--green); font-weight: 600; }
.compare-grid > :nth-last-child(-n+3) { border-bottom: none; }

/* ---------- How it works ---------- */
.how-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; }
.how-grid::before {
  content: "";
  position: absolute;
  top: 15px; left: 4%; right: 4%;
  height: 1px;
  background: rgba(var(--ink-rgb), 0.15);
}
.how-step { display: flex; flex-direction: column; gap: 16px; padding-right: 16px; }
.how-number {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px;
  z-index: 1;
}
.how-number--done { background: var(--green); }
.how-title { font-weight: 600; font-size: 15px; }
.how-body { font-size: 13px; color: var(--text-light-body); line-height: 1.5; }

/* ---------- Industry selector ---------- */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1100px) and (min-width: 901px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
.industry-card { display: block; background: var(--paper); border-radius: var(--radius-card); padding: 32px 28px; border: 1px solid var(--border-light); color: var(--ink); }
/* #F9F5ED matches the baked-in paper tone of the illustration assets */
.industry-illo { background: #F9F5ED; border-radius: 10px; height: 150px; margin-bottom: 20px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.industry-illo img { height: 100%; width: auto; display: block; }
.industry-title { font-family: var(--font-display); font-weight: 500; font-size: 23px; margin: 0 0 12px; }
.industry-body { font-size: 14px; color: var(--text-light-body); margin: 0 0 20px; line-height: 1.5; }
.industry-cta { font-size: 14px; font-weight: 600; color: var(--green); }

/* ---------- Integrations ---------- */
.integrations-row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.integrations-label { font-size: 13px; color: var(--text-light-muted); margin-right: 8px; }
.integration-chip { padding: 9px 18px; background: var(--paper); border-radius: 20px; font-size: 14px; font-weight: 600; }
.integrations-row--secondary { margin-top: 12px; }
.integration-chip--soon {
  padding: 6px 14px;
  background: rgba(var(--paper-rgb), 0.6);
  border: 1px dashed var(--border-light-strong);
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-light-muted);
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; }
.faq-row { border-top: 1px solid rgba(var(--ink-rgb), 0.12); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; gap: 20px;
  background: none; border: none; width: 100%; text-align: left;
  font-size: 16px; font-weight: 500; color: var(--ink);
}
.faq-toggle { font-family: var(--font-mono); font-size: 18px; color: rgba(var(--ink-rgb), 0.4); flex-shrink: 0; }
.faq-answer { margin: 0 0 22px; font-size: 14.5px; line-height: 1.65; color: var(--text-light-body); max-width: 680px; }

/* ---------- Final CTA / footer ---------- */
.final-cta { padding: 100px var(--section-pad-x); background: var(--ink); color: var(--paper); text-align: center; }
.final-cta-title { font-family: var(--font-display); font-weight: 500; font-size: 42px; margin: 0 0 20px; letter-spacing: -0.01em; }
.final-cta-title--long { font-size: 38px; max-width: 820px; margin-left: auto; margin-right: auto; }
.final-cta-body { font-size: 16px; color: var(--text-dark-body); margin: 0 0 32px; }

.site-footer {
  padding: 36px var(--section-pad-x);
  border-top: 1px solid var(--border-dark);
  background: var(--ink);
  color: var(--text-dark-muted);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.footer-logo { font-family: var(--font-display); font-weight: 600; color: var(--paper); font-size: 16px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--text-dark-muted); }
.footer-links a.is-highlight { color: var(--green-tint); }

/* ---------- Lead capture modal ---------- */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(var(--ink-rgb), 0.5);
  align-items: center; justify-content: center;
  padding: 20px;
  z-index: 100;
}
.modal-overlay.is-open { display: flex; }
.modal {
  background: var(--paper);
  border-radius: 16px;
  padding: 36px;
  max-width: 420px;
  width: 100%;
}
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.modal-title { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin: 0; }
.modal-close { background: none; border: none; font-size: 20px; color: var(--text-light-muted); cursor: pointer; line-height: 1; padding: 4px; }
.modal-subtitle { font-size: 14px; color: var(--text-light-body); margin: 0 0 24px; }
.modal-field { margin-bottom: 16px; }
.modal-field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--text-light-muted); margin-bottom: 6px; }
.modal-field input,
.modal-field select {
  width: 100%;
  padding: 13px 14px;
  background: var(--card);
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14.5px;
  color: var(--ink);
  outline: none;
}
.modal-error { color: var(--red); font-size: 12.5px; margin: -8px 0 16px; }
.modal-success { text-align: center; padding: 12px 0; }
.modal-success-title { font-family: var(--font-display); font-weight: 500; font-size: 20px; margin: 0 0 10px; }
.modal-success-body { font-size: 14px; color: var(--text-light-body); }
