/* ═══════════════════════════════════════
   GDPReady — Website Stylesheet
   Brand: Syne (display) + Inter (body)
   Kleuren: blauw #2d72f5, groen #00b05e
═══════════════════════════════════════ */

/* TOKENS */
:root {
  --white:      #ffffff;
  --off:        #f6f5f2;
  --border:     #e5e3de;
  --mid:        #999690;
  --ink:        #0f0f0e;
  --ink2:       #3d3c39;
  --blue:       #2d72f5;
  --blue-dark:  #1a56d6;
  --blue-tint:  #eaf0ff;
  --green:      #00b05e;
  --green-dark: #008f4c;
  --green-tint: #e6f7ee;
  --warn:       #e07c10;
  --warn-tint:  #fff0e0;

  --f-display: 'Syne', sans-serif;
  --f-body:    'Inter', sans-serif;
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-full: 9999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   LOGO
═══════════════════════════════════════ */
.logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  user-select: none;
  text-decoration: none;
}
.logo__box {
  border: 2.5px solid var(--blue);
  border-radius: var(--r-sm);
  background: var(--blue-tint);
  color: var(--blue);
  padding: 0.05em 0.18em 0.05em 0.14em;
  position: relative;
  display: inline-flex;
  align-items: center;
}
.logo__r    { color: var(--ink); }
.logo__check {
  position: absolute;
  top: -0.48em; right: -0.2em;
  font-size: 0.52em;
  color: var(--green);
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0,176,94,0.22);
  line-height: 1;
}
.logo__eady {
  color: var(--ink);
  padding-left: 0.03em;
  margin-left: -0.02em;
}
.logo--nav  { font-size: 22px; }
.logo--hero { font-size: 40px; }
.logo--foot { font-size: 18px; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1.5px solid var(--border);
  padding: 0 80px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, box-shadow .15s;
}
.nav-cta:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(45,114,245,0.25); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  padding: 96px 80px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, #dce9ff 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: 20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, #d0f2e4 0%, transparent 65%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: 32px;
  border: 1px solid rgba(45,114,245,0.18);
}
.hero-eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-h1 {
  font-family: var(--f-display);
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-h1 em { font-style: normal; color: var(--blue); }
.hero-h1 .green { color: var(--green); }

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink2);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s, box-shadow .15s, transform .15s;
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 32px rgba(45,114,245,0.3);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--ink2);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
}
.btn-ghost:hover { color: var(--ink); }
.btn-ghost .arrow { transition: transform .15s; }
.btn-ghost:hover .arrow { transform: translateX(3px); }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--mid);
  font-weight: 500;
}
.trust-item .check { color: var(--green); font-weight: 700; font-size: 14px; }

/* HERO VISUAL */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.app-window {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  width: 100%;
  max-width: 480px;
  overflow: hidden;
}
.window-titlebar {
  background: var(--off);
  border-bottom: 1.5px solid var(--border);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.window-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.window-dot.r { background: #ff5f57; }
.window-dot.y { background: #ffbd2e; }
.window-dot.g { background: #28c840; }
.window-titlebar span {
  margin-left: 8px;
  font-size: 12px;
  color: var(--mid);
  font-weight: 500;
}
.window-body { padding: 24px; }

/* Processing animation */
.demo-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--off);
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  margin-bottom: 10px;
}
.demo-file-icon { font-size: 18px; flex-shrink: 0; }
.demo-file-info { flex: 1; min-width: 0; }
.demo-file-name { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.demo-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.demo-progress-fill {
  height: 100%;
  background: var(--blue);
  border-radius: var(--r-full);
  width: 0;
  animation: progressAnim 2.5s ease forwards 0.5s;
}
@keyframes progressAnim {
  0% { width: 0; }
  60% { width: 75%; }
  100% { width: 100%; background: var(--green); }
}
.demo-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.demo-badge.done { background: var(--green-tint); color: var(--green-dark); }
.demo-badge.processing { background: var(--blue-tint); color: var(--blue); }

/* Redaction preview */
.demo-result {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink2);
  font-family: var(--f-body);
  margin-top: 16px;
}
.demo-result .redacted {
  background: var(--blue-tint);
  color: var(--blue);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}
.demo-result .person {
  background: var(--green-tint);
  color: var(--green-dark);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

/* Status bar in app window */
.window-statusbar {
  background: var(--off);
  border-top: 1.5px solid var(--border);
  padding: 6px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--mid);
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 2px var(--green-tint);
}

/* ═══════════════════════════════════════
   SOCIAL PROOF STRIP
═══════════════════════════════════════ */
.strip {
  padding: 24px 80px;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.strip-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--mid);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.strip-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.ai-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  padding: 6px 14px;
  background: var(--off);
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
}
.ai-chip .emoji { font-size: 16px; }

/* ═══════════════════════════════════════
   HOE HET WERKT
═══════════════════════════════════════ */
.how {
  padding: 96px 80px;
  border-bottom: 1.5px solid var(--border);
}
.section-eyebrow {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-eyebrow::after { content:''; flex:1; height:1px; background:var(--border); }

.section-h2 {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 64px;
  max-width: 500px;
}
.section-h2 em { font-style: normal; color: var(--blue); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.6% + 20px);
  right: calc(16.6% + 20px);
  height: 1.5px;
  background: linear-gradient(to right, var(--blue), var(--green));
  z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
  width: 48px; height: 48px;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}
.step-num.s1 { background: var(--blue); color: #fff; box-shadow: 0 4px 16px rgba(45,114,245,0.3); }
.step-num.s2 { background: var(--white); color: var(--blue); border: 2px solid var(--blue); }
.step-num.s3 { background: var(--green); color: #fff; box-shadow: 0 4px 16px rgba(0,176,94,0.3); }
.step-h { font-family: var(--f-display); font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--ink); }
.step-p { font-size: 15px; color: var(--ink2); line-height: 1.65; }
.step-ext { font-size: 12px; color: var(--mid); margin-top: 8px; }

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features {
  padding: 96px 80px;
  background: var(--off);
  border-bottom: 1.5px solid var(--border);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.feature-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background .2s;
}
.feature-card:hover { background: #fafaf9; }
.feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.fi-blue  { background: var(--blue-tint); }
.fi-green { background: var(--green-tint); }
.fi-off   { background: var(--off); border: 1.5px solid var(--border); }
.feature-h {
  font-family: var(--f-display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.feature-p { font-size: 14px; color: var(--ink2); line-height: 1.65; }

/* ═══════════════════════════════════════
   VOOR WIE
═══════════════════════════════════════ */
.audiences {
  padding: 96px 80px;
  border-bottom: 1.5px solid var(--border);
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.audience-card {
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: border-color .2s, box-shadow .2s;
}
.audience-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(45,114,245,0.08);
}
.audience-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.audience-h { font-family: var(--f-display); font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--ink); }
.audience-p { font-size: 15px; color: var(--ink2); line-height: 1.7; }

/* ═══════════════════════════════════════
   PRIVACY SECTIE
═══════════════════════════════════════ */
.privacy-sec {
  padding: 96px 80px;
  background: var(--green-tint);
  border-bottom: 1.5px solid rgba(0,176,94,0.15);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.privacy-left .section-h2 { margin-bottom: 24px; }
.privacy-left .section-h2 em { color: var(--green-dark); }
.privacy-sub { font-size: 16px; color: var(--ink2); line-height: 1.7; margin-bottom: 32px; }
.github-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border: 1.5px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--r-md);
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.github-link:hover { border-color: var(--ink); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.privacy-principles { display: flex; flex-direction: column; gap: 20px; }
.principle {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1.5px solid rgba(0,176,94,0.12);
}
.principle-icon {
  width: 36px; height: 36px;
  background: var(--green-tint);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.principle-h { font-family: var(--f-display); font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--ink); }
.principle-p { font-size: 13px; color: var(--ink2); line-height: 1.6; }

/* ═══════════════════════════════════════
   DOWNLOAD
═══════════════════════════════════════ */
.download {
  padding: 96px 80px;
  text-align: center;
  border-bottom: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.download::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, #dce9ff 0%, transparent 60%);
  pointer-events: none;
}
.download-content { position: relative; z-index: 1; }
.download h2 {
  font-family: var(--f-display);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  color: var(--ink);
}
.download h2 em { font-style: normal; color: var(--blue); }
.download-sub {
  font-size: 18px;
  color: var(--ink2);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
/* v0.9.12: drie platform-knoppen naast elkaar (Windows / macOS / Linux).
   Gelijke breedte (flex:1) + platform-icoon boven label. Linux is voorlopig
   disabled tot de Linux-build klaar is. */
.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.download-btn {
  display: inline-flex;
  flex: 1 1 0;
  min-width: 200px;
  max-width: 240px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--blue);
  color: #fff;
  padding: 18px 20px;
  border-radius: var(--r-lg);
  font-family: var(--f-display);
  text-decoration: none;
  transition: background .15s, box-shadow .15s, transform .15s;
  text-align: center;
}
.download-btn .dl-icon {
  width: 28px;
  height: 28px;
  display: block;
}
.download-btn .dl-platform {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
.download-btn .dl-detail {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.85;
  letter-spacing: 0.02em;
}
.download-btn:hover {
  background: var(--blue-dark);
  box-shadow: 0 12px 40px rgba(45,114,245,0.32);
  transform: translateY(-2px);
}
.download-btn--disabled {
  background: var(--off-white, #f6f8fb);
  color: var(--mid, #777);
  cursor: not-allowed;
  border: 1px solid var(--border, #e3e6ea);
}
.download-btn--disabled:hover {
  background: var(--off-white, #f6f8fb);
  box-shadow: none;
  transform: none;
}
.download-meta {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 48px;
}
.download-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.dt-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--mid);
  font-weight: 500;
}
.dt-item .check { color: var(--green); font-weight: 700; }
.sysreq {
  margin-top: 56px;
  display: inline-block;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 40px;
  text-align: left;
}
.sysreq h4 {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}
.sysreq-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 40px;
}
.sysreq-list li {
  font-size: 14px;
  color: var(--ink2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sysreq-list li::before { content: '—'; color: var(--mid); font-size: 12px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  padding: 40px 80px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 13px;
  color: var(--mid);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 13px; color: var(--mid); margin-left: auto; }
.footer-tagline { font-size: 13px; color: var(--mid); }
.footer-tagline em { font-style: normal; color: var(--blue); font-weight: 600; }

/* ═══════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 0 40px; }
  .hero { padding: 64px 40px; grid-template-columns: 1fr; gap: 48px; }
  .hero-h1 { font-size: 44px; }
  .strip { padding: 24px 40px; }
  .how { padding: 64px 40px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .features { padding: 64px 40px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .audiences { padding: 64px 40px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-sec { padding: 64px 40px; grid-template-columns: 1fr; gap: 48px; }
  .download { padding: 64px 40px; }
  .download h2 { font-size: 36px; }
  .section-h2 { font-size: 32px; }
  footer { padding: 32px 40px; }
  .sysreq-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 0 20px; gap: 16px; }
  .nav-links { gap: 16px; }
  .hero { padding: 48px 20px; }
  .hero-h1 { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .strip { padding: 20px; gap: 20px; }
  .strip-logos { gap: 12px; }
  .how { padding: 48px 20px; }
  .features { padding: 48px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .audiences { padding: 48px 20px; }
  .audience-grid { grid-template-columns: 1fr; }
  .privacy-sec { padding: 48px 20px; }
  .download { padding: 48px 20px; }
  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-copy { margin-left: 0; }
}
