/* Datevero — datevero.click
   Tech/SaaS dashboard stijl: witte kaarten, dunne randen, monospace cijfers, 12-koloms grid.
   Volledig eigen opzet — geen hergebruik van klassen/structuur uit andere domeinen. */

:root {
  --bg: #ffffff;
  --bg-section: #f4f7fb;
  --text: #1a2433;
  --text-muted: #5c6b7d;
  --accent: #3a6ea5;
  --accent-dark: #254a73;
  --border: #dbe3ee;
  --border-strong: #b9c6d8;
  --radius: 6px;
  --mono: "IBM Plex Mono", "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.logo .dot {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent);
  display: inline-block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a:not(.btn) {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.main-nav a:not(.btn):hover { color: var(--text); text-decoration: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-block { width: 100%; }

/* ---------- Grid system ---------- */

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

/* ---------- Hero ---------- */

.hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border);
}

.hero-copy { grid-column: span 6; align-self: center; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 16px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  font-weight: 700;
}

.hero p.lead {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin: 0 0 28px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 36px;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual { grid-column: span 6; }

.dashboard-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-section);
  padding: 20px;
}

.dashboard-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dashboard-card-head .title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dashboard-card-head .live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--accent);
}

.dashboard-card-head .live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-cell {
  background: #ffffff;
  padding: 18px;
}

.stat-cell .num {
  font-family: var(--mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.stat-cell .label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- Stats strip ---------- */

.stats-strip {
  border-bottom: 1px solid var(--border);
  background: var(--bg-section);
}

.stats-strip .grid-12 { padding: 28px 0; }

.stat-block { grid-column: span 3; text-align: left; }

.stat-block .num {
  font-family: var(--mono);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.stat-block .label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---------- Section shell ---------- */

section { padding: 64px 0; }

.section-head { grid-column: span 12; margin-bottom: 32px; }

.section-head .kicker {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 10px;
}

.section-head h2 {
  font-size: 1.85rem;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
}

.section-head p {
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0;
}

/* ---------- How it works ---------- */

.step-card {
  grid-column: span 4;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: #ffffff;
}

.step-card .step-num {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 700;
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Articles ---------- */

.articles-section { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.article-card {
  grid-column: span 6;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.article-card .meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 1.25rem;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.article-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 20px;
  flex-grow: 1;
}

.article-card .read-link {
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--accent-dark);
  color: #ffffff;
}

.cta-banner .grid-12 { align-items: center; }

.cta-copy { grid-column: span 8; }

.cta-copy h2 {
  color: #ffffff;
  font-size: 1.7rem;
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}

.cta-copy p {
  color: #c7d5e6;
  margin: 0;
  max-width: 54ch;
}

.cta-action { grid-column: span 4; text-align: right; }

.cta-banner .btn-primary {
  background: #ffffff;
  color: var(--accent-dark);
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover { background: #e9eef5; }

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

.site-footer {
  padding: 40px 0 32px;
}

.site-footer .grid-12 { align-items: start; }

.footer-brand { grid-column: span 4; }

.footer-brand .logo { margin-bottom: 10px; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 40ch;
  margin: 0;
}

.footer-links { grid-column: span 3; }

.footer-links h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin: 0 0 14px;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text);
  font-size: 0.92rem;
}

.footer-meta { grid-column: span 2; text-align: right; }

.footer-meta p {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 6px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Article page ---------- */

.article-page { padding: 56px 0 72px; }

.article-page .article-head { max-width: 72ch; margin: 0 auto 40px; }

.article-page .kicker {
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 14px;
}

.article-page h1 {
  font-size: 2.1rem;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}

.article-page .article-meta {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.article-body {
  max-width: 72ch;
  margin: 0 auto;
}

.article-body h2 {
  font-size: 1.35rem;
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}

.article-body p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.02rem;
}

.article-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--text);
}

.article-body li { margin-bottom: 8px; }

.article-footer-cta {
  max-width: 72ch;
  margin: 44px auto 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-section);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.article-footer-cta p { margin: 0; font-size: 0.95rem; color: var(--text-muted); }

/* ---------- Legal pages ---------- */

.legal-page { padding: 56px 0 80px; }

.legal-page .wrap { max-width: 820px; }

.legal-page h1 { font-size: 1.9rem; margin: 0 0 8px; }

.legal-page .updated {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0 0 36px;
}

.legal-page h2 {
  font-size: 1.15rem;
  margin: 32px 0 12px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.legal-page h2:first-of-type { border-top: none; padding-top: 0; }

.legal-page p, .legal-page li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal-page ul { padding-left: 20px; }

/* ---------- Decoy (d/w33.php) ---------- */

.decoy-shell { min-height: 100vh; display: flex; flex-direction: column; }

.decoy-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.decoy-panel {
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: #ffffff;
}

.decoy-panel .logo { justify-content: center; margin-bottom: 6px; }

.decoy-panel .sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 28px;
}

.decoy-panel .btn { margin-bottom: 12px; }

.decoy-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
}

.decoy-stats .cell {
  background: var(--bg-section);
  padding: 14px 8px;
  text-align: center;
}

.decoy-stats .num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-dark);
}

.decoy-stats .label {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.decoy-footer {
  text-align: center;
  padding: 20px;
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .hero-copy, .hero-visual,
  .cta-copy, .cta-action,
  .footer-brand, .footer-links, .footer-meta,
  .article-card, .step-card,
  .stat-block {
    grid-column: span 12;
  }

  .cta-action { text-align: left; }
  .footer-meta { text-align: left; }
  .hero h1 { font-size: 2.1rem; }
  section { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }
}

@media (max-width: 560px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .decoy-stats { grid-template-columns: 1fr 1fr 1fr; }
  .main-nav { gap: 14px; }
  .main-nav a:not(.btn) { display: none; }
}
