/* ============================================================
   CLOCKIX CLOCKIN — Mobiel-eerste Inklok Applicatie
   ============================================================ */

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

:root {
  --bg:      #0a0a0a;
  --bg-2:    #131313;
  --bg-3:    #1e1e1e;
  --surface: #161616;
  --border:  rgba(255,255,255,0.08);
  --border-2:rgba(255,255,255,0.16);
  --text-1:  #f0f0f0;
  --text-2:  #a0a0a0;
  --text-3:  #505050;
  --text-inv:#0a0a0a;
  --shadow-m:0 8px 32px rgba(0,0,0,0.7);
  --shadow-l:0 24px 80px rgba(0,0,0,0.9);
  --r-s: 8px;
  --r-m: 16px;
  --r-l: 24px;
  --t:   0.22s;
  --ease:cubic-bezier(0.4,0,0.2,1);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg:      #f5f5f5;
    --bg-2:    #ffffff;
    --bg-3:    #ebebeb;
    --surface: #ffffff;
    --border:  rgba(0,0,0,0.08);
    --border-2:rgba(0,0,0,0.16);
    --text-1:  #0a0a0a;
    --text-2:  #555555;
    --text-3:  #999999;
    --text-inv:#f0f0f0;
    --shadow-m:0 8px 32px rgba(0,0,0,0.1);
    --shadow-l:0 24px 80px rgba(0,0,0,0.15);
  }
}

html, body { height: 100%; overflow: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  background: var(--bg);
  color: var(--text-1);
  -webkit-font-smoothing: antialiased;
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   TELEFOON WRAPPER (desktop preview)
   ══════════════════════════════════════════════════════════ */
.telefoon {
  width: 390px;
  height: 844px;
  background: var(--bg);
  border-radius: 54px;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-l), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

/* Dynamic island */
.island {
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 34px;
  background: #000; border-radius: 20px;
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  gap: 14px;
}
.island-cam { width: 11px; height: 11px; border-radius: 50%; background: #1a1a1a; border: 1px solid #333; }
.island-cam::after { content:''; width:4px;height:4px;border-radius:50%;background:#111;display:block;margin:3px auto; }

/* Status bar */
.status-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 52px; z-index: 50;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 28px 8px;
}
.status-tijd { font-size: 15px; font-weight: 700; letter-spacing: -0.3px; color: var(--text-1); }
.status-iconen { display: flex; align-items: center; gap: 6px; }
.status-iconen svg { width: 14px; height: 14px; color: var(--text-1); }

/* Home indicator */
.home-indicator {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 134px; height: 5px; background: var(--text-1); opacity: 0.3;
  border-radius: 3px; z-index: 100;
}

/* ══════════════════════════════════════════════════════════
   SCHERMEN
   ══════════════════════════════════════════════════════════ */
.scherm {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  transform: translateY(14px);
  overflow: hidden;
}

.scherm.actief {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}

.scherm.weg {
  opacity: 0; transform: translateY(-14px);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════
   SCHERM: HOME
   ══════════════════════════════════════════════════════════ */
.home {
  background: var(--bg);
  padding: 52px 0 28px;
}

.home-kop {
  padding: 24px 28px 0;
  display: flex; align-items: flex-start; justify-content: space-between;
}

.home-welkom { font-size: 13px; color: var(--text-2); font-weight: 500; letter-spacing: 0.2px; }
.home-naam   { font-size: 20px; font-weight: 800; letter-spacing: -0.6px; margin-top: 3px; }

.home-profiel {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-3); border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--text-2);
}

.klok-sectie {
  padding: 32px 28px 28px;
  text-align: center;
}

.klok-tijd {
  font-size: 72px; font-weight: 900;
  letter-spacing: -5px; color: var(--text-1);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.klok-datum {
  font-size: 13px; color: var(--text-2); margin-top: 8px;
  font-weight: 500; letter-spacing: 0.2px;
}

.status-kaart {
  margin: 0 20px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-m); padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}

.status-icoon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--bg-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.status-icoon svg { width: 18px; height: 18px; }

.status-info { flex: 1; }
.status-info-label { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.status-info-naam  { font-size: 15px; font-weight: 700; color: var(--text-1); letter-spacing: -0.2px; }
.status-info-proj  { font-size: 12px; color: var(--text-2); margin-top: 1px; }

.inkloktijd {
  display: flex; flex-direction: column; align-items: flex-end;
}
.inkloktijd-val { font-size: 16px; font-weight: 800; letter-spacing: -0.5px; color: var(--text-1); font-variant-numeric: tabular-nums; }
.inkloktijd-lab { font-size: 10px; color: var(--text-3); margin-top: 1px; }

.home-acties { padding: 24px 20px 0; }

.hoofd-knop {
  width: 100%; padding: 18px;
  border-radius: var(--r-m);
  background: var(--text-1); color: var(--text-inv);
  font-size: 15px; font-weight: 800; letter-spacing: -0.3px;
  border: none; cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hoofd-knop:hover { opacity: 0.88; }
.hoofd-knop:active { transform: scale(0.97); }
.hoofd-knop svg { width: 18px; height: 18px; flex-shrink: 0; }
.hoofd-knop.wit { background: var(--text-1); color: var(--text-inv); }
.hoofd-knop.donker { background: var(--bg-3); color: var(--text-1); border: 1px solid var(--border); }
.hoofd-knop.destructief { background: var(--bg-3); color: var(--text-1); border: 1px solid var(--border); }

.knop-pil {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
}
.knop-pil svg { width: 16px; height: 16px; color: var(--text-1); }

.recente-activiteit { padding: 20px 20px 0; }
.sectie-titel { font-size: 12px; font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; color: var(--text-3); margin-bottom: 12px; }

.activiteit-rij {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: var(--r-s); margin-bottom: 8px;
}
.act-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-3); flex-shrink: 0; }
.act-dot.groen { background: var(--text-1); }
.act-info { flex: 1; }
.act-info-naam { font-size: 13px; font-weight: 600; color: var(--text-1); }
.act-info-proj { font-size: 11px; color: var(--text-2); }
.act-duur { font-size: 12px; font-weight: 700; color: var(--text-2); font-variant-numeric: tabular-nums; }

/* ══════════════════════════════════════════════════════════
   SCHERM: GPS CHECK
   ══════════════════════════════════════════════════════════ */
.gps {
  background: var(--bg);
  padding: 52px 0 28px;
}

.scherm-kop {
  display: flex; align-items: center; padding: 20px 24px 0;
  gap: 14px;
}

.terug-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: var(--t) var(--ease);
}
.terug-btn:hover { border-color: var(--border-2); }
.terug-btn svg { width: 14px; height: 14px; color: var(--text-1); }

.scherm-kop-titel { font-size: 17px; font-weight: 800; letter-spacing: -0.4px; }

.gps-animatie {
  display: flex; align-items: center; justify-content: center;
  height: 200px; position: relative; margin: 24px 0;
}

.gps-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid var(--text-3);
  opacity: 0;
  animation: gpsRing 2.4s ease-out infinite;
}
.gps-ring:nth-child(1) { width: 60px; height: 60px; animation-delay: 0s; }
.gps-ring:nth-child(2) { width: 110px; height: 110px; animation-delay: 0.6s; }
.gps-ring:nth-child(3) { width: 160px; height: 160px; animation-delay: 1.2s; }
.gps-ring:nth-child(4) { width: 210px; height: 210px; animation-delay: 1.8s; }

@keyframes gpsRing {
  0%   { opacity: 0; transform: scale(0.6); }
  20%  { opacity: 0.7; }
  100% { opacity: 0; transform: scale(1); }
}

.gps-midden {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-3); border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  z-index: 1; position: relative;
}
.gps-midden svg { width: 22px; height: 22px; }

.gps-status {
  text-align: center; padding: 0 32px; margin-bottom: 24px;
}
.gps-status-titel { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 8px; }
.gps-status-sub   { font-size: 13px; color: var(--text-2); line-height: 1.5; }

.gps-info {
  margin: 0 20px 24px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-m); padding: 16px 20px;
}
.gps-info-rij { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.gps-info-rij:last-child { border-bottom: none; }
.gps-info-label { font-size: 12px; color: var(--text-2); }
.gps-info-val   { font-size: 12px; font-weight: 700; color: var(--text-1); }

.gps-voortgang {
  margin: 0 20px 24px;
  background: var(--bg-3); border-radius: 4px; height: 4px; overflow: hidden;
}
.gps-voortgang-vul {
  height: 100%; background: var(--text-1); border-radius: 4px;
  width: 0%; transition: width 0.4s ease;
}

.actie-sectie { padding: 0 20px; display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════════════════════════════════
   SCHERM: FOTO VERIFICATIE
   ══════════════════════════════════════════════════════════ */
.foto {
  background: var(--bg);
  padding: 52px 0 28px;
}

.camera-view {
  margin: 20px 20px 0;
  height: 280px; border-radius: var(--r-l);
  background: var(--bg-2); border: 1px solid var(--border);
  overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}

.camera-raster {
  position: absolute; inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(var(--text-1) 1px, transparent 1px),
    linear-gradient(90deg, var(--text-1) 1px, transparent 1px);
  background-size: 46px 46px;
}

.camera-gezicht {
  width: 140px; height: 160px; border-radius: 70px 70px 64px 64px;
  background: var(--bg-3); border: 2px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.camera-gezicht svg { width: 72px; height: 72px; opacity: 0.3; }

.camera-hoek {
  position: absolute; width: 24px; height: 24px;
  border-color: var(--text-1); border-style: solid; opacity: 0.7;
}
.camera-hoek.lt { top: 20px; left: 20px; border-width: 2px 0 0 2px; border-radius: 2px 0 0 0; }
.camera-hoek.rt { top: 20px; right: 20px; border-width: 2px 2px 0 0; border-radius: 0 2px 0 0; }
.camera-hoek.lb { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; border-radius: 0 0 0 2px; }
.camera-hoek.rb { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; border-radius: 0 0 2px 0; }

.camera-scan {
  position: absolute; left: 20px; right: 20px; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--text-1), transparent);
  opacity: 0.5;
  animation: cameraScan 2.4s ease-in-out infinite;
}
@keyframes cameraScan {
  0%   { top: 20px; }
  100% { top: calc(100% - 20px); }
}

.foto-info {
  text-align: center; padding: 20px 28px;
}
.foto-info-titel { font-size: 18px; font-weight: 800; letter-spacing: -0.4px; margin-bottom: 6px; }
.foto-info-sub   { font-size: 13px; color: var(--text-2); line-height: 1.5; }

.foto-knop-ring {
  display: flex; align-items: center; justify-content: center;
  margin: 4px 0 20px;
}
.foto-knop {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--text-1); border: 3px solid var(--bg-2);
  box-shadow: 0 0 0 2px var(--border-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.15s ease;
  outline: none;
}
.foto-knop:hover { transform: scale(1.05); }
.foto-knop:active { transform: scale(0.93); }
.foto-knop svg { width: 28px; height: 28px; color: var(--text-inv); }

/* ══════════════════════════════════════════════════════════
   SCHERM: SUCCESS
   ══════════════════════════════════════════════════════════ */
.succes {
  background: var(--bg);
  padding: 52px 0 28px;
  display: flex; flex-direction: column; align-items: center;
}

.succes-animatie {
  display: flex; align-items: center; justify-content: center;
  width: 180px; height: 180px; position: relative; margin: 40px auto 24px;
}

.succes-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid var(--text-3); opacity: 0;
}

.succes-ring.verschijn {
  animation: succesRing 1.2s ease-out forwards;
}

.succes-ring:nth-child(1) { width: 90px;  height: 90px; animation-delay: 0.1s; }
.succes-ring:nth-child(2) { width: 130px; height: 130px; animation-delay: 0.3s; }
.succes-ring:nth-child(3) { width: 170px; height: 170px; animation-delay: 0.5s; }

@keyframes succesRing {
  0%   { opacity: 0; transform: scale(0.7); }
  50%  { opacity: 0.6; }
  100% { opacity: 0; transform: scale(1); }
}

.succes-vink {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-3); border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}

.succes-vink svg { width: 32px; height: 32px; }

.succes-tekst { text-align: center; padding: 0 28px; width: 100%; }
.succes-titel { font-size: 26px; font-weight: 900; letter-spacing: -1px; margin-bottom: 10px; }
.succes-sub   { font-size: 14px; color: var(--text-2); line-height: 1.5; margin-bottom: 28px; }

.succes-details {
  width: calc(100% - 40px); margin: 0 auto 28px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-m); padding: 16px 20px;
}

.succes-rij { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); }
.succes-rij:last-child { border-bottom: none; }
.succes-rij-label { font-size: 12px; color: var(--text-2); }
.succes-rij-val   { font-size: 12px; font-weight: 700; color: var(--text-1); }

.succes-acties { width: calc(100% - 40px); margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════════════════════════════════
   SCHERM: ACTIEVE SESSIE
   ══════════════════════════════════════════════════════════ */
.sessie {
  background: var(--bg);
  padding: 52px 0 28px;
}

.sessie-kop { padding: 24px 24px 0; }
.sessie-kop-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-3); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.sessie-kop-label::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--text-1); animation: pulseer 2s infinite; }
.sessie-project { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; }
.sessie-locatie { font-size: 13px; color: var(--text-2); margin-top: 4px; display: flex; align-items: center; gap: 6px; }

.sessie-timer {
  text-align: center; padding: 36px 28px 28px;
}
.timer-val {
  font-size: 64px; font-weight: 900; letter-spacing: -4px;
  font-variant-numeric: tabular-nums; color: var(--text-1); line-height: 1;
}
.timer-label { font-size: 12px; color: var(--text-3); margin-top: 8px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

.sessie-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 0 20px 20px;
}
.sessie-stat {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-s); padding: 14px 16px;
}
.sessie-stat-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-3); margin-bottom: 6px; }
.sessie-stat-val   { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; color: var(--text-1); font-variant-numeric: tabular-nums; }

.sessie-gps {
  margin: 0 20px 20px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-s); padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.gps-punt { width: 8px; height: 8px; border-radius: 50%; background: var(--text-1); flex-shrink: 0; animation: pulseer 2s infinite; }
.sessie-gps-info { flex: 1; font-size: 12px; color: var(--text-2); }
.sessie-gps-info strong { color: var(--text-1); font-weight: 600; }
.sessie-gps-ts { font-size: 11px; color: var(--text-3); font-variant-numeric: tabular-nums; }

.sessie-acties { padding: 0 20px; display: flex; gap: 10px; }
.sessie-acties .hoofd-knop { flex: 1; }

/* ══════════════════════════════════════════════════════════
   SCHERM: PAUZE
   ══════════════════════════════════════════════════════════ */
.pauze-scherm {
  background: var(--bg);
  padding: 52px 0 28px;
}

.pauze-animatie {
  display: flex; align-items: center; justify-content: center;
  height: 180px; position: relative;
}

.pauze-icoon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-3); border: 1.5px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
}

.pauze-icoon svg { width: 28px; height: 28px; }

.pauze-info { text-align: center; padding: 0 28px 28px; }
.pauze-titel { font-size: 22px; font-weight: 800; letter-spacing: -0.6px; margin-bottom: 8px; }
.pauze-sub   { font-size: 14px; color: var(--text-2); line-height: 1.5; margin-bottom: 24px; }

.pauze-timer {
  font-size: 44px; font-weight: 900; letter-spacing: -2px;
  font-variant-numeric: tabular-nums; color: var(--text-1);
  margin-bottom: 6px;
}
.pauze-timer-label { font-size: 12px; color: var(--text-3); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════════
   SCHERM: UITKLOKKEN
   ══════════════════════════════════════════════════════════ */
.uitklok-scherm {
  background: var(--bg);
  padding: 52px 0 28px;
}

.uitklok-info { padding: 28px 20px; }
.uitklok-info-titel { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 6px; }
.uitklok-info-sub   { font-size: 14px; color: var(--text-2); margin-bottom: 24px; }

.uitklok-samenvatting {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-m); padding: 18px 20px; margin-bottom: 24px;
}

.uitklok-rij { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.uitklok-rij:last-child { border-bottom: none; }
.uitklok-label { font-size: 13px; color: var(--text-2); }
.uitklok-waarde { font-size: 13px; font-weight: 700; color: var(--text-1); font-variant-numeric: tabular-nums; }
.uitklok-waarde.groot { font-size: 18px; letter-spacing: -0.5px; }

.uitklok-vraag { font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 10px; }
.uitklok-tekstarea {
  width: 100%; padding: 12px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--r-s); font-size: 13px; color: var(--text-1);
  font-family: inherit; resize: none; outline: none;
}
.uitklok-tekstarea:focus { border-color: var(--border-2); }
.uitklok-tekstarea::placeholder { color: var(--text-3); }

.uitklok-acties { padding: 0 20px; display: flex; flex-direction: column; gap: 10px; }

/* ══════════════════════════════════════════════════════════
   DEMO CURSOR
   ══════════════════════════════════════════════════════════ */
.demo-cursor {
  position: fixed; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.28);
  pointer-events: none; z-index: 9999; opacity: 0;
  transform: translate(-50%,-50%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.5);
  transition: opacity 0.3s ease, width 0.15s ease, height 0.15s ease;
}
.demo-cursor.zichtbaar { opacity: 1; }
.demo-cursor.hover { width: 24px; height: 24px; background: rgba(255,255,255,0.08); }
.demo-cursor.klik { animation: demoCursorKlik 0.24s ease; }

@keyframes demoCursorKlik {
  0%  { transform: translate(-50%,-50%) scale(1); }
  40% { transform: translate(-50%,-50%) scale(0.6); }
  100%{ transform: translate(-50%,-50%) scale(1); }
}

.demo-ripple {
  position: fixed; border-radius: 50%;
  background: rgba(255,255,255,0.09);
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  animation: demoRipple 0.55s ease-out forwards;
}

@keyframes demoRipple {
  from { width: 0; height: 0; opacity: 0.7; }
  to   { width: 54px; height: 54px; opacity: 0; }
}

.demo-indicator {
  position: fixed; bottom: 16px; right: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 99px; padding: 5px 10px;
  font-size: 9px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--text-3); opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease; box-shadow: 0 4px 16px rgba(0,0,0,0.6);
  font-family: 'Inter', sans-serif;
}
.demo-indicator.zichtbaar { opacity: 1; }
.demo-stip { width: 5px; height: 5px; border-radius: 50%; background: var(--text-3); animation: pulseer 2s infinite; }

@keyframes pulseer {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

/* ══════════════════════════════════════════════════════════
   AUTH: login / registreer scherm
   ══════════════════════════════════════════════════════════ */
.auth-label {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: .05em;
  text-transform: uppercase; color: var(--text-2);
  margin-bottom: 6px;
}
.auth-input {
  width: 100%; box-sizing: border-box;
  background: var(--bg-2); border: 1px solid var(--border-2);
  border-radius: 10px; padding: 12px 14px;
  color: var(--text-1); font-size: 14px; outline: none;
  font-family: inherit;
}
.auth-input::placeholder { color: var(--text-3); }
.auth-input:focus { border-color: var(--text-2); }
.auth-submit {
  background: var(--text-1); color: var(--text-inv);
  border: none; border-radius: 12px; padding: 14px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  margin-top: 4px; font-family: inherit;
}

/* ══════════════════════════════════════════════════════════
   MOBIEL: volledige scherm, geen telefoon-wrapper
   ══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  html, body { overflow: hidden; touch-action: none; }

  body { align-items: flex-start; justify-content: flex-start; }

  .telefoon {
    width: 100vw;
    height: 100dvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  /* Verberg gesimuleerde hardware elementen */
  .island,
  .home-indicator,
  .status-bar { display: none; }

  /* Schermen beginnen bovenaan, geen statusbar-ruimte */
  .home,
  .gps,
  .foto,
  .succes,
  .sessie,
  .pauze-scherm,
  .uitklok-scherm,
  .login-scherm { padding-top: max(20px, env(safe-area-inset-top)); }

  /* Grotere timer op groot scherm */
  .timer-val { font-size: 72px; }
  .klok-tijd { font-size: 80px; }
}
