/* =====================================================
   NADMAA TECHNOLOGIES
   Clean · Minimal · Premium  — 2026
   Brand: White · Deep navy · Orange #f97316
===================================================== */

/* ── Design tokens ─────────────────────────────── */
:root {
  /* Surfaces */
  --bg:         #fcfaf6;
  --bg-subtle:  #f4efe7;
  --bg-warm:    #fff3e3;

  /* Panels */
  --panel:       #fffdf9;
  --panel-soft:  #fffdf9;
  --panel-strong:#ffffff;

  /* Borders */
  --line:        #ddd5c8;
  --line-strong: #c9bea9;

  /* Text */
  --text:   #161514;
  --muted:  #615c55;

  /* Accent — orange brand */
  --accent:        #d46a1d;
  --accent-light:  #ea8b3f;
  --accent-strong: #b85614;
  --soft:          #d46a1d;
  --signal:        #b85614;

  /* Danger */
  --danger: #dc2626;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(22,21,20,0.05);
  --shadow-sm: 0 10px 24px rgba(22,21,20,0.06), 0 2px 6px rgba(22,21,20,0.03);
  --shadow:    0 18px 40px rgba(22,21,20,0.08), 0 4px 12px rgba(22,21,20,0.04);
  --shadow-lg: 0 30px 64px rgba(22,21,20,0.12), 0 8px 20px rgba(22,21,20,0.05);

  /* Radii */
  --radius-xl: 24px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --max: 1180px;
}

/* ── Reset ──────────────────────────────────────── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(212, 106, 29, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(22, 21, 20, 0.05), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 38%, #f8f4ed 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

button, input, select, textarea { font: inherit; }

/* ── Site shell ─────────────────────────────────── */
.site-shell {
  position: relative;
  overflow: clip;
}

/* Ambient — very soft warm wash, not distracting */
.ambient {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

.ambient.one {
  top: -24vh;
  left: -18vw;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(212, 106, 29, 0.08), transparent 65%);
  filter: blur(70px);
}

.ambient.two {
  top: 45vh;
  right: -18vw;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(22, 21, 20, 0.05), transparent 62%);
  filter: blur(88px);
}

.grid-glow { display: none; }

.topbar,
main,
footer {
  position: relative;
  z-index: 1;
}

.topbar { z-index: 30; }

.nav-panel { z-index: 100; }

/* ── Topbar ─────────────────────────────────────── */
.topbar {
  width: min(calc(100% - 40px), var(--max));
  margin: 20px auto 0;
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  position: sticky;
  top: 14px;
  border: 1px solid rgba(201, 190, 169, 0.7);
  border-radius: 24px;
  background: rgba(252, 250, 246, 0.82);
  backdrop-filter: blur(26px) saturate(150%);
  box-shadow: 0 18px 38px rgba(36, 29, 20, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: clamp(109px, 10.72vw, 134px);
  height: auto;
  display: block;
  flex: none;
}

.brand-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand-copy strong {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  font-weight: 700;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-inline a,
.nav-services-trigger,
.subnav a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  transition: color 130ms ease, background 130ms ease, border-color 130ms ease;
}

.nav-inline a:hover,
.nav-inline a:focus-visible,
.nav-services-trigger:hover,
.nav-services-trigger:focus-visible,
.subnav a:hover,
.subnav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(201, 190, 169, 0.78);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding-left: 14px;
  border-left: 1px solid rgba(201, 190, 169, 0.72);
  flex: 0 0 auto;
}

.nav-services {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: transparent;
  font: inherit;
}

.nav-services-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 150ms ease;
}

.nav-services.open .nav-services-trigger {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(201, 190, 169, 0.82);
}

.nav-services.open .nav-services-trigger::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-services-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(640px, calc(100vw - 48px));
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(201, 190, 169, 0.78);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: var(--shadow);
}

.nav-services-menu[hidden] {
  display: none;
}

.nav-service-link {
  display: grid;
  gap: 6px;
  min-height: 100%;
  padding: 16px 16px 15px;
  border-radius: 18px;
  border: 1px solid rgba(201, 190, 169, 0.68);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 239, 231, 0.62));
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.nav-service-link:hover,
.nav-service-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(212, 106, 29, 0.32);
}

.nav-service-link strong {
  display: block;
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.nav-service-link span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.5;
}

/* ── Buttons ────────────────────────────────────── */
.button,
.nav-trigger {
  border: 0;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 130ms ease, box-shadow 130ms ease, background 130ms ease;
  white-space: nowrap;
}

.button:hover,
.button:focus-visible,
.nav-trigger:hover,
.nav-trigger:focus-visible {
  transform: translateY(-1px);
}

.button.primary,
.nav-trigger {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 10px 22px rgba(212,106,29,0.26), 0 1px 0 rgba(255,255,255,0.15) inset;
  font-weight: 700;
}

.button.primary:hover,
.nav-trigger:hover {
  background: var(--accent-strong);
  box-shadow: 0 14px 28px rgba(212,106,29,0.28), 0 1px 0 rgba(255,255,255,0.15) inset;
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(201, 190, 169, 0.84);
}

.button.secondary:hover {
  background: #f1f3f7;
  border-color: var(--line-strong);
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(201, 190, 169, 0.84);
}

.button.ghost:hover {
  background: var(--bg-subtle);
  border-color: var(--line-strong);
}

/* ── Nav panel ──────────────────────────────────── */
.nav-panel {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(22, 21, 20, 0.34);
  backdrop-filter: blur(10px);
  padding: 16px;
}

.nav-panel.open { display: block; }

.nav-panel-inner {
  width: min(100%, 1120px);
  min-height: calc(100vh - 32px);
  margin: 0 auto;
  padding: 32px 36px;
  border-radius: 20px;
  border: 1px solid rgba(201, 190, 169, 0.82);
  background: #fffdf9;
  box-shadow: var(--shadow-lg);
}

.nav-panel-head,
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand-block {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-brand-tagline {
  margin: 0;
  max-width: 280px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.nav-close {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-subtle);
  color: var(--muted);
  cursor: pointer;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 130ms ease, background 130ms ease;
}

.nav-close:hover {
  color: var(--text);
  background: #eff1f5;
}

/* ── Shared grid ────────────────────────────────── */
.nav-panel-grid,
.footer-grid,
.metrics-grid,
.services-grid,
.signal-grid,
.story-grid,
.resource-grid,
.detail-grid,
.form-layout,
.proof-grid,
.process-grid,
.page-split,
.comparison-grid,
.faq-grid,
.cta-band,
.hero-layout {
  display: grid;
  gap: 20px;
}

.nav-panel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  gap: 28px;
}

/* ── Cards ──────────────────────────────────────── */
.nav-cluster,
.panel,
.metric-card,
.service-card,
.signal-card,
.story-card,
.resource-card,
.detail-card,
.proof-card,
.process-card,
.faq-card,
.form-card,
.visual-card,
.cta-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel-soft);
}

.nav-cluster,
.metric-card,
.service-card,
.signal-card,
.story-card,
.resource-card,
.detail-card,
.proof-card,
.process-card,
.faq-card,
.form-card,
.visual-card,
.cta-card {
  padding: 24px;
}

/* ── Eyebrow ────────────────────────────────────── */
.eyebrow,
.nav-label {
  margin: 0 0 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 700;
}

/* ── Nav cluster ────────────────────────────────── */
.nav-cluster a {
  display: block;
  padding: 12px 0;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: color 130ms ease, padding-left 130ms ease;
}

.nav-cluster a:last-child { border-bottom: 0; }

.nav-cluster a:hover {
  color: var(--text);
  padding-left: 6px;
}

/* ── Main ───────────────────────────────────────── */
main {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.section { padding: 76px 0; }

/* ── Hero ───────────────────────────────────────── */
.hero-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  padding-top: 52px;
  gap: 48px;
}

/* ── Headings ───────────────────────────────────── */
.hero-copy h1,
.section-head h2,
.page-lead h1,
.cta-copy h2,
.contact-block h2 {
  margin: 6px 0 16px;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy h1,
.page-lead h1 {
  font-size: clamp(2.25rem, 4.6vw, 4.1rem);
  font-weight: 800;
}

.section-head h2,
.cta-copy h2,
.contact-block h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.35rem);
  font-weight: 800;
}

/* Serif italic accent — kept from Instrument Serif for editorial premium touch */
.serif {
  display: block;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.015em;
}

/* ── Body copy ──────────────────────────────────── */
.lede,
.intro,
.section-head p,
.service-card p,
.metric-card p,
.signal-card p,
.story-card p,
.resource-card p,
.detail-card p,
.proof-card p,
.process-card p,
.faq-card p,
.form-note,
.contact-note,
.footer-copy p,
label span,
.field-hint {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy .lede {
  max-width: 56ch;
  font-size: 0.94rem;
  line-height: 1.72;
}

.page-lead .lede {
  max-width: 56ch;
  font-size: 0.94rem;
  line-height: 1.72;
}

/* ── Action rows ────────────────────────────────── */
.hero-actions,
.page-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

/* ── Pills ──────────────────────────────────────── */
.hero-chips,
.tag-row,
.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.tag,
.proof-pill {
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid rgba(201, 190, 169, 0.75);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

/* ── Hero aside card ────────────────────────────── */
.hero-aside,
.page-hero-card {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(201, 190, 169, 0.78);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(244, 239, 231, 0.82));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* Top orange accent line */
.hero-aside::before,
.page-hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent) 40%, var(--accent-light) 65%, transparent);
  pointer-events: none;
}

.hero-aside-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-aside-head .eyebrow { margin: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212, 106, 29, 0.22);
  background: rgba(212, 106, 29, 0.08);
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ── Hero list items ────────────────────────────── */
.hero-list {
  display: grid;
  gap: 8px;
}

.hero-list-item,
.page-hero-metric,
.hero-kpi {
  border: 1px solid rgba(201, 190, 169, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
}

.hero-list-item { padding: 16px 18px; }

.hero-item-label,
.page-hero-metric span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-list-item strong,
.page-hero-metric strong,
.page-hero-note strong,
.hero-kpi strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.92rem;
  line-height: 1.42;
  color: var(--text);
  font-weight: 700;
}

.hero-list-item p,
.page-hero-metric p,
.page-hero-note p,
.hero-kpi span {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
  font-size: 0.84rem;
}

.hero-note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.hero-note strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.hero-note p { margin: 0; }

.home-hero {
  align-items: start;
}

.home-hero .hero-copy {
  max-width: 620px;
}

.home-hero-centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding-top: 76px;
}

.home-hero-centered .hero-copy {
  width: 100%;
  max-width: 1240px;
}

.hero-copy-centered .eyebrow {
  margin-bottom: 18px;
}

.hero-copy-centered h1 {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.065em;
}

.hero-copy-centered .lede {
  max-width: 76ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.06rem;
  line-height: 1.66;
}

.hero-copy-centered .hero-actions {
  justify-content: center;
  margin-top: 32px;
}

.hero-copy-centered .hero-facts {
  width: 100%;
  max-width: 1240px;
  margin: 44px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 190, 169, 0.74);
}

.hero-copy-centered .hero-fact {
  padding: 0 24px;
  border-left: 1px solid rgba(201, 190, 169, 0.74);
}

.hero-copy-centered .hero-fact:first-child {
  border-left: 0;
}

.hero-copy-centered h1 .serif {
  display: inline;
}

.home-page .hero-layout {
  gap: 56px;
}

.home-page .hero-aside {
  padding: 4px 0 0 28px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .hero-aside::before {
  display: none;
}

.home-page .hero-list {
  gap: 0;
}

.home-page .hero-aside-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.home-page .hero-list-item {
  display: grid;
  grid-template-columns: minmax(112px, 148px) minmax(0, 1fr);
  gap: 4px 22px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-items: start;
}

.home-page .hero-list-item:first-child {
  padding-top: 0;
}

.home-page .hero-list-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.home-page .hero-item-label {
  margin: 0;
  grid-column: 1;
  grid-row: 1 / span 2;
  padding-top: 6px;
}

.home-page .hero-list-item strong {
  grid-column: 2;
  margin: 0;
  max-width: 24ch;
  font-size: 0.96rem;
  line-height: 1.38;
}

.home-page .hero-list-item p {
  grid-column: 2;
  margin-top: 2px;
  max-width: 42ch;
}

.home-page .hero-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(112px, 148px) minmax(0, 1fr);
  gap: 6px 22px;
  align-items: start;
}

.home-page .hero-note strong {
  margin: 0;
  padding-top: 3px;
}

.home-page .hero-note p {
  margin: 0;
}

/* ── Hero facts ─────────────────────────────────── */
.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.hero-fact {
  padding: 0 0 0 16px;
  border-left: 2px solid rgba(249, 115, 22, 0.25);
}

.hero-fact strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.hero-fact span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* ── Section stripe backgrounds ─────────────────── */
.buyer-section,
.resources-section {
  background: var(--bg-subtle);
  margin: 0 calc(-1 * (100vw - min(calc(100vw - 32px), var(--max))) / 2);
  padding-left: calc((100vw - min(calc(100vw - 32px), var(--max))) / 2);
  padding-right: calc((100vw - min(calc(100vw - 32px), var(--max))) / 2);
}

.buyer-section::before,
.services-section::before,
.resources-section::before,
.forms-section::before { display: none; }

/* ── Page hero ──────────────────────────────────── */
.page-hero { padding: 48px 0 20px; }

/* ── Section head ───────────────────────────────── */
.section-head {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-head-wide {
  max-width: none;
}

.section-head p {
  max-width: 60ch;
  font-size: 0.96rem;
}

.section-head-wide p {
  max-width: none;
}

/* ── Buyer section ──────────────────────────────── */
.buyer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 48px;
  align-items: start;
}

.buyer-spotlight {
  padding: 0 48px 0 0;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.buyer-spotlight-label,
.why-proof-label {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.buyer-spotlight h3,
.why-proof strong {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.8vw, 2.1rem);
  line-height: 1.07;
  letter-spacing: -0.04em;
  color: var(--text);
  font-weight: 700;
}

.buyer-spotlight p,
.why-proof p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Premium card ───────────────────────────────── */
.premium-card {
  background: var(--bg);
  border-color: var(--line);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.premium-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.minimal-panel {
  padding: 22px;
  border-radius: 18px;
}

.buyer-spotlight.minimal-panel {
  padding: 0 48px 0 0;
  border-radius: 0;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Why section ────────────────────────────────── */
.why-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 40px;
}

.why-proof {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}

/* ── Metrics ────────────────────────────────────── */
.metrics-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card strong,
.process-card strong,
.proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

/* ── Buyer / signal rows ────────────────────────── */
.buyer-list { display: grid; gap: 0; }

.buyer-item,
.signal-row,
.contact-path {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.buyer-item:first-child,
.signal-row:first-child,
.contact-path:first-child { padding-top: 0; }

.buyer-item:last-child,
.signal-row:last-child,
.contact-path:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.buyer-item strong,
.signal-row h3,
.contact-path strong {
  display: block;
  margin: 0 0 6px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}

.buyer-item p,
.signal-row p,
.contact-path p { margin: 0; }

/* ── Signal list ────────────────────────────────── */
.signal-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

/* ── Services ───────────────────────────────────── */
.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  background: var(--bg);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 84px minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease;
}

.service-row:hover { background: var(--bg-subtle); }

.service-row-index {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-top: 4px;
}

.service-row-body h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.032em;
  color: var(--text);
}

.service-row-body p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-card h3,
.signal-card h3,
.story-card h3,
.resource-card h3,
.detail-card h3,
.proof-card h3,
.faq-card h3 {
  margin: 10px 0 8px;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.32;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color 130ms ease, gap 130ms ease;
}

.service-link:hover {
  color: var(--accent-strong);
  gap: 8px;
}

.service-row-meta {
  display: grid;
  gap: 12px;
  align-content: start;
}

.service-row-meta span {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.service-row-meta .service-link { margin-top: 0; }

.home-page .proof-section .proof-grid {
  gap: 0 28px;
  border-top: 1px solid var(--line);
}

.proof-section-positive .section-head {
  max-width: none;
  margin-bottom: 28px;
  text-align: center;
}

.proof-section-positive .section-head h2 {
  max-width: none;
  margin-inline: auto;
}

.proof-section-positive .section-head p {
  max-width: 88ch;
  margin-inline: auto;
}

.home-page .proof-section .proof-card {
  padding: 22px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-services-editorial .section-head {
  max-width: 780px;
}

.home-services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.home-service-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.home-service-intro {
  display: grid;
  gap: 14px;
  align-content: start;
}

.home-service-index {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-service-intro h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}

.home-service-intro p {
  margin: 0;
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.72;
}

.home-service-questions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-service-question {
  padding-left: 18px;
  border-left: 1px solid rgba(201, 190, 169, 0.92);
}

.home-service-question strong {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: -0.02em;
}

.home-service-question p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.home-page .faq-grid {
  gap: 16px;
}

.home-page .faq-card {
  padding: 22px 22px 20px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: var(--shadow-xs);
}

.home-page .faq-card h3 {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.4;
}

.home-page .faq-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.74;
}

/* ── Grid templates ─────────────────────────────── */
.signal-grid,
.story-grid,
.resource-grid,
.proof-grid,
.comparison-grid,
.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid,
.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ── Process cards ──────────────────────────────── */
.refined-grid { gap: 16px; }
.premium-process-grid { gap: 16px; }

.premium-process-grid .process-card {
  position: relative;
  padding: 24px;
  background: var(--bg);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.premium-process-grid .process-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.premium-process-grid .process-card::after { display: none; }

.process-card span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  background: var(--accent);
  margin-bottom: 14px;
  box-shadow: 0 3px 10px rgba(249,115,22,0.3);
}

/* ── Page split ─────────────────────────────────── */
.page-split {
  grid-template-columns: 1.07fr 0.93fr;
  align-items: start;
  gap: 44px;
}

.page-lead {
  padding-top: 8px;
  max-width: 640px;
}

.page-hero-card {
  display: grid;
  gap: 8px;
  padding: 2px 0 0 28px;
  border: 0;
  border-left: 1px solid rgba(201, 190, 169, 0.82);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-content: start;
  overflow: visible;
}

.page-hero-card::before {
  display: none;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.page-hero-card .page-hero-metric {
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(201, 190, 169, 0.72);
  border-radius: 0;
  background: transparent;
}

.page-hero-card .page-hero-metric:first-child {
  padding-top: 8px;
}

.page-hero-card .page-hero-metric:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.page-hero-note {
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 2px;
}

/* ── Service question system ───────────────────── */
.service-question-strip-shell {
  padding-top: 8px;
  padding-bottom: 18px;
}

.service-question-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-question-link {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(201, 190, 169, 0.82);
  background: rgba(255, 253, 249, 0.84);
  box-shadow: var(--shadow-xs);
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.service-question-link:hover,
.service-question-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(212, 106, 29, 0.28);
}

.service-question-link span {
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-question-link strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.service-question-link p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.58;
}

.service-question-block {
  position: relative;
  padding-top: 44px;
  border-top: 1px solid rgba(201, 190, 169, 0.56);
}

.service-question-head {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 28px;
}

.service-question-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid rgba(212, 106, 29, 0.22);
  background: rgba(212, 106, 29, 0.07);
  color: var(--accent-strong);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-question-copy {
  max-width: 760px;
}

.service-question-copy .eyebrow {
  margin-bottom: 10px;
}

.service-question-copy h2 {
  margin: 0 0 12px;
}

.service-question-copy p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.95rem;
}

/* ── Subnav ─────────────────────────────────────── */
.subnav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  margin-top: 8px;
}

/* ── Comparison ─────────────────────────────────── */
.comparison-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.comparison-grid .detail-card { min-height: 100%; }

/* ── Forms ──────────────────────────────────────── */
.form-layout {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: 40px;
}

.form-card {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(244, 239, 231, 0.88));
  border-color: rgba(201, 190, 169, 0.74);
}

.lead-form { display: grid; gap: 16px; }

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label { display: grid; gap: 7px; }

label span {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(201, 190, 169, 0.82);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  padding: 12px 14px;
  outline: 0;
  transition: border-color 130ms ease, box-shadow 130ms ease;
  font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder {
  color: #aab0bc;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

textarea {
  min-height: 144px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── Contact block ──────────────────────────────── */
.contact-block {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 190, 169, 0.78);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.contact-paths {
  display: grid;
  gap: 0;
  margin-top: 22px;
}

/* ── Resource cards ─────────────────────────────── */
.premium-resource-grid .resource-card {
  position: relative;
  min-height: 100%;
  padding-top: 48px;
  background: var(--bg);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.premium-resource-grid .resource-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.premium-resource-grid .resource-card::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 24px;
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.blog-index-grid {
  display: grid;
  gap: 24px;
}

.blog-index-grid .resource-card {
  min-height: 100%;
}

.blog-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-meta strong {
  color: var(--signal);
  font-weight: 800;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(260px, 0.3fr);
  gap: 40px;
  align-items: start;
}

.article-prose {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.84;
}

.article-prose > :first-child {
  margin-top: 0;
}

.article-prose p {
  margin: 0 0 18px;
}

.article-prose h2,
.article-prose h3 {
  color: var(--text);
  letter-spacing: -0.03em;
}

.article-prose h2 {
  margin: 40px 0 12px;
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.1;
}

.article-prose h3 {
  margin: 26px 0 10px;
  font-size: 1.08rem;
  line-height: 1.28;
}

.article-prose ol,
.article-prose ul {
  margin: 0 0 20px;
  padding-left: 22px;
}

.article-prose li + li {
  margin-top: 10px;
}

.article-prose strong {
  color: var(--text);
}

.article-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 118px;
}

.article-aside-card {
  padding: 22px;
  border: 1px solid rgba(201, 190, 169, 0.82);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-xs);
}

.article-aside-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--text);
}

.article-aside-card p,
.article-aside-card li {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
}

.article-aside-card ul {
  margin: 0;
  padding-left: 18px;
}

.article-aside-card .button {
  width: 100%;
  margin-top: 8px;
}

/* ── Scenario planner ───────────────────────────── */
.scenario-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.scenario-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  transition: color 130ms ease, border-color 130ms ease, background 130ms ease;
}

.scenario-nav a:hover,
.scenario-nav a:focus-visible {
  color: var(--accent-strong);
  border-color: rgba(249, 115, 22, 0.24);
  background: rgba(249, 115, 22, 0.05);
}

.scenario-group {
  display: grid;
  gap: 20px;
}

.scenario-group-head {
  display: grid;
  gap: 10px;
  max-width: 760px;
}

.scenario-group-head h2,
.scenario-card h3,
.scenario-card h4 {
  margin: 0;
  color: var(--text);
}

.scenario-group-head h2 {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.scenario-group-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.scenario-card {
  display: grid;
  gap: 20px;
  min-height: 100%;
}

.scenario-card-head {
  display: grid;
  gap: 10px;
}

.scenario-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.16);
  background: rgba(249, 115, 22, 0.06);
  color: var(--accent-strong);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-card p,
.scenario-card li {
  color: var(--muted);
}

.scenario-card p {
  margin: 0;
  line-height: 1.72;
}

.scenario-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.scenario-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scenario-meta-block,
.scenario-outcome {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-subtle);
}

.scenario-meta-block span,
.scenario-outcome span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--accent-strong);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scenario-meta-block strong,
.scenario-outcome strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.38;
  font-weight: 600;
}

.scenario-meta-block p,
.scenario-outcome p {
  font-size: 0.88rem;
  line-height: 1.62;
}

.scenario-stack {
  display: grid;
  gap: 12px;
}

.scenario-stack .detail-card {
  background: var(--bg);
}

.scenario-stack .detail-card h4 {
  margin-bottom: 10px;
  font-size: 0.98rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.scenario-cta {
  display: grid;
  gap: 14px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-subtle);
}

.scenario-cta p {
  margin: 0;
  color: var(--muted);
}

/* ── CTA band ───────────────────────────────────── */
.cta-band {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 38px;
  border-radius: 26px;
  border: 1px solid rgba(201, 190, 169, 0.84);
  background: linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(244, 239, 231, 0.86));
}

.cta-copy p { max-width: 580px; }

/* ── Footer ─────────────────────────────────────── */
.footer-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 0 0 36px;
}

.footer-panel {
  padding: 30px 32px 26px;
  border-radius: 28px;
  border: 1px solid rgba(201, 190, 169, 0.8);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(244, 239, 231, 0.82));
  box-shadow: 0 18px 38px rgba(36, 29, 20, 0.06);
}

.footer-top {
  gap: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(201, 190, 169, 0.74);
}

.footer-grid {
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(140px, 0.62fr));
  gap: 22px 24px;
  align-items: start;
  margin-top: 24px;
}

.footer-copy h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.025em;
  color: var(--text);
}

.footer-copy p {
  max-width: 42ch;
}

.footer-links {
  display: grid;
  gap: 12px;
  align-content: start;
  padding-left: 18px;
  border-left: 1px solid rgba(201, 190, 169, 0.74);
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-links a {
  line-height: 1.55;
  transition: color 130ms ease;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ── Scroll reveal ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 1080px ─────────────────────────────────────── */
@media (max-width: 1080px) {
  .hero-layout,
  .page-split,
  .buyer-grid,
  .why-layout,
  .form-layout,
  .cta-band,
  .metrics-grid,
  .detail-grid,
  .process-grid,
  .signal-grid,
  .story-grid,
  .resource-grid,
  .proof-grid,
  .comparison-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts,
  .page-hero-grid,
  .home-service-questions,
  .signal-list,
  .service-question-strip,
  .scenario-grid,
  .scenario-meta {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid { grid-template-columns: 1fr; }

  .hero-layout,
  .page-split,
  .form-layout,
  .cta-band {
    align-items: start;
  }

  .page-hero-card {
    padding-left: 24px;
  }

  .hero-copy-centered h1 {
    max-width: 960px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .footer-copy {
    grid-column: 1 / -1;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(201, 190, 169, 0.7);
  }

  .footer-links {
    padding-left: 16px;
  }
}

/* ── 840px ──────────────────────────────────────── */
@media (max-width: 840px) {
  .topbar {
    flex-wrap: nowrap;
    border-radius: 20px;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .nav-inline {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    padding-left: 0;
    border-left: 0;
    gap: 8px;
  }

  .nav-actions .button.ghost {
    display: none;
  }

  .nav-trigger {
    min-height: 42px;
    padding: 0 16px;
    gap: 10px;
    width: auto;
  }

  .nav-trigger::before {
    content: "";
    width: 14px;
    height: 10px;
    flex: none;
    background:
      linear-gradient(currentColor, currentColor) 0 0 / 100% 1.8px no-repeat,
      linear-gradient(currentColor, currentColor) 0 50% / 100% 1.8px no-repeat,
      linear-gradient(currentColor, currentColor) 0 100% / 100% 1.8px no-repeat;
  }

  .nav-panel-grid,
  .hero-layout,
  .home-service-row,
  .page-split,
  .article-layout,
  .buyer-grid,
  .why-layout,
  .metrics-grid,
  .signal-grid,
  .story-grid,
  .resource-grid,
  .detail-grid,
  .proof-grid,
  .process-grid,
  .comparison-grid,
  .faq-grid,
  .form-layout,
  .footer-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .nav-panel-inner,
  .hero-aside,
  .page-hero-card,
  .contact-block,
  .footer-panel {
    padding: 22px;
  }

  .nav-panel {
    padding: 10px;
  }

  .nav-panel-inner {
    width: 100%;
    min-height: calc(100vh - 20px);
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .nav-panel-head {
    align-items: center;
    margin-bottom: 8px;
  }

  .nav-panel-grid {
    margin-top: 18px;
    gap: 14px;
  }

  .nav-cluster {
    padding: 18px;
    border-radius: 18px;
  }

  .nav-label {
    margin-bottom: 10px;
  }

  .nav-cluster a {
    font-size: 1rem;
    padding: 14px 0;
  }

  .field-grid { grid-template-columns: 1fr; }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-row {
    width: 100%;
  }

  .hero-facts,
  .page-hero-grid,
  .home-service-questions,
  .service-question-strip,
  .signal-list,
  .scenario-grid,
  .scenario-meta {
    grid-template-columns: 1fr;
  }

  .home-page .hero-aside {
    padding: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 22px;
  }

  .home-hero-centered {
    text-align: left;
    justify-items: stretch;
  }

  .hero-copy-centered h1,
  .hero-copy-centered .lede {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-copy-centered .hero-actions {
    justify-content: flex-start;
  }

  .hero-copy-centered .hero-facts {
    max-width: none;
  }

  .hero-copy-centered .hero-fact {
    padding: 0 0 0 16px;
    border-left: 2px solid rgba(249, 115, 22, 0.25);
  }

  .hero-copy-centered .hero-fact:first-child {
    border-left: 2px solid rgba(249, 115, 22, 0.25);
  }

  .home-page .hero-aside-head,
  .home-page .hero-list-item,
  .home-page .hero-note {
    grid-template-columns: 1fr;
  }

  .home-page .hero-item-label,
  .home-page .hero-list-item strong,
  .home-page .hero-list-item p {
    grid-column: auto;
    grid-row: auto;
  }

  .home-page .hero-item-label {
    padding-top: 0;
  }

  .page-hero-card {
    padding: 22px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home-service-question {
    padding-left: 0;
    border-left: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(201, 190, 169, 0.82);
  }

  .home-service-question:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .service-question-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-question-index {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    font-size: 0.95rem;
  }

  .buyer-section,
  .resources-section {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .footer-copy {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-links {
    padding-left: 0;
    border-left: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(201, 190, 169, 0.74);
  }

  .buyer-spotlight {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 24px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-row-index { padding-top: 0; }

  .cta-band { padding: 28px; }
}

/* ── 560px ──────────────────────────────────────── */
@media (max-width: 560px) {
  main,
  .topbar,
  .footer-shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .topbar {
    top: 10px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 104px;
  }

  .article-aside {
    position: static;
  }

  .section { padding: 56px 0; }

  .hero-copy h1,
  .page-lead h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .button,
  .nav-trigger { width: auto; }

  .hero-actions,
  .page-actions,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
