/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #C4572A;
  --primary-light: #E8764A;
  --primary-dark: #9E4420;
  --bg: #F7F1EA;
  --bg-alt: #FFFFFF;
  --bg-warm: #FAF4ED;
  --text: #1E2B1E;
  --text-muted: #5C6B52;
  --sage: #5C6B52;
  --sage-light: #7E8A75;
  --shadow-sm: 0 2px 8px rgba(30, 43, 30, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 43, 30, 0.08);
  --shadow-lg: 0 16px 48px rgba(196, 87, 42, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --max-width: 1180px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle paper-noise overlay on body for warm/ambachtelijk feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.77  0 0 0 0 0.34  0 0 0 0 0.16  0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

body > * {
  position: relative;
  z-index: 1;
}

h1, h2, h3 {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

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

/* === Scroll-reveal helper === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* === Nav === */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  gap: 16px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-toggle {
  display: inline-flex;
  background: var(--bg-alt);
  border: 1px solid rgba(92, 107, 82, 0.15);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}

.lang-chip {
  border: 0;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.lang-chip:hover {
  color: var(--text);
}

.lang-chip--active {
  background: var(--primary);
  color: white;
}

.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 20px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}

.nav-cta:hover {
  background: var(--primary);
  color: white;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 16px rgba(196, 87, 42, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 87, 42, 0.45);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
}

/* === Hero === */
.hero {
  position: relative;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 87, 42, 0.16), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(92, 107, 82, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 24px 0;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: left;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* Hero phone mockup */
.hero-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 580px;
  background: #1E2B1E;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(30, 43, 30, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-12px) rotate(-1deg); }
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #1E2B1E;
  border-radius: 16px;
  z-index: 2;
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  display: block;
}

/* Floating cards around the phone */
.float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  animation: card-float 6s ease-in-out infinite;
}

.float-card--dish {
  top: 20%;
  left: -40px;
  animation-delay: -1s;
}

.float-card--label {
  bottom: 20%;
  right: -30px;
  animation-delay: -3s;
  background: var(--primary);
  color: white;
}

@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.float-card--label .float-card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.float-card-text {
  display: flex;
  flex-direction: column;
}

.float-card-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.float-card--label .float-card-title {
  color: white;
}

.float-card-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.float-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-left: 4px;
}

/* === Section base === */
.section {
  padding: 100px 24px;
  position: relative;
}

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

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 56px;
  color: var(--text);
}

.section--alt {
  background: var(--bg-alt);
}

.section--warm {
  background: var(--bg-warm);
}

/* === How it works (visual) === */
.how-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  align-items: start;
}

.how-flow::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background-image: linear-gradient(to right, var(--primary) 50%, transparent 50%);
  background-size: 12px 2px;
  background-repeat: repeat-x;
  opacity: 0.4;
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-step-illustration {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(196, 87, 42, 0.18), transparent 65%),
    radial-gradient(circle at 70% 70%, rgba(92, 107, 82, 0.10), transparent 60%),
    var(--bg-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}

.how-step-illustration::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(196, 87, 42, 0.25);
  pointer-events: none;
}

.how-step-illustration svg {
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 4px 8px rgba(196, 87, 42, 0.12));
}

.how-step:hover .how-step-illustration {
  transform: translateY(-6px) rotate(-2deg);
}

.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(196, 87, 42, 0.3);
}

.how-step h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

.how-step p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 220px;
  margin: 0 auto;
}

/* === For who === */
.for-who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.for-who-card {
  background: var(--bg-alt);
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(92, 107, 82, 0.1);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.for-who-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 87, 42, 0.08), transparent 70%);
  pointer-events: none;
}

.for-who-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.for-who-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(196, 87, 42, 0.12), rgba(196, 87, 42, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}

.for-who-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text);
}

.for-who-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.for-who-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

.for-who-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--primary);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 6L5 9L10 3' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
}

/* === Screenshots === */
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 980px;
  margin: 0 auto;
}

.screen-card {
  text-align: center;
  transition: transform 0.4s var(--ease-out);
}

.screen-card:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.screen-frame {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 9 / 19;
  background: #1E2B1E;
  border-radius: 32px;
  padding: 10px;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.screen-frame::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 18px;
  background: #1E2B1E;
  border-radius: 14px;
  z-index: 2;
}

.screen-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.screen-caption {
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
}

/* === Promises === */
.section-subtitle {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: -36px auto 48px;
  line-height: 1.6;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.principle-card {
  background: var(--bg-alt);
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(92, 107, 82, 0.1);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.principle-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(196, 87, 42, 0.10), transparent 70%);
  pointer-events: none;
}

.principle-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow-md);
}

.principle-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(196, 87, 42, 0.15), rgba(196, 87, 42, 0.05));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 18px rgba(196, 87, 42, 0.12);
}

.principle-icon svg {
  width: 36px;
  height: 36px;
}

.principle-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.3;
}

.principle-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === FAQ === */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid rgba(92, 107, 82, 0.1);
  overflow: hidden;
  transition: box-shadow 0.2s var(--ease);
}

.faq-item[open] {
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}

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

.faq-item summary::after {
  content: '';
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item-body {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  animation: faq-open 0.3s var(--ease-out);
}

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === Waitlist === */
.waitlist {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.waitlist::before,
.waitlist::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.waitlist::before {
  top: -200px;
  left: -150px;
}

.waitlist::after {
  bottom: -200px;
  right: -150px;
}

.waitlist-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.waitlist h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 14px;
}

.waitlist > .waitlist-inner > p {
  font-size: 17px;
  opacity: 0.92;
  margin-bottom: 32px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.waitlist-fields {
  display: flex;
  gap: 12px;
}

.waitlist-fields input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.waitlist-fields input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.waitlist-fields input:focus {
  border-color: white;
  background: rgba(255, 255, 255, 0.22);
}

.waitlist-btn {
  background: white !important;
  color: var(--primary) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18) !important;
  width: 100%;
}

.waitlist-btn:hover {
  background: var(--bg) !important;
  transform: translateY(-2px);
}

.waitlist-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.waitlist-success {
  display: none;
}

.waitlist-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.waitlist-success h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.waitlist-success p {
  font-size: 16px;
  opacity: 0.92;
}

.waitlist-error {
  margin-top: 6px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.18);
  border-radius: var(--radius);
  font-size: 14px;
  display: none;
}

/* === Footer === */
.footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 24px 36px;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.footer-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.footer-tagline {
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  font-size: 12px;
  opacity: 0.5;
}

/* === TEST PAGE === */
.test-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.test-page-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 87, 42, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.test-content-block {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.test-hero {
  text-align: center;
  padding: 48px 24px 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.test-hero .hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(196, 87, 42, 0.18);
  margin: 0 auto 18px;
  display: block;
  animation: phone-float 6s ease-in-out infinite;
}

.test-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(196, 87, 42, 0.25);
  text-transform: uppercase;
}

.test-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.test-hero h1 {
  font-size: clamp(26px, 4vw, 32px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.test-hero p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 380px;
  margin: 0 auto;
}

.test-lang-toggle {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
}

.download-section {
  text-align: center;
  padding: 8px 24px 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 1;
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 28px;
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius);
  animation: gentle-pulse 3s ease-in-out infinite;
}

.download-btn svg {
  width: 22px;
  height: 22px;
}

.download-btn--disabled {
  opacity: 0.6;
  cursor: default;
  animation: none;
  pointer-events: none;
}

.download-hint {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

@keyframes gentle-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(196, 87, 42, 0.3); }
  50% { box-shadow: 0 8px 32px rgba(196, 87, 42, 0.55); }
}

.desktop-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92, 107, 82, 0.1);
}

.desktop-card .desktop-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.desktop-card p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
}

.desktop-card .desktop-url {
  display: inline-block;
  background: var(--bg);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: monospace;
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 8px;
  border: 1px solid rgba(196, 87, 42, 0.2);
}

.desktop-card .desktop-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  margin-top: 12px;
}

.instructions-section {
  padding: 0 24px 32px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.instructions-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(92, 107, 82, 0.1);
}

.instructions-card h3 {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.instruction-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.instruction-step:last-child {
  margin-bottom: 0;
}

.instruction-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.instruction-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 3px;
}

/* Test how-it-works */
.test-steps {
  background: var(--bg-alt);
  padding: 48px 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.test-steps h2 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 28px;
  color: var(--text);
}

.test-steps-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
  margin: 0 auto;
}

.test-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease-out);
}

.test-step:hover {
  transform: translateX(4px);
}

.test-step-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(196, 87, 42, 0.15), rgba(196, 87, 42, 0.05));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.test-step h3 {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.test-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Tester mission checklist */
.mission-section {
  padding: 32px 24px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mission-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(92, 107, 82, 0.1);
  box-shadow: var(--shadow-sm);
}

.mission-card h3 {
  font-size: 16px;
  margin-bottom: 14px;
  color: var(--text);
}

.mission-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mission-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.mission-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--primary);
  background: white;
}

/* Incentive coupon */
.incentive-section {
  padding: 32px 24px 48px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.coupon {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 2px dashed var(--primary);
  position: relative;
  box-shadow: 0 8px 32px rgba(196, 87, 42, 0.15);
}

.coupon::before,
.coupon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  background: var(--bg);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.coupon::before { left: -12px; }
.coupon::after { right: -12px; }

.coupon-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.coupon h2 {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}

.coupon p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.countdown {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--primary);
  color: white;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
}

.countdown-num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.countdown-label {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

.test-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 24px;
  text-align: center;
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.test-footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.test-footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.test-footer a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.test-footer a:hover {
  color: white;
}

.test-footer .footer-copy {
  font-size: 12px;
  opacity: 0.4;
  margin-top: 12px;
}

/* Platform visibility */
.android-only,
.ios-only,
.desktop-only,
.mobile-only {
  display: none;
}

body[data-platform="android"] .android-only,
body[data-platform="android"] .mobile-only {
  display: block;
}

body[data-platform="ios"] .ios-only,
body[data-platform="ios"] .mobile-only {
  display: block;
}

body[data-platform="desktop"] .desktop-only {
  display: block;
}

/* === Responsive === */
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-top: 24px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .phone-mockup {
    width: 240px;
    height: 500px;
  }

  .float-card--dish { left: -20px; }
  .float-card--label { right: -10px; }

  .how-flow {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-flow::before {
    display: none;
  }

  .for-who-grid,
  .principles-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid {
    max-width: 480px;
  }

  .section-subtitle {
    margin: -24px auto 40px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 20px;
  }

  .hero {
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 24px 20px 0;
  }

  .phone-mockup {
    width: 200px;
    height: 420px;
  }

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

  .hero-buttons .btn {
    width: 100%;
  }

  .float-card {
    display: none;
  }

  .waitlist {
    padding: 70px 20px;
  }

  .waitlist-fields {
    flex-direction: column;
  }

  .nav {
    padding: 16px 20px;
    gap: 8px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 13px;
  }

  .lang-chip {
    padding: 4px 10px;
    font-size: 12px;
  }
}

/* ============================================================= */
/* === v2: Lucide-iconen, access-sectie, download, wachtlijst === */
/* ============================================================= */

/* Lucide-iconen consistent maken binnen de bestaande icon-containers.
   Lucide vervangt <i data-lucide> door <svg> en behoudt de class. */
.float-card-icon svg { width: 20px; height: 20px; stroke-width: 2.2; }
.for-who-icon svg { width: 30px; height: 30px; }
/* .principle-icon svg blijft 36px (bestaande regel) */

/* How-it-works: ChatGPT-illustratie over Lucide-fallback */
.how-step-illustration .fallback-ic {
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 4px 8px rgba(196, 87, 42, 0.12));
}
.how-step-illustration .step-illus {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  pointer-events: none;
}
.how-step-illustration .step-illus.loaded { opacity: 1; }

/* === Access / "Zo kom je binnen" === */
.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.access-card {
  background: var(--bg-alt);
  padding: 32px 28px 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(92, 107, 82, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.access-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(196, 87, 42, 0.08), transparent 70%);
  pointer-events: none;
}

.access-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.access-card--accent {
  background: linear-gradient(160deg, rgba(196, 87, 42, 0.10), rgba(232, 118, 74, 0.04)), var(--bg-alt);
  border-color: rgba(196, 87, 42, 0.30);
}

.access-step {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: rgba(196, 87, 42, 0.16);
}

.access-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(196, 87, 42, 0.15), rgba(196, 87, 42, 0.05));
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.access-icon svg { width: 28px; height: 28px; }

.access-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.3;
}

.access-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.access-cta-row {
  text-align: center;
  margin-top: 44px;
}

/* === Download === */
.download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  padding: 14px 22px;
  border-radius: var(--radius);
  background: var(--text);
  color: white;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), opacity 0.2s;
  box-shadow: var(--shadow-sm);
}

.dl-ic { width: 26px; height: 26px; flex-shrink: 0; }

.dl-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.dl-top {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.dl-store {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.dl-btn--active { cursor: pointer; }
.dl-btn--active:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.dl-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* === Waitlist: ref-banner, positie & deel-link === */
.waitlist-ref-banner {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 15px;
  margin-bottom: 22px;
}

.wl-position {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 6px 0 4px;
  flex-wrap: wrap;
  justify-content: center;
}

.wl-position-label {
  font-size: 16px;
  opacity: 0.9;
}

.wl-position-num {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 7vw, 52px);
  font-weight: 700;
  line-height: 1;
}

.wl-position-of {
  font-size: 16px;
  opacity: 0.85;
}

.wl-referrals {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 8px;
}

.wl-share {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
}

.wl-share-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.wl-share-body {
  font-size: 14px;
  opacity: 0.92;
  max-width: 440px;
  margin: 0 auto 18px;
  line-height: 1.55;
}

.wl-share-link {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
}

.wl-share-link input {
  flex: 1;
  min-width: 0;
  padding: 13px 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
}

.wl-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
  border: none;
  border-radius: var(--radius);
  background: white;
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s var(--ease);
}

.wl-copy-btn:hover { transform: translateY(-2px); }
.wl-copy-btn svg { width: 17px; height: 17px; }

.wl-share-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.wl-share-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.wl-share-action:hover { background: rgba(255, 255, 255, 0.22); }
.wl-share-action svg { width: 17px; height: 17px; }

/* === Responsive (v2) === */
@media (max-width: 960px) {
  .access-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .dl-btn { min-width: 0; width: 100%; }
  .download-grid { flex-direction: column; }
  .wl-share-link { flex-direction: column; }
  .wl-copy-btn { padding: 12px 18px; justify-content: center; }
}
