/* Quicksand, self-hosted (SIL Open Font License). See fonts/Quicksand-OFL.txt */
@font-face {
  font-family: Quicksand;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(fonts/quicksand-400.woff2) format("woff2");
}
@font-face {
  font-family: Quicksand;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(fonts/quicksand-500.woff2) format("woff2");
}
@font-face {
  font-family: Quicksand;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(fonts/quicksand-600.woff2) format("woff2");
}
@font-face {
  font-family: Quicksand;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(fonts/quicksand-700.woff2) format("woff2");
}

:root {
  --lavender-100: #f8f4fa;
  --lavender-200: #e7dbea;
  --lavender-400: #b892c9;
  --lavender-600: #765187;
  --lavender-800: #604171;
  --text: #3a363b;
  --muted: #69636b;
  --border: #e6e1e8;
  --surface: #ffffff;
  --surface-alt: #faf8fb;
  --shadow: 0 14px 34px rgba(57, 43, 62, .08);
  --radius: 10px;
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: Quicksand, "Avenir Next", "Segoe UI", Arial, sans-serif;
  line-height: 1.72;
  font-size: 16px;
  font-weight: 400;
}
a { color: var(--lavender-800); text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--lavender-600); }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  padding: .75rem 1rem;
  z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(calc(100% - 2.5rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .62rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: 0;
}
.brand img { width: 40px; height: 40px; object-fit: contain; }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: .55rem;
  color: var(--lavender-800);
}
.nav-toggle:focus-visible { outline: 2px solid var(--lavender-600); }
.main-nav { display: flex; align-items: center; gap: .05rem; }
.main-nav a {
  text-decoration: none;
  color: #4e4950;
  font-size: .89rem;
  font-weight: 500;
  padding: .45rem .62rem;
  border-radius: 0;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--lavender-800);
  background: transparent;
  box-shadow: inset 0 -1px 0 var(--lavender-400);
}
.main-nav .nav-cta {
  margin-left: .55rem;
  padding: .55rem .8rem;
  color: var(--lavender-800);
  border: 1px solid #d6c8dc;
  background: transparent;
}
.main-nav .nav-cta:hover {
  color: var(--lavender-800);
  background: var(--lavender-100);
  box-shadow: none;
}

h1, h2, h3 {
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -.012em;
}
h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: .55rem 0 1rem;
  max-width: 24ch;
}
.page-hero h1 { max-width: 26ch; }
h2 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 500;
  margin: 0 0 .85rem;
}
h3 {
  font-size: 1.06rem;
  font-weight: 600;
  margin: 0 0 .55rem;
}
p { margin: 0 0 1rem; }
.lead {
  font-size: 1.07rem;
  color: #5e5860;
  max-width: 70ch;
}
.kicker {
  color: var(--lavender-600);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin: 0 0 .35rem;
}

.hero,
.page-hero {
  padding: 2.8rem 0 2.35rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 3rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  color: var(--lavender-800);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin: 1.35rem 0 .9rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: .66rem .9rem;
  font-size: .92rem;
  font-weight: 600;
  border: 1px solid #d6c8dc;
  border-radius: 4px;
  transition: .15s ease;
}
.button-primary {
  color: #fff;
  background: var(--lavender-600);
  border-color: var(--lavender-600);
}
.button-primary:hover { color: #fff; background: var(--lavender-800); }
.button-secondary { color: var(--lavender-800); background: #fff; }
.button-secondary:hover { background: var(--lavender-100); }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  color: var(--muted);
  font-size: .9rem;
  margin-top: .9rem;
}
.trust-row span::before { content: "—"; color: #ad9bb5; margin-right: .4rem; }
.hero-card {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.4rem 0;
}
.hero-card .logo-large { width: 135px; display: block; margin: 0 auto 1rem; }
.hero-card p { color: var(--muted); }

.section { padding: 3.6rem 0; }
.section-alt {
  background: var(--surface-alt);
  border-block: 1px solid var(--border);
}
.section-header { max-width: 720px; margin-bottom: 1.8rem; }
.prose { max-width: 780px; }
.prose h2 {
  margin-top: 2.5rem;
  padding-top: .2rem;
}
.prose h3 { margin-top: 1.65rem; }
.prose ul,
.prose ol { padding-left: 1.2rem; }
.prose li { margin: .32rem 0; }
.prose .button { margin-top: .45rem; }

.grid-2,
.grid-3,
.price-grid,
.contact-block {
  display: grid;
  gap: 1.5rem;
}
.grid-2,
.contact-block { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3,
.price-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card,
.price {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--border);
  border-radius: 0;
  padding: 1.2rem 0 0;
  box-shadow: none;
}
.card.soft {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 1.25rem;
}
.card p:last-child { margin-bottom: 0; }
.contact-block .card { min-height: 100%; }
.price strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--lavender-800);
  margin-top: .3rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .55rem;
}
.check-list li { position: relative; padding-left: 1.15rem; }
.check-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #a694ae;
}
.flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.flow-step {
  position: relative;
  padding: .85rem 1rem;
  text-align: left;
  font-size: .93rem;
  font-weight: 500;
  border-block: 1px solid var(--border);
}
.flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -.2rem;
  color: #b7a9bc;
}
.notice,
.meta-box {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-left: 2px solid var(--lavender-400);
  border-radius: 0;
  padding: 1rem 1.05rem;
  margin: 1.4rem 0;
}
.status {
  display: inline-block;
  padding: .15rem .42rem;
  background: var(--lavender-100);
  color: var(--lavender-800);
  font-size: .78rem;
  font-weight: 600;
}
hr { border: 0; border-top: 1px solid var(--border); margin: 2.3rem 0; }

.site-footer {
  background: #352d38;
  color: #eee8f1;
  padding: 3rem 0 1.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 2rem;
}
.site-footer h2,
.site-footer h3 {
  color: #fff;
  font-size: .96rem;
  font-weight: 600;
  margin: 0 0 .75rem;
  letter-spacing: 0;
}
.site-footer p { color: #d6cdd9; font-size: .9rem; }
.site-footer a { color: #e8d7f0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .38rem;
  font-size: .9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .13);
  margin-top: 1.8rem;
  padding-top: 1.1rem;
  color: #cfc3d4;
  font-size: .83rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

:focus-visible { outline: 2px solid var(--lavender-600); outline-offset: 3px; }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    top: 62px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: .6rem;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: .72rem .85rem; }
  .main-nav a:hover,
  .main-nav a[aria-current="page"] { background: var(--lavender-100); box-shadow: none; }
  .main-nav .nav-cta { margin: .2rem 0 0; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3,
  .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 15.8px; }
  .container { width: min(calc(100% - 2rem), var(--max)); }
  .page-hero,
  .hero { padding: 2.2rem 0 1.9rem; }
  h1 { font-size: clamp(1.85rem, 9vw, 2.35rem); }
  h2 { font-size: 1.35rem; }
  .section { padding: 2.8rem 0; }
  .grid-2,
  .grid-3,
  .price-grid,
  .contact-block { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; }
  .flow-step { border-top: 1px solid var(--border); border-bottom: 0; }
  .flow-step:last-child { border-bottom: 1px solid var(--border); }
  .flow-step:not(:last-child)::after { content: "↓"; right: .5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { min-height: 64px; }
  .brand img { width: 38px; height: 38px; }
}

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .nav-toggle { display: none !important; }
  .section,
  .page-hero { padding: 1rem 0; }
  body { font-size: 11pt; }
}

/* Mobile and touch refinements */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  overflow-wrap: break-word;
}

main,
section,
.container,
.header-inner,
.footer-grid > *,
.grid-2 > *,
.grid-3 > *,
.price-grid > *,
.contact-block > * {
  min-width: 0;
}

a[href^="mailto:"],
a[href^="tel:"] {
  overflow-wrap: anywhere;
}

.button,
.nav-toggle {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  :root { --mobile-header-height: 70px; }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .header-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    margin-right: -.35rem;
    border-radius: 6px;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: var(--lavender-100);
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: var(--mobile-header-height);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100dvh - var(--mobile-header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: .65rem max(1rem, env(safe-area-inset-right)) max(.9rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    border: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 34px rgba(57, 43, 62, .12);
  }

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: .72rem .75rem;
    border-radius: 4px;
    font-size: .98rem;
  }

  .main-nav .nav-cta {
    justify-content: center;
    min-height: 46px;
    margin-top: .35rem;
  }

  html.nav-open,
  html.nav-open body {
    overflow: hidden;
  }
}

@media (max-width: 700px) {
  :root { --mobile-header-height: 64px; }

  body {
    font-size: 16px;
    line-height: 1.68;
  }

  .container {
    width: min(calc(100% - 2rem), var(--max));
  }

  .header-inner {
    min-height: var(--mobile-header-height);
  }

  .brand {
    gap: .55rem;
    font-size: 1.04rem;
  }

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

  .page-hero,
  .hero {
    padding: 2rem 0 1.65rem;
  }

  h1,
  .page-hero h1 {
    max-width: none;
    margin-top: .35rem;
    margin-bottom: .85rem;
    font-size: clamp(1.72rem, 7.6vw, 2.08rem);
    line-height: 1.24;
    hyphens: auto;
  }

  h2 {
    font-size: 1.28rem;
    line-height: 1.34;
  }

  h3 {
    font-size: 1.02rem;
  }

  .lead {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .section {
    padding: 2.55rem 0;
  }

  .section-header {
    margin-bottom: 1.4rem;
  }

  .prose h2 {
    margin-top: 2rem;
  }

  .prose h3 {
    margin-top: 1.35rem;
  }

  .prose ul,
  .prose ol {
    padding-left: 1.1rem;
  }

  .card.soft,
  .notice,
  .meta-box {
    padding: 1rem;
  }

  .price strong {
    font-size: 1.25rem;
  }

  .hero-actions {
    gap: .55rem;
  }

  .button {
    min-height: 44px;
  }

  .flow-step {
    padding: .85rem 2rem .85rem .75rem;
  }

  .site-footer {
    padding: 2.4rem 0 max(1.25rem, env(safe-area-inset-bottom));
  }

  .footer-grid {
    gap: 1.6rem;
  }

  /* Larger touch targets for text links on phones */
  .footer-links a,
  .quiet-link-row a {
    display: inline-block;
    padding-block: .5rem;
  }

  .footer-links li {
    margin-block: 0;
  }

  .footer-bottom {
    display: grid;
    gap: .35rem;
    margin-top: 1.5rem;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .quiet-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions .button,
  .quiet-actions .quiet-button {
    width: 100%;
    min-height: 46px;
  }

  .prose .button {
    width: 100%;
    min-height: 46px;
  }

  .trust-row {
    display: grid;
    gap: .35rem;
  }

  .trust-row span::before {
    content: "—";
  }
}

@media (max-width: 380px) {
  .container {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .main-nav {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  h1,
  .page-hero h1 {
    font-size: 1.68rem;
  }
}


/* Over Bapsy: rustig profiel met extra beeldmerk en compact portret */
.about-hero-grid {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}
.about-hero-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero-mark img {
  display: block;
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.about-profile {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  gap: 3rem;
  align-items: start;
}
.about-portrait {
  width: 220px;
  aspect-ratio: 1;
  margin: .35rem 0 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-alt);
}
.about-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.about-bio {
  max-width: 780px;
}
.about-bio h2 {
  margin-top: 0;
  padding-top: 0;
}

@media (max-width: 760px) {
  .about-hero-grid {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 1.15rem;
  }
  .about-hero-mark img {
    width: 80px;
    height: 80px;
  }
  .about-profile {
    grid-template-columns: 1fr;
    gap: 1.65rem;
  }
  .about-portrait {
    width: min(190px, 52vw);
    margin: 0 auto;
  }
}

@media (max-width: 430px) {
  .about-hero-grid {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: .9rem;
  }
  .about-hero-mark img {
    width: 60px;
    height: 60px;
  }
}


/* Verwijzerspagina: compacte en consequente opsommingen */
.referrer-page .check-list {
  gap: .28rem;
  margin-top: .65rem;
}
.referrer-page .prose ul,
.referrer-page .prose ol {
  margin-top: .65rem;
  margin-bottom: 1.25rem;
}
.referrer-page .prose li {
  margin: .18rem 0;
  line-height: 1.48;
}
.referrer-page .card ul {
  margin-top: .45rem;
  margin-bottom: 0;
}

.hero-note {
  max-width: 760px;
  margin: .75rem 0 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}


/* =========================================================
   Homepage layout (quiet hero, flow, audiences, costs)
   Consolidated from the former homepage stylesheet.
   ========================================================= */
.prototype-home {
  --quiet-text: var(--text);
  --quiet-muted: var(--muted);
  --quiet-line: var(--border);
  --quiet-tint: var(--surface-alt);
  --quiet-accent: var(--lavender-600);
  color: var(--quiet-text);
  font-size: 16px;
  line-height: 1.72;
}

.prototype-home .container {
  width: min(calc(100% - 2.5rem), 1080px);
}

.prototype-home .site-header {
  position: relative;
  background: #fff;
  border-bottom-color: var(--quiet-line);
  backdrop-filter: none;
}

.prototype-home .header-inner {
  min-height: 70px;
}

.prototype-home .brand {
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0;
}

.prototype-home .brand img {
  width: 40px;
  height: 40px;
}

.prototype-home .main-nav a {
  color: #4e4950;
  font-size: .89rem;
  font-weight: 500;
  border-radius: 0;
  padding: .45rem .62rem;
}

.prototype-home .main-nav a:hover,
.prototype-home .main-nav a[aria-current="page"] {
  background: transparent;
  color: var(--quiet-accent);
  box-shadow: inset 0 -1px 0 var(--quiet-accent);
}

.prototype-home .main-nav .nav-cta {
  margin-left: .6rem;
  border: 1px solid #cdbbd5;
  border-radius: 8px;
  background: #fff;
  color: var(--quiet-accent);
  padding-inline: .85rem;
  box-shadow: none;
}

.prototype-home .main-nav .nav-cta:hover {
  background: #f8f3fa;
  color: #604171;
  box-shadow: none;
}

.quiet-hero {
  padding: 5.4rem 0 4.8rem;
  background: #fff;
  border-bottom: 1px solid var(--quiet-line);
}

.quiet-hero-inner {
  max-width: 850px;
  margin-inline: auto;
}

.quiet-meta,
.quiet-kicker {
  margin: 0 0 .85rem;
  color: var(--quiet-accent);
  font-size: .81rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.prototype-home h1,
.prototype-home h2,
.prototype-home h3 {
  color: var(--quiet-text);
  letter-spacing: -.012em;
}

.prototype-home h1 {
  max-width: 23ch;
  margin: 0 0 1.55rem;
  font-size: clamp(2rem, 4vw, 3.05rem);
  font-weight: 500;
  line-height: 1.22;
}

.prototype-home h2 {
  margin: 0 0 .95rem;
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 500;
  line-height: 1.3;
}

.prototype-home h3 {
  margin: 0 0 .45rem;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.4;
}

.quiet-lead {
  max-width: 72ch;
  margin: 0;
  color: #4c474e;
  font-size: 1.08rem;
}

.quiet-support {
  max-width: 72ch;
  margin: 1rem 0 0;
  color: var(--quiet-muted);
  font-size: 1rem;
}

.quiet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.9rem;
}

.quiet-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: .55rem .9rem;
  border: 1px solid #cfc6d3;
  border-radius: 8px;
  background: #fff;
  color: var(--quiet-accent);
  font-size: .93rem;
  font-weight: 600;
  text-decoration: none;
}

.quiet-button:hover {
  background: #faf7fb;
  color: #604171;
}

.quiet-button-primary {
  border-color: var(--quiet-accent);
  background: var(--quiet-accent);
  color: #fff;
}

.quiet-button-primary:hover {
  background: #604171;
  color: #fff;
}

.quiet-facts {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem 1.35rem;
  margin-top: 2.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--quiet-line);
  color: var(--quiet-muted);
  font-size: .88rem;
}

.quiet-facts span + span::before {
  content: "·";
  margin-right: 1.35rem;
  color: #aaa1ac;
}

.quiet-section {
  padding: 4.7rem 0;
  background: #fff;
}

.quiet-section-tinted {
  background: var(--quiet-tint);
  border-block: 1px solid var(--quiet-line);
}

.quiet-content {
  max-width: 930px;
  margin-inline: auto;
}

.quiet-heading {
  max-width: 690px;
  margin-bottom: 2.2rem;
}

.quiet-columns {
  display: grid;
  gap: 2.25rem;
}

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

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

.quiet-columns article {
  padding-top: 1.1rem;
  border-top: 1px solid var(--quiet-line);
}

.quiet-columns p,
.quiet-audiences p,
.quiet-costs p {
  margin-top: 0;
  color: var(--quiet-muted);
}

.quiet-list {
  max-width: 760px;
  margin: 2.1rem 0 0;
  padding: 0;
  list-style: none;
}

.quiet-list li {
  position: relative;
  margin: .65rem 0;
  padding-left: 1.15rem;
  color: var(--quiet-muted);
}

.quiet-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #a694ae;
}

.quiet-note {
  max-width: 760px;
  margin: 1.7rem 0 0;
  color: var(--quiet-muted);
  font-size: .96rem;
  line-height: 1.65;
}

.quiet-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .34rem;
  margin: .65rem 0 2.6rem;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.quiet-flow li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: .8rem 1.55rem .8rem 2.75rem;
  border: 0;
  background: #f1ebf4;
  color: #514b53;
  font-size: .93rem;
  line-height: 1.45;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%, 15px 50%);
}

.quiet-flow li:first-child {
  padding-left: 2.45rem;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 50%, calc(100% - 15px) 100%, 0 100%);
}

.quiet-flow li:nth-child(even) {
  background: #eee7f1;
}

.quiet-flow li::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  left: 1.25rem;
  color: var(--quiet-accent);
  font-size: .78rem;
  font-weight: 700;
}

.quiet-flow li:first-child::before {
  left: .95rem;
}

.quiet-explanation {
  margin-top: .4rem;
}

.quiet-audiences {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--quiet-line);
  border-bottom: 1px solid var(--quiet-line);
}

.quiet-audiences > article {
  padding: 2.35rem 2.4rem 2.2rem 0;
}

.quiet-audiences > article + article {
  padding-right: 0;
  padding-left: 2.4rem;
  border-left: 1px solid var(--quiet-line);
}

.quiet-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.25rem;
  margin: 1.35rem 0 0 !important;
}

.quiet-link-row a {
  color: var(--quiet-accent);
  font-size: .92rem;
  font-weight: 600;
  text-decoration-thickness: 1px;
}

.quiet-costs {
  padding-top: 3.7rem;
  padding-bottom: 3.7rem;
  background: #fbfafb;
  border-top: 1px solid var(--quiet-line);
}

.quiet-costs .quiet-content {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  gap: 3.5rem;
  align-items: start;
}

.prototype-home .site-footer {
  background: #352d38;
  padding-top: 3rem;
}

.prototype-home .site-footer h2,
.prototype-home .site-footer h3 {
  font-weight: 600;
}

@media (max-width: 980px) {
  .prototype-home .main-nav a:hover,
  .prototype-home .main-nav a[aria-current="page"] {
    box-shadow: none;
    background: #f8f4f9;
  }

  .prototype-home .main-nav .nav-cta {
    margin-left: 0;
  }
}

@media (max-width: 760px) {
  .prototype-home .container {
    width: min(calc(100% - 2rem), 1080px);
  }

  .quiet-hero {
    padding: 3.7rem 0 3.4rem;
  }

  .prototype-home h1 {
    font-size: clamp(1.9rem, 9vw, 2.45rem);
  }

  .quiet-section {
    padding: 3.6rem 0;
  }

  .quiet-columns-3,
  .quiet-columns-2,
  .quiet-audiences,
  .quiet-costs .quiet-content {
    grid-template-columns: 1fr;
  }

  .quiet-columns {
    gap: 1.4rem;
  }

  .quiet-flow {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  .quiet-flow li,
  .quiet-flow li:first-child {
    min-height: 62px;
    padding: .75rem 1.25rem 1.15rem 2.55rem;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 11px), 50% 100%, 0 calc(100% - 11px));
  }

  .quiet-flow li:last-child {
    padding-bottom: .75rem;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .quiet-flow li::before,
  .quiet-flow li:first-child::before {
    left: 1rem;
  }

  .quiet-audiences > article,
  .quiet-audiences > article + article {
    padding: 2rem 0;
    border-left: 0;
  }

  .quiet-audiences > article + article {
    border-top: 1px solid var(--quiet-line);
  }

  .quiet-costs .quiet-content {
    gap: .8rem;
  }

  .quiet-facts {
    display: grid;
    gap: .3rem;
  }

  .quiet-facts span + span::before {
    content: none;
  }
}

/* Extra mobile refinements for the quiet homepage */
@media (max-width: 760px) {
  .quiet-hero {
    padding: 2.75rem 0 2.55rem;
  }

  .prototype-home h1 {
    max-width: none;
    margin-bottom: 1.15rem;
    font-size: clamp(1.78rem, 7.8vw, 2.12rem);
    line-height: 1.24;
    hyphens: auto;
  }

  .prototype-home h2 {
    font-size: 1.3rem;
  }

  .quiet-meta,
  .quiet-kicker {
    margin-bottom: .65rem;
    font-size: .76rem;
    letter-spacing: .055em;
  }

  .quiet-lead {
    font-size: 1.02rem;
    line-height: 1.66;
  }

  .quiet-support {
    font-size: .98rem;
  }

  .quiet-section {
    padding: 2.9rem 0;
  }

  .quiet-heading {
    margin-bottom: 1.55rem;
  }

  .quiet-columns article {
    padding-top: .9rem;
  }

  .quiet-list {
    margin-top: 1.55rem;
  }

  .quiet-flow {
    margin-bottom: 2rem;
  }

  .quiet-flow li,
  .quiet-flow li:first-child {
    min-height: 58px;
    padding: .72rem 1.1rem 1.1rem 2.4rem;
  }

  .quiet-flow li:last-child {
    padding-bottom: .72rem;
  }

  .quiet-audiences > article,
  .quiet-audiences > article + article {
    padding: 1.75rem 0;
  }

  .quiet-costs {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }

  .quiet-link-row {
    display: grid;
    justify-items: start;
    gap: .55rem;
  }
}

@media (max-width: 520px) {
  .quiet-actions {
    margin-top: 1.45rem;
  }

  .quiet-facts {
    margin-top: 1.7rem;
    padding-top: 1rem;
  }
}

@media (max-width: 380px) {
  .prototype-home .container {
    width: min(calc(100% - 1.5rem), 1080px);
  }

  .prototype-home h1 {
    font-size: 1.68rem;
  }
}
