/* ==========================================================================
   Cimento.AI — shared stylesheet for growth/replacement-hub pages
   Recreates the design system of the live Framer site (cimento.ai):
   greige canvas, ink text, signal orange, hard offset shadows, ruled grid.
   ========================================================================== */

/* ---- Brand fonts (same assets the live site serves) ----
   Fragment Mono comes from the Google Fonts CSS API because it is served as
   per-script subset files that need their unicode-range declarations. */
@import url("https://fonts.googleapis.com/css2?family=Fragment+Mono&display=swap");

@font-face {
  font-family: "AT Bureau Sans Black";
  src: url("https://framerusercontent.com/assets/BZCaofhsIllukutRchS49FdusQ.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "AT Bureau Sans Extra Bold";
  src: url("https://framerusercontent.com/assets/wUEK6CQWT3swdKTFk4v6ShSlDww.woff2") format("woff2");
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: "AT Bureau Sans Bold";
  src: url("https://framerusercontent.com/assets/tvRPbJn94YjLyXt9VGZf42S7ynM.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: "AT Bureau Sans Semi Bold";
  src: url("https://framerusercontent.com/assets/Qq5tLKkeaidkeSTNMybxEFwGTZs.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
}
@font-face {
  font-family: "AT Bureau Sans Medium";
  src: url("https://framerusercontent.com/assets/mu9aaJ0fma4zHSOMmkaq5vUCGo.woff2") format("woff2");
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --bg: #f0eeed;
  --ink: #161a1e;
  --orange: #f97c37;
  --white: #ffffff;
  --gray: #8a8a86;
  --display: "AT Bureau Sans Black", "Arial Narrow", sans-serif;
  --heavy: "AT Bureau Sans Extra Bold", sans-serif;
  --bold: "AT Bureau Sans Bold", sans-serif;
  --semi: "AT Bureau Sans Semi Bold", sans-serif;
  --body: "AT Bureau Sans Medium", sans-serif;
  --mono: "Fragment Mono", "Courier New", monospace;
  --shadow: -6px 6px 0 0 var(--ink);
  --shadow-sm: -4px 4px 0 0 var(--ink);
  --rule: 2px solid var(--ink);
  --maxw: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film-grain overlay, matches the live site's texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; }

/* ---------- type ---------- */
h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(52px, 8.5vw, 118px); }
h2 { font-size: clamp(36px, 5.2vw, 72px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.1; }
h4 { font-family: var(--heavy); font-size: 19px; text-transform: uppercase; }

.lead {
  font-family: var(--heavy);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
}
.mono, .kicker {
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
p + p { margin-top: 1em; }
.muted { color: rgba(22, 26, 30, 0.66); }

/* ---------- pill tag (bordered box, hard shadow, corner star) ---------- */
.pill {
  position: relative;
  display: inline-block;
  background: var(--bg);
  border: var(--rule);
  box-shadow: var(--shadow-sm);
  font-family: var(--heavy);
  font-size: 16px;
  padding: 8px 22px;
  margin-bottom: 34px;
}
.pill::after {
  content: "";
  position: absolute;
  top: -14px;
  right: -14px;
  width: 24px;
  height: 24px;
  background: var(--ink);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}
.pill--orange { background: var(--orange); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--ink);
  border: var(--rule);
  box-shadow: var(--shadow-sm);
  font-family: var(--heavy);
  font-size: 17px;
  text-decoration: none;
  padding: 14px 30px;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover { transform: translate(-2px, 2px); box-shadow: -2px 2px 0 0 var(--ink); }
.btn:active { transform: translate(-4px, 4px); box-shadow: none; }
.btn--ghost { background: var(--bg); }
.btn--dark { background: var(--ink); color: var(--bg); box-shadow: -4px 4px 0 0 var(--orange); }
.btn--sm { font-size: 15px; padding: 10px 20px; }

/* ---------- header ---------- */
.site-header {
  border-bottom: var(--rule);
  background: var(--bg);
  position: relative;
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 30px;
  letter-spacing: -0.01em;
  text-decoration: none;
  text-transform: lowercase;
}
.logo svg { width: 34px; height: 34px; }
.nav { display: flex; align-items: center; gap: 38px; }
.nav a {
  font-family: var(--display);
  font-size: 17px;
  text-decoration: none;
}
.nav a:hover { color: var(--orange); }
.nav .btn { margin-left: 8px; }

/* ---------- ruled section dividers with diamond nodes ---------- */
.section { position: relative; padding: 96px 0; }
.section + .section { border-top: var(--rule); }
.section + .section::before,
.section + .section::after {
  content: "";
  position: absolute;
  top: -7px;
  width: 12px;
  height: 12px;
  background: var(--ink);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.section + .section::before { left: 24px; }
.section + .section::after { right: 24px; }

.section--dark { background: var(--ink); color: var(--bg); }
.section--dark .pill { background: var(--ink); color: var(--bg); border-color: var(--bg); box-shadow: -4px 4px 0 0 var(--orange); }
.section--dark .pill::after { background: var(--orange); }
.section--orange { background: var(--orange); }
.section--tight { padding: 64px 0; }

/* ---------- hero ---------- */
.hero { padding: 88px 0 96px; }
.hero h1 { margin-bottom: 40px; }
.hero-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero .lead { max-width: 560px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 36px; align-items: center; }
.cta-note { font-family: var(--mono); font-size: 12px; text-transform: uppercase; }

/* ---------- card grid (bordered panels on ruled background) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 56px;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--white);
  border: var(--rule);
  border-radius: 14px;
  padding: 30px 28px;
  color: var(--ink);
}
.card--orange { background: var(--orange); }
.card--dark { background: var(--ink); color: var(--bg); }
.card--flat { background: var(--bg); }
.card .num {
  font-family: var(--mono);
  font-size: 14px;
  color: rgba(22, 26, 30, 0.5);
  display: block;
  margin-bottom: 10px;
}
.card--dark .num { color: rgba(240, 238, 237, 0.5); }
.card h3, .card h4 { margin-bottom: 12px; }
.card p { font-size: 16px; }

/* ---------- comparison table ---------- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: var(--rule);
  background: var(--white);
  box-shadow: var(--shadow);
  margin-top: 56px;
  font-size: 16px;
}
.compare-table th, .compare-table td {
  border: 1px solid var(--ink);
  padding: 18px 22px;
  text-align: left;
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--heavy);
  font-size: 17px;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--bg);
}
.compare-table thead th.col-cimento { background: var(--orange); color: var(--ink); }
.compare-table tbody th {
  font-family: var(--semi);
  font-weight: 600;
  background: var(--bg);
  width: 22%;
}
.compare-table td.cell-cimento { background: rgba(249, 124, 55, 0.12); }

/* ---------- checklist ---------- */
.checklist { list-style: none; margin-top: 32px; }
.checklist li {
  position: relative;
  padding: 16px 20px 16px 58px;
  border: var(--rule);
  background: var(--white);
  margin-bottom: -2px;
  font-size: 16px;
  color: var(--ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--ink);
  background: var(--orange);
}
.checklist li strong { font-family: var(--heavy); }

/* ---------- timeline (30/60/90) ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
.timeline .phase { border: var(--rule); background: var(--white); border-radius: 14px; overflow: hidden; color: var(--ink); }
.timeline .phase-head {
  background: var(--ink);
  color: var(--bg);
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  padding: 16px 24px;
}
.timeline .phase:nth-child(2) .phase-head { background: var(--orange); color: var(--ink); }
.timeline .phase-body { padding: 24px; }
.timeline ul { list-style: none; }
.timeline ul li {
  padding: 9px 0 9px 26px;
  position: relative;
  font-size: 15.5px;
  border-bottom: 1px dashed rgba(22, 26, 30, 0.25);
}
.timeline ul li:last-child { border-bottom: 0; }
.timeline ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 15px;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border: 1.5px solid var(--ink);
}

/* ---------- FAQ ---------- */
.faq { margin-top: 48px; border: var(--rule); background: var(--white); box-shadow: var(--shadow); color: var(--ink); }
.faq details { border-bottom: 1px solid var(--ink); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  font-family: var(--heavy);
  font-size: 18px;
  padding: 22px 60px 22px 26px;
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-size: 26px;
}
.faq details[open] summary::after { content: "–"; }
.faq details[open] summary { background: rgba(249, 124, 55, 0.14); }
.faq .faq-a { padding: 0 26px 24px; font-size: 16px; max-width: 900px; }

/* ---------- report preview / scorecard motifs ---------- */
.report-card {
  border: var(--rule);
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  color: var(--ink);
}
.report-card .report-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}
.report-card .report-body { padding: 26px; }
.scorebar { margin: 14px 0; }
.scorebar .scorebar-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.scorebar .scorebar-track { height: 18px; border: 2px solid var(--ink); background: var(--bg); }
.scorebar .scorebar-fill { height: 100%; background: var(--orange); border-right: 2px solid var(--ink); }
.scorebar .scorebar-fill.fill-dark { background: var(--ink); }
.bignum { font-family: var(--display); font-size: 64px; line-height: 1; }
.bignum .unit { font-size: 26px; }

/* risk matrix motif */
.risk-matrix { border-collapse: collapse; width: 100%; font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; }
.risk-matrix th, .risk-matrix td { border: 1.5px solid var(--ink); padding: 9px 8px; text-align: center; }
.risk-matrix th { background: var(--bg); }
.risk-matrix td.r-low { background: #e7e4e2; }
.risk-matrix td.r-med { background: rgba(249, 124, 55, 0.35); }
.risk-matrix td.r-high { background: var(--orange); font-family: var(--heavy); font-size: 13px; }
.risk-matrix td.r-crit { background: var(--ink); color: var(--bg); font-family: var(--heavy); font-size: 13px; }

/* ---------- two-column feature rows ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
.split > div:first-child h3 { margin-bottom: 16px; }

/* ---------- big statement band ---------- */
.statement {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 52px);
  text-transform: uppercase;
  line-height: 1.04;
  max-width: 1050px;
}
.statement em { font-style: normal; color: var(--orange); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 110px 0; }
.cta-band h2 { margin-bottom: 22px; }
.cta-band .lead { margin: 0 auto 40px; max-width: 720px; }

/* ---------- form (gated asset) ---------- */
.gate-form { border: var(--rule); background: var(--white); box-shadow: var(--shadow); padding: 34px; max-width: 520px; color: var(--ink); }
.gate-form label { display: block; font-family: var(--mono); font-size: 12px; text-transform: uppercase; margin: 18px 0 6px; }
.gate-form label:first-of-type { margin-top: 0; }
.gate-form input, .gate-form select {
  width: 100%;
  border: 2px solid var(--ink);
  background: var(--bg);
  font-family: var(--body);
  font-size: 16px;
  padding: 12px 14px;
}
.gate-form input:focus { outline: 3px solid var(--orange); }
.gate-form .btn { width: 100%; margin-top: 26px; text-align: center; }
.gate-form .fine { font-family: var(--mono); font-size: 11px; margin-top: 14px; color: rgba(22,26,30,.6); }

/* ---------- interactive free tools ---------- */
.tool-frame {
  border: var(--rule);
  background: var(--bg);
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 34px;
}
.tool-start {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tool-route {
  min-height: 260px;
  padding: 24px;
  border: var(--rule);
  background: var(--white);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.tool-route:hover,
.tool-route:focus {
  background: var(--orange);
  transform: translate(-3px, 3px);
  box-shadow: -3px 3px 0 0 var(--ink);
  outline: none;
}
.tool-route strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 0.98;
  text-transform: uppercase;
  margin: 18px 0 14px;
}
.tool-route span:last-child {
  display: block;
  font-family: var(--body);
  font-size: 15.5px;
  line-height: 1.35;
}
.tool-panel {
  background: var(--white);
  border: var(--rule);
  color: var(--ink);
}
.tool-panel__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
  border-bottom: var(--rule);
  padding: 30px;
}
.tool-panel__head h3 { font-size: clamp(30px, 4vw, 56px); margin: 10px 0 14px; }
.tool-panel__head p:not(.kicker) { max-width: 760px; }
.tool-back {
  display: inline-block;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: underline;
  cursor: pointer;
  margin-bottom: 18px;
}
.tool-stamp,
.tool-score {
  width: 118px;
  height: 118px;
  border: var(--rule);
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--display);
  font-size: 24px;
  line-height: 0.96;
  text-transform: uppercase;
  transform: rotate(7deg);
}
.tool-score {
  display: grid;
  background: var(--ink);
  color: var(--bg);
  transform: rotate(-5deg);
}
.tool-score span {
  font-family: var(--display);
  font-size: 54px;
  line-height: 0.78;
}
.tool-score small {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--orange);
}
.tool-questions {
  display: grid;
  gap: 0;
}
.tool-question {
  border: 0;
  border-bottom: var(--rule);
  padding: 28px 30px 30px;
}
.tool-question legend {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-family: var(--heavy);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.12;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.tool-question legend span {
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(22, 26, 30, 0.52);
}
.tool-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.tool-option {
  position: relative;
  display: block;
  min-height: 118px;
  padding: 18px 18px 18px 54px;
  border: 2px solid var(--ink);
  background: var(--bg);
  cursor: pointer;
}
.tool-option input {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 20px;
  height: 20px;
  accent-color: var(--orange);
}
.tool-option strong {
  display: block;
  font-family: var(--heavy);
  font-size: 17px;
  text-transform: uppercase;
  line-height: 1.12;
  margin-bottom: 8px;
}
.tool-option span {
  display: block;
  font-size: 14.5px;
  line-height: 1.32;
  color: rgba(22, 26, 30, 0.72);
}
.tool-option:has(input:checked) {
  background: var(--orange);
}
.tool-submit {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  padding: 30px;
}
.tool-result-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.65fr);
  gap: 26px;
  padding: 30px;
  border-bottom: var(--rule);
}
.tool-report {
  box-shadow: none;
}
.tool-side {
  display: grid;
  gap: 20px;
}
.tool-bullets {
  list-style: none;
  margin-top: 16px;
}
.tool-bullets li {
  position: relative;
  padding: 10px 0 10px 26px;
  border-bottom: 1px dashed rgba(22, 26, 30, 0.25);
  font-size: 15.5px;
}
.tool-bullets li:last-child { border-bottom: 0; }
.tool-bullets li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border: 1.5px solid var(--ink);
}
.card--orange .tool-bullets li::before { background: var(--bg); }
.tool-conversion {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.78fr);
  gap: 34px;
  padding: 30px;
  background: var(--ink);
  color: var(--bg);
}
.tool-conversion h3 { font-size: clamp(28px, 3.4vw, 48px); }
.tool-lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.tool-lead-form label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}
.tool-lead-form input {
  width: 100%;
  border: 2px solid var(--bg);
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  padding: 12px 14px;
  margin-top: 7px;
}
.tool-lead-form .btn {
  width: 100%;
  text-align: center;
}
.tool-lead-form .btn--ghost {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--bg);
}
.tool-lead-form .fine {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(240, 238, 237, 0.72);
}

/* ---------- breadcrumb / meta row ---------- */
.crumbs { font-family: var(--mono); font-size: 12px; text-transform: uppercase; padding: 22px 0 0; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--orange); }
.crumbs span { opacity: 0.5; }

/* ---------- footer ---------- */
.site-footer { background: var(--orange); border-top: var(--rule); }
.footer-cta { padding: 72px 0 40px; border-bottom: 2px solid var(--ink); }
.footer-cta h2 { max-width: 900px; }
.footer-cta .cta-row { margin-top: 34px; }
.footer-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 54px 0; }
.footer-links h5 { font-family: var(--mono); font-size: 12px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { text-decoration: none; font-family: var(--semi); font-size: 15px; }
.footer-links a:hover { text-decoration: underline; }
.footer-wordmark {
  font-family: var(--display);
  font-size: clamp(90px, 16vw, 230px);
  line-height: 0.9;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  padding: 10px 0 30px;
}
.footer-bottom {
  border-top: 2px solid var(--ink);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}
.footer-bottom a { text-decoration: none; margin-right: 28px; }
.footer-bottom a:hover { text-decoration: underline; }
.badges { display: flex; gap: 14px; align-items: center; font-family: var(--mono); font-size: 10px; }
.badge-dot {
  border: 2px solid var(--ink);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(22, 26, 30, 0.85);
  color: var(--bg);
  line-height: 1.1;
}

/* ---------- utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.center { text-align: center; }
.narrow { max-width: 860px; }
.two-col { columns: 2; column-gap: 48px; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .card-grid, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .tool-start { grid-template-columns: repeat(2, 1fr); }
  .tool-result-grid, .tool-conversion { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .split, .hero-cols { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .wrap { padding: 0 22px; }
  main, .hero, .section, .wrap { max-width: 100%; overflow-x: hidden; }
  .nav a:not(.btn) { display: none; }
  .site-header .wrap { height: 78px; }
  .logo { font-size: 26px; gap: 9px; }
  .logo svg { width: 30px; height: 30px; }
  .nav { gap: 0; }
  .nav .btn {
    display: none;
  }
  h1 {
    max-width: calc(100vw - 44px);
    font-size: clamp(34px, 9vw, 42px);
    overflow-wrap: break-word;
  }
  .hero .statement,
  .hero .lead {
    max-width: calc(100vw - 44px);
    font-size: 18px !important;
    line-height: 1.28 !important;
    overflow-wrap: break-word;
  }
  .pill { max-width: calc(100vw - 58px); }
  .card-grid, .card-grid--2, .card-grid--4 { grid-template-columns: 1fr; }
  .tool-frame { padding: 18px; }
  .tool-start, .tool-options, .tool-lead-form { grid-template-columns: 1fr; }
  .tool-route { min-height: 0; }
  .tool-panel__head { grid-template-columns: 1fr; padding: 22px; }
  .tool-stamp, .tool-score { width: 96px; height: 96px; }
  .tool-question { padding: 24px 20px; }
  .tool-submit, .tool-result-grid, .tool-conversion { padding: 22px; }
  .two-col { columns: 1; }
  .section { padding: 64px 0; }
  .compare-table { display: block; overflow-x: auto; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}

/* ---------- assessment readout: gap entries ---------- */
.tool-gap { border-top: 1px dashed rgba(22, 26, 30, 0.3); padding-top: 18px; margin-top: 18px; }
.tool-gap h4 { font-size: 17px; margin-bottom: 8px; }
.tool-gap h4 span { font-family: var(--mono); font-size: 13px; color: var(--orange); margin-right: 8px; }
.tool-gap p { font-size: 15.5px; }
.tool-gap p + p { margin-top: 8px; }
