/* Mopet — mopet.be homepage + privacy.
   Donker "camino"-thema, voortbouwend op landing/public/style-tester.css zodat
   homepage en tester-pagina visueel naadloos samenleven. Bosgroene sfeer met
   neon-lime en oranje accenten. */
:root {
  --forest-deep:  #07150d;
  --forest:       #0c2114;
  --forest-soft:  #143020;
  --forest-line:  #2a5236;

  --lime:         #7ed957;
  --lime-bright:  #a3e635;
  --lime-deep:    #4f9e2c;

  --orange:       #f0871f;
  --orange-deep:  #cf6d11;
  --yellow:       #f6c026;

  --ink:          #e9f2e6;
  --ink-dim:      #b4c8ba;
  --ink-faint:    #8aa191;

  --shadow:       0 12px 32px rgba(0, 0, 0, 0.45);
  --shadow-lime:  0 8px 28px rgba(79, 158, 44, 0.35);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

body {
  margin: 0;
  min-height: 100vh;
  background: #050d08;
  color: var(--ink);
  font-family: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--lime); }

.page {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--forest-deep) 0%, var(--forest) 55%, var(--forest-deep) 100%);
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.6);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--lime);
  color: var(--forest-deep);
  padding: 0.6rem 1rem;
  border-radius: 0 0 10px 0;
  font-weight: 700;
  z-index: 10;
}
.skip-link:focus { left: 0; }

/* ===== Hero ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 0%, var(--forest-soft) 0%, var(--forest) 45%, var(--forest-deep) 100%);
  padding: 2rem 1.5rem 1rem;
  text-align: center;
  isolation: isolate;
}

/* Straalkrans achter de mascotte — echo van het app-icoon */
.hero-rays {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 150%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  z-index: -1;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(126, 217, 87, 0.10) 0deg 8deg,
      transparent 8deg 16deg
    );
  -webkit-mask-image: radial-gradient(circle, #000 0%, transparent 62%);
          mask-image: radial-gradient(circle, #000 0%, transparent 62%);
  opacity: 0.9;
  animation: spin 90s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.hero-inner { position: relative; z-index: 1; }

.hero-logo {
  display: block;
  width: min(60%, 260px);
  height: auto;
  margin: 0 auto 0.25rem;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

/* Mascotte met neon-gloed eronder */
.mascot-wrap {
  position: relative;
  width: min(72%, 320px);
  margin: 0 auto;
}

.mascot-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: 80%;
  height: 30%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(126, 217, 87, 0.55), transparent 70%);
  filter: blur(22px);
  z-index: -1;
}

.hero-mascot {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.45));
}

.sparkle {
  position: absolute;
  color: var(--lime-bright);
  font-size: 1.4rem;
  text-shadow: 0 0 12px rgba(163, 230, 53, 0.8);
  z-index: 2;
  animation: twinkle 3.2s ease-in-out infinite;
}
.sparkle--1 { top: 6%;  left: 6%;  font-size: 1.7rem; animation-delay: 0s; }
.sparkle--2 { top: 18%; right: 4%; font-size: 1.2rem; animation-delay: 1.1s; }
.sparkle--3 { top: 2%;  right: 26%; font-size: 0.95rem; animation-delay: 2s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.85); }
  50%      { opacity: 1;    transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .sparkle { animation: none; opacity: 0.8; }
}

.hero-title {
  font-size: clamp(1.7rem, 6.5vw, 2.3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 1.1rem 0 0.9rem;
}
.hero-title .hl {
  color: var(--lime-bright);
  text-shadow: 0 0 18px rgba(163, 230, 53, 0.45);
}

.hero-intro {
  color: var(--ink-dim);
  font-size: 1.04rem;
  max-width: 32rem;
  margin: 0 auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0.5rem;
  padding: 0.85rem 1.6rem;
  background: var(--lime);
  color: var(--forest-deep);
  font-weight: 800;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: var(--shadow-lime), 0 4px 0 var(--lime-deep);
  transition: transform 0.06s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.hero-cta:hover { background: var(--lime-bright); }
.hero-cta:active { transform: translateY(2px); box-shadow: var(--shadow-lime), 0 2px 0 var(--lime-deep); }
.hero-cta span { transition: transform 0.15s ease; }
.hero-cta:hover span { transform: translateX(3px); }

/* ===== Content ====================================================== */

.content { position: relative; padding: 0.5rem 1.5rem 3rem; }

/* Decoratieve scheidingstekens tussen secties */
.divider {
  text-align: center;
  color: var(--lime);
  letter-spacing: 0.6em;
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 2.5rem 0;
  user-select: none;
}

.section { margin: 0; scroll-margin-top: 1rem; }

.section-label {
  font-weight: 700;
  color: var(--lime);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 0.7rem;
}

.section-title {
  font-size: clamp(1.4rem, 5.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 0.8rem;
}

.prose {
  color: var(--ink-dim);
  font-size: 1.04rem;
  margin: 0;
}
.prose + .prose { margin-top: 0.9rem; }
.prose b { color: var(--ink); }

/* ----- Video -------------------------------------------------------- */

.video-frame {
  border-radius: 18px;
  border: 2px solid var(--forest-line);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(126, 217, 87, 0.10);
  background: #000;
  display: flex;
  justify-content: center;
}

.feature-video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72vh;
}

/* ----- Functie-highlights ------------------------------------------ */

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
}

.feature {
  background: var(--forest-soft);
  border: 1px solid var(--forest-line);
  border-radius: 16px;
  padding: 1.1rem 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  background: rgba(126, 217, 87, 0.12);
  border: 1px solid rgba(126, 217, 87, 0.25);
  margin-bottom: 0.7rem;
}
.feature-icon svg { width: 1.4rem; height: 1.4rem; stroke: var(--lime-bright); fill: none; }

.feature h3 {
  margin: 0 0 0.35rem;
  font-size: 1.04rem;
  font-weight: 800;
  color: #fff;
}
.feature p { margin: 0; font-size: 0.95rem; color: var(--ink-dim); }

@media (max-width: 460px) {
  .features { grid-template-columns: 1fr; }
}

/* ----- Uitgelichte blokken (privacy, community) -------------------- */

.callout {
  background: var(--forest-soft);
  border: 1px solid var(--forest-line);
  border-left: 4px solid var(--lime);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
}
.callout .section-title { font-size: clamp(1.3rem, 5vw, 1.6rem); }

/* ----- Screenshots (placeholders) ---------------------------------- */

.shots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.shot { display: flex; flex-direction: column; gap: 0.5rem; }

.shot-frame {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 22px;
  border: 2px solid var(--forest-line);
  background:
    repeating-linear-gradient(
      135deg,
      rgba(126, 217, 87, 0.05) 0 12px,
      transparent 12px 24px
    ),
    var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.shot-frame img { width: 100%; height: 100%; object-fit: cover; }

.shot-todo {
  color: var(--ink-faint);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0 1rem;
}
.shot-todo .tag {
  display: inline-block;
  margin-bottom: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(246, 192, 38, 0.15);
  border: 1px solid rgba(246, 192, 38, 0.4);
  color: var(--yellow);
}

.shot-caption { font-size: 0.9rem; color: var(--ink-dim); text-align: center; }

@media (max-width: 560px) {
  /* Op smalle schermen: één kolom en groter, gecentreerd. */
  .shots { grid-template-columns: 1fr; gap: 2rem; }
  .shot { max-width: 320px; width: 100%; margin: 0 auto; }
  .shot-caption { font-size: 1rem; }
}

/* ----- Word tester-blok -------------------------------------------- */

.cta-block { text-align: center; }
.cta-block .section-title { margin-bottom: 0.7rem; }
.cta-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  color: var(--ink-faint);
}

/* ----- Footer ------------------------------------------------------- */

footer {
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--forest-line);
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-faint);
}
footer p { margin: 0.4rem 0; }
footer nav { margin-bottom: 0.6rem; }
footer a {
  color: var(--ink-dim);
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 200, 186, 0.35);
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
footer a:hover { color: var(--lime); border-color: var(--lime); }

/* ===== Privacy-pagina =============================================== */

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.legal .brandbar {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.legal .brandbar img { height: 2.4rem; width: auto; }
.legal .brandbar .tagline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  letter-spacing: 0.02em;
}
.legal h1 {
  font-size: clamp(1.6rem, 6vw, 2.1rem);
  color: #fff;
  margin: 0.5rem 0 0.25rem;
}
.legal .updated { color: var(--ink-faint); font-style: italic; margin: 0 0 2rem; }
.legal h2 {
  font-size: 1.25rem;
  color: var(--lime-bright);
  margin-top: 2.2rem;
  scroll-margin-top: 1.5rem;
}
.legal h3 { font-size: 1.05rem; color: #fff; margin-top: 1.5rem; margin-bottom: 0.25rem; }
.legal h4 { font-size: 0.98rem; color: var(--ink); margin-top: 1.1rem; margin-bottom: 0.2rem; }
.legal p, .legal li { color: var(--ink-dim); }
.legal strong { color: var(--ink); }
.legal em { color: var(--ink); }
.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
  background: rgba(126, 217, 87, 0.10);
  border: 1px solid rgba(126, 217, 87, 0.2);
  border-radius: 6px;
  padding: 0.05rem 0.35rem;
  color: var(--lime-bright);
}
.legal a { color: var(--lime); }
.legal a:hover { color: var(--lime-bright); }
.legal ul { padding-left: 1.2rem; }
.legal .back {
  display: inline-block;
  margin-top: 2.5rem;
  color: var(--ink-dim);
  text-decoration: none;
  border-bottom: 1px solid rgba(180, 200, 186, 0.35);
}
.legal .back:hover { color: var(--lime); border-color: var(--lime); }

/* ----- Smalle schermen ---------------------------------------------- */

@media (max-width: 380px) {
  .hero { padding: 1.5rem 1rem 0.75rem; }
  .content { padding: 0.5rem 1rem 2rem; }
  .legal { padding: 2rem 1.1rem 3rem; }
}
