/* Hendrik core site
   Sharp, opinionated, anti-agency. Strong grotesk, near-black ink,
   one deep-red accent, hard grid, crisp borders. */

:root {
  --bg: #f6f5f1;
  --paper: #ffffff;
  --paper-alt: #efece4;
  --ink: #0b0f19;
  --ink-2: #1a2030;
  --ink-3: #4a5366;
  --ink-4: #8a93a4;
  --rule: rgba(11, 15, 25, 0.14);
  --rule-strong: rgba(11, 15, 25, 0.28);

  --accent: #c8302a;          /* deep signal red */
  --accent-ink: #ffffff;
  --accent-soft: rgba(200, 48, 42, 0.08);

  --good: #1f6f3a;
  --warn: #b0851f;

  --sans: "Inter Tight", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --sans-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 6px;
  --radius-sm: 4px;

  --shadow-sm: 0 1px 0 rgba(11,15,25,0.04);
  --shadow-card: 0 1px 0 rgba(11,15,25,0.04), 0 18px 36px -26px rgba(11,15,25,0.35);
  --shadow-lift: 0 1px 0 rgba(11,15,25,0.06), 0 24px 50px -28px rgba(11,15,25,0.5);
}

* { box-sizing: border-box; }

html, body { margin: 0; }
html {
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
}
body { overflow-x: clip; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--sans);
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

.headline-accent {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
}
.underline-accent {
  position: relative;
  white-space: nowrap;
}
.underline-accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.18em;
  background: var(--accent);
  z-index: -1;
  opacity: 0.85;
}

/* ───── Header ───── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
}
.brand-wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.01em;
}
.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-3);
  font-weight: 500;
}
.main-nav a {
  position: relative;
  padding: 6px 0;
  transition: color .15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transition: right .25s ease;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { right: 0; }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 3px;
  background: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
}
.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  min-height: 28px;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}
.language-switcher a:hover {
  color: var(--ink);
}
.language-switcher a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px 11px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: background .15s ease, color .15s ease, transform .2s ease;
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.menu-toggle {
  display: none;
  background: var(--paper);
  border: 1px solid var(--rule);
  width: 40px; height: 40px;
  border-radius: 999px;
  position: relative;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { bottom: 14px; }

/* ───── Ticker ───── */

.ticker {
  background: var(--ink);
  color: #f3f3f3;
  border-bottom: 1px solid #000;
  overflow: hidden;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  padding: 10px 0;
  animation: ticker 50s linear infinite;
}
.ticker-track span:not(.ticker-dot) {
  padding-left: 28px;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ───── Main / sections ───── */

main { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(72px, 9vw, 128px) 0; border-bottom: 1px solid var(--rule); }
section:last-child { border-bottom: none; }

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  margin-top: 8px;
}
.section-no {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
}
.section-intro {
  margin: 0;
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 44ch;
  justify-self: end;
}

/* ───── Buttons ───── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-lg { padding: 17px 26px; font-size: 15px; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline-light:hover {
  color: #fff;
  border-color: #fff;
}

/* ───── Pill ───── */

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 7px 12px 8px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pill-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,48,42,0.18);
}
.pill-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}

/* ───── Hero ───── */

.hero {
  padding: clamp(56px, 7vw, 96px) 0 clamp(64px, 8vw, 112px);
  border-bottom: 1px solid var(--rule);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.hero-copy h1 {
  font-size: clamp(48px, 7.6vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 24px 0 28px;
  font-weight: 800;
}
.hero-copy .lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 52ch;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.proof-line {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-line li {
  display: grid;
  gap: 4px;
}
.proof-line strong {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(24px, 2.2vw, 32px);
  color: var(--ink);
  letter-spacing: -0.02em;
}
.proof-line span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-family: var(--mono);
}

/* ───── Anti-agency hero card ───── */

.anti-card {
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.anti-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.anti-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-alt);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.anti-tag { color: var(--ink); font-weight: 500; }
.anti-status { display: inline-flex; align-items: center; gap: 8px; }
.status-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 0.45; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1); }
}

.anti-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.anti-col-head {
  padding: 14px 18px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rule);
}
.anti-col-head.bureau {
  color: var(--ink-3);
  border-right: 1px solid var(--rule);
}
.anti-col-head.hendrik {
  color: var(--ink);
  background: var(--accent-soft);
  position: relative;
}
.anti-col-head.hendrik::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}

.anti-row {
  padding: 14px 18px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
}
.anti-row.bureau {
  border-right: 1px solid var(--rule);
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-color: rgba(11,15,25,0.25);
  text-decoration-thickness: 1px;
}
.anti-row.hendrik {
  color: var(--ink);
  background: var(--accent-soft);
  font-weight: 500;
  position: relative;
}
.anti-row.hendrik::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.anti-row.last { border-bottom: none; }

.anti-x {
  flex: 0 0 16px;
  color: var(--ink-4);
  font-size: 12px;
  font-family: var(--mono);
}
.anti-check {
  flex: 0 0 16px;
  width: 16px; height: 16px;
  border-radius: 999px;
  background: var(--accent);
  position: relative;
}
.anti-check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 4px;
  height: 7px;
  border: 1.5px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

.anti-foot {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--ink);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.anti-meta { color: rgba(255,255,255,0.55); }

/* ───── Logos ───── */

.logos {
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.logos-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex: 0 0 auto;
}
.logos-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
}
.logo-sep {
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--rule-strong);
}

/* ───── Taken off cards ───── */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.hcard {
  padding: 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  display: grid;
  gap: 14px;
  align-content: start;
  transition: transform .2s ease, background .2s ease;
}
.cards-grid > .hcard:nth-child(3n) { border-right: none; }
.cards-grid > .hcard:nth-last-child(-n+3) { border-bottom: none; }
.hcard:hover {
  background: var(--paper-alt);
  transform: translateY(-2px);
}

.hcard header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hcard-no { color: var(--accent); font-weight: 500; }
.hcard-tag {
  border: 1px solid var(--rule);
  padding: 3px 8px 4px;
  border-radius: 999px;
}
.hcard h3 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.hcard p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.55;
}
.hcard-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.hcard-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hcard-list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--ink);
  border-radius: 1px;
  flex: 0 0 6px;
}

.hcard.accent {
  background: var(--ink);
  color: #fff;
}
.hcard.accent:hover {
  background: var(--ink);
  transform: translateY(-2px);
}
.hcard.accent h3 { color: #fff; }
.hcard.accent p { color: rgba(255,255,255,0.7); }
.hcard.accent header { color: rgba(255,255,255,0.55); }
.hcard.accent .hcard-no { color: var(--accent); }
.hcard.accent .hcard-tag { border-color: rgba(255,255,255,0.2); color: #fff; }
.hcard.accent .hcard-list { border-top-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }
.hcard.accent .hcard-list li::before { background: var(--accent); }

/* ───── Process ───── */

.process-grid {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  counter-reset: step;
}

.process-step {
  padding: 28px;
  border-right: 1px solid var(--rule);
  display: grid;
  gap: 12px;
  align-content: start;
  background: var(--paper);
  position: relative;
  transition: background .2s ease;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--paper-alt); }

.step-no {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 500;
}
.step-eta {
  display: inline-block;
  width: max-content;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--rule);
  padding: 3px 8px 4px;
  border-radius: 999px;
}
.process-step h3 {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}
.process-step p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.55;
}
.process-step ul {
  list-style: none;
  margin: 10px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
}
.process-step ul li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.process-step ul li::before {
  content: "—";
  color: var(--accent);
  font-family: var(--mono);
  font-size: 12px;
}

.process-step.accent {
  background: var(--ink);
  color: #fff;
}
.process-step.accent:hover { background: var(--ink); }
.process-step.accent h3 { color: #fff; }
.process-step.accent p { color: rgba(255,255,255,0.72); }
.process-step.accent .step-eta { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.25); }
.process-step.accent ul { border-top-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }

/* ───── VS table ───── */

.vs-table {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}
.vs-row {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--rule);
}
.vs-row:last-child { border-bottom: none; }
.vs-cell {
  padding: 18px 22px;
  border-right: 1px solid var(--rule);
  font-size: 14px;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.vs-cell:last-child { border-right: none; }
.vs-cell.label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  background: var(--paper-alt);
}
.vs-cell.hendrik {
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 500;
  position: relative;
}
.vs-row.vs-head .vs-cell {
  padding: 22px;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.vs-row.vs-head .vs-cell span:not(.vs-brand) {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.vs-row.vs-head .vs-cell small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.vs-brand {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 17px !important;
  color: var(--ink) !important;
  letter-spacing: -0.01em;
}
.vs-row.vs-head .vs-cell.hendrik {
  background: var(--ink);
}
.vs-row.vs-head .vs-cell.hendrik .vs-brand,
.vs-row.vs-head .vs-cell.hendrik span:not(.vs-brand) { color: #fff !important; }
.vs-row.vs-head .vs-cell.hendrik small { color: rgba(255,255,255,0.6); }

.vs-row.vs-foot .vs-cell { padding: 22px; font-size: 15px; }
.vs-row.vs-foot .vs-cell strong { color: var(--ink); font-family: var(--sans); }

.vs-check, .vs-x, .vs-mid {
  flex: 0 0 16px;
  width: 16px; height: 16px;
  border-radius: 999px;
  position: relative;
}
.vs-check { background: var(--accent); }
.vs-check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 4px;
  height: 7px;
  border: 1.5px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}
.vs-x {
  background: transparent;
  border: 1px solid var(--ink-4);
}
.vs-x::before, .vs-x::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; top: 7px;
  height: 1.5px;
  background: var(--ink-4);
}
.vs-x::before { transform: rotate(45deg); }
.vs-x::after { transform: rotate(-45deg); }
.vs-mid {
  background: transparent;
  border: 1px solid var(--ink-4);
}
.vs-mid::after {
  content: "";
  position: absolute;
  left: 3px; right: 3px; top: 7px;
  height: 1.5px;
  background: var(--ink-4);
}

/* ───── Results ───── */

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.result-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 22px;
  align-content: start;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.result-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--rule-strong);
}

.result-metric {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.result-metric strong {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
}
.result-metric span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.result-card blockquote {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.result-card footer {
  display: grid;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.result-card footer strong {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
}
.result-card footer span {
  font-size: 12px;
  color: var(--ink-3);
}

/* ───── CTA band ───── */

.cta-band {
  background: var(--ink);
  color: #fff;
  border: none;
  margin: 0 calc(-1 * var(--gutter));
  padding: clamp(72px, 9vw, 120px) var(--gutter);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 85% -10%, rgba(200,48,42,0.18), transparent 60%),
    radial-gradient(600px 400px at 0% 110%, rgba(200,48,42,0.10), transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.cta-band .pill {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
}
.cta-copy h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 20px 0 24px;
}
.cta-copy p {
  margin: 0 0 32px;
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 60ch;
}

.cta-band .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
}
.cta-band .btn-primary:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-checks {
  list-style: none;
  margin: 32px 0 0;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
}
.cta-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  padding: 4px 0;
}
.cta-check {
  flex: 0 0 18px;
  width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--accent);
  position: relative;
}
.cta-check::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  width: 4px;
  height: 8px;
  border: 1.5px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}

/* ───── Inquiry form (CTA band) ───── */

.inquiry-form {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  display: grid;
  gap: 22px;
  box-shadow: 0 24px 60px -28px rgba(0,0,0,0.55);
}

.inquiry-head {
  display: grid;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.inquiry-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.inquiry-head h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}
.hp-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-row {
  min-height: 65px;
}

.field > span {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  font-weight: 500;
}

.field input,
.field select,
.phone-row input,
.phone-row select {
  font-family: var(--sans-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  outline: none;
  width: 100%;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.field input::placeholder,
.phone-row input::placeholder {
  color: var(--ink-4);
}
.field input:hover,
.field select:hover,
.phone-row input:hover,
.phone-row select:hover { border-color: var(--rule-strong); }
.field input:focus,
.field select:focus,
.phone-row input:focus,
.phone-row select:focus {
  border-color: var(--ink);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(11,15,25,0.08);
}

.phone-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 8px;
}
.phone-row select {
  padding: 12px 10px;
  font-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-3) 50%),
                    linear-gradient(135deg, var(--ink-3) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

.budget {
  margin: 0;
  padding: 18px 0 0;
  border: none;
  border-top: 1px solid var(--rule);
}
.budget legend {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 12px;
  padding: 0;
}

.budget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.budget-grid label {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}
.budget-grid label input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.budget-grid label:hover { border-color: var(--ink); }
.budget-grid label:has(input:checked) {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.budget-grid label:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(11,15,25,0.12);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}
.form-submit[disabled] {
  cursor: wait;
  opacity: 0.72;
}

/* ───── 404 ───── */

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(24px, 5vw, 72px);
}

.not-found-panel {
  position: relative;
  max-width: 720px;
  padding: clamp(28px, 5vw, 56px);
  background: var(--paper);
  border: 1px solid var(--line);
}

.not-found-panel h1 {
  margin: 12px 0 14px;
  max-width: 620px;
  font-family: var(--display);
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.9;
  letter-spacing: 0;
}

.not-found-panel p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.55;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.form-meta {
  margin: 0;
  display: grid;
  gap: 6px;
}
.form-status {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  min-height: 18px;
}
.form-status:empty { display: none; }
.form-fineprint {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ───── Footer ───── */

.site-footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 64px var(--gutter) 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.footer-brand p {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--ink-3);
  max-width: 36ch;
  line-height: 1.55;
}
.site-footer h4 {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.site-footer ul {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
}
.site-footer li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 8px;
}
.site-footer li:last-child { border-bottom: none; padding-bottom: 0; }
.site-footer em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-footer a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ───── Sticky CTA ───── */

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  background: var(--ink);
  color: #fff;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, background .15s ease;
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta:hover {
  background: var(--accent);
}

/* ───── Werkbord (live kanban) ───── */

.workboard .kanban {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.kanban-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper-alt);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.kanban-tag { color: var(--ink); font-weight: 500; }
.kanban-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
}
.kanban-status .status-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}

.kanban-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--paper-alt);
}

.kanban-column {
  padding: 20px;
  display: grid;
  gap: 12px;
  align-content: start;
  border-right: 1px solid var(--rule);
  background: var(--paper);
}
.kanban-column:last-child { border-right: none; }

.column-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.column-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  color: var(--ink-3);
}
.column-icon-live { color: var(--accent); border-color: rgba(200,48,42,0.35); background: rgba(200,48,42,0.06); }
.column-icon-done { color: var(--good, #1f6f3a); border-color: rgba(31,111,58,0.32); background: rgba(31,111,58,0.06); }

.column-label {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
}
.column-count {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  background: var(--paper-alt);
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 1px 8px 2px;
  min-width: 26px;
  text-align: center;
}
.column-count-live {
  color: var(--accent);
  border-color: rgba(200,48,42,0.32);
  background: rgba(200,48,42,0.06);
}

/* Task cards */
.task-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 14px 16px 12px;
  display: grid;
  gap: 8px;
  transition: border-color .15s ease, box-shadow .2s ease, transform .2s ease;
  position: relative;
}
.task-card:hover {
  border-color: var(--rule-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.task-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.task-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.tag-icon {
  width: 12px;
  height: 12px;
  color: var(--ink-3);
  flex: 0 0 12px;
}
.task-card-live .task-tag,
.task-card-live .tag-icon { color: var(--accent); }
.task-card-done .task-tag,
.task-card-done .tag-icon { color: var(--good, #1f6f3a); }

.task-eta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-4);
}

.task-title {
  margin: 2px 0 4px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--ink);
}

.task-progress {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 3px;
  border: none;
  border-radius: 999px;
  background: var(--paper-alt);
  overflow: hidden;
}
.task-progress::-webkit-progress-bar {
  background: var(--paper-alt);
  border-radius: 999px;
}
.task-progress::-webkit-progress-value {
  background: var(--ink);
  border-radius: 999px;
  transition: width .4s ease;
}
.task-progress::-moz-progress-bar {
  background: var(--ink);
  border-radius: 999px;
}
.task-card-live .task-progress::-webkit-progress-value { background: var(--accent); }
.task-card-live .task-progress::-moz-progress-bar     { background: var(--accent); }
.task-card-done .task-progress::-webkit-progress-value { background: var(--good, #1f6f3a); }
.task-card-done .task-progress::-moz-progress-bar     { background: var(--good, #1f6f3a); }

.task-foot {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
}
.task-card-live .task-foot { color: var(--accent); }
.task-card-done .task-foot { color: var(--good, #1f6f3a); }

/* Console line */
.console-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-top: 1px solid var(--rule);
  background: var(--ink);
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-family: var(--sans);
}
.console-prompt {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
}
.console-text { flex: 1; }
.console-caret {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--accent);
  animation: caretBlink 1s steps(2, end) infinite;
  vertical-align: -3px;
}
@keyframes caretBlink {
  50% { opacity: 0; }
}

/* ───── Responsive ───── */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .anti-card { margin-top: 8px; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid > .hcard:nth-child(3n) { border-right: 1px solid var(--rule); }
  .cards-grid > .hcard:nth-child(2n) { border-right: none; }
  .cards-grid > .hcard:nth-last-child(-n+3) { border-bottom: 1px solid var(--rule); }
  .cards-grid > .hcard:nth-last-child(-n+2) { border-bottom: none; }

  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--rule); }

  .results-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .kanban-grid { grid-template-columns: 1fr; }
  .kanban-column { border-right: none; border-bottom: 1px solid var(--rule); }
  .kanban-column:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; }

  .main-nav.open {
    display: grid;
    position: fixed;
    inset: 70px 16px auto 16px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 18px;
    gap: 8px;
    box-shadow: var(--shadow-card);
    z-index: 70;
  }
  .main-nav.open a { padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 16px; }
  .main-nav.open a:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 12px; }

  .main-nav.open {
    display: grid;
    position: fixed;
    inset: 70px 16px auto 16px;
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 18px;
    gap: 8px;
    box-shadow: var(--shadow-card);
    z-index: 70;
  }
  .main-nav.open a { padding: 10px 0; border-bottom: 1px solid var(--rule); font-size: 16px; }
  .main-nav.open a:last-child { border-bottom: none; }

  .section-head { grid-template-columns: 1fr; }
  .section-intro { justify-self: start; }

  .vs-row { grid-template-columns: 1fr 1fr; }
  .vs-row > .vs-cell:nth-child(3),
  .vs-row > .vs-cell:nth-child(4) { display: none; }
  .vs-row > .vs-cell:nth-child(2) { border-right: none; }

  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid > .hcard { border-right: none !important; border-bottom: 1px solid var(--rule) !important; }
  .cards-grid > .hcard:last-child { border-bottom: none !important; }

  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; border-bottom: 1px solid var(--rule); }
  .process-step:last-child { border-bottom: none; }

  .proof-line { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .budget-grid { grid-template-columns: 1fr 1fr; }
  .cta-checks { grid-template-columns: 1fr; }
  .phone-row { grid-template-columns: 110px 1fr; }

  .anti-card { font-size: 13px; }
  .anti-row { font-size: 13px; padding: 12px 14px; }

  .console-line { padding: 12px 16px; font-size: 13px; gap: 10px; }
  .kanban-head { padding: 12px 16px; }
  .kanban-column { padding: 16px; }

  .sticky-cta { right: 16px; bottom: 16px; padding: 12px 16px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero-copy h1 { font-size: clamp(40px, 12vw, 64px); word-break: break-word; }
  .cta-copy h2 { font-size: clamp(34px, 10vw, 56px); word-break: break-word; }
  .proof-line { grid-template-columns: 1fr; }
  .logos { padding: 28px 0; gap: 18px; }
  .logos-row { gap: 18px; font-size: 16px; }

  /* Full-width primary actions for easy thumb-reach */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .btn { padding: 14px 18px; }
  .btn-lg { padding: 16px 20px; font-size: 15px; }

  /* Stack the bureau vs hendrik comparison so labels breathe */
  .anti-table { grid-template-columns: 1fr; }
  .anti-col-head.bureau,
  .anti-row.bureau { border-right: none; }
  .anti-col-head { font-size: 12px; padding: 10px 14px; }
  .anti-row { padding: 11px 14px; font-size: 13px; }
  .anti-head, .anti-foot { padding: 10px 14px; font-size: 10.5px; flex-wrap: wrap; gap: 6px; }

  /* Section padding tightens on small screens */
  section { padding: clamp(56px, 14vw, 88px) 0; }
  .section-head { margin-bottom: 32px; padding-bottom: 24px; }
  .section-head h2 { font-size: clamp(32px, 9vw, 48px); }

  /* CTA band on small phones */
  .cta-band { padding: clamp(56px, 14vw, 88px) var(--gutter); }
  .cta-checks { padding: 16px 18px; }

  /* Inquiry form */
  .inquiry-form { padding: 22px 18px; }
  .phone-row { grid-template-columns: 96px 1fr; }
  .budget-grid { grid-template-columns: 1fr 1fr; gap: 6px; }

  /* Footer */
  .footer-bottom { font-size: 10px; gap: 6px; }

  /* Kanban + console wrap cleanly */
  .kanban-head { flex-wrap: wrap; gap: 6px; }
  .console-line { flex-wrap: wrap; }
}

/* ───── Mobile polish (cross-breakpoint refinements) ───── */

/* Prevent iOS auto-zoom on focused inputs by ensuring 16px minimum font-size */
@media (max-width: 768px) {
  .field input,
  .field select,
  .phone-row input,
  .phone-row select,
  .inquiry-form input,
  .inquiry-form select,
  .inquiry-form textarea {
    font-size: 16px;
  }

  /* Larger tap targets in the mobile nav drawer & language switcher */
  .main-nav.open a { padding: 14px 4px; min-height: 44px; display: flex; align-items: center; }
  .language-switcher a { min-width: 40px; min-height: 32px; padding: 0 4px; }
  .menu-toggle { width: 44px; height: 44px; }

  /* Position mobile menu just under the header instead of fixed 70px */
  .main-nav.open {
    inset: 64px 12px auto 12px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }

  /* Make sure no element accidentally overflows the viewport horizontally */
  .hero, .section-head, .cards-grid, .process-grid, .vs-table,
  .results-grid, .cta-inner, .kanban, .anti-card { max-width: 100%; }

  /* Sticky CTA shouldn't cover the form submit on small viewports */
  .inquiry-form { padding-bottom: 24px; }
  body { padding-bottom: env(safe-area-inset-bottom, 0); }
}

/* Ensure the sticky CTA respects iOS safe-area on phones with home indicator */
.sticky-cta {
  bottom: max(20px, env(safe-area-inset-bottom, 20px));
}
@media (max-width: 768px) {
  .sticky-cta {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
  }
}

/* ───── Micro-interactions ───── */

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .6s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms),
    transform .6s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Corner brackets (data-brackets) */
[data-brackets] { position: relative; }
.bracket {
  position: absolute;
  width: 14px; height: 14px;
  pointer-events: none;
  color: var(--accent);
  opacity: 0.85;
  z-index: 4;
}
.bracket::before,
.bracket::after {
  content: "";
  position: absolute;
  background: currentColor;
}
.bracket-tl { top: 9px; left: 9px; }
.bracket-tl::before { top: 0; left: 0; width: 14px; height: 1px; }
.bracket-tl::after  { top: 0; left: 0; width: 1px; height: 14px; }
.bracket-tr { top: 9px; right: 9px; }
.bracket-tr::before { top: 0; right: 0; width: 14px; height: 1px; }
.bracket-tr::after  { top: 0; right: 0; width: 1px; height: 14px; }
.bracket-bl { bottom: 9px; left: 9px; }
.bracket-bl::before { bottom: 0; left: 0; width: 14px; height: 1px; }
.bracket-bl::after  { bottom: 0; left: 0; width: 1px; height: 14px; }
.bracket-br { bottom: 9px; right: 9px; }
.bracket-br::before { bottom: 0; right: 0; width: 14px; height: 1px; }
.bracket-br::after  { bottom: 0; right: 0; width: 1px; height: 14px; }

/* Anti-card cursor spotlight + initial scan sweep */
.anti-card { --mx: 50%; --my: 50%; }
.anti-card::before,
.anti-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.anti-card::before {
  inset: 0;
  background: radial-gradient(220px circle at var(--mx) var(--my),
              rgba(200, 48, 42, 0.16),
              transparent 65%);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 2;
}
.anti-card:hover::before { opacity: 1; }

.anti-card::after {
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg,
              transparent,
              rgba(200, 48, 42, 0.85) 30%,
              rgba(200, 48, 42, 0.85) 70%,
              transparent);
  opacity: 0;
  z-index: 3;
  animation: antiScan 1.6s cubic-bezier(.4,.0,.2,1) .5s 1 forwards;
}
@keyframes antiScan {
  0%   { top: -2%;  opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { top: 102%; opacity: 0; }
}

/* Vs-table row hover */
.vs-row { transition: background .2s ease; }
.vs-cell { transition: background .2s ease, color .2s ease; }
.vs-row:not(.vs-head):hover .vs-cell.hendrik {
  background: color-mix(in oklab, var(--accent) 22%, var(--paper));
}
.vs-row:not(.vs-head):hover .vs-cell:not(.hendrik):not(.label) {
  background: var(--paper-alt);
  color: var(--ink-3);
}
.vs-row:not(.vs-head):hover .vs-cell.label {
  color: var(--ink);
  background: var(--paper-alt);
}
.vs-row:not(.vs-head):not(.vs-foot):hover .vs-cell.hendrik::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
}
.vs-cell.hendrik { position: relative; }

/* Form field focus underline (grows L→R) */
.field { position: relative; }
.field::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width .3s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  border-bottom-left-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
}
.field:focus-within::after { width: 100%; }
.field:focus-within input,
.field:focus-within select { box-shadow: none; }

/* Process step 03 live dot */
.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  margin-left: 4px;
  vertical-align: 1px;
  box-shadow: 0 0 0 0 rgba(200,48,42,0.55);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,48,42,0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(200,48,42,0); }
}

/* Sticky CTA entrance pulse (first appearance only) */
.sticky-cta.pulse-once {
  animation: stickyEntrance .9s cubic-bezier(.2,.7,.2,1) 1;
}
@keyframes stickyEntrance {
  0%   { transform: translateY(20px) scale(.94); opacity: 0; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4), 0 0 0 0 rgba(200,48,42,0); }
  60%  { transform: translateY(0) scale(1);     opacity: 1; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4), 0 0 0 10px rgba(200,48,42,0.18); }
  100% { transform: translateY(0) scale(1);     opacity: 1; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.4), 0 0 0 0 rgba(200,48,42,0); }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .ticker-track { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
