/* Thuisklaar website: one stylesheet, no dependencies.
   Colours follow the app's asset catalog (BrandGreen, Category* colours).
   Text on tinted backgrounds uses the darker --*-ink values so small text
   reaches WCAG AA. Page sections are appended below in page order. */

@font-face {
  font-family: 'Inter Tight';
  src: url('/fonts/inter-tight.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fraunces';
  src: url('/fonts/fraunces-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  color-scheme: light;

  --cream: #FBF7EC;
  --cream-deep: #F1EAD6;
  --paper: #FFFFFF;
  --sage: #EEF6EF;
  --sage-2: #DCEEDF;
  --green: #53B175;
  --green-strong: #2E7C50;
  --green-hover: #276B45;
  --green-deep: #1D5A37;
  --green-night: #123B24;
  --mint: #A8DDB9;
  --ink: #174A2D;
  --text: #1F2A22;
  --muted: #56645A;
  --line: rgba(23, 74, 45, 0.12);
  --line-strong: rgba(23, 74, 45, 0.24);
  --focus: #2E7C50;
  --control-line: #7C8A80;
  --attention-soft: #FFF4E0;
  --attention-ink: #6B4610;

  --water: #E7F3FA;
  --water-ink: #17609F;
  --food: #FDF6E3;
  --food-ink: #8A4B05;
  --light: #FFF8D5;
  --light-ink: #735800;
  --comm: #F4EBF7;
  --comm-ink: #8E3EA8;
  --aid: #FCE8E3;
  --aid-ink: #A92626;
  --warmth: #FBEEE2;
  --warmth-ink: #A33F17;
  --docs: #EAF6ED;
  --docs-ink: #276B45;
  --tools: #EDEFF3;
  --tools-ink: #54667C;
  --personal: #F3EAF8;
  --personal-ink: #5B45B8;

  --font-display: 'Inter Tight', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-accent: 'Fraunces', ui-serif, Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --shadow-card: 0 1px 0 rgba(23, 74, 45, 0.04), 0 14px 34px -16px rgba(23, 74, 45, 0.22);
  --shadow-float: 0 22px 44px -18px rgba(20, 60, 35, 0.34), 0 4px 12px rgba(20, 60, 35, 0.08);
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);

  --gutter: clamp(16px, 4vw, 56px);
  --max: 1200px;
  --frame: 14px;
}

/* Base */

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

html {
  background: var(--green-deep);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--text);
  font: 400 1.0625rem/1.6 var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

a {
  color: var(--green-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 2px;
}

button {
  color: inherit;
  font: inherit;
}

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

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

.skip-link {
  position: absolute;
  z-index: 100;
  top: -80px;
  left: 16px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: none;
}

/* Sheet: the cream page inside a deep-green frame on larger screens */

.sheet {
  position: relative;
  min-height: 100vh;
  background: var(--cream);
  overflow: clip;
}

@media (min-width: 900px) {
  .sheet {
    min-height: calc(100vh - 2 * var(--frame));
    margin: var(--frame);
    border-radius: 28px;
  }
}

.wrap {
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(72px, 10vw, 136px);
}

.section-sage {
  background: linear-gradient(180deg, var(--sage) 0%, #F4F9F2 100%);
}

.section-head {
  display: grid;
  gap: 18px;
  justify-items: start;
  max-width: 48rem;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head.center {
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

/* Type */

.eyebrow {
  color: var(--green-strong);
  font: 600 0.75rem/1.3 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.display-xl,
.display-l,
.display-m {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 560;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.display-xl {
  font-size: clamp(2.75rem, 1.2rem + 5.4vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.display-l {
  font-size: clamp(2.125rem, 1.3rem + 3.1vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.display-m {
  font-size: clamp(1.75rem, 1.3rem + 1.6vw, 2.5rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.accent {
  color: var(--green-strong);
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.lead {
  max-width: 36em;
  color: var(--muted);
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  line-height: 1.55;
  text-wrap: pretty;
}

.section-head.center .lead {
  margin-inline: auto;
}

/* Tones: the app's category colours */

.tone-water { --tone: var(--water); --tone-ink: var(--water-ink); }
.tone-food { --tone: var(--food); --tone-ink: var(--food-ink); }
.tone-light { --tone: var(--light); --tone-ink: var(--light-ink); }
.tone-comm { --tone: var(--comm); --tone-ink: var(--comm-ink); }
.tone-aid { --tone: var(--aid); --tone-ink: var(--aid-ink); }
.tone-warmth { --tone: var(--warmth); --tone-ink: var(--warmth-ink); }
.tone-docs { --tone: var(--docs); --tone-ink: var(--docs-ink); }
.tone-tools { --tone: var(--tools); --tone-ink: var(--tools-ink); }
.tone-personal { --tone: var(--personal); --tone-ink: var(--personal-ink); }

/* Buttons and App Store calls to action */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  min-height: 52px;
  padding: 0 1.5em;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font: 600 1rem/1.1 var(--font-body);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s var(--ease-out);
}

.btn .icon {
  width: 1.05em;
  height: 1.05em;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-strong);
  color: #FFFFFF;
  box-shadow: 0 10px 22px -12px rgba(46, 124, 80, 0.8);
}

.btn-primary:hover {
  background: var(--green-hover);
}

.btn-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.btn-quiet {
  background: var(--sage);
  color: var(--ink);
}

.btn-quiet:hover {
  background: var(--sage-2);
}

.btn-light {
  background: var(--cream);
  color: var(--ink);
}

.btn-light:hover {
  background: var(--paper);
}

.btn-sm {
  min-height: 44px;
  padding: 0 1.1em;
  font-size: 0.9375rem;
}

.btn-block {
  width: 100%;
}

.btn.is-soon {
  box-shadow: none;
  cursor: default;
}

.btn.is-soon:hover {
  transform: none;
}

.btn-primary.is-soon:hover {
  background: var(--green-strong);
}

.btn-quiet.is-soon:hover {
  background: var(--sage);
}

.store-soon {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 60px;
  padding: 10px 20px 10px 14px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--cream);
}

.store-soon .icon {
  width: 28px;
  height: 28px;
  color: var(--mint);
}

.store-soon strong {
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.store-soon small {
  display: block;
  color: rgba(251, 247, 236, 0.82);
  font-size: 0.8125rem;
  line-height: 1.3;
}

.store-badge {
  display: inline-block;
  border-radius: 12px;
}

.store-badge img {
  width: auto;
  height: 60px;
}

.hide-sm {
  display: none;
}

@media (min-width: 560px) {
  .hide-sm {
    display: inline;
  }
}

/* Header */

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.site-header.is-stuck {
  background: rgba(251, 247, 236, 0.86);
  box-shadow: 0 1px 0 var(--line);
  -webkit-backdrop-filter: saturate(1.6) blur(16px);
  backdrop-filter: saturate(1.6) blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font: 650 1.375rem/1 var(--font-display);
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: none;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, background-color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(23, 74, 45, 0.06);
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.nav-list-link {
  display: none;
}

.nav-menu {
  position: relative;
}

.nav-menu summary {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.nav-menu[open] summary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  gap: 2px;
  width: min(300px, calc(100vw - 2 * var(--gutter)));
  margin: 0;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-float);
  list-style: none;
}

.nav-menu-panel a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
}

.nav-menu-panel a:hover,
.nav-menu-panel a[aria-current="page"] {
  background: var(--sage);
}

@media (max-width: 359px) {
  .nav-actions [data-app-store] {
    display: none;
  }
}

@media (min-width: 720px) {
  .nav-list-link {
    display: inline-flex;
  }
}

@media (min-width: 1080px) {
  .nav-links {
    display: flex;
    margin-left: auto;
  }

  .nav-actions {
    margin-left: 12px;
  }

  .nav-menu {
    display: none;
  }
}

/* Footer */

.site-footer {
  padding-top: 56px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer-top {
  display: grid;
  gap: 32px;
}

.footer-brand p {
  max-width: 26em;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9375rem;
}

.footer-col h2 {
  margin-bottom: 12px;
  color: var(--muted);
  font: 600 0.75rem/1.3 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.footer-col a {
  color: var(--ink);
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-word {
  margin-top: 48px;
  color: var(--cream-deep);
  font: 600 clamp(4.5rem, 19vw, 17rem)/0.8 var(--font-display);
  letter-spacing: -0.06em;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}

.footer-word::before {
  content: 'Thuisklaar';
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding-block: 20px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.8125rem;
}

@media (min-width: 820px) {
  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

/* Document pages: privacy and support */

.page-main {
  padding-block: clamp(32px, 5vw, 64px) clamp(64px, 8vw, 112px);
}

.page-shell {
  display: grid;
  gap: 48px;
  max-width: calc(820px + 2 * var(--gutter));
}

.page-intro {
  display: grid;
  gap: 16px;
}

.page-lead {
  color: var(--muted);
  font-size: 1.1875rem;
}

.page-updated {
  color: var(--muted);
  font-size: 0.875rem;
}

.page-section {
  display: grid;
  gap: 14px;
}

.page-section h2 {
  color: var(--ink);
  font: 600 clamp(1.5rem, 1.2rem + 1vw, 2rem)/1.15 var(--font-display);
  letter-spacing: -0.03em;
}

.page-section > p {
  max-width: 42em;
}

.privacy-facts {
  display: grid;
  gap: 12px;
}

.privacy-facts article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.privacy-facts article > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--sage);
  color: var(--green-strong);
  font-weight: 700;
}

.privacy-facts h3 {
  margin-bottom: 4px;
  color: var(--ink);
  font: 600 1.0625rem/1.3 var(--font-display);
}

.privacy-facts p {
  color: var(--muted);
  font-size: 0.9375rem;
}

@media (min-width: 760px) {
  .privacy-facts {
    grid-template-columns: 1fr 1fr;
  }
}

/* FAQ lists (support page and homepage) */

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list > details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-list > details[open] {
  border-color: transparent;
  box-shadow: var(--shadow-card);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--ink);
  font: 600 1.0625rem/1.35 var(--font-display);
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '';
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232E7C50' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  transition: transform 0.25s var(--ease-out);
}

.faq-list details[open] > summary::after {
  transform: rotate(45deg);
}

.faq-list details > p,
.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p {
  max-width: 42em;
}

/* Motion preferences */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Reveal on scroll: only elements the script marks as pending are hidden,
   so the page is complete without JavaScript. */

.reveal {
  transition: opacity 0.8s var(--ease-out), translate 0.8s var(--ease-out);
}

.reveal.is-pending {
  opacity: 0;
  translate: 0 24px;
}

.reveal.is-pending.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* Phone: drawn in CSS around a real capture, like the App Store frames */

.phone {
  --pw: 280px;
  position: relative;
  flex: none;
  width: var(--pw);
  padding: calc(var(--pw) * 0.016);
  border-radius: calc(var(--pw) * 0.17);
  background: linear-gradient(140deg, #D9DDD6 0%, #8F958C 18%, #EEF0EA 36%, #7D837A 60%, #C9CDC4 82%, #6F756C 100%);
  box-shadow: 0 40px 80px -30px rgba(10, 40, 22, 0.45), 0 18px 36px -18px rgba(10, 40, 22, 0.35);
}

.phone-bezel {
  padding: calc(var(--pw) * 0.026);
  border-radius: calc(var(--pw) * 0.155);
  background: #0B0C0B;
}

.phone-screen {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1320 / 2868;
  border-radius: calc(var(--pw) * 0.125);
  background: var(--paper);
}

.phone-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.phone-island {
  position: absolute;
  z-index: 2;
  top: 1.7%;
  left: 50%;
  width: 27%;
  height: 3.6%;
  border-radius: 999px;
  background: #000000;
  translate: -50% 0;
}

/* Hero */

.hero {
  padding-block: clamp(16px, 3vw, 40px) clamp(56px, 8vw, 104px);
}

.hero-inner {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 14px;
  margin-top: 8px;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  font-weight: 500;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-facts .icon {
  width: 1.05em;
  height: 1.05em;
  color: var(--green-strong);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  padding: 40px 0 64px;
  isolation: isolate;
}

.hero-panel {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 85% 8%, #FFFFFF 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(90% 80% at 8% 100%, #CFE7D4 0%, rgba(207, 231, 212, 0) 70%),
    linear-gradient(180deg, var(--sage) 0%, #E1F0E3 100%);
}

.hero-phone {
  --pw: clamp(210px, 56vw, 250px);
  transform: perspective(2400px) rotateX(6deg) rotateY(-14deg) rotateZ(-7deg);
}

.hero-clay {
  position: absolute;
  z-index: 2;
  bottom: -18px;
  left: -4px;
  width: clamp(150px, 40vw, 220px);
  filter: drop-shadow(0 22px 26px rgba(20, 60, 35, 0.22));
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-float);
  color: var(--text);
  font-size: 0.875rem;
  line-height: 1.3;
  animation: drift 8s ease-in-out infinite;
}

.float-card small {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.float-card strong {
  display: block;
  color: var(--ink);
  font: 600 1rem/1.25 var(--font-display);
  letter-spacing: -0.02em;
}

.fc-icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--tone);
  color: var(--tone-ink);
}

.fc-big {
  color: var(--green-strong);
  font: 600 1.75rem/1 var(--font-display);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.fc-water {
  top: 6%;
  left: 0;
}

.fc-expiry {
  right: 0;
  bottom: 16%;
  animation-delay: -3s;
}

.fc-household,
.fc-advice {
  display: none;
}

@keyframes drift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@media (min-width: 600px) {
  .fc-household,
  .fc-advice {
    display: flex;
  }

  .fc-advice {
    top: 2%;
    right: 2%;
    rotate: 3deg;
    animation-delay: -5s;
  }

  .fc-household {
    top: 20%;
    left: 0;
    animation-delay: -1.5s;
  }

  .fc-water {
    top: 46%;
  }

  .fc-expiry {
    right: 2%;
    bottom: 14%;
  }
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
    gap: 32px;
  }

  .hero-visual {
    min-height: 680px;
    padding: 48px 0 72px;
  }

  .hero-panel {
    inset: 0 0 0 10%;
  }

  .hero-phone {
    --pw: clamp(260px, 24vw, 310px);
  }

  .hero-clay {
    bottom: -28px;
    left: 0;
    width: clamp(200px, 19vw, 270px);
  }
}

/* Topic strip */

.topics {
  border-block: 1px solid var(--line);
}

.topics-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 28px;
  padding-block: 22px;
}

.topics-label {
  color: var(--muted);
  font: 600 0.6875rem/1.3 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding: 0;
  list-style: none;
}

.topics-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.topics-list .icon {
  color: var(--green-strong);
}

/* 01 Van boekje naar kast */

.split-head {
  display: grid;
  gap: 28px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.split-head .section-head {
  margin-bottom: 0;
}

.stat-card {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

.stat-card .stat {
  color: var(--green-strong);
  font: 600 clamp(3rem, 2rem + 3vw, 4.25rem)/0.9 var(--font-display);
  letter-spacing: -0.05em;
}

.stat-card .source {
  color: var(--muted);
  font-size: 0.8125rem;
}

.steps {
  display: grid;
  gap: 16px;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.step-num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font: 600 0.9375rem/1 var(--font-display);
}

.step h3 {
  color: var(--ink);
  font: 600 1.25rem/1.2 var(--font-display);
  letter-spacing: -0.025em;
}

.step p {
  color: var(--muted);
  font-size: 1rem;
}

.step-art {
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 150px;
  margin-bottom: 6px;
  padding: 14px;
  border-radius: 16px;
  background: var(--sage);
}

.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(23, 74, 45, 0.06);
  font-size: 0.875rem;
  font-weight: 500;
}

.mini-value {
  color: var(--ink);
  font: 600 0.9375rem/1 var(--font-display);
}

.tick {
  display: grid;
  place-items: center;
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green-strong);
  color: #FFFFFF;
}

.tick .icon {
  width: 13px;
  height: 13px;
}

.tick.is-empty {
  border: 2px solid var(--line-strong);
  background: transparent;
}

.mini-button {
  padding: 10px;
  border-radius: 12px;
  background: var(--green-strong);
  color: #FFFFFF;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
}

@media (min-width: 820px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .split-head {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  }
}

/* Closing call to action */

.cta-final {
  padding-block: clamp(24px, 4vw, 48px) clamp(72px, 9vw, 120px);
}

.cta-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 22px;
  padding: clamp(48px, 7vw, 96px) clamp(24px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(80% 90% at 50% 0%, #FFFFFF 0%, rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, var(--sage) 0%, var(--sage-2) 100%);
  overflow: hidden;
  text-align: center;
}

.cta-card .lead {
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 14px;
  margin-top: 6px;
}

.cta-clay {
  position: absolute;
  display: none;
  pointer-events: none;
}

@media (min-width: 1000px) {
  .cta-clay {
    display: block;
  }

  .cta-clay-left {
    bottom: -40px;
    left: -30px;
    width: 220px;
  }

  .cta-clay-right {
    top: 36px;
    right: -40px;
    width: 280px;
  }
}

/* 02 Functies: chapters with a pinned phone on wide screens */

.chapters {
  position: relative;
  display: grid;
  gap: 56px;
}

.chapters-stage {
  display: none;
}

.chapter-list {
  display: grid;
  gap: 72px;
  padding: 0;
  list-style: none;
}

.chapter {
  display: grid;
  justify-items: center;
  gap: 28px;
}

.chapter-phone {
  --pw: clamp(220px, 60vw, 270px);
}

.chapter-copy {
  display: grid;
  justify-items: start;
  gap: 14px;
  max-width: 30rem;
}

.chapter-copy h3 {
  color: var(--ink);
  font: 560 clamp(1.75rem, 1.2rem + 1.8vw, 2.625rem)/1.05 var(--font-display);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.chapter-copy > p {
  color: var(--muted);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  background: var(--tone, var(--sage));
  color: var(--tone-ink, var(--green-strong));
  font-size: 0.8125rem;
  font-weight: 600;
}

.chip .icon {
  width: 16px;
  height: 16px;
}

.ticks {
  display: grid;
  gap: 10px;
  margin-top: 4px;
  padding: 0;
  list-style: none;
}

.ticks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
}

.ticks .icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  padding: 4px;
  border-radius: 999px;
  background: var(--green-strong);
  color: #FFFFFF;
}

@media (min-width: 720px) {
  .chapter {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    justify-items: start;
    gap: 48px;
  }
}

@media (min-width: 960px) {
  .chapters.is-enhanced {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    align-items: start;
    gap: 64px;
  }

  .chapters.is-enhanced .chapters-stage {
    position: sticky;
    top: 96px;
    display: grid;
    place-items: center;
    height: calc(100vh - 128px);
    max-height: 780px;
  }

  .chapters.is-enhanced .chapter-phone {
    display: none;
  }

  .chapters.is-enhanced .chapter-list {
    gap: 0;
  }

  .chapters.is-enhanced .chapter {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 72vh;
  }

  .chapters.is-enhanced .chapter-copy {
    padding-left: 24px;
    border-left: 3px solid transparent;
    transition: border-color 0.4s var(--ease-out);
  }

  .chapters.is-enhanced .chapter.is-active .chapter-copy {
    border-left-color: var(--green);
  }

  .chapters-stage .phone {
    --pw: min(310px, calc((100vh - 200px) * 0.47));
  }

  .chapters-stage .phone-screen img {
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
  }

  .chapters-stage .phone-screen img.is-active {
    opacity: 1;
  }

  .stage-glow {
    position: absolute;
    z-index: -1;
    inset: 6% 2%;
    border-radius: 48px;
    background: radial-gradient(circle at 50% 42%, #FFFFFF 0%, rgba(255, 255, 255, 0) 70%);
  }
}

/* 03 Bento: calculator and three tiles */

.bento,
.bento-stack {
  display: grid;
  gap: 16px;
}

.tile {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tile h3 {
  color: var(--ink);
  font: 560 clamp(1.625rem, 1.2rem + 1.4vw, 2.25rem)/1.06 var(--font-display);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.tile p {
  color: var(--muted);
}

.tile-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--tone-ink, var(--green-strong));
  font: 600 0.75rem/1.3 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tile-kicker .icon {
  width: 18px;
  height: 18px;
}

.tile-calc {
  background: var(--tone);
}

.calc-copy {
  display: grid;
  align-content: start;
  gap: 14px;
}

.calc-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 6px;
}

.stepper {
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(23, 96, 159, 0.08);
}

.stepper-label {
  font-size: 0.875rem;
  font-weight: 600;
}

.stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 44px;
}

.stepper output {
  flex: 1;
  color: var(--ink);
  font: 600 1.5rem/1 var(--font-display);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.03em;
  text-align: center;
}

.stepper button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1.5px solid rgba(23, 96, 159, 0.25);
  border-radius: 999px;
  background: var(--paper);
  color: var(--water-ink);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s;
}

.stepper button .icon {
  width: 18px;
  height: 18px;
}

[data-calc].is-enhanced .stepper button {
  display: grid;
}

.stepper button:hover:not([aria-disabled="true"]) {
  border-color: var(--water-ink);
  background: var(--water);
}

.stepper button[aria-disabled="true"] {
  opacity: 0.35;
  cursor: not-allowed;
}

.calc-result {
  position: relative;
  display: grid;
  align-content: center;
  gap: 10px;
  min-height: 280px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.calc-big {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
}

.calc-big strong {
  color: var(--water-ink);
  font: 600 clamp(4rem, 3rem + 4vw, 6.5rem)/0.9 var(--font-display);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.055em;
}

.calc-big span {
  color: var(--ink);
  font: 500 1.25rem/1.2 var(--font-display);
}

.tile .calc-sub {
  max-width: 22em;
  color: var(--text);
}

.calc-sub strong {
  color: var(--ink);
}

.calc-note {
  font-size: 0.8125rem;
}

.calc-clay {
  position: absolute;
  right: -12px;
  bottom: -16px;
  display: none;
  width: clamp(130px, 14vw, 180px);
  pointer-events: none;
}

.tile-calm {
  background: var(--sage);
}

.tile .tile-footnote {
  margin-top: 8px;
  color: var(--green-strong);
  font: 600 0.6875rem/1.3 var(--font-body);
  letter-spacing: 0.14em;
  text-align: right;
  text-transform: uppercase;
}

.tile-private {
  border: 1px solid var(--line);
  background: var(--paper);
}

.tile-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--sage);
  color: var(--green-strong);
}

.tile-icon .icon {
  width: 24px;
  height: 24px;
}

.tile-stroom {
  align-content: end;
  min-height: 460px;
  padding-top: clamp(200px, 30vw, 300px);
  background:
    radial-gradient(90% 70% at 80% 18%, #2E7C50 0%, rgba(46, 124, 80, 0) 70%),
    linear-gradient(160deg, var(--green-deep) 0%, var(--green-night) 100%);
  color: var(--cream);
}

.tile-stroom h3 {
  color: var(--cream);
}

.tile-stroom .accent,
.tile-stroom .tile-kicker {
  color: var(--mint);
}

.tile-stroom p {
  color: rgba(251, 247, 236, 0.84);
}

.tile-stroom :focus-visible {
  outline-color: var(--mint);
}

.tile-clay {
  position: absolute;
  top: 4%;
  right: 2%;
  width: clamp(200px, 30vw, 340px);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
  pointer-events: none;
}

.tile-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.tile-chips li {
  padding: 6px 12px;
  border: 1px solid rgba(251, 247, 236, 0.22);
  border-radius: 999px;
  background: rgba(251, 247, 236, 0.08);
  font-size: 0.8125rem;
  font-weight: 600;
}

@media (min-width: 600px) {
  .calc-clay {
    display: block;
  }

  .calc-result {
    padding-right: clamp(140px, 16vw, 200px);
  }
}

@media (min-width: 900px) {
  .bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .tile-calc {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: 48px;
  }

  .bento-stack {
    grid-column: span 5;
  }

  .tile-stroom {
    grid-column: span 7;
  }
}

/* 04 Voor wie */

.personas {
  display: grid;
  gap: 16px;
}

.persona {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 12px;
  min-height: 340px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--tone);
}

.persona-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--tone-ink);
}

.persona-icon .icon {
  width: 22px;
  height: 22px;
}

.persona-tag {
  margin-top: 8px;
  color: var(--tone-ink);
  font: 600 0.6875rem/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.persona-line {
  color: var(--ink);
  font: 400 1.625rem/1.15 var(--font-accent);
  font-style: italic;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

.persona p:not([class]) {
  font-size: 1rem;
}

.persona-link {
  display: inline-flex;
  align-items: center;
  align-self: end;
  gap: 6px;
  color: var(--tone-ink);
  font-weight: 600;
  text-decoration: none;
}

.persona-link:hover {
  text-decoration: underline;
}

.persona-link .icon {
  width: 1em;
  height: 1em;
}

@media (min-width: 720px) {
  .personas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .personas {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* 05 Privacy band */

.band-dark {
  position: relative;
  padding-block: clamp(72px, 10vw, 128px);
  background:
    radial-gradient(70% 90% at 90% 0%, #2E7C50 0%, rgba(46, 124, 80, 0) 60%),
    var(--green-deep);
  color: var(--cream);
  overflow: hidden;
}

.band-dark :focus-visible {
  outline-color: var(--mint);
}

.band-grid {
  display: grid;
  align-items: center;
  gap: 48px;
}

.band-copy {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.band-dark .eyebrow,
.band-dark .accent {
  color: var(--mint);
}

.band-dark .display-l {
  color: var(--cream);
}

.band-dark .lead {
  color: rgba(251, 247, 236, 0.84);
}

.band-visual {
  display: grid;
  gap: 16px;
}

.band-clay {
  justify-self: center;
  width: clamp(160px, 22vw, 240px);
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.privacy-fact {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(251, 247, 236, 0.14);
  border-radius: var(--radius);
  background: rgba(251, 247, 236, 0.07);
}

.privacy-fact .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 6px;
  color: var(--mint);
}

.privacy-fact strong {
  color: var(--cream);
  font: 600 1.125rem/1.2 var(--font-display);
}

.privacy-fact span {
  color: rgba(251, 247, 236, 0.8);
  font-size: 0.9375rem;
}

@media (min-width: 960px) {
  .band-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
  }
}

/* 06 Prijs */

.plans {
  display: grid;
  gap: 18px;
  max-width: 940px;
  margin-inline: auto;
}

.plan {
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 8px;
  border-radius: 30px;
  background: var(--cream-deep);
}

.plan-top {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
}

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

.plan-name {
  color: var(--ink);
  font: 600 1.375rem/1.1 var(--font-display);
  letter-spacing: -0.02em;
}

.plan-tagline {
  min-height: 2.8em;
  color: var(--muted);
  font-size: 1.125rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price .amount {
  color: var(--ink);
  font: 600 clamp(3rem, 2.4rem + 2.4vw, 4rem)/1 var(--font-display);
  letter-spacing: -0.05em;
}

.price .per {
  color: var(--muted);
  font-size: 0.9375rem;
}

.price-note {
  margin-top: -8px;
  color: var(--muted);
  font-size: 0.875rem;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--green-strong);
  font: 700 0.6875rem/1 var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-list {
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 0;
  padding: 22px 24px 24px;
  list-style: none;
}

.plan-list li {
  display: flex;
  gap: 10px;
  font-size: 0.9875rem;
}

.plan-list .icon {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--green-strong);
}

.plan-plus {
  background: linear-gradient(160deg, var(--green-strong) 0%, var(--green-deep) 70%);
}

.plan-plus .plan-list li {
  color: var(--cream);
}

.plan-plus .plan-list .icon {
  color: var(--mint);
}

.plans-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9375rem;
  text-align: center;
}

@media (min-width: 760px) {
  .plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 07 Bronnen */

.sources-grid {
  display: grid;
  gap: 40px;
}

.sources-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.independent {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--attention-soft);
  color: var(--attention-ink);
  font-size: 0.9375rem;
}

.source-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.source-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s var(--ease-out);
}

.source-list a:hover {
  border-color: var(--green);
  transform: translateY(-1px);
}

.src-issuer {
  color: var(--green-strong);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.src-title {
  color: var(--ink);
  font-weight: 600;
}

.src-what {
  color: var(--muted);
  font-size: 0.875rem;
}

.source-list .icon {
  grid-row: 1 / span 3;
  grid-column: 2;
  align-self: center;
  color: var(--muted);
}

.verified {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.8125rem;
}

@media (min-width: 960px) {
  .sources-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
  }
}

/* 08 Vragen */

.faq {
  display: grid;
  gap: 40px;
}

@media (min-width: 960px) {
  .faq {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 64px;
  }

  .faq .section-head {
    position: sticky;
    top: 110px;
    margin-bottom: 0;
  }
}

/* Checklist page */

.guide-hero {
  display: grid;
  align-items: end;
  gap: 24px;
  padding-block: clamp(16px, 3vw, 40px) clamp(32px, 5vw, 56px);
}

.guide-intro {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.875rem;
}

.crumbs a {
  color: var(--muted);
}

.guide-answer {
  max-width: 36em;
  padding-left: 18px;
  border-left: 3px solid var(--green);
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.3125rem);
  line-height: 1.5;
}

.guide-meta {
  color: var(--muted);
  font-size: 0.875rem;
}

.guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-clay {
  justify-self: center;
  width: clamp(200px, 50vw, 360px);
  filter: drop-shadow(0 26px 30px rgba(20, 60, 35, 0.2));
}

.checklist {
  padding-bottom: clamp(56px, 8vw, 96px);
}

.checklist-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 20px;
  margin-bottom: 24px;
}

.checklist-progress {
  margin-left: auto;
  color: var(--green-strong);
  font-weight: 600;
}

.link-btn {
  padding: 8px;
  border: 0;
  background: none;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
}

.checklist-groups {
  column-gap: 16px;
  columns: 1;
}

.group {
  display: grid;
  gap: 8px;
  min-inline-size: 0;
  margin: 0 0 16px;
  padding: 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--tone);
  break-inside: avoid;
}

.group legend {
  float: left;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 4px;
  padding: 0;
  color: var(--ink);
  font: 600 1.125rem/1.2 var(--font-display);
  letter-spacing: -0.02em;
}

.group-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--tone-ink);
}

.group-icon .icon {
  width: 20px;
  height: 20px;
}

.item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--paper);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.item:hover {
  box-shadow: 0 6px 18px -10px rgba(23, 74, 45, 0.35);
}

.item input {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin: 1px 0 0;
  border: 2px solid var(--control-line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: background-color 0.15s, border-color 0.15s;
}

.item input::after {
  content: '';
  width: 11px;
  height: 6px;
  border: solid #FFFFFF;
  border-width: 0 0 2.5px 2.5px;
  opacity: 0;
  rotate: -45deg;
  translate: 0 -1px;
}

.item input:checked {
  border-color: var(--green-strong);
  background: var(--green-strong);
}

.item input:checked::after {
  opacity: 1;
}

.item strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
}

.item small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.45;
}

.item:has(input:checked) strong {
  text-decoration: line-through;
  text-decoration-color: var(--line-strong);
}

.item-when {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--attention-soft);
  color: var(--attention-ink);
  font-size: 0.75rem;
  font-weight: 600;
}

.guide-calc,
.guide-extra,
.app-cta-wrap,
.guide-sources {
  padding-bottom: clamp(56px, 8vw, 96px);
}

.guide-extra,
.guide-sources {
  display: grid;
  gap: 24px;
}

.prose-grid {
  display: grid;
  gap: 16px;
}

.prose-card {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.prose-card h3 {
  color: var(--ink);
  font: 600 1.25rem/1.2 var(--font-display);
  letter-spacing: -0.02em;
}

.prose-card p {
  color: var(--muted);
}

.app-cta {
  display: grid;
  align-items: center;
  gap: 32px;
  padding: clamp(28px, 5vw, 56px) clamp(28px, 5vw, 56px) 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--sage) 0%, var(--sage-2) 100%);
  overflow: hidden;
}

.app-cta-copy {
  display: grid;
  justify-items: start;
  gap: 18px;
  padding-bottom: clamp(28px, 5vw, 56px);
}

.app-cta-visual {
  justify-self: center;
  height: 380px;
  overflow: hidden;
}

.app-cta-visual .phone {
  --pw: 250px;
}

.print-only {
  display: none;
}

@media (min-width: 760px) {
  .checklist-groups {
    columns: 2;
  }

  .prose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .app-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .app-cta-visual {
    align-self: end;
    margin-right: 24px;
  }
}

@media (min-width: 960px) {
  .guide-hero {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  }
}

@media (min-width: 1180px) {
  .checklist-groups {
    columns: 3;
  }
}

/* Print: the checklist on one A4 page, with empty boxes */

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }

  html,
  body,
  .sheet {
    background: #FFFFFF;
  }

  body {
    font-size: 10pt;
  }

  .sheet {
    margin: 0;
    border-radius: 0;
    overflow: visible;
  }

  .site-header,
  .site-footer,
  .skip-link,
  .crumbs,
  .guide-actions,
  .guide-clay,
  .guide-meta,
  .checklist-progress,
  .link-btn,
  .guide-calc,
  .guide-extra,
  .app-cta-wrap,
  .guide-sources {
    display: none !important;
  }

  .guide-hero {
    display: block;
    padding: 0 0 5mm;
  }

  .guide-hero .display-l {
    font-size: 20pt;
  }

  .guide-answer {
    margin-top: 3mm;
    padding-left: 3mm;
    border-left-width: 2px;
    font-size: 9.5pt;
  }

  .checklist {
    padding: 0;
  }

  .checklist-head {
    margin-bottom: 3mm;
  }

  .checklist-head .display-m {
    font-size: 13pt;
  }

  .checklist-groups {
    column-fill: balance;
    column-gap: 6mm;
    columns: 2;
  }

  .group {
    gap: 0.6mm;
    margin-bottom: 2.5mm;
    padding: 2mm 3mm;
    border: 1px solid #BBBBBB;
    border-radius: 3mm;
    background: none;
  }

  .group legend {
    margin-bottom: 1mm;
    font-size: 10.5pt;
  }

  .group-icon {
    display: none;
  }

  .item {
    gap: 2.5mm;
    padding: 0.4mm 0;
    background: none;
    box-shadow: none;
  }

  .item input {
    width: 4mm;
    height: 4mm;
    border: 1px solid #333333;
    border-radius: 1mm;
    background: #FFFFFF;
  }

  .item input::after {
    display: none;
  }

  .item:has(input:checked) strong {
    text-decoration: none;
  }

  .item strong {
    font-size: 9.5pt;
  }

  .item small,
  .item-when {
    margin-top: 0;
    font-size: 8pt;
    line-height: 1.3;
  }

  .item-when {
    margin-top: 0.5mm;
    padding: 0;
    background: none;
    color: #333333;
  }

  .reveal.is-pending {
    opacity: 1;
    translate: none;
  }

  .print-only {
    display: block;
    margin-top: 4mm;
    color: #333333;
    font-size: 8pt;
  }

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