:root {
  --bg: #f4f2f0;
  --bg-2: #e1dbd5;
  --surface: #fbfaf8;
  --ink: #34384f;
  --ink-dark: #171928;
  --muted: rgba(52, 56, 79, 0.72);
  --soft: rgba(52, 56, 79, 0.48);
  --line: rgba(23, 25, 40, 0.18);
  --line-strong: rgba(23, 25, 40, 0.32);
  --accent: #d2c9c1;
  --accent-2: #b9aa9d;
  --green: #22925c;
  --radius: 4px;
  --radius-lg: 8px;
  --max: 1180px;
  --shadow: 0 28px 80px rgba(23, 25, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--bg);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(23, 25, 40, 0.035) 1px, transparent 1px) 0 0 / 88px 88px,
    var(--bg);
}

::selection {
  background: rgba(210, 201, 193, 0.8);
}

a {
  color: inherit;
}

figure {
  margin: 0;
}

.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 22px max(20px, calc((100vw - var(--max)) / 2)) 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 240, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink-dark);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 112px;
  height: auto;
}

.brand-sub {
  padding-left: 12px;
  border-left: 1px solid var(--line-strong);
  color: var(--soft);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.top-nav a {
  position: relative;
  text-decoration: none;
}

.top-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.top-nav a:hover {
  color: var(--ink-dark);
}

.top-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 112px) 22px 72px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.page-hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background:
    linear-gradient(180deg, rgba(244, 242, 240, 0), var(--bg) 70%),
    url("https://vayloo.nl/cdn/shop/files/DSC09088-2_websize.jpg?v=1769596644&width=2000") center 35% / cover;
  content: "";
  opacity: 0.18;
  filter: saturate(0.72);
}

.hero-inner {
  position: relative;
  width: min(100%, 980px);
  margin: 0 auto;
}

.pill,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 auto 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(251, 250, 248, 0.68);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--soft);
  font-size: 11px;
  letter-spacing: 0.14em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-dark);
  font-family: "Bricolage Grotesque", "DM Sans", sans-serif;
  font-weight: 300;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 1160px;
  margin: 0 auto;
  font-size: clamp(44px, 6.4vw, 86px);
  line-height: 0.9;
}

h2 {
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 0.9;
}

h3 {
  font-size: 22px;
  line-height: 1.05;
}

h1 em,
h2 em {
  color: var(--accent-2);
  font-style: normal;
}

.hero-copy {
  width: min(100%, 690px);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.hero-copy-row {
  display: block;
  width: min(100%, 760px);
  margin: 28px auto 0;
}

.hero-copy-row .hero-copy {
  width: min(100%, 690px);
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: block;
  position: absolute;
  top: clamp(280px, 29vw, 230px);  right: calc((100% - 100vw) / 2 - 40px);
  z-index: 3;
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(23, 25, 40, 0.16));
  animation: badge-spin 26s linear infinite;
  transform-origin: center;
}

@keyframes badge-spin {
  to {
    transform: rotate(360deg);
  }
}

.video-shell {
  position: relative;
  width: min(100%, 930px);
  margin: 48px auto 0;
  overflow: hidden;
  border: 1px solid rgba(244, 242, 240, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 42%, rgba(210, 201, 193, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(244, 242, 240, 0.07), transparent 38%),
    var(--ink-dark);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.video-shell::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(244, 242, 240, 0.08);
  border-radius: 5px;
  content: "";
}

.video-shell::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  content: attr(data-label);
  border: 1px solid rgba(244, 242, 240, 0.16);
  border-radius: 999px;
  padding: 8px 11px;
  color: rgba(244, 242, 240, 0.48);
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--bg);
}

.video-play {
  width: 78px;
  height: 78px;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink-dark);
  cursor: pointer;
  font-size: 0;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  transition: transform 180ms ease, background 180ms ease;
}

.video-play:hover {
  background: white;
  transform: scale(1.04);
}

.video-play::before {
  display: inline-block;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid currentColor;
  content: "";
}

.video-shell[data-playing="true"] .video-play::before {
  width: 16px;
  height: 22px;
  margin-left: 0;
  border: 0;
  border-left: 5px solid currentColor;
  border-right: 5px solid currentColor;
}

.video-caption {
  position: absolute;
  top: calc(50% + 58px);
  left: 50%;
  width: max-content;
  max-width: calc(100% - 40px);
  transform: translateX(-50%);
  border: 1px solid rgba(244, 242, 240, 0.16);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.18);
  color: rgba(244, 242, 240, 0.86);
  font-size: 13px;
}

.video-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(244, 242, 240, 0.12);
}

.video-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: width 200ms linear;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 30px auto 0;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-dark);
  border-radius: var(--radius);
  padding: 0 24px;
  background: var(--ink-dark);
  color: var(--bg);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  background: var(--ink);
  transform: translateY(-1px);
}

.button.secondary {
  background: transparent;
  color: var(--ink-dark);
}

.button.secondary:hover {
  background: var(--ink-dark);
  color: var(--bg);
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin: 18px 0 0;
  padding: 0;
  color: var(--soft);
  font-size: 13px;
  list-style: none;
}

.micro-proof li {
  position: relative;
}

.micro-proof li + li::before {
  position: absolute;
  left: -11px;
  color: var(--line-strong);
  content: "/";
}

.trust {
  padding: 34px 22px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.trust p {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 13px;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 36px;
  justify-content: center;
  color: var(--ink);
  font-family: "Bricolage Grotesque", "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.section {
  padding: clamp(76px, 9vw, 124px) 22px;
  border-bottom: 1px solid var(--line);
}

.section.alt {
  background: rgba(225, 219, 213, 0.46);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.lead {
  margin: 22px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.stat-grid,
.proof-grid,
.testimonial-grid,
.flow-grid,
.overview-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.proof-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

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

.stat,
.proof,
.testimonial,
.flow-step,
.overview-link {
  background: rgba(251, 250, 248, 0.86);
}

.stat {
  padding: 32px;
}

.stat strong {
  display: block;
  color: var(--ink-dark);
  font-family: "Bricolage Grotesque", "DM Sans", sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.stat span {
  display: block;
  max-width: 260px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.45;
}

.proof,
.flow-step {
  padding: 30px;
  transition: background 160ms ease, transform 160ms ease;
}

.proof:hover,
.flow-step:hover,
.overview-link:hover {
  background: var(--surface);
}

.proof span,
.flow-step span,
.overview-link span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--soft);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof p,
.flow-step p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.testimonial {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
}

.quote-mark {
  color: var(--accent-2);
  font-family: "Bricolage Grotesque", "DM Sans", sans-serif;
  font-size: 56px;
  line-height: 0.8;
}

blockquote {
  margin: 0;
  color: var(--ink-dark);
  font-size: 18px;
  line-height: 1.42;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink-dark);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
}

.person strong,
.person span {
  display: block;
}

.person .avatar {
  display: grid;
  color: var(--bg);
  font-size: 12px;
  line-height: 1;
}

.person strong {
  color: var(--ink-dark);
}

.person span {
  color: var(--soft);
  font-size: 13px;
}

.faq-list {
  width: min(100%, 820px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 24px 0;
  background: transparent;
  color: var(--ink-dark);
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.faq-item button::after {
  content: "+";
  color: var(--soft);
  font-size: 22px;
  transition: transform 160ms ease;
}

.faq-item[data-open="true"] button::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item[data-open="true"] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

.final {
  padding: clamp(82px, 11vw, 150px) 22px;
  background: var(--ink-dark);
  color: var(--bg);
  text-align: center;
}

.final h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--bg);
}

.final p {
  max-width: 590px;
  margin: 24px auto 30px;
  color: rgba(244, 242, 240, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.final .button {
  border-color: var(--bg);
  background: var(--bg);
  color: var(--ink-dark);
}

.final .button:hover {
  background: var(--accent);
}

.site-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(20px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(244, 242, 240, 0.12);
  background: var(--ink-dark);
  color: rgba(244, 242, 240, 0.62);
  font-size: 13px;
}

.site-foot a {
  text-decoration-color: rgba(244, 242, 240, 0.28);
}

.overview {
  min-height: calc(100svh - 68px);
  padding: clamp(72px, 10vw, 130px) 22px;
}

.overview-hero {
  width: min(100%, 920px);
  margin: 0 auto 44px;
  text-align: center;
}

.overview-hero h1 {
  max-width: 880px;
}

.overview-hero p:last-child {
  max-width: 660px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.overview-grid {
  width: min(100%, var(--max));
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
}

.overview-link {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  padding: 28px;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.overview-link strong {
  margin-top: auto;
  color: var(--ink-dark);
  font-family: "Bricolage Grotesque", "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.overview-link em {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal][data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-top {
    align-items: center;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .top-nav {
    width: 100%;
    overflow-x: auto;
    justify-content: center;
    padding-bottom: 2px;
  }

  .page-hero {
    padding-top: 54px;
  }

  h1 {
    max-width: calc(100vw - 28px);
    font-size: clamp(30px, 7vw, 36px);
    line-height: 0.9;
  }

  .stat-grid,
  .testimonial-grid,
  .flow-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

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

  .testimonial {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .brand-sub {
    display: none;
  }

  .hero-copy-row {
    width: min(100%, 690px);
  }

  .hero-copy-row .hero-copy {
    text-align: center;
    font-size: clamp(16px, 4.6vw, 19px);
    line-height: 1.42;
  }

  .hero-badge {
    top: clamp(280px, 29vw, 230px);    right: calc((100% - 100vw) / 2 - 38px);
    width: 112px;
    height: 112px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .video-caption {
    top: calc(50% + 50px);
    font-size: 12px;
  }

  .video-shell::after {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .micro-proof li + li::before {
    content: "";
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-badge {
    animation: none;
  }
}
