/* Mopet landing — "camino" rebrand. Volledig donkere bosgroene sfeer
   met neon-accenten (FB-campagne-look). Los van style.css zodat de oude
   pagina volledig ongemoeid blijft. */
: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%; }

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;
}

.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);
}

/* ===== 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 0;
  text-align: center;
  isolation: isolate;
}

/* Straalkrans achter de mascotte — echo van het app-icoon */
.hero-rays {
  position: absolute;
  left: 50%;
  top: 46%;
  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(62%, 280px);
  height: auto;
  margin: 0 auto 0.5rem;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

/* Mascotte met neon-gloed eronder */
.mascot-wrap {
  position: relative;
  width: min(80%, 360px);
  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;
  text-transform: uppercase;
  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.02rem;
  max-width: 30rem;
  margin: 0 auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0 2.4rem;
  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); }

/* Bevestiging na een geslaagde inschrijving — staat in de hero zodat ze
   na de POST meteen bovenaan in beeld is. */
.hero-confirm {
  margin: 1.3rem 0 2.6rem;
}

.confirm-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--lime);
  color: var(--forest-deep);
  font-size: 1.7rem;
  font-weight: 900;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-lime);
}

.confirm-title {
  font-size: clamp(1.5rem, 6vw, 2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.7rem;
}

.confirm-text {
  color: var(--ink-dim);
  font-size: 1.04rem;
  max-width: 30rem;
  margin: 0 auto;
}

/* ===== Content (ook donker) ========================================= */

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

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

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

.video-block { margin: 0 0 1.75rem; }

.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;
}

/* Staande video (9:16): gecentreerd en in hoogte begrensd zodat hij niet
   het hele scherm vult en de inschrijfknop bereikbaar blijft. */
.feature-video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 72vh;
}

/* ----- CTA-tekst ----------------------------------------------------- */

.cta-block {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin: 0 0 1.25rem;
  scroll-margin-top: 1rem;
}

.lead-line {
  font-weight: 600;
  color: var(--ink);
  font-size: 1.06rem;
  margin: 0;
}

.note {
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-dim);
  background: rgba(126, 217, 87, 0.07);
  border: 1px solid rgba(126, 217, 87, 0.18);
  border-left: 4px solid var(--lime);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
}
.note b { color: #fff; }

/* ----- Form ---------------------------------------------------------- */

.signup-form {
  background: var(--forest-soft);
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: 20px;
  border: 1px solid var(--forest-line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field { display: flex; flex-direction: column; gap: 0.4rem; }

.label,
.platform-choice legend {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
}

input[type="email"] {
  font: inherit;
  font-size: 1rem;
  padding: 0.78rem 1rem;
  border: 2px solid var(--forest-line);
  border-radius: 12px;
  background: rgba(5, 13, 8, 0.55);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input[type="email"]:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.25);
}
input[type="email"]::placeholder { color: var(--ink-faint); opacity: 0.8; }

/* Platform-keuze als knop-achtige radio's */
.platform-choice { border: none; padding: 0; margin: 0; }
.platform-choice legend { display: block; margin-bottom: 0.6rem; padding: 0; }

.platform-choice .radio {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.75rem 1rem;
  background: rgba(5, 13, 8, 0.45);
  border: 2px solid var(--forest-line);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  margin-bottom: 0.5rem;
}
.platform-choice .radio:last-child { margin-bottom: 0; }
.platform-choice .radio input { accent-color: var(--lime); margin: 0; flex-shrink: 0; }

.platform-choice .radio:has(input:checked) {
  background: var(--lime);
  color: var(--forest-deep);
  border-color: var(--lime);
  font-weight: 800;
}
.platform-choice .radio:has(input:focus-visible) {
  box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.30);
}

/* Consent-vinkje */
.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-dim);
}
.consent input {
  margin-top: 0.25rem;
  flex-shrink: 0;
  accent-color: var(--lime);
  width: 1.1rem;
  height: 1.1rem;
}
.consent a {
  color: var(--lime);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}
.consent a:hover { color: var(--lime-bright); }

/* Submit-knop — oranje accent uit het logo */
.submit-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.05s ease, box-shadow 0.15s ease;
  box-shadow: 0 4px 0 var(--orange-deep);
}
.submit-btn:hover { background: #f6962f; }
.submit-btn:active { transform: translateY(2px); box-shadow: 0 2px 0 var(--orange-deep); }
.submit-btn:focus-visible {
  outline: none;
  box-shadow: 0 4px 0 var(--orange-deep), 0 0 0 3px rgba(240, 135, 31, 0.4);
}

/* Honeypot */
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ----- Status-kaarten (donkere varianten) --------------------------- */

.card {
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  margin: 0 0 1rem;
  box-shadow: var(--shadow);
}
.card.error {
  background: rgba(224, 86, 60, 0.14);
  color: #f6c9c2;
  border: 1px solid rgba(224, 86, 60, 0.3);
  border-left: 4px solid #e0563c;
}
.card.success {
  background: rgba(79, 158, 44, 0.16);
  color: #d7f0cd;
  border: 1px solid rgba(126, 217, 87, 0.3);
  border-left: 4px solid var(--lime);
}
.card h3 { margin: 0 0 0.4rem; font-size: 1.2rem; font-weight: 800; color: #fff; }
.card p { margin: 0; }

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

footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--ink-faint);
}
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); }

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

@media (max-width: 380px) {
  .hero { padding: 1.5rem 1rem 0; }
  .content { padding: 1.25rem 1rem 2rem; }
}
