/* DroidCat — site styles
   Every text/background pair below meets WCAG 2.2 AA (most meet AAA).
   Contrast ratios are noted next to the tokens. */

/* ---------- Color tokens ---------- */
:root {
  /* Light theme (logo blue on cool paper) */
  --paper-l: #F6F8FC;
  --surface-l: #FFFFFF;
  --ink-l: #0C1B36;          /* 16.1:1 on paper */
  --muted-l: #44536E;        /*  7.3:1 on paper */
  --brand-l: #16408F;        /*  9.1:1 on paper — the logo's blue */
  --on-brand-l: #FFFFFF;     /*  9.7:1 on brand */
  --brand-soft-l: #E4EBF8;   /* brand text on it: 8.1:1 */
  --rule-l: #D3DBEA;         /* decorative dividers only */
  --field-l: #6A7896;        /*  4.4:1 on surface — input borders (needs 3:1) */
  --focus-l: #16408F;
  --error-l: #B42318;        /*  6.6:1 on surface */
  --ok-l: #146C2E;           /*  6.5:1 on surface */

  /* Dark theme (logo cyan on deep navy) */
  --paper-d: #081A33;
  --surface-d: #0F2548;
  --ink-d: #EAF2FF;          /* 15.5:1 on paper */
  --muted-d: #A8BCDC;        /*  9.0:1 on paper */
  --brand-d: #72DDEA;        /* 11.0:1 on paper — the logo's cyan */
  --on-brand-d: #081A33;     /* 11.0:1 on brand */
  --brand-soft-d: #12305A;   /* brand text on it: 8.3:1 */
  --rule-d: #22406D;
  --field-d: #7A93BD;        /*  4.9:1 on surface */
  --focus-d: #FFD166;        /* 12.1:1 on paper */
  --error-d: #FF9C8F;        /*  7.6:1 on surface */
  --ok-d: #7EE2A0;           /*  9.6:1 on surface */

  /* Fallback: light values */
  --paper: var(--paper-l);
  --surface: var(--surface-l);
  --ink: var(--ink-l);
  --muted: var(--muted-l);
  --brand: var(--brand-l);
  --on-brand: var(--on-brand-l);
  --brand-soft: var(--brand-soft-l);
  --rule: var(--rule-l);
  --field: var(--field-l);
  --focus: var(--focus-l);
  --error: var(--error-l);
  --ok: var(--ok-l);

  color-scheme: light dark;
}

/* System dark preference (fallback for browsers without light-dark()) */
@media (prefers-color-scheme: dark) {
  :root {
    --paper: var(--paper-d);
    --surface: var(--surface-d);
    --ink: var(--ink-d);
    --muted: var(--muted-d);
    --brand: var(--brand-d);
    --on-brand: var(--on-brand-d);
    --brand-soft: var(--brand-soft-d);
    --rule: var(--rule-d);
    --field: var(--field-d);
    --focus: var(--focus-d);
    --error: var(--error-d);
    --ok: var(--ok-d);
  }
}

/* Theme pinned by the toggle */
:root[data-theme="light"] {
  color-scheme: light;
  --paper: var(--paper-l);
  --surface: var(--surface-l);
  --ink: var(--ink-l);
  --muted: var(--muted-l);
  --brand: var(--brand-l);
  --on-brand: var(--on-brand-l);
  --brand-soft: var(--brand-soft-l);
  --rule: var(--rule-l);
  --field: var(--field-l);
  --focus: var(--focus-l);
  --error: var(--error-l);
  --ok: var(--ok-l);
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: var(--paper-d);
  --surface: var(--surface-d);
  --ink: var(--ink-d);
  --muted: var(--muted-d);
  --brand: var(--brand-d);
  --on-brand: var(--on-brand-d);
  --brand-soft: var(--brand-soft-d);
  --rule: var(--rule-d);
  --field: var(--field-d);
  --focus: var(--focus-d);
  --error: var(--error-d);
  --ok: var(--ok-d);
}

/* ---------- Type & spacing ---------- */
:root {
  --font-display: "Saira", "Segoe UI", system-ui, sans-serif;
  --font-body: "Atkinson Hyperlegible Next", "Atkinson Hyperlegible", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: 0.9375rem;
  --step-0: 1.0625rem;
  --step-1: 1.3125rem;
  --step-2: clamp(1.5rem, 1.2rem + 1vw, 1.875rem);
  --step-3: clamp(1.875rem, 1.4rem + 2vw, 2.625rem);
  --step-4: clamp(2.375rem, 1.6rem + 3.4vw, 4rem);

  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: 2.5rem;
  --space-xl: clamp(3.5rem, 2.5rem + 4vw, 6rem);

  --wrap: 72rem;
  --radius: 10px;

  accent-color: var(--brand);
  scrollbar-color: var(--field) var(--paper);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-s);
  text-wrap: balance;
}
h1 { font-size: var(--step-4); font-weight: 700; }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); line-height: 1.25; }

p { margin: 0 0 var(--space-s); max-width: 65ch; text-wrap: pretty; }

a { color: var(--brand); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { text-decoration-thickness: 2px; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

img, svg { max-width: 100%; }

.wrap {
  width: min(100% - 2 * var(--space-m), var(--wrap));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: var(--space-s);
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--brand);
  color: var(--on-brand);
  font-weight: 700;
  border-radius: var(--radius);
}
.skip-link:focus { top: var(--space-s); }

.lede { font-size: var(--step-1); color: var(--muted); line-height: 1.5; }
.muted { color: var(--muted); }

/* ---------- Logo (SVG used as a mask so it follows the theme color) ---------- */
.logo-mask {
  display: inline-block;
  background: currentColor;
  -webkit-mask: var(--src) center / contain no-repeat;
  mask: var(--src) center / contain no-repeat;
}
.logo-mark { --src: url("/assets/droidcat-mark.svg"); aspect-ratio: 1243 / 1368; }
.logo-word { --src: url("/assets/droidcat-wordmark.svg"); aspect-ratio: 1128 / 170; }

@media (forced-colors: active) {
  .logo-mask { forced-color-adjust: none; background: CanvasText; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border: 2px solid var(--brand);
  border-radius: var(--radius);
  font: 700 var(--step-0)/1.2 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}
.btn-primary { background: var(--brand); color: var(--on-brand); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn-quiet { background: transparent; color: var(--brand); }
.btn-quiet:hover { background: var(--brand-soft); }
.btn[disabled] { opacity: 0.7; cursor: progress; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: var(--space-m);
  min-height: 4.5rem;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--brand);
  text-decoration: none;
  margin-inline-end: auto;
  padding: 0.25rem 0;
}
.brand-link .logo-mark { width: 2.4rem; }
.brand-link .logo-word { width: 8.5rem; }

.site-nav ul {
  display: flex;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
}
.site-nav a:hover { background: var(--brand-soft); }
.site-nav a[aria-current="page"] {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.4em;
}

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}
.icon-btn:hover { background: var(--brand-soft); }
.icon-btn svg { width: 22px; height: 22px; }

.theme-toggle .icon-sun { display: none; }
:root[data-active-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-active-theme="dark"] .theme-toggle .icon-moon { display: none; }

.nav-toggle, .theme-toggle { display: none; }
.js .theme-toggle { display: inline-grid; }

@media (max-width: 60rem) {
  .header-inner { flex-wrap: wrap; }
  .js .nav-toggle { display: inline-grid; }
  .header-cta { display: none; }
  .site-nav { flex-basis: 100%; order: 3; }
  .site-nav ul { flex-direction: column; padding-bottom: var(--space-s); }
  .site-nav a { padding: 0.85rem 0.5rem; }
  .js .site-nav:not(.is-open) { display: none; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--space-xl); }
.section + .section { border-top: 1px solid var(--rule); }
.section-tint { background: var(--surface); }

.section-head { max-width: 44rem; margin-bottom: var(--space-l); }
.section-head p { color: var(--muted); font-size: var(--step-1); line-height: 1.5; }

/* ---------- Hero ---------- */
.hero { padding-block: var(--space-xl); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  align-items: center;
  gap: var(--space-l);
}
.hero h1 { max-width: 14ch; }
.hero .lede { max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-s); margin-top: var(--space-m); }
.hero-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: var(--space-m);
  color: var(--muted);
  font-size: var(--step--1);
}
.hero-note .node { flex: none; }
.hero-art { color: var(--brand); justify-self: center; width: min(100%, 26rem); }
.hero-art .logo-mark { width: 100%; }

@media (max-width: 52rem) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; width: 11rem; justify-self: start; }
}

.page-hero { padding-block: var(--space-xl) var(--space-l); }
.page-hero h1 { max-width: 20ch; font-size: var(--step-4); }

/* Trace terminal — the filled dot from the logo's circuit lines */
.node {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--brand);
}

/* ---------- Problem list ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-l);
  align-items: start;
}
@media (max-width: 52rem) { .split { grid-template-columns: 1fr; } }

.fail-list { list-style: none; margin: 0; padding: 0; }
.fail-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: var(--space-s) 0;
  border-bottom: 1px solid var(--rule);
  font-weight: 500;
}
.fail-list li:first-child { border-top: 1px solid var(--rule); }
.fail-list svg { flex: none; width: 1.4rem; height: 1.4rem; margin-top: 0.15rem; color: var(--error); }

/* ---------- Process trace (signature element) ---------- */
.trace {
  --node: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-m);
  position: relative;
  counter-reset: step;
}
.trace::before {
  content: "";
  position: absolute;
  top: calc(var(--node) / 2 - 2px);
  left: calc(var(--node) / 2);
  right: 0;
  height: 4px;
  background: var(--brand);
  border-radius: 2px;
  transform-origin: left center;
}
.trace-step { position: relative; padding-top: calc(var(--node) + var(--space-m)); }
.trace-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--node);
  height: var(--node);
  border-radius: 50%;
  background: var(--paper);
  border: 4px solid var(--brand);
}
.section-tint .trace-step::before { background: var(--surface); }
.trace-step:last-child::before { background: var(--brand); }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.trace-step p { color: var(--muted); }

@media (max-width: 52rem) {
  .trace { grid-template-columns: 1fr; gap: var(--space-l); }
  .trace::before {
    top: calc(var(--node) / 2);
    bottom: 0;
    left: calc(var(--node) / 2 - 2px);
    right: auto;
    width: 4px;
    height: auto;
    transform-origin: center top;
  }
  .trace-step { padding-top: 0; padding-left: calc(var(--node) + var(--space-m)); }
}

/* One deliberate motion moment: the trace draws in when it scrolls into view */
@media (prefers-reduced-motion: no-preference) {
  .js .trace[data-reveal]::before { transform: scaleX(0); transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
  .js .trace[data-reveal].is-drawn::before { transform: scaleX(1); }
  @media (max-width: 52rem) {
    .js .trace[data-reveal]::before { transform: scaleY(0); }
    .js .trace[data-reveal].is-drawn::before { transform: scaleY(1); }
  }
}

/* ---------- Detailed process / service blocks ---------- */
.detail {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: var(--space-m);
  padding-block: var(--space-l);
  border-top: 1px solid var(--rule);
}
.detail:first-of-type { border-top: 0; padding-top: 0; }
.detail .step-num { font-size: var(--step-3); }
.detail h2 { font-size: var(--step-2); margin-bottom: 0.4rem; }
.detail .tagline { font-weight: 700; color: var(--brand); margin-bottom: var(--space-s); }
.detail-body { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: var(--space-l); }
@media (max-width: 52rem) {
  .detail { grid-template-columns: 1fr; gap: 0.5rem; }
  .detail-body { grid-template-columns: 1fr; gap: var(--space-s); }
}

.checks { list-style: none; margin: 0; padding: 0; }
.checks li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
}
.checks li::before {
  content: "";
  position: absolute;
  left: 0.15rem;
  top: 0.55em;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--brand);
}
.checks-title { font-weight: 700; margin-bottom: 0.6rem; }

.service-index {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: var(--space-m) 0 0;
  padding: 0;
  list-style: none;
}
.service-index a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--field);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.service-index a:hover { background: var(--brand-soft); }

/* ---------- Benefits ---------- */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 var(--space-l);
}
.benefit { padding-block: var(--space-m); border-top: 2px solid var(--brand); }
.benefit p { color: var(--muted); margin: 0; }
@media (max-width: 52rem) { .benefits { grid-template-columns: 1fr; } }

/* ---------- Tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-m); }
.tier {
  padding: var(--space-m);
  background: var(--surface);
  border: 1px solid var(--rule);
  border-left: 6px solid var(--tier);
  border-radius: var(--radius);
}
.tier-hot { --tier: var(--brand); }
.tier-warm { --tier: var(--field); }
.tier-pending { --tier: var(--rule); border-left-style: dashed; }
.tier h3 { margin-bottom: 0.25rem; }
.tier .tier-status { color: var(--muted); font-weight: 700; margin-bottom: 0.5rem; }
.tier p:last-child { margin: 0; color: var(--muted); }
@media (max-width: 52rem) { .tiers { grid-template-columns: 1fr; } }

/* ---------- Industries ---------- */
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.industry-list li {
  padding: 0.5rem 1rem;
  background: var(--brand-soft);
  color: var(--ink);
  border-radius: 999px;
  font-weight: 500;
}

/* ---------- Mission quote ---------- */
.mission {
  margin: 0;
  padding: var(--space-l) 0 var(--space-l) var(--space-l);
  border-left: 4px solid var(--brand);
  font-family: var(--font-display);
  font-size: var(--step-2);
  font-weight: 500;
  line-height: 1.35;
  max-width: 48rem;
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--brand); color: var(--on-brand); padding-block: var(--space-xl); }
.cta-band h2 { max-width: 22ch; }
.cta-band p { font-size: var(--step-1); max-width: 48ch; }
.cta-band .btn { background: var(--on-brand); color: var(--brand); border-color: var(--on-brand); }
.cta-band .btn:hover { background: transparent; color: var(--on-brand); }
.cta-band :focus-visible { outline-color: var(--on-brand); }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 56rem) { .contact-grid { grid-template-columns: 1fr; gap: var(--space-l); } }

.contact-aside h2 { font-size: var(--step-2); }
.contact-aside ol { padding-left: 1.2rem; }
.contact-aside li { margin-bottom: 0.6rem; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 1rem + 2vw, 2.5rem);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--space-m); }
@media (max-width: 36rem) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: var(--space-m); }
.field label, .field legend, .field-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.req { color: var(--muted); font-weight: 400; }
.hint { display: block; color: var(--muted); font-size: var(--step--1); margin-bottom: 0.35rem; }

input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: max(1rem, var(--step-0));
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--field);
  border-radius: 8px;
}
textarea { min-height: 7rem; resize: vertical; }
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
  background-position: calc(100% - 1.2rem) 55%, calc(100% - 0.85rem) 55%;
  background-size: 0.35rem 0.35rem;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

fieldset.field { border: 0; margin: 0 0 var(--space-m); padding: 0; min-width: 0; }
.choices { display: grid; grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr)); gap: 0.5rem; }
.field .choice {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.5rem 0.8rem;
  border: 2px solid var(--field);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  font-weight: 500;
}
.choice:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.choice:has(input:focus-visible) { outline: 3px solid var(--focus); outline-offset: 2px; }
.choice input, .consent input { width: 1.25rem; height: 1.25rem; margin: 0; flex: none; }

.field .consent { display: flex; margin: 0; gap: 0.75rem; align-items: flex-start; font-weight: 400; cursor: pointer; }
.consent input { margin-top: 0.2rem; }

.error-msg { display: none; margin-top: 0.4rem; color: var(--error); font-weight: 700; font-size: var(--step--1); }
.error-msg::before { content: "✕ "; }
input:user-invalid, select:user-invalid, textarea:user-invalid { border-color: var(--error); }
input:user-invalid ~ .error-msg, select:user-invalid ~ .error-msg, textarea:user-invalid ~ .error-msg { display: block; }
input:user-valid, select:user-valid { border-color: var(--ok); }
.field.show-error .error-msg,
.field:has(.consent input:user-invalid) > .error-msg { display: block; }

/* Honeypot: hidden from people and assistive tech, visible to naive bots */
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin-top: var(--space-s); font-weight: 700; }
.form-status.is-error { color: var(--error); }
.form-success h2 { font-size: var(--step-2); }

/* ---------- Prose pages ---------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: var(--step-2); margin-top: var(--space-l); }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: 0.4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--rule); padding-block: var(--space-xl) var(--space-l); }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: var(--space-l);
}
@media (max-width: 52rem) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { color: var(--brand); display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.footer-brand .logo-mark { width: 2.6rem; }
.footer-brand .logo-word { width: 8rem; }
.site-footer h2 { font-size: var(--step-0); font-family: var(--font-body); font-weight: 700; margin-bottom: 0.6rem; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li a { display: inline-block; padding: 0.35rem 0; color: var(--ink); }
.site-footer p { color: var(--muted); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-s);
  margin-top: var(--space-l);
  padding-top: var(--space-m);
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: var(--step--1);
}
.footer-base a { color: var(--muted); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

@media print {
  .site-header, .cta-band, .site-footer { display: none; }
}
