/* ============================================================
   OwlyVision — Public Site Design System
   Direction: calm, editorial, confident, mobile-first
   v2: Desktop hero polish, curated card feel, micro-trust,
       refined showcase, CTA warmth, mobile tightening
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* --- Tokens --- */
:root {
  --ink:          #2c2620;
  --ink-2:        #504840;
  --ink-3:        #8a7f72;
  --bg:           #faf8f5;
  --bg-warm:      #f5f0e8;
  --bg-recessed:  #f0ebe4;
  --surface:      #ffffff;
  --dark:         #322d28;
  --dark-2:       #3a342e;
  --accent:       #9e5f32;
  --accent-h:     #88502a;
  --accent-faint: #fdf3ec;
  --gold:         #b8913a;
  --brass:        #a08248;
  --border:       #ddd6cc;
  --border-soft:  #ece6de;

  /* Type */
  --serif:  'Georgia', 'Times New Roman', 'Palatino', serif;
  --sans:   'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --max:    1080px;
  --gutter: clamp(1.25rem, 4vw, 2rem);

  /* Shadows — layered warmth */
  --sh-sm:  0 1px 3px rgba(44,38,32,0.05);
  --sh-md:  0 4px 16px rgba(44,38,32,0.06);
  --sh-lg:  0 8px 30px rgba(44,38,32,0.08);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* --- Focus styles (accessibility) --- */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(158,95,50,0.15);
}

/* --- Headings --- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: 0;
}

/* ============================================================
   Layout
   ============================================================ */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.12s ease;
  line-height: 1;
  text-decoration: none;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(158,95,50,0.15);
}
.btn--primary:hover {
  background: var(--accent-h);
  box-shadow: 0 4px 16px rgba(158,95,50,0.25);
  transform: translateY(-1px);
}

.btn--sm {
  min-height: 40px;
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(44,38,32,0.06);
}
.btn--white:hover {
  color: var(--accent);
  box-shadow: 0 4px 16px rgba(44,38,32,0.10);
  transform: translateY(-1px);
}

.btn--dark-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--dark-outline:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
  padding: 0.6rem 0;
  min-height: auto;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(158,95,50,0.35);
}
.btn--ghost:hover {
  color: var(--accent-h);
  text-decoration-color: var(--accent-h);
}

/* ============================================================
   Header — single clean bar
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.96);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  min-height: 52px;
  gap: 1.5rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.58rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: normal;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}
.site-header__brand::before {
  content: "";
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
  background: url("assets/owlyvision_mark_nl.svg?v=20260508c") center / contain no-repeat;
}
.site-header__brand strong { font-weight: 700; }
.site-header__brand img {
  display: block;
  width: 152px;
  height: auto;
  opacity: 0.72;
}

.site-nav {
  display: none;
  gap: 1.6rem;
  margin-left: auto;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-2);
}
.site-nav a { transition: color 0.15s; }
.site-nav a:hover { color: var(--accent); }
.site-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 700;
}

.site-header__actions {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

.mobile-nav {
  display: none;
  margin-left: auto;
  position: relative;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  list-style: none;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  display: grid;
  gap: 0.18rem;
  min-width: 10rem;
  padding: 0.38rem;
  border-radius: 0.9rem;
  background: rgb(255, 252, 247);
  border: 1px solid var(--border);
  box-shadow: 0 14px 34px rgba(44, 38, 32, 0.12);
}

.mobile-nav__panel a {
  font-size: 0.9rem;
  padding: 0.64rem 0.78rem;
  border-radius: 0.75rem;
  color: var(--ink-2);
}

.mobile-nav__panel a:hover {
  color: var(--ink);
  background: rgba(158,95,50,0.08);
}

.mobile-nav__panel a[aria-current="page"] {
  color: var(--accent);
  background: rgba(158,95,50,0.08);
  font-weight: 700;
}

.mobile-nav__panel a.mobile-nav__contact {
  font-weight: 700;
  color: var(--accent);
  background: rgba(158,95,50,0.06);
}

/* ============================================================
   Hero — Light, editorial, confident
   ============================================================ */
.hero {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(ellipse 50% 45% at 65% 0%, rgba(158,95,50,0.04), transparent 60%),
    linear-gradient(180deg, #fffcf7 0%, var(--bg) 100%);
}

.hero__content {
  max-width: 580px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(2rem, 5.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.hero__lead {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero__subaction {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 700;
}

.hero__subaction:hover {
  color: var(--accent-h);
}

.hero__trust-line {
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero__trust-line a {
  color: inherit;
  text-decoration: none;
}

.hero__trust-line a:hover {
  color: var(--accent);
}

/* Hero grid — single column on mobile, two-column on tablet+ */
.hero__grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

/* Hero visual — present on mobile, expanded on tablet+ */
.hero__visual {
  display: block;
}

.hero__browser {
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-md), 0 12px 40px rgba(44,38,32,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.hero__browser-bar {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: var(--bg-recessed);
  border-bottom: 1px solid var(--border-soft);
}

.hero__browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.hero__browser-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.hero__browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__browser-caption {
  text-align: center;
  padding: 0.6rem 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* ============================================================
   Hero — light variant (for subpages)
   ============================================================ */
.hero--light {
  padding: 3rem 0 2rem;
  background:
    radial-gradient(ellipse 60% 50% at 70% 0%, rgba(158,95,50,0.04), transparent 55%),
    linear-gradient(180deg, #fffcf7 0%, var(--bg) 100%);
}

.hero--light .hero__content {
  max-width: 560px;
}

.hero--light .hero__title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
}

/* ============================================================
   Founder / post-preview trust section
   ============================================================ */
.founder {
  padding: 2.75rem 0;
  background: #fff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.founder__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.founder__eyebrow,
.response-card__eyebrow,
.proof-strip__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.founder__title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  margin-bottom: 0.7rem;
  letter-spacing: 0;
}

.founder__lead,
.founder__body {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.7;
}

.founder__body {
  margin-top: 0.9rem;
}

.founder__signature {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.1rem;
}

.founder__name {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

.founder__role {
  font-size: 0.82rem;
  color: var(--ink-3);
}

.response-card {
  padding: 1.35rem 1.4rem;
  border-radius: 12px;
  background: var(--bg-warm);
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
}

.response-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.45rem;
  letter-spacing: 0;
}

.response-card__body {
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.65;
}

.response-card__primary {
  margin: 0.65rem 0 0;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.response-card__primary a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.response-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.response-card__note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--ink-3);
  line-height: 1.55;
}

/* ============================================================
   Proof strip — visible trust facts
   ============================================================ */
.proof-strip {
  padding: 1rem 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.proof-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.6rem;
  align-items: center;
  justify-content: center;
}

.proof-strip__item {
  position: relative;
  padding-left: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-2);
}

.proof-strip__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

/* ============================================================
   Real proof block — operational evidence
   ============================================================ */
.proof-case {
  padding: 3rem 0;
  background:
    radial-gradient(ellipse 55% 42% at 18% 0%, rgba(158,95,50,0.05), transparent 62%),
    linear-gradient(180deg, #fffdf9 0%, var(--bg-warm) 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.proof-case__intro {
  max-width: 680px;
  margin-bottom: 1.6rem;
}

.proof-case__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.proof-case__title {
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  margin-bottom: 0.7rem;
  letter-spacing: 0;
}

.proof-case__lead {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 58ch;
}

.proof-case__grid {
  display: grid;
  gap: 1rem;
}

.proof-case__card {
  padding: 1.25rem 1.25rem 1.15rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--sh-sm);
}

.proof-case__meta {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.proof-case__card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.proof-case__card p {
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.62;
}

.proof-case__note {
  margin-top: 1rem;
  color: var(--ink-3);
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 62ch;
}

/* ============================================================
   Price signal — narrow public transparency
   ============================================================ */
.price-signal {
  padding: 3rem 0;
  background:
    radial-gradient(ellipse 52% 40% at 78% 0%, rgba(158,95,50,0.05), transparent 62%),
    linear-gradient(180deg, #fffdf9 0%, #fff 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.price-signal__grid {
  display: grid;
  gap: 1.25rem;
}

.price-signal__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.55rem;
}

.price-signal__intro {
  max-width: 660px;
}

.price-signal__title {
  max-width: 14ch;
  font-size: clamp(1.55rem, 3vw, 1.95rem);
  margin-bottom: 0.55rem;
  letter-spacing: 0;
}

.price-signal__lead {
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 60ch;
}

.price-signal__cards {
  display: grid;
  gap: 1rem;
}

.price-signal__card {
  padding: 1.25rem 1.25rem 1.15rem;
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  box-shadow: var(--sh-sm);
}

.price-signal__meta {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.price-signal__card h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.price-signal__card p {
  color: var(--ink-2);
  font-size: 0.92rem;
  line-height: 1.62;
}

.price-signal__list {
  margin: 0.75rem 0 0;
  padding-left: 1.05rem;
  color: var(--ink-2);
  font-size: 0.89rem;
  line-height: 1.58;
}

.price-signal__list li + li {
  margin-top: 0.35rem;
}

.price-signal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.price-signal__note {
  color: var(--ink-3);
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 64ch;
}

/* ============================================================
   Section primitives
   ============================================================ */
.section {
  padding: 3.5rem 0;
}

.section--warm {
  background: var(--bg-warm);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section--dark {
  background: var(--dark);
}

.section__header {
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.section__header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}
.section__header p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
}

.section__header--center {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

/* ============================================================
   Werkwijze — numbered steps
   ============================================================ */
.steps {
  display: grid;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.step:last-child { border-bottom: none; }

.step__num {
  width: 48px;
  height: 48px;
  background: var(--bg-warm);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1.5px solid var(--border-soft);
  transition: background 0.2s, border-color 0.2s;
}

.step:hover .step__num {
  background: var(--accent-faint);
  border-color: var(--accent);
}

.step h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.step p {
  font-size: 0.93rem;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============================================================
   Showcase cards — portfolio examples
   ============================================================ */
.showcase-grid {
  display: grid;
  gap: 1.25rem;
}

.showcase-card {
  background: var(--surface);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.showcase-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-2px);
}

.showcase-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--dark);
}
.showcase-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.showcase-card__img--screenshot {
  aspect-ratio: 16 / 10;
  height: auto;
  background: var(--surface);
}
.showcase-card__img--screenshot img {
  object-fit: cover;
}

/* ============================================================
   v11 Public-site proof polish -- cleaner enterprise proof
   ============================================================ */
:root {
  --bg: #fbfaf7;
  --bg-warm: #f1ebe2;
  --bg-recessed: #e9e2d8;
  --surface: #fffdfa;
  --dark: #211d19;
  --dark-2: #302a24;
  --border: rgba(28, 23, 19, 0.18);
  --border-soft: rgba(28, 23, 19, 0.11);
  --sh-sm: 0 1px 2px rgba(28, 23, 19, 0.04);
  --sh-md: 0 10px 28px rgba(28, 23, 19, 0.08);
  --sh-lg: 0 18px 48px rgba(28, 23, 19, 0.12);
}

.hero--home .hero__title {
  max-width: 15.8ch;
}

.hero__visual--proof-board {
  align-self: stretch;
}

.proof-board {
  display: grid;
  gap: 0.75rem;
  padding: clamp(0.7rem, 1.4vw, 0.95rem);
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.96), rgba(245, 238, 228, 0.86)),
    var(--surface);
  box-shadow: var(--sh-md);
}

.proof-board__primary,
.proof-board__tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: var(--surface);
  color: inherit;
  text-decoration: none;
}

.proof-board__primary {
  display: grid;
  min-height: 0;
}

.proof-board__primary img {
  width: 100%;
  aspect-ratio: 16 / 10.2;
  object-fit: cover;
  object-position: center top;
  background: var(--surface);
}

.proof-board__kicker {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  z-index: 2;
  padding: 0.34rem 0.5rem;
  background: rgba(255, 253, 250, 0.92);
  border: 1px solid rgba(28, 23, 19, 0.16);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.proof-board__caption {
  display: grid;
  gap: 0.12rem;
  padding: 0.82rem 0.88rem;
  border-top: 1px solid var(--border-soft);
  background: var(--surface);
}

.proof-board__caption strong {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.15;
}

.proof-board__caption span {
  color: var(--ink-2);
  font-size: 0.82rem;
  line-height: 1.45;
}

.proof-board__side {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.proof-board__tile {
  min-height: 6.7rem;
}

.proof-board__tile img {
  width: 100%;
  height: 100%;
  min-height: 6.7rem;
  object-fit: cover;
  object-position: center top;
}

.proof-board__tile > span {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  max-width: calc(100% - 1rem);
  padding: 0.24rem 0.42rem;
  background: rgba(255, 253, 250, 0.94);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.proof-board__tile--text {
  display: grid;
  align-content: end;
  gap: 0.32rem;
  padding: 0.75rem;
  background: var(--dark);
  color: #fffaf2;
}

.proof-board__tile--text span,
.proof-board__tile--text > span {
  position: static;
  max-width: none;
  padding: 0;
  background: transparent;
  color: #e8a39b;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-board__tile--text strong {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.08;
}

.proof-board__tile--split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  padding: 0.45rem;
  background: var(--surface);
}

.proof-board__tile--split a {
  position: relative;
  display: block;
  min-height: 5.9rem;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  background: #fffdf9;
  color: inherit;
  text-decoration: none;
}

.proof-board__tile--split img {
  width: 100%;
  height: 100%;
  min-height: 5.9rem;
  object-fit: cover;
  object-position: left top;
}

.proof-board__tile--split a > span {
  position: absolute;
  left: 0.32rem;
  bottom: 0.32rem;
  max-width: calc(100% - 0.8rem);
  padding: 0.2rem 0.28rem;
  background: rgba(255, 253, 250, 0.95);
  color: var(--ink);
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1.15;
}

/* v12 targeted visual repair: remove accidental empty gutters. */
.hero__trade-frame.hero__trade-frame--mobile-proof {
  width: min(100%, 18.5rem);
  max-width: 18.5rem;
}

.hero__trade-frame.hero__trade-frame--mobile-proof img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

@media (min-width: 900px) {
  .proof-board--home {
    grid-template-columns: minmax(0, 1fr) minmax(8.6rem, 0.38fr);
    grid-template-rows: auto auto auto;
    align-items: stretch;
  }

  .proof-board--home .proof-board__primary {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .proof-board--home .proof-board__side {
    display: contents;
  }

  .proof-board--home .proof-board__tile:not(.proof-board__tile--split),
  .proof-board--home .proof-board__tile:not(.proof-board__tile--split) img {
    min-height: 7.35rem;
  }

  .proof-board--home .proof-board__side > .proof-board__tile:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
  }

  .proof-board--home .proof-board__side > .proof-board__tile:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .proof-board--home .proof-board__tile--split {
    grid-column: 1 / -1;
    grid-row: 3;
    min-height: 7.6rem;
  }

  .proof-board--home .proof-board__tile--split a,
  .proof-board--home .proof-board__tile--split img {
    min-height: 7.6rem;
  }

  .proof-board--home .proof-board__tile--split a > span {
    padding: 0.22rem 0.34rem;
    font-size: 0.66rem;
  }
}

@media (max-width: 640px) {
  .hero__trade-frame.hero__trade-frame--mobile-proof {
    width: min(100%, 15.5rem);
    max-width: 15.5rem;
  }
}

.live-proof-grid {
  gap: 1.4rem;
}

.live-proof-grid .showcase-card {
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  padding: 0;
  box-shadow: var(--sh-sm);
}

.live-proof-grid .showcase-card__img {
  border: 0;
  border-bottom: 1px solid var(--border-soft);
  background: var(--surface);
}

.live-proof-grid .showcase-card__body {
  padding: 1rem 1.05rem 1.1rem;
}


.tracking-consent {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 80;
  display: flex;
  max-width: min(26rem, calc(100vw - 2rem));
  gap: 0.75rem;
  align-items: center;
  padding: 0.82rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 253, 250, 0.93);
  backdrop-filter: blur(8px);
  box-shadow: var(--sh-lg);
  color: var(--ink);
}

.tracking-consent__copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.tracking-consent__copy strong {
  font-size: 0.86rem;
  line-height: 1.2;
}

.tracking-consent__copy span {
  color: var(--ink-2);
  font-size: 0.76rem;
  line-height: 1.38;
}

.tracking-consent__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 0.5rem;
}

.tracking-consent__button {
  min-height: 2.15rem;
  padding: 0 0.65rem;
  border-radius: 5px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.tracking-consent__button--ghost {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
}

.tracking-consent__button--primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fffdfa;
}

@media (max-width: 680px) {
  html[data-consent-banner-visible="true"] body {
    padding-bottom: clamp(5.25rem, 18vh, 7rem);
  }

  .tracking-consent {
    left: 0.55rem;
    right: 0.55rem;
    bottom: 0.55rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.55rem;
    align-items: center;
    padding: 0.55rem 0.6rem;
  }

  .tracking-consent__actions {
    justify-content: stretch;
  }

  .tracking-consent__copy span {
    display: none;
  }

  .tracking-consent__button {
    flex: 1;
    min-width: 4.8rem;
    min-height: 2rem;
    padding-inline: 0.55rem;
  }
}

.live-proof-grid .showcase-card--featured .showcase-card__img {
  min-height: 16rem;
}

@media (min-width: 900px) {
  .proof-board {
    grid-template-columns: minmax(0, 1.55fr) minmax(9.4rem, 0.75fr);
    gap: 0.85rem;
    min-height: 100%;
  }

  .proof-board__side {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(0, 1fr);
  }

  .proof-board__primary img {
    aspect-ratio: 16 / 10;
    min-height: 24rem;
  }

  .proof-board__tile,
  .proof-board__tile img {
    min-height: 7.4rem;
  }

  .proof-board--projects .proof-board__primary img {
    min-height: 22rem;
  }
}

@media (max-width: 899px) {
  .proof-board__side {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .proof-board {
    gap: 0.55rem;
    padding: 0.55rem;
    border-radius: 7px;
  }

  .proof-board__primary img {
    aspect-ratio: 16 / 10.4;
  }

  .proof-board__caption {
    padding: 0.65rem 0.7rem;
  }

  .proof-board__caption span {
    font-size: 0.78rem;
  }

  .proof-board__side {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .proof-board__tile,
  .proof-board__tile img {
    min-height: 5.4rem;
  }

  .proof-board__tile--text {
    min-height: auto;
  }

  .proof-board__kicker {
    top: 0.52rem;
    left: 0.52rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.site-nav,
.site-nav__group summary {
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .site-nav {
    gap: clamp(0.9rem, 1.35vw, 1.35rem);
    font-size: 0.86rem;
  }

  .site-header__brand img {
    width: clamp(156px, 12vw, 188px);
  }
}
.showcase-card:hover .showcase-card__img img {
  transform: scale(1.03);
}

.showcase-card__body {
  padding: 1.1rem 1.2rem;
}
.showcase-card__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.showcase-card h3 {
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.showcase-card__desc {
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.6;
}

.showcase-card__link {
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.showcase-card__link a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.showcase-card__link a:hover {
  color: var(--accent-h);
}

.showcase-grid__note {
  max-width: 60ch;
  margin: 0 auto 1.1rem;
  color: var(--ink-2);
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: center;
}

/* Showcase section CTA */
.showcase-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Curated grid variant (voorbeelden page) */
.showcase-grid--curated .showcase-card--featured .showcase-card__img {
  height: 240px;
}

/* ============================================================
   CTA / Contact section (dark) — simplified
   ============================================================ */
.cta {
  position: relative;
  z-index: 1;
}

.cta__content {
  max-width: 520px;
  padding: 0.5rem 0;
}

.cta__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.cta__content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}
.cta__content p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================================
   Inline link panel (for voorbeelden page)
   ============================================================ */
.link-panel {
  padding: 1.5rem;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
}

.link-panel__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.link-panel__row:last-of-type { border-bottom: none; }

.link-panel__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.link-panel__value {
  font-weight: 600;
  font-size: 0.93rem;
  text-align: right;
}
.link-panel__value a { color: var(--accent); }
.link-panel__value a:hover { color: var(--accent-h); }

.link-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
.link-panel__actions .btn { flex: 1 1 0; min-width: 120px; }

/* ============================================================
   Split layout (text + panel)
   ============================================================ */
.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.split__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.split__text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 0.6rem;
}
.split__text p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 46ch;
}

/* ============================================================
   Footer — compact, all trust info here
   ============================================================ */
.site-footer {
  padding: 1.5rem 0 2rem;
  background: var(--bg-recessed);
  border-top: 1px solid var(--border);
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.site-footer__brand { display: grid; gap: 0.3rem; }
.site-footer__wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: normal;
  color: var(--ink);
}
.site-footer__wordmark strong { font-weight: 700; }
.site-footer__wordmark img {
  display: block;
  width: 172px;
  height: auto;
  opacity: 0.72;
}
.site-footer__brand p { color: var(--ink-3); font-size: 0.85rem; }
.site-footer__meta { display: grid; gap: 0.2rem; }
.site-footer__meta p { color: var(--ink-3); font-size: 0.82rem; }
.site-footer__meta a { color: var(--ink-3); transition: color 0.15s; }
.site-footer__meta a:hover { color: var(--ink); }
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.4rem;
}
.site-footer__links a {
  font-size: 0.8rem;
  color: var(--ink-3);
  text-decoration: underline;
  text-decoration-color: var(--border);
  transition: color 0.15s;
}
.site-footer__links a:hover { color: var(--ink); }

/* ============================================================
   Responsive — Tablet (720px+)
   ============================================================ */
@media (min-width: 720px) {
  .hero__grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
  }
  .hero__visual {
    display: block;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .step {
    grid-template-columns: 1fr;
    text-align: center;
    border-bottom: none;
    padding: 0;
  }
  .step__num { margin: 0 auto 0.75rem; }

  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-card__img { height: 220px; }

  /* Curated grid: first card spans full width */
  .showcase-grid--curated {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-grid--curated .showcase-card--featured {
    grid-column: 1 / -1;
  }
  .showcase-grid--curated .showcase-card--featured .showcase-card__img {
    height: 280px;
  }

  .proof-case__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-signal__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split { grid-template-columns: 1fr 1fr; }
  .founder__grid { grid-template-columns: 1.15fr 0.95fr; gap: 2.5rem; }

  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: start;
  }
  .site-footer__meta { text-align: right; }
  .site-footer__links { justify-content: flex-end; }
}

/* ============================================================
   Responsive — Desktop (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .site-nav {
    display: flex;
    margin-left: auto;
  }
  .site-header__actions { margin-left: 1.5rem; }

  .hero { padding: 5rem 0 4rem; }
  .hero__title { font-size: clamp(2.8rem, 4.5vw, 3.4rem); }
  .hero__grid {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 3.5rem;
  }
  .hero__browser {
    box-shadow: var(--sh-md), 0 16px 48px rgba(44,38,32,0.09);
  }
  /* Subtle float on hero visual hover */
  .hero__visual:hover .hero__browser {
    box-shadow: var(--sh-lg), 0 20px 56px rgba(44,38,32,0.11);
    transform: translateY(-4px);
  }

  .section { padding: 4.5rem 0; }

  .showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .showcase-card__img { height: 220px; }

  /* Curated grid: 3-col, first card large */
  .showcase-grid--curated {
    grid-template-columns: repeat(3, 1fr);
  }
  .showcase-grid--curated .showcase-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
  }
  .showcase-grid--curated .showcase-card--featured .showcase-card__img {
    height: auto;
    min-height: 260px;
  }
  .showcase-grid--curated .showcase-card--featured .showcase-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem 1.75rem;
  }
  .showcase-grid--curated .showcase-card--featured h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 1023px) {
  .site-header__actions {
    display: flex;
    gap: 0.4rem;
    margin-left: 0.4rem;
  }

  .mobile-nav {
    display: block;
    margin-left: auto;
  }
}

/* ============================================================
   Responsive — Mobile polish (max-width: 640px)
   ============================================================ */
@media (max-width: 640px) {
  .hero { padding: 2.5rem 0 2rem; }
  .hero__grid {
    gap: 1.6rem;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__visual {
    order: 2;
  }
  .hero__browser {
    max-width: 360px;
    margin-inline: auto;
  }
  .hero__eyebrow {
    font-size: 0.68rem;
    margin-bottom: 0.5rem;
  }
  .hero__title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    line-height: 1.1;
  }
  .hero__lead {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .hero__actions .btn--primary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .hero__subaction {
    width: 100%;
    justify-content: flex-start;
  }
  .hero__trust-line {
    font-size: 0.75rem;
    margin-top: 1rem;
  }

  .founder { padding: 2rem 0; }
  .founder__title {
    font-size: clamp(1.45rem, 5vw, 1.8rem);
  }
  .founder__lead,
  .founder__body,
  .response-card__body {
    font-size: 0.92rem;
  }
  .response-card {
    padding: 1.05rem;
  }
  .response-card__primary {
    margin-top: 0.55rem;
    font-size: 1rem;
  }
  .response-card__note {
    margin-top: 0.55rem;
  }
  .response-card__actions {
    flex-direction: column;
  }
  .response-card__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }
  .proof-strip {
    padding: 0.85rem 0;
  }
  .proof-strip__inner {
    justify-content: flex-start;
  }
  .proof-strip__item {
    font-size: 0.8rem;
  }

  .proof-case {
    padding: 2rem 0;
  }
  .proof-case__title {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
  }
  .proof-case__lead,
  .proof-case__card p {
    font-size: 0.92rem;
  }
  .proof-case__card {
    padding: 1rem 1rem 0.95rem;
  }
  .proof-case__note {
    font-size: 0.8rem;
  }

  .price-signal {
    padding: 2rem 0;
  }
  .price-signal__title {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
  }
  .price-signal__lead,
  .price-signal__card p,
  .price-signal__list {
    font-size: 0.92rem;
  }
  .price-signal__card {
    padding: 1rem 1rem 0.95rem;
  }
  .price-signal__actions {
    flex-direction: column;
  }
  .price-signal__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .price-signal__note {
    font-size: 0.8rem;
  }

  /* Light hero mobile */
  .hero--light { padding: 2rem 0 1.5rem; }
  .hero--light .hero__title {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  /* Sections tighter */
  .section { padding: 2rem 0; }
  .section__header { margin-bottom: 1.5rem; }
  .section__header h2 {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
  }

  /* Steps */
  .step__num {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .step { grid-template-columns: 40px 1fr; gap: 0.75rem; }

  /* Showcase cards */
  .showcase-card { border: none; border-radius: 8px; box-shadow: var(--sh-sm); }
  .showcase-card__img { height: 180px; }
  .showcase-card__desc { font-size: 0.82rem; }

  /* Curated grid mobile: single column, featured card same as rest */
  .showcase-grid--curated .showcase-card--featured .showcase-card__img {
    height: 200px;
  }

  /* Showcase CTA */
  .showcase-cta { margin-top: 1.25rem; }
  .showcase-cta .btn {
    width: 100%;
    max-width: 380px;
    white-space: normal;
    line-height: 1.35;
  }

  /* CTA */
  .cta__content { max-width: 100%; }
  .cta__actions {
    flex-direction: column;
  }
  .cta__actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
  }

  /* Header — simple, single row */
  .site-header__inner {
    min-height: 48px;
  }
  .site-header__brand { font-size: 0.95rem; }
  .site-header__brand img { width: 124px; }
  .site-header__actions .btn--primary {
    color: var(--accent);
    background: rgba(255, 252, 247, 0.74);
    border: 1px solid rgba(158, 95, 50, 0.18);
    box-shadow: none;
    font-size: 0.78rem;
    padding: 0.5rem 0.72rem;
    min-height: 34px;
    white-space: nowrap;
  }
  .mobile-nav__panel {
    min-width: 9.25rem;
    padding: 0.32rem;
  }
  .mobile-nav__panel a {
    padding: 0.52rem 0.66rem;
    font-size: 0.84rem;
  }
  .mobile-nav__panel a.mobile-nav__contact {
    background: transparent;
  }

  /* Link panel rows: stack on mobile */
  .link-panel__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }
  .link-panel__value { text-align: left; }
  .link-panel__actions {
    flex-direction: column;
  }
  .link-panel__actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  /* Footer — centered on mobile */
  .site-footer { padding: 1rem 0 1.5rem; }
  .site-footer__wordmark img { width: 144px; }
  .site-footer__inner {
    align-items: center;
    text-align: center;
  }
  .site-footer__brand { text-align: center; }
  .site-footer__meta { text-align: center; }
  .site-footer__links { justify-content: center; }
}

/* ============================================================
   Small phones (max-width: 380px)
   ============================================================ */
@media (max-width: 380px) {
  .hero__title { font-size: 1.5rem; }
  .hero--light .hero__title { font-size: 1.35rem; }
  .showcase-card__img { height: 155px; }
  .btn--primary { padding: 0.75rem 1rem; }
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .site-header, .site-footer { display: none; }
  body { background: #fff; }
}

/* ============================================================
   v3 Editorial trade pass — sharper, less SaaS, still clear
   ============================================================ */
:root {
  --ink: #1c1713;
  --ink-2: #423a32;
  --ink-3: #74695d;
  --bg: #f7f1e7;
  --bg-warm: #efe5d6;
  --bg-recessed: #e8ddcf;
  --surface: #fffaf2;
  --accent: #af3528;
  --accent-h: #8f2a21;
  --accent-faint: #f7dfd8;
  --border: rgba(28, 23, 19, 0.22);
  --border-soft: rgba(28, 23, 19, 0.14);
  --sh-sm: none;
  --sh-md: none;
  --sh-lg: none;
}

h1, h2, h3, h4 {
  letter-spacing: 0;
}

.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header__brand img,
.site-footer__wordmark img {
  opacity: 0.82;
}

.btn,
.mobile-nav summary,
.mobile-nav__panel,
.response-card,
.proof-case__card,
.price-signal__card,
.link-panel {
  border-radius: 4px;
  box-shadow: none;
}

.btn:hover,
.showcase-card:hover,
.step:hover .step__num {
  transform: none;
  box-shadow: none;
}

.btn--primary {
  background: var(--ink);
  color: var(--surface);
}

.btn--primary:hover {
  background: var(--accent);
}

.btn--outline,
.btn--white,
.btn--dark-outline {
  box-shadow: none;
}

.hero,
.hero--light,
.proof-case,
.price-signal {
  background: var(--bg);
}

.hero {
  padding: clamp(3rem, 6vw, 5.8rem) 0 clamp(2.6rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--border-soft);
}

.hero__grid {
  align-items: center;
}

.hero__eyebrow,
.founder__eyebrow,
.response-card__eyebrow,
.proof-case__eyebrow,
.proof-case__meta,
.price-signal__meta,
.showcase-card__label,
.cta__eyebrow,
.split__eyebrow {
  color: var(--accent);
  letter-spacing: 0.08em;
}

.hero__title {
  max-width: 14.5ch;
}

.hero__lead {
  color: var(--ink-2);
}

.hero__trade-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--surface);
}

.hero__trade-frame::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px solid rgba(175, 53, 40, 0.78);
  pointer-events: none;
  z-index: 1;
}

.hero__trade-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.92);
}

.hero__trade-frame--clean::before {
  display: none;
}

.hero__trade-frame--clean img {
  object-fit: contain;
  background: var(--surface);
}

.hero__trade-frame--mobile-proof {
  width: min(100%, 336px);
  margin-inline: auto;
}

.hero__trade-frame--mobile-proof img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

.hero__trade-frame figcaption {
  padding: 0.7rem 0.85rem;
  border-top: 1px solid var(--border);
  color: var(--ink-3);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero__annotation {
  position: absolute;
  z-index: 2;
  max-width: 13rem;
  padding: 0.42rem 0.55rem;
  background: var(--surface);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__annotation--paint {
  left: -0.7rem;
  top: 1.1rem;
}

.hero__annotation--contact {
  right: -0.7rem;
  bottom: 3.8rem;
}

.founder {
  background: var(--surface);
}

.response-card,
.proof-case__card,
.price-signal__card,
.link-panel {
  background: var(--surface);
  border-color: var(--border-soft);
}

.proof-case__grid,
.price-signal__cards,
.showcase-grid {
  gap: 0;
}

.proof-case__card,
.price-signal__card {
  border-width: 1px 0 0;
  padding: 1.3rem 0;
}

.showcase-card {
  display: grid;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 1rem 0;
}

.showcase-card__img {
  border: 1px solid var(--border-soft);
  height: auto;
  aspect-ratio: 4 / 3;
}

.showcase-card__img img,
.showcase-card:hover .showcase-card__img img {
  transform: none;
}

.showcase-card__body {
  padding: 1rem 0 0;
}

.showcase-card__link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.step__num {
  border-radius: 4px;
  background: transparent;
  border-color: var(--border);
  color: var(--accent);
}

.section--warm {
  background: var(--bg-warm);
}

.section--dark,
.cta {
  background: var(--ink);
}

@media (min-width: 720px) {
  .showcase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .showcase-card {
    border-top: 1px solid var(--border);
  }
}

/* ============================================================
   v7 Endgame visual pass -- 2026-04-29
   ============================================================ */
.hero__proof-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.2rem;
  max-width: 34rem;
}

.hero__proof-rail span {
  display: flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.6rem 0.72rem;
  border: 1px solid var(--border-soft);
  background: rgba(255, 254, 250, 0.76);
  color: var(--ink-2);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero__trade-frame {
  border-radius: 0;
  box-shadow: 0 20px 50px rgba(24, 20, 18, 0.08);
}

.hero__trade-frame::before {
  border-color: rgba(179, 38, 30, 0.58);
}

.hero__trade-frame img {
  aspect-ratio: 16 / 10;
  object-position: center center;
}

.proof-strip__groups {
  display: grid;
  gap: 1rem;
}

.proof-strip__group {
  padding: 1rem;
  border: 1px solid var(--border-soft);
  background: rgba(255, 254, 250, 0.64);
}

.proof-strip__group .proof-strip__inner {
  justify-content: flex-start;
}

@media (min-width: 760px) {
  .proof-strip__groups {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

@media (max-width: 640px) {
  .hero__proof-rail {
    grid-template-columns: 1fr;
    gap: 0.42rem;
    margin-top: 0.9rem;
  }

  .hero__proof-rail span {
    min-height: auto;
    padding: 0.55rem 0.65rem;
    font-size: 0.76rem;
  }

  .proof-strip__groups {
    gap: 0.75rem;
  }

  .proof-strip__group {
    padding: 0.85rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 1.7rem 0 1.35rem;
  }

  .hero__grid {
    gap: 1rem;
  }

  .hero__title {
    max-width: 13.5ch;
    font-size: clamp(1.55rem, 6.6vw, 2rem);
    margin-bottom: 0.8rem;
  }

  .hero__lead {
    margin-bottom: 1.15rem;
    line-height: 1.5;
  }

  .hero__actions .btn--primary {
    min-height: 44px;
    padding-block: 0.82rem;
  }

  .hero__trust-line {
    margin-top: 0.75rem;
    font-size: 0.72rem;
  }

  .hero__trade-frame::before {
    inset: 0.5rem;
  }

  .hero__trade-frame img {
    aspect-ratio: 16 / 10;
  }

  .hero__annotation {
    display: none;
  }

  .hero__trade-frame figcaption {
    display: none;
  }

  .site-header__actions .btn--primary {
    color: var(--surface);
    background: var(--ink);
    border-color: var(--ink);
  }
}

/* ============================================================
   v4 Desktop composition repair — proof, density, rhythm
   ============================================================ */
.examples-hero__visual,
.price-page__ledger {
  margin-top: 1.6rem;
}

.proof-visual,
.price-page__visual {
  margin: 0;
  border: 1px solid var(--border);
  background: var(--surface);
}

.proof-visual img,
.price-page__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.94);
}

.proof-visual figcaption,
.price-page__visual figcaption {
  padding: 0.72rem 0.85rem;
  border-top: 1px solid var(--border-soft);
  color: var(--ink-3);
  font-size: 0.78rem;
  line-height: 1.45;
}

.proof-visual__stack {
  display: none;
}

.proof-visual__note,
.price-page__checks {
  border: 1px solid var(--border);
  background: var(--ink);
  color: var(--surface);
}

.proof-visual__note {
  padding: 1rem;
}

.proof-visual__note span {
  display: block;
  color: #e9a69c;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-visual__note strong {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.1;
}

.proof-visual__note p {
  margin-top: 0.55rem;
  color: rgba(255, 250, 242, 0.76);
  font-size: 0.86rem;
  line-height: 1.55;
}

.price-page__ledger {
  display: grid;
  gap: 0.9rem;
}

.price-page__checks {
  display: grid;
}

.price-page__checks span {
  padding: 0.78rem 0.95rem;
  border-top: 1px solid rgba(255, 250, 242, 0.18);
  color: rgba(255, 250, 242, 0.84);
  font-size: 0.86rem;
}

.price-page__checks span:first-child {
  border-top: 0;
}

@media (min-width: 900px) {
  .examples-hero,
  .price-page__hero {
    padding: clamp(3.2rem, 5.4vw, 5rem) 0;
  }

  .examples-hero__grid,
  .price-page__hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(22rem, 0.9fr);
    gap: clamp(2.2rem, 5vw, 5rem);
    align-items: center;
  }

  .examples-hero .hero__content,
  .price-page__hero .hero__content {
    max-width: none;
  }

  .examples-hero .hero__title,
  .price-page__hero .hero__title {
    max-width: 18ch;
    font-size: clamp(2.45rem, 4vw, 3.35rem);
  }

  .examples-hero .hero__lead,
  .price-page__hero .hero__lead {
    max-width: 39rem;
  }

  .examples-hero__visual,
  .price-page__ledger {
    margin-top: 0;
  }

  .examples-hero__visual {
    display: grid;
    grid-template-columns: 1.1fr 0.82fr;
    gap: 1rem;
    align-items: stretch;
  }

  .proof-visual--large img {
    aspect-ratio: 4 / 4.9;
    height: 100%;
  }

  .proof-visual__stack {
    display: grid;
    gap: 1rem;
    align-content: end;
  }

  .proof-visual__stack .proof-visual img {
    aspect-ratio: 4 / 3;
  }

  .examples-bridge {
    padding: clamp(2.6rem, 4.8vw, 4rem) 0;
  }

  .examples-bridge .split {
    align-items: start;
  }

  .examples-bridge .split__text h2,
  .price-page__proof .proof-case__title {
    max-width: 17ch;
  }

  .price-page__ledger {
    align-self: stretch;
    grid-template-rows: auto 1fr auto;
  }

  .price-page__ledger .price-range {
    margin: 0;
    max-width: none;
    border-radius: 4px;
    box-shadow: none;
    border-color: var(--border);
  }

  .price-page__visual img {
    height: 100%;
    min-height: 13rem;
  }

  .price-page__proof {
    padding-top: clamp(3.2rem, 5vw, 4.4rem);
  }

  .factor-card,
  .faq-item,
  .investment-row {
    border-radius: 4px;
    box-shadow: none;
    background: var(--surface);
  }
}

@media (max-width: 640px) {
  .examples-hero__visual {
    display: none;
  }

  .price-page__ledger {
    margin-top: 1rem;
  }

  .price-page__visual,
  .price-page__checks {
    display: none;
  }

  .price-page__ledger .price-range {
    margin-top: 0;
  }
}

/* ============================================================
   v5 Desktop density pass -- proof rhythm and wider composition
   ============================================================ */
@media (min-width: 1024px) {
  .proof-case,
  .price-signal {
    padding-block: clamp(3.4rem, 5vw, 4.8rem);
  }

  .proof-case > .wrap {
    display: grid;
    grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
    gap: clamp(2rem, 5vw, 4.4rem);
    align-items: start;
  }

  .proof-case__intro {
    max-width: none;
    margin-bottom: 0;
  }

  .proof-case__title {
    max-width: 14ch;
  }

  .proof-case__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .proof-case__card,
  .price-signal__card {
    border: 1px solid var(--border-soft);
    padding: 1.25rem;
    background: var(--surface);
  }

  .proof-case__note {
    grid-column: 2;
    margin-top: 0.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
  }

  .price-signal__grid {
    grid-template-columns: minmax(20rem, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 5vw, 4.4rem);
    align-items: start;
  }

  .price-signal__intro {
    max-width: none;
  }

  .price-signal__title {
    max-width: 12ch;
  }

  .price-signal__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .price-signal__note {
    grid-column: 2;
    margin-top: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-soft);
  }

  #werkwijze .wrap {
    display: grid;
    grid-template-columns: minmax(18rem, 0.66fr) minmax(0, 1.34fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: end;
  }

  #werkwijze .section__header {
    max-width: none;
    margin-bottom: 0;
  }

  #werkwijze .section__header h2 {
    max-width: 12ch;
  }

  #werkwijze .steps {
    align-self: end;
  }

  #concepten .wrap {
    display: grid;
    grid-template-columns: minmax(18rem, 0.58fr) minmax(0, 1.42fr);
    gap: clamp(2rem, 5vw, 4.4rem);
    align-items: start;
  }

  #concepten .section__header--center {
    max-width: none;
    margin-inline: 0;
    margin-bottom: 0;
    text-align: left;
  }

  #concepten .section__header--center h2 {
    max-width: 11.5ch;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  #concepten .showcase-grid,
  #concepten .showcase-cta {
    grid-column: 2;
  }

  #concepten .showcase-grid {
    gap: 1rem;
  }

  #concepten .showcase-cta {
    justify-self: start;
    margin-top: 1rem;
  }
}

/* ============================================================
   v6 Endgame identity and conversion polish -- 2026-04-29
   ============================================================ */
:root {
  --ink: #181412;
  --ink-2: #3d3430;
  --ink-3: #70635c;
  --bg: #fbfaf7;
  --bg-warm: #f1e8dd;
  --surface: #fffefa;
  --accent: #b3261e;
  --accent-h: #8d1d18;
  --accent-strong: #8d1d18;
  --accent-faint: #fff0ec;
  --border: rgba(24, 20, 18, 0.2);
  --border-soft: rgba(24, 20, 18, 0.1);
}

.site-header {
  background: rgba(251, 250, 247, 0.96);
  border-bottom-color: var(--border-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  min-height: 64px;
  gap: clamp(0.8rem, 2vw, 1.6rem);
}

.site-header__brand img,
.site-footer__wordmark img {
  width: clamp(174px, 16vw, 220px);
  opacity: 1;
}

.site-nav {
  color: var(--ink-2);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-h);
}

.hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0)),
    var(--bg);
}

.hero__eyebrow,
.founder__eyebrow,
.response-card__eyebrow,
.proof-case__eyebrow,
.proof-case__meta,
.price-signal__meta,
.showcase-card__label,
.cta__eyebrow,
.split__eyebrow {
  color: var(--accent);
}

.hero__title {
  max-width: 19.5ch;
  font-size: clamp(2.65rem, 4.15vw, 3.15rem);
}

.hero__lead {
  max-width: 52ch;
}

.hero__trade-frame::before {
  border-color: rgba(179, 38, 30, 0.82);
}

.hero__annotation {
  border-color: var(--accent);
  color: var(--accent);
}

.hero__subaction,
.showcase-card__link {
  color: var(--accent);
}

.founder,
.response-card,
.proof-case__card,
.price-signal__card,
.link-panel {
  background: var(--surface);
}

@media (max-width: 640px) {
  .site-header__inner {
    min-height: 58px;
    gap: 0.55rem;
  }

  .site-header__brand img {
    width: clamp(142px, 42vw, 164px);
  }

  .site-header__actions {
    display: flex;
    margin-left: 0;
  }

  .mobile-nav {
    margin-left: auto;
  }

  .mobile-nav summary {
    min-height: 40px;
    padding: 0.6rem 0.82rem;
    font-size: 0.86rem;
  }

  .mobile-nav__panel {
    right: 0;
    min-width: 13rem;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
    gap: 0.7rem;
  }

  .hero__actions .btn,
  .hero__subaction {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    line-height: 1.2;
  }
}

/* ============================================================
   v8 .nl public polish -- examples rhythm and mobile brand
   ============================================================ */
@media (min-width: 900px) {
  .examples-hero .hero__title {
    max-width: 21ch;
    font-size: clamp(2.05rem, 2.45vw, 2.42rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .examples-hero .hero__lead {
    max-width: 34rem;
    font-size: 0.98rem;
  }

  .examples-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.9fr);
    gap: clamp(2rem, 3.5vw, 3.2rem);
  }

  .proof-visual__note strong {
    font-size: 1.08rem;
  }

  .proof-visual__note p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
}

@media (min-width: 900px) and (max-width: 1120px) {
  .examples-hero,
  .hero {
    padding-top: 3.2rem;
    padding-bottom: 3.1rem;
  }

  .examples-hero .hero__title {
    max-width: 18.5ch;
    font-size: clamp(1.85rem, 2.65vw, 2.12rem);
  }

  .examples-hero__visual {
    gap: 0.85rem;
  }
}

@media (max-width: 640px) {
  .site-header__brand img {
    width: clamp(158px, 47vw, 176px);
  }

  .examples-hero .hero__title {
    font-size: clamp(1.86rem, 8.2vw, 2.34rem);
    line-height: 1.08;
  }

  .examples-hero .hero__lead {
    font-size: 0.95rem;
  }
}

/* ============================================================
   v9 Proof-led .nl pivot -- live sites, tools, preview families
   ============================================================ */
.hero__proof-frame::before {
  display: none;
}

.hero__proof-frame img {
  filter: none;
  object-fit: cover;
  object-position: center center;
}

.hero__proof-frame figcaption {
  background: var(--surface);
}

.showcase-grid--two {
  grid-template-columns: 1fr;
}

.showcase-grid--two .showcase-card__img {
  aspect-ratio: 16 / 10;
}

.showcase-grid--startpoints {
  grid-template-columns: 1fr;
}

@media (min-width: 760px) {
  .showcase-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }

  .showcase-grid--startpoints {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }
}

/* ============================================================
   v10 Enterprise polish -- identity, nav, trust, privacy
   ============================================================ */
.site-header__brand img,
.site-footer__wordmark img {
  opacity: 1;
}

.site-nav__group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-footer__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
}

.site-footer__wordmark::before {
  content: "";
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
  background: url("assets/owlyvision_mark_nl.svg?v=20260508c") center / contain no-repeat;
}

.site-nav__group summary {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  list-style: none;
  cursor: pointer;
  color: var(--ink-2);
  transition: color 0.15s;
}

.site-nav__group summary::-webkit-details-marker {
  display: none;
}

.site-nav__group summary:hover,
.site-nav__group[open] summary {
  color: var(--accent);
}

.site-nav__menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  z-index: 120;
  display: grid;
  gap: 0.18rem;
  min-width: 15rem;
  padding: 0.48rem;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  box-shadow: 0 16px 34px rgba(24, 20, 18, 0.13);
}

.site-nav__menu a {
  padding: 0.62rem 0.72rem;
  color: var(--ink-2);
  font-size: 0.86rem;
  line-height: 1.25;
}

.site-nav__menu a:hover,
.site-nav__menu a[aria-current="page"] {
  color: var(--accent);
  background: var(--accent-faint);
}

.mobile-nav__heading {
  padding: 0.5rem 0.78rem 0.2rem;
  color: var(--ink-3);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__trust-line--formal {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--ink-3);
}

.hero__actions .btn--outline {
  background: transparent;
}

.privacy-page {
  padding: 4rem 0 5rem;
}

.privacy-body {
  max-width: 720px;
}

.privacy-body h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.privacy-body h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.privacy-body p,
.privacy-body li {
  color: var(--ink-2);
  font-size: 0.97rem;
  line-height: 1.7;
}

.privacy-body ul {
  margin-top: 0.6rem;
  padding-left: 1.2rem;
}

.privacy-body a {
  color: var(--accent);
  text-decoration: underline;
}

.privacy-body__updated {
  margin-top: 2rem;
  color: var(--ink-3);
  font-size: 0.86rem;
}

@media (min-width: 1024px) {
  .site-nav {
    align-items: center;
  }

  .site-header__brand img {
    width: clamp(184px, 16vw, 232px);
  }

  .hero--home .wrap {
    max-width: 1180px;
  }

  .hero--home .hero__grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(34rem, 1.12fr);
    gap: clamp(3rem, 5vw, 5.4rem);
  }

  .hero--home .hero__content {
    max-width: 34rem;
  }

  .hero--home .hero__trade-frame img {
    aspect-ratio: 16 / 9;
  }
}

.showcase-card__img--screenshot {
  aspect-ratio: 16 / 10;
  height: auto;
  background: var(--surface);
}

.showcase-card__img--screenshot img {
  object-fit: cover;
}

/* ============================================================
   v11 Final cascade lock -- public proof polish stays last
   ============================================================ */
:root {
  --bg: #fbfaf7;
  --bg-warm: #f1ebe2;
  --bg-recessed: #e9e2d8;
  --surface: #fffdfa;
  --dark: #211d19;
  --dark-2: #302a24;
  --border: rgba(28, 23, 19, 0.18);
  --border-soft: rgba(28, 23, 19, 0.11);
  --sh-sm: 0 1px 2px rgba(28, 23, 19, 0.04);
  --sh-md: 0 10px 28px rgba(28, 23, 19, 0.08);
  --sh-lg: 0 18px 48px rgba(28, 23, 19, 0.12);
}

.site-header {
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero--home .hero__title {
  max-width: 15.8ch;
}

.proof-board {
  border-color: var(--border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 250, 0.96), rgba(245, 238, 228, 0.86)),
    var(--surface);
  box-shadow: var(--sh-md);
  align-items: start;
  align-self: start;
  min-height: 0;
}

.hero__visual--proof-board {
  align-self: center;
}

.hero__trade-frame::before {
  display: none;
}

.proof-board__primary,
.proof-board__tile,
.live-proof-grid .showcase-card {
  border-color: var(--border-soft);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--sh-sm);
}

.proof-board__primary img {
  object-position: center top;
  object-fit: contain;
  background: var(--surface);
  min-height: 0;
}

.proof-board__primary {
  align-self: start;
}

.proof-board--projects .proof-board__primary img {
  min-height: 0;
}

.proof-board__tile img {
  object-fit: contain;
  background: var(--surface);
}

.proof-board__tile--text {
  background: var(--dark);
  color: #fffaf2;
}

.proof-board__tile--text span,
.proof-board__tile--text > span {
  background: transparent;
  color: #e8a39b;
}

.proof-board__tile--text strong {
  color: #fffaf2;
}

.proof-board__primary,
.proof-board__tile {
  color: inherit;
  text-decoration: none;
}

.proof-board__tile--split {
  background: var(--surface);
}

.proof-board__tile--split a {
  position: relative;
  display: block;
  min-height: 5.9rem;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 5px;
  background: #fffdf9;
  color: inherit;
  text-decoration: none;
}

.proof-board__tile--split img {
  width: 100%;
  height: 100%;
  min-height: 5.9rem;
  object-fit: cover;
  object-position: left top;
}

.proof-board__tile--split a > span {
  position: absolute;
  left: 0.32rem;
  bottom: 0.32rem;
  max-width: calc(100% - 0.8rem);
  padding: 0.2rem 0.28rem;
  background: rgba(255, 253, 250, 0.95);
  color: var(--ink);
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1.15;
}

.live-proof-grid {
  gap: 1.4rem;
}

.live-proof-grid .showcase-card {
  overflow: hidden;
  padding: 0;
}

.live-proof-grid .showcase-card__img {
  border: 0;
  border-bottom: 1px solid var(--border-soft);
}

.live-proof-grid .showcase-card__body {
  padding: 1rem 1.05rem 1.1rem;
}

/* ============================================================
   v14 Contact conversion list -- compact mobile directory
   ============================================================ */
.contact-intents {
  background: var(--bg-warm);
}

.contact-intents .section__header {
  max-width: 40rem;
  margin-bottom: clamp(1rem, 3vw, 1.6rem);
}

.contact-intents .section__header p {
  max-width: 34rem;
}

.contact-intents__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.contact-intent {
  display: grid;
  grid-template-columns: minmax(6.8rem, auto) minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem 0;
  border-top: 1px solid var(--border-soft);
}

.contact-intent:first-child {
  border-top: 0;
}

.contact-intent__meta {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-intent h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(1rem, 2.3vw, 1.08rem);
  line-height: 1.25;
  letter-spacing: 0;
}

.contact-intent p {
  margin: 0.32rem 0 0;
  color: var(--ink-2);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (min-width: 760px) {
  .contact-intents__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-bottom: 0;
  }

  .contact-intent {
    min-height: 7.1rem;
    padding: 1.05rem 1.2rem 1.05rem 0;
  }

  .contact-intent:nth-child(2n) {
    padding-left: 1.2rem;
    border-left: 1px solid var(--border-soft);
  }

  .contact-intent:nth-child(-n + 2) {
    border-top: 0;
  }
}

@media (max-width: 640px) {
  .hero__proof-rail {
    display: none;
  }

  .contact-intents {
    padding-block: 1rem 1.1rem;
  }

  .contact-intents .section__header {
    margin-bottom: 0.7rem;
  }

  .contact-intents .section__header h2 {
    font-size: clamp(1.32rem, 6.2vw, 1.7rem);
    margin-bottom: 0.2rem;
  }

  .contact-intents .section__header p {
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .contact-intents__grid {
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.58);
  }

  .contact-intent {
    grid-template-columns: minmax(5.6rem, 0.34fr) minmax(0, 1fr);
    gap: 0.68rem;
    align-items: start;
    padding: 0.7rem 0.78rem;
    border: 0;
    border-top: 1px solid var(--border-soft);
    border-radius: 0;
    background: transparent;
  }

  .contact-intent:first-child {
    border-top: 0;
  }

  .contact-intent__meta {
    padding-top: 0.12rem;
    font-size: 0.55rem;
    letter-spacing: 0.11em;
    line-height: 1.08;
  }

  .contact-intent h3 {
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .contact-intent p {
    margin-top: 0.16rem;
    font-size: 0.82rem;
    line-height: 1.35;
  }
}

/* ============================================================
   v13 Proof board balance -- product tools are visible proof
   ============================================================ */
@media (min-width: 900px) {
  .hero__visual--proof-board {
    width: min(100%, 40rem);
    justify-self: center;
  }

  .proof-board--projects {
    width: 100%;
    box-sizing: border-box;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .proof-board--projects .proof-board__primary img {
    aspect-ratio: 16 / 8.9;
    min-height: 0;
    object-fit: cover;
  }

  .proof-board--projects .proof-board__side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(7.25rem, auto);
  }

  .proof-board--projects .proof-board__side > .proof-board__tile:not(.proof-board__tile--split),
  .proof-board--projects .proof-board__side > .proof-board__tile:not(.proof-board__tile--split) img {
    min-height: 7.25rem;
  }

  .proof-board--projects .proof-board__tile--split {
    grid-column: 1 / -1;
    min-height: 8.25rem;
  }

  .proof-board--projects .proof-board__tile--split a,
  .proof-board--projects .proof-board__tile--split img {
    min-height: 7.6rem;
  }

  .proof-board--projects .proof-board__tile--split a > span {
    padding: 0.22rem 0.34rem;
    font-size: 0.64rem;
  }
}
