/* Fieldnoter website. Field Recorder DNA, one accent: signaal-oranje #FF5524.
   Tokens mirror the app's Theme.swift (Aura). Self-contained, no web fonts. */

:root {
  --paper:    #FBFAF8;
  --paper-2:  #F4F2ED;
  --ink:      #1A1A1C;
  --body:     #34332F;
  --body-2:   #56544F;
  --muted:    #8D8B86;
  --tertiary: #A6A39C;
  --faint:    #C2BFB8;
  --hairline: rgba(26,26,28,.10);
  --border:   rgba(26,26,28,.12);
  --accent:      #FF5524;
  --accent-press:#E0481D;
  --accent-tint: rgba(255,85,36,.10);
  --lcd:      #E3E7DA;
  --lcd-ink:  #1A1C14;
  --vu:       #A2AE92;
  --vu-idle:  #CBD2C0;
  --sans: -apple-system, "Helvetica Neue", system-ui, "Segoe UI", sans-serif;
  --mono: ui-monospace, "SF Mono", "SFMono-Regular", Menlo, Consolas, monospace;
  /* tracked-uppercase labels use the regular sans, not a code monospace */
  --label: -apple-system, "Helvetica Neue", system-ui, "Segoe UI", sans-serif;
  --edge: clamp(20px, 6vw, 64px);
  --maxw: 1080px;
}

* { box-sizing: border-box; }
/* [hidden] moet altijd winnen, ook van display:grid/flex (taal-gated blokken). */
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--edge); }
.mono { font-family: var(--mono); }

/* measured-value chip, LCD look (matches app) */
.lcd {
  font-family: var(--label);
  background: var(--lcd);
  color: var(--lcd-ink);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: .82em;
  letter-spacing: .02em;
}

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav .wrap { display: flex; align-items: center; gap: 24px; height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.brand .glyph { width: 24px; height: 24px; }
.brand .brand-dot { color: var(--accent); }
/* Merk-moment: de signaallijn tekent zichzelf één keer bij openen en komt
   tot rust in de oranje punt. Eenmalig (geen loop), met reduced-motion-fallback. */
.glyph .gline { stroke-dasharray: 100; stroke-dashoffset: 100; animation: fn-draw 1.5s cubic-bezier(.3,.85,.25,1) .3s 1 both; }
.glyph .gdot { transform-origin: 86px 50px; transform: scale(0); animation: fn-pop .45s cubic-bezier(.3,1.5,.45,1) 1.8s 1 both; }
@keyframes fn-draw { to { stroke-dashoffset: 0; } }
@keyframes fn-pop { 0% { transform: scale(0); } 60% { transform: scale(1.2); } 100% { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) {
  .glyph .gline { animation: none; stroke-dashoffset: 0; }
  .glyph .gdot { animation: none; transform: scale(1); }
}
.nav .links { margin-left: auto; display: flex; gap: 26px; align-items: center; }
.nav .links a { color: var(--body-2); font-size: 15px; }
.nav .links a:hover { color: var(--ink); }
.nav .links .cta { color: var(--accent); font-weight: 500; }
/* Op smal scherm vallen de tekstlinks weg; de taalwissel (in de span) blijft staan. */
@media (max-width: 620px) { .nav .links > a:not(.cta) { display: none; } }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff;
  font-family: var(--sans); font-weight: 500; font-size: 16px;
  padding: 13px 22px; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .12s ease, background .15s ease;
}
.btn:hover { background: var(--accent-press); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn.ghost:hover { background: var(--paper-2); }

/* ---- hero ---- */
.hero { padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(36px, 6vw, 72px); position: relative; overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .hero .wrap { grid-template-columns: 1fr; } }

.eyebrow {
  font-family: var(--label); font-size: 12.5px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin: 0 0 20px;
  display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
h1.display {
  font-weight: 300; color: var(--ink);
  font-size: clamp(2.35rem, 5.6vw, 4rem);
  line-height: 1.02; letter-spacing: -.03em; margin: 0 0 22px;
  text-wrap: balance;
}
h1.display b { font-weight: 600; }
.lede { font-size: clamp(1.05rem, 1.9vw, 1.28rem); color: var(--body-2); max-width: 34ch; margin: 0 0 32px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-note { font-size: 14px; color: var(--muted); }

/* hero waveform band behind/near phone */
.wavewrap { position: relative; }
svg.wave { width: 100%; height: clamp(96px, 16vw, 150px); display: block; }
svg.wave .bar { fill: var(--vu); }
svg.wave .hot { fill: var(--accent); }

/* ---- phone mockup ---- */
/* Echte app-screenshot in een strak toestel-frame. De screenshot (660×1434,
   incl. eigen statusbalk + island) vult het scherm; het frame levert alleen
   de bezel. Hoogte gemaximeerd zodat de hero niet oneindig hoog wordt. */
.phone {
  --pw: clamp(232px, 30vw, 288px);
  width: var(--pw); margin: 0 auto;
  background: #111013; border-radius: 42px;
  padding: 9px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06) inset,
              0 30px 60px -24px rgba(30,26,20,.5),
              0 8px 20px -12px rgba(30,26,20,.3);
}
.screen {
  background: var(--paper); border-radius: 34px; overflow: hidden;
}
.screen .shot { display: block; width: 100%; height: auto; }

/* ---- generic section ---- */
section { padding-block: clamp(56px, 9vw, 104px); }
.section-head { max-width: 52ch; margin-bottom: clamp(32px, 5vw, 56px); }
.kicker { font-family: var(--label); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 14px; }
h2 { font-weight: 300; color: var(--ink); font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.08; letter-spacing: -.025em; margin: 0 0 16px; text-wrap: balance; }
h2 b { font-weight: 600; }
.section-head p { font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--body-2); margin: 0; max-width: 46ch; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 4vw, 44px); }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 28px; } }
.step .n { font-family: var(--label); font-size: 13px; color: var(--accent); letter-spacing: .04em; margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--hairline); }
.step h3 { font-weight: 600; color: var(--ink); font-size: 1.16rem; margin: 0 0 8px; letter-spacing: -.01em; }
.step p { margin: 0; color: var(--body-2); font-size: 1rem; }

/* privacy band */
.band { background: var(--ink); color: var(--paper); border-radius: 28px; }
.band .inner { padding: clamp(36px, 6vw, 72px); }
.band .kicker { color: var(--accent); }
.band h2 { color: var(--paper); }
.band p { color: rgba(251,250,248,.72); font-size: clamp(1.02rem, 1.7vw, 1.2rem); max-width: 54ch; margin: 0; }
.band .pts { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 34px; }
.band .pt { display: flex; flex-direction: column; gap: 4px; }
.band .pt .v { font-family: var(--label); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--paper); }
.band .pt .k { font-size: 13.5px; color: rgba(251,250,248,.6); }
.band .sov { margin-top: 38px; padding-top: 30px; border-top: 1px solid rgba(251,250,248,.16); }
.band .sov h3 { font-weight: 600; color: var(--paper); font-size: 1.16rem; margin: 0 0 8px; letter-spacing: -.01em; }

/* features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: 20px; overflow: hidden; }
@media (max-width: 820px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .features { grid-template-columns: 1fr; } }
.feat { background: var(--paper); padding: 26px 24px; }
.feat .ic { width: 26px; height: 26px; margin-bottom: 14px; color: var(--accent); }
.feat h3 { font-weight: 600; color: var(--ink); font-size: 1.04rem; margin: 0 0 6px; letter-spacing: -.01em; }
.feat p { margin: 0; color: var(--body-2); font-size: .96rem; }

/* pricing */
.price { text-align: center; }
.price .amt { font-family: var(--label); font-size: clamp(2.4rem, 6vw, 3.4rem); color: var(--ink); letter-spacing: -.02em; }
.price .amt s { color: var(--tertiary); font-size: .5em; text-decoration-thickness: 1px; margin-right: 12px; }
.price .sub { color: var(--body-2); margin: 10px 0 30px; }

/* cta */
.finalcta { text-align: center; }
.finalcta h2 { max-width: 18ch; margin-inline: auto; }

/* footer */
footer { border-top: 1px solid var(--hairline); padding-block: 40px; color: var(--muted); font-size: 14px; }
footer .wrap { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
footer .links { margin-left: auto; display: flex; gap: 22px; }
footer a:hover { color: var(--ink); }

/* article (privacy / support pages) */
.article { padding-top: clamp(36px, 6vw, 64px); padding-bottom: clamp(56px, 9vw, 96px); }
.article .wrap { max-width: 720px; }
.article .back { font-family: var(--label); font-size: 13px; color: var(--muted); display: inline-flex; gap: 7px; margin-bottom: 28px; }
.article .back:hover { color: var(--accent); }
.article h1 { font-weight: 300; color: var(--ink); font-size: clamp(2rem, 4.5vw, 2.8rem); letter-spacing: -.03em; margin: 0 0 6px; }
.article .updated { font-family: var(--label); font-size: 13px; color: var(--muted); margin: 0 0 40px; }
.article h2 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin-top: 44px; }
.article h3 { font-weight: 600; color: var(--ink); font-size: 1.08rem; margin: 30px 0 6px; }
.article p, .article li { color: var(--body); font-size: 1.04rem; line-height: 1.7; }
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article a.inline { color: var(--accent); border-bottom: 1px solid var(--accent-tint); }
.article strong { color: var(--ink); font-weight: 600; }
.article .lang-sep { border: 0; border-top: 1px solid var(--hairline); margin: 56px 0; }

/* ── Taalswitch in de nav ─────────────────────────────────────────────── */
.langswitch {
  display: inline-flex; gap: 2px; margin-left: 6px;
  border: 1px solid var(--border); border-radius: 999px; padding: 2px;
}
/* De taalwissel is een link (EN en NL hebben een eigen URL), niet langer een knop. */
.langswitch a {
  font: inherit; font-size: 12px; font-weight: 600; letter-spacing: .04em;
  color: var(--muted); background: none; border: 0; cursor: pointer;
  padding: 5px 10px; border-radius: 999px; line-height: 1;
  text-decoration: none; display: inline-block;
}
.langswitch a[aria-current="page"] { background: var(--ink); color: var(--paper); }
.langswitch a:hover { color: var(--ink); }
.langswitch a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── App Store-badge ──────────────────────────────────────────────────── */
.badge-appstore {
  display: inline-block; line-height: 0; border-radius: 8px;
  transition: transform .18s cubic-bezier(.32,.72,0,1), opacity .18s;
}
.badge-appstore svg { width: 148px; height: auto; display: block; }
.badge-appstore:hover { transform: translateY(-1px); }
.badge-appstore:active { transform: translateY(0); opacity: .9; }
.badge-appstore:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── USP-strip onder de hero ──────────────────────────────────────────── */
.usps {
  list-style: none; margin: clamp(30px,5vw,52px) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
.usps li {
  display: flex; flex-direction: column; gap: 4px;
  padding: 22px 0 22px 22px; border-left: 1px solid var(--hairline);
}
.usps li:first-child { padding-left: 0; border-left: 0; }
.usps .v { font-size: 17px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
.usps .v.accent { color: var(--accent); }
.usps .k {
  font-family: var(--label); font-size: 11px; letter-spacing: .04em;
  color: var(--muted);
}
@media (max-width: 900px) {
  .usps { grid-template-columns: repeat(2, 1fr); }
  .usps li:nth-child(3) { padding-left: 0; border-left: 0; }
}
@media (max-width: 560px) {
  .usps { grid-template-columns: 1fr; }
  .usps li { padding: 16px 0; border-left: 0; border-top: 1px solid var(--hairline); }
  .usps li:first-child { border-top: 0; }
}

/* ── Prijs: bedrag + "eenmalig" eronder ───────────────────────────────── */
#pricing .amt-note {
  font-family: var(--label); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-top: 2px;
}

/* De hero-.wrap is een 2-koloms grid; losse blokken eronder moeten die grid niet erven,
   anders belanden ze in kolom 1 (de wave stond daardoor half-links, de USP-strip 2x2). */
.hero > .wrap.uspwrap,
.hero > .wrap.wavewrap { display: block; }

/* ── Guidelines-fixes ─────────────────────────────────────────────────── */
:root { color-scheme: light; }

/* De nav is sticky (60px): zonder scroll-margin verdwijnt de sectiekop eronder. */
#how, #privacy, #features, #pricing, #get { scroll-margin-top: 84px; }

/* Tikken voelt direct, geen grijze flits op iOS. */
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* Cijfers uitlijnen (prijs, LCD-chips). */
#pricing .amt, .lcd { font-variant-numeric: tabular-nums; }

/* Geen beweging voor wie dat uitzet. */
@media (prefers-reduced-motion: reduce) {
  .badge-appstore { transition: none; }
  .badge-appstore:hover, .badge-appstore:active { transform: none; }
}

/* ---- guides / SEO-artikelen (gedeeld; oudere pagina's hebben nog een inline kopie) ---- */
.article { max-width: 760px; margin: 0 auto; padding: 48px var(--edge) 80px; }
.article .stamp { font-family: var(--label); font-size: 11px; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; margin-bottom: 10px; }
.article h1 { color: var(--ink); font-weight: 700; font-size: clamp(28px, 5vw, 38px); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 14px; }
.article h2 { color: var(--ink); font-weight: 600; font-size: 21px; margin: 36px 0 8px; }
.article p, .article li { font-size: 16px; color: var(--body); }
.article ul, .article ol { padding-left: 20px; }
.article .cta { margin-top: 40px; background: var(--paper-2); border: 1px solid var(--border); border-radius: 12px; padding: 22px; }
.article .cta p { margin: 0 0 14px; }
.readnext { margin-top: 36px; border-top: 1px solid var(--border); padding-top: 16px; }
.readnext .stamp { margin-bottom: 6px; }
.readnext a { display: block; padding: 6px 0; font-size: 15px; color: var(--ink); text-decoration: underline; text-decoration-color: var(--faint); }

/* ---- artikel v2: meta, toc, figuren, tabellen, faq ---- */
.article .meta {
  display: flex; gap: 14px; align-items: baseline; flex-wrap: wrap;
  font-family: var(--label); font-size: 12px; color: var(--muted);
  margin: 0 0 34px;
}
.article .meta .sep { color: var(--faint); }

.toc {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 18px 22px; margin: 28px 0 8px;
  background: var(--paper-2);
}
.toc .stamp { margin-bottom: 8px; }
.toc ol { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 32px; }
@media (max-width: 560px) { .toc ol { columns: 1; } }
.toc li { margin: 0; padding: 4px 0; font-size: 14.5px; break-inside: avoid; }
.toc a { color: var(--body); text-decoration: none; border-bottom: 1px solid var(--faint); }
.toc a:hover { color: var(--ink); border-bottom-color: var(--accent); }

.article h2 { scroll-margin-top: 84px; }

figure.fig { margin: 28px 0; }
figure.fig img { width: 100%; height: auto; border-radius: 12px; }
figure.fig.framed img { border: 1px solid var(--border); }
figure.fig figcaption {
  font-family: var(--label); font-size: 12px; color: var(--muted);
  margin-top: 10px; letter-spacing: .02em;
}

/* 2-3 app-screenshots naast elkaar */
.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 28px auto; max-width: 560px; }
.shots img { width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--border); }
@media (max-width: 440px) { .shots { grid-template-columns: 1fr; max-width: 300px; } }

/* vergelijkingstabel (gepromoveerd uit meeting-transcription-options) */
.compare-wrap { overflow-x: auto; margin: 20px 0; }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; }
.compare th { font-family: var(--label); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); text-align: left; padding: 8px 12px 8px 0; border-bottom: 1px solid var(--border); vertical-align: bottom; }
.compare td { padding: 10px 12px 10px 0; border-bottom: 1px solid var(--hairline); font-size: 13.5px; vertical-align: top; }
.compare td:first-child { font-family: var(--label); font-size: 11.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.compare .yes { color: var(--ink); font-weight: 600; }
.compare .no { color: var(--tertiary); }

/* optie-kaart (gepromoveerd uit meeting-transcription-options) */
.opt { border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; margin: 14px 0; }
.opt h3 { margin: 0 0 6px; font-size: 17px; color: var(--ink); font-weight: 600; }
.opt .tag { font-family: var(--label); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.opt p { font-size: 14.5px; margin: 8px 0 0; }

/* faq */
.faq { margin-top: 8px; }
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: 4px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--hairline); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; align-items: baseline; gap: 12px;
  padding: 12px 0; font-weight: 600; color: var(--ink); font-size: 15.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+"; font-family: var(--label); color: var(--accent); flex: 0 0 auto; }
.faq details[open] summary::before { content: "\2212"; }
.faq details p { margin: 0 0 16px 26px; font-size: 15px; }

/* cta's in artikelen */
.article .cta { margin-top: 40px; background: var(--paper-2); border: 1px solid var(--border); border-radius: 12px; padding: 22px; }
.article .cta p { margin: 0 0 14px; }
.cta-mini {
  display: flex; gap: 16px; align-items: center; justify-content: space-between; flex-wrap: wrap;
  border: 1px solid var(--border); border-left: 3px solid var(--accent);
  border-radius: 12px; padding: 14px 18px; margin: 32px 0;
}
.cta-mini p { margin: 0; font-size: 14.5px; }
.cta-mini a { flex: 0 0 auto; font-weight: 500; color: var(--accent); font-size: 14.5px; white-space: nowrap; }
.cta-mini a:hover { color: var(--accent-press); }

/* read next als kaarten */
.readnext .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 12px; }
.readnext .cards a {
  display: block; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px;
  font-size: 14.5px; color: var(--ink); text-decoration: none; line-height: 1.4;
  transition: border-color .15s ease, background .15s ease;
}
.readnext .cards a:hover { border-color: var(--accent); background: var(--paper-2); }
.readnext .cards .k { display: block; font-family: var(--label); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }

/* ---- gradient feature-kaart (zachte tint in eigen palet, geen SaaS-pastel) ---- */
.gradcard {
  border: 1px solid var(--border); border-radius: 28px;
  background:
    radial-gradient(115% 130% at 90% 6%, rgba(255,85,36,.16), transparent 52%),
    radial-gradient(120% 115% at 6% 104%, rgba(197,160,89,.18), transparent 58%),
    var(--paper-2);
  padding: clamp(22px, 4vw, 40px);
  margin: 32px 0;
}
/* koel tint-alternatief voor ritme tussen kaarten (VU-groen), in eigen palet */
.gradcard.cool {
  background:
    radial-gradient(115% 130% at 90% 6%, rgba(110,147,166,.16), transparent 52%),
    radial-gradient(120% 115% at 6% 104%, rgba(162,174,146,.22), transparent 58%),
    var(--paper-2);
}
.gradcard .gc-kicker { font-family: var(--label); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin: 0 0 10px; }
.gradcard h3 { font-weight: 600; color: var(--ink); font-size: clamp(1.15rem, 2.2vw, 1.4rem); letter-spacing: -.015em; margin: 0 0 8px; }
.gradcard > p { color: var(--body-2); font-size: 15px; max-width: 52ch; margin: 0; }
.gradcard .shots { margin: 24px 0 0; }
.gradcard .shots img { box-shadow: 0 18px 40px -22px rgba(30,26,20,.4); border-color: rgba(26,26,28,.16); }

/* ---- use-case pagina's (workflow-fases, education-agent-patroon in eigen taal) ---- */
.uc-hero { padding-top: clamp(40px, 7vw, 84px); padding-bottom: clamp(28px, 4vw, 52px); }
.uc-hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
@media (max-width: 860px) { .uc-hero .wrap { grid-template-columns: 1fr; } }
/* article-style opening: title + text only, no header photo, flush-left like the body */
.uc-hero.noimg .wrap { grid-template-columns: 1fr; }
.uc-hero.noimg h1 { max-width: 18ch; }
.uc-hero.noimg .lede { max-width: 58ch; font-size: clamp(1.05rem, 1.7vw, 1.24rem); }
.uc-hero .eyebrow { margin-bottom: 18px; }
.uc-hero h1 { font-weight: 300; color: var(--ink); font-size: clamp(2.1rem, 4.8vw, 3.3rem); line-height: 1.04; letter-spacing: -.03em; margin: 0 0 18px; text-wrap: balance; }
.uc-hero h1 b { font-weight: 600; }
.uc-hero .lede { font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: var(--body-2); max-width: 40ch; margin: 0 0 26px; }
.uc-hero .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.uc-hero-visual { justify-self: center; }
/* framed like the app, so it reads as a phone instead of a thin image strip */
.uc-hero-visual .phone { --pw: clamp(240px, 32vw, 300px); }

/* leesbare tekstkolom op use-case pagina's (lopende tekst tussen de blokken) */
.uc-prose { max-width: 64ch; }
.uc-prose.center { margin-inline: auto; }
.uc-prose p { font-size: clamp(1rem, 1.5vw, 1.13rem); color: var(--body); line-height: 1.72; margin: 0 0 18px; }
.uc-prose p:last-child { margin-bottom: 0; }
.uc-prose h3 { font-weight: 600; color: var(--ink); font-size: 1.15rem; letter-spacing: -.01em; margin: 26px 0 8px; }
.uc-prose ul { padding-left: 20px; margin: 0 0 18px; }
.uc-prose li { color: var(--body); font-size: 1.02rem; line-height: 1.65; margin: 6px 0; }
.uc-prose a.inline { color: var(--accent); border-bottom: 1px solid var(--accent-tint); }
.uc-prose strong { color: var(--ink); font-weight: 600; }

/* workflow-fase als split gradient-kaart, beeld en tekst wisselen van kant */
.uc-phases { display: flex; flex-direction: column; gap: clamp(16px, 3vw, 28px); }
.gradcard.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 48px); align-items: center; }
@media (max-width: 760px) { .gradcard.split { grid-template-columns: 1fr; } }
.gradcard .gc-n { font-family: var(--label); font-size: 13px; color: var(--accent); letter-spacing: .04em; margin: 0 0 12px; }
.gradcard.split .gc-body h3 { font-size: clamp(1.2rem, 2.3vw, 1.5rem); margin-bottom: 10px; }
.gradcard.split .gc-body p { color: var(--body-2); font-size: 15.5px; margin: 0 0 14px; }
.gradcard.split .gc-body ul { margin: 0; padding-left: 18px; }
.gradcard.split .gc-body li { color: var(--body); font-size: 14.5px; margin: 5px 0; }
.gradcard.split .gc-media { display: flex; gap: 12px; justify-content: center; }
.gradcard.split.rev .gc-body { order: 2; }
@media (max-width: 760px) { .gradcard.split.rev .gc-body { order: 0; } }
.gradcard.split .gc-media img { width: 100%; max-width: 200px; height: auto; border-radius: 18px; border: 1px solid rgba(26,26,28,.16); box-shadow: 0 18px 40px -22px rgba(30,26,20,.4); }

/* ---- gidsen-hub: rustige lijst met tekstlinks ---- */
.guidesection { margin: 44px 0 0; }
.guidesection > h2 { font-weight: 600; color: var(--ink); font-size: 1.3rem; letter-spacing: -.01em; margin: 0 0 6px; }
.guidesection > .lead { color: var(--body-2); font-size: 1rem; margin: 0 0 8px; max-width: 62ch; }
.guidelist { margin: 0; }
.guidelist a {
  display: block; padding: 16px 0; border-top: 1px solid var(--hairline);
  text-decoration: none;
}
.guidelist a:first-child { border-top: 1px solid var(--border); }
.guidelist a:last-child { border-bottom: 1px solid var(--hairline); }
.guidelist .row { display: flex; justify-content: space-between; gap: 18px; align-items: baseline; }
.guidelist h3 { margin: 0; font-size: 1.05rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; }
.guidelist a:hover h3 { color: var(--accent); }
.guidelist .k { flex: 0 0 auto; font-family: var(--label); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); white-space: nowrap; }
.guidelist p { margin: 4px 0 0; font-size: 14.5px; color: var(--body-2); max-width: 68ch; }

/* ---- gidsen-hub (oud kaart-grid, nog gebruikt in read-next blokken) ---- */
.hubgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 28px; }
.hubcard {
  display: flex; flex-direction: column; gap: 8px;
  border: 1px solid var(--border); border-radius: 16px; padding: 22px 22px 20px;
  background: var(--paper); text-decoration: none;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.hubcard:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 28px -18px rgba(30,26,20,.35); }
.hubcard .k { display: flex; justify-content: space-between; font-family: var(--label); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.hubcard h3 { margin: 2px 0 0; font-size: 17px; font-weight: 600; color: var(--ink); letter-spacing: -.01em; line-height: 1.3; }
.hubcard p { margin: 0; font-size: 14px; color: var(--body-2); }
.hublang { margin: 44px 0 0; }
.hublang .stamp { font-family: var(--label); font-size: 11px; letter-spacing: .14em; color: var(--muted); text-transform: uppercase; margin-bottom: 4px; }

/* ---- gidsen-blok op de homepage ---- */
.guides { border-top: 1px solid var(--hairline); padding: 34px 0 46px; }
.guides .glabel { font-family: var(--label); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.guides .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 4px 32px; }
.guides a { display: block; padding: 6px 0; font-size: 14.5px; color: var(--body); text-decoration: underline; text-decoration-color: var(--faint); text-underline-offset: 3px; }
.guides a:hover { color: var(--ink); text-decoration-color: var(--accent); }
