/* ══════════════════════════════════════════════
   landing.css — Canvafilo landing page styles
══════════════════════════════════════════════ */

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

:root {
  --bg: #0d0d0d;
  --bg2: #141414;
  --accent: #e8ff57;
  --accent-dim: rgba(232, 255, 87, 0.12);
  --text: #f0f0f0;
  --muted: #888;
  --border: rgba(255,255,255,0.08);
  --card-bg: rgba(255,255,255,0.04);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: rgba(13,13,13,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--accent);
  color: #0d0d0d;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
}

.nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--text); }

/* ══════════════════════════════════════════════
   HERO SPLIT (template preview rechts)
══════════════════════════════════════════════ */
.hero-split {
  height: auto;
  min-height: 100vh;
  min-height: 100dvh;
  justify-content: flex-start;
}

.hero-split-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-left {
  text-align: left;
}

.hero-left .hero-eyebrow  { margin-bottom: 24px; }
.hero-left .hero-subtitle { text-align: left; max-width: 100%; margin: 0 0 40px; }
.hero-left .hero-actions  { justify-content: flex-start; }

.hero-trust {
  margin-top: 24px;
  font-size: 13px;
  color: #555;
}

.hero-trust strong { color: #888; font-weight: 600; }

/* Template kolommen */
.hero-right {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  height: 620px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 74%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 14%, black 74%, transparent 100%);
}

.hero-right .mq-card {
  width: 100%;
  flex-shrink: 0;
}

.hero-tpl-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: hero-scroll-up 44s linear infinite;
  will-change: transform;
}

.hero-tpl-col-2 {
  margin-top: 52px;
  animation-duration: 56s;
  animation-delay: -22s;
}

@keyframes hero-scroll-up {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

/* Tablet: terug naar centered layout */
@media (max-width: 1024px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    padding: 120px 40px 48px;
    gap: 48px;
  }
  .hero-left { text-align: center; }
  .hero-left .hero-subtitle { text-align: center; margin: 0 auto 40px; }
  .hero-left .hero-actions  { justify-content: center; }
  .hero-trust { text-align: center; }
  .hero-right {
    height: 320px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-split-inner { padding: 100px 20px 40px; gap: 36px; }
  .hero-right { height: 260px; }
}

@media (max-width: 600px) {
  .hero-right { display: none; }
}

/* ══════════════════════════════════════════════
   CONTENT PAGES (editor, privacy, voorwaarden, contact)
══════════════════════════════════════════════ */
.page-header {
  padding: 120px 40px 56px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 100px;
}

.page-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 52px 0 14px;
  padding-top: 52px;
  border-top: 1px solid var(--border);
}

.page-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.page-content p {
  font-size: 15px;
  color: rgba(240,240,240,0.65);
  line-height: 1.85;
  margin-bottom: 16px;
}

.page-content ul, .page-content ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.page-content ul li {
  font-size: 15px;
  color: rgba(240,240,240,0.65);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.page-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #3a3a3a;
}

.page-content ol { list-style: decimal; padding-left: 22px; }
.page-content ol li { font-size: 15px; color: rgba(240,240,240,0.65); line-height: 1.7; }

.page-content a {
  color: var(--accent);
  text-decoration: none;
}

.page-content a:hover { text-decoration: underline; }

.page-content strong {
  color: rgba(240,240,240,0.9);
  font-weight: 600;
}

.page-meta {
  font-size: 13px;
  color: #444;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
  .page-header { padding: 100px 20px 48px; }
  .page-content { padding: 0 20px 80px; }
}

@media (max-width: 600px) {
  .page-header { padding: 90px 16px 40px; }
  .page-content { padding: 0 16px 60px; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* dynamic viewport height — respects mobile browser UI */
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

#shader-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  touch-action: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,13,13,0.35) 0%, rgba(13,13,13,0.72) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(232,255,87,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 22px;
}

.hero-title .accent { color: var(--accent); }

.hero-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 400;
  color: rgba(240,240,240,0.7);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--accent);
  color: #0d0d0d;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(232,255,87,0.25);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,255,87,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── VERGELIJKINGSTABEL ── */
.compare-section {
  padding: 60px 40px 80px;
  display: flex;
  justify-content: center;
}

.compare-inner {
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.compare-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.compare-table {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}

.compare-row {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.compare-row:last-child { border-bottom: none; }

.compare-name {
  flex: 1;
  font-size: 15px;
  color: var(--muted);
  text-align: left;
}

.compare-price {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #555;
}

.compare-per {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #444;
}

.compare-highlight {
  background: rgba(232,255,87,0.04);
}

.compare-highlight .compare-name {
  color: var(--text);
  font-weight: 600;
}

.compare-highlight .compare-price {
  color: var(--accent);
}

.compare-highlight .compare-per {
  color: rgba(232,255,87,0.6);
}

.compare-badge {
  font-size: 11px;
  font-weight: 700;
  background: var(--accent);
  color: #000;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.compare-social {
  font-size: 14px;
  color: var(--muted);
}

.compare-social strong {
  color: var(--text);
  font-weight: 600;
}

/* ── CTA KICKER + FINE PRINT ── */
.cta-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.cta-fine {
  margin-top: 20px;
  font-size: 13px;
  color: #444;
}

/* ── FOOTER NAV ── */
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .compare-section { padding: 48px 20px 64px; }
  .compare-row { padding: 14px 20px; }
  .footer-nav { gap: 16px; }
}

@media (max-width: 600px) {
  .compare-section { padding: 40px 16px 56px; }
}

/* ── FEATURES ── */
.features {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 72px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.feature-card:hover {
  border-color: rgba(232,255,87,0.25);
  background: rgba(232,255,87,0.04);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.feature-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ══════════════════════════════════════════════
   TEMPLATE SHOWCASE / MARQUEE
══════════════════════════════════════════════ */
.tpl-showcase {
  padding: 120px 0 100px;
  overflow: hidden;
}

.tpl-showcase-header {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 60px;
}

.marquee-outer {
  position: relative;
  overflow: hidden;
}

.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 160px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-l { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.marquee-fade-r { right: 0; background: linear-gradient(to left, var(--bg), transparent); }

.marquee-row { overflow: hidden; }

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee-left 55s linear infinite;
  padding: 4px 0;
}

.marquee-track.marquee-reverse {
  animation: marquee-right 50s linear infinite;
}

@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marquee-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.mq-card {
  flex-shrink: 0;
  width: 160px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.mq-card:hover {
  border-color: rgba(232,255,87,0.4);
  transform: translateY(-3px);
}

.mq-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-top: 1px solid var(--border);
}

.tpl-showcase-cta {
  text-align: center;
  margin-top: 52px;
  padding: 0 40px;
}

/* pause marquee on hover */
.marquee-outer:hover .marquee-track { animation-play-state: paused; }

/* ══════════════════════════════════════════════
   EDITOR PREVIEW SECTION
══════════════════════════════════════════════ */
.editor-section {
  padding: 120px 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.02) 50%, transparent);
}

.editor-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.editor-text { max-width: 480px; }

.editor-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.editor-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(240,240,240,0.8);
}

.efeat-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Editor mockup wrapper ── */
.editor-mockup-wrap {
  position: relative;
}

.mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(232,255,87,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Editor mockup itself ── */
.editor-mockup {
  position: relative;
  z-index: 1;
  background: #141414;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(255,255,255,0.04);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  user-select: none;
}

/* Toolbar */
.em-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  height: 36px;
  background: #0f0f0f;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.em-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #f0f0f0;
  margin-right: 2px;
  white-space: nowrap;
}

.em-div {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.1);
  margin: 0 3px;
  flex-shrink: 0;
}

.em-icon-btn {
  width: 20px;
  height: 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  flex-shrink: 0;
}

.em-spacer { flex: 1; }

.em-badge {
  font-size: 9px;
  color: #666;
  background: rgba(255,255,255,0.05);
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}

.em-export {
  background: #e8ff57;
  color: #0d0d0d;
  font-weight: 700;
  font-size: 9px;
  padding: 4px 10px;
  border-radius: 5px;
  white-space: nowrap;
}

/* Project tabs */
.em-tabs {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 10px;
  height: 26px;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.em-tab {
  font-size: 9px;
  color: #555;
  padding: 3px 10px;
  border-radius: 4px 4px 0 0;
  cursor: pointer;
}

.em-tab-active {
  background: #1a1a1a;
  color: #ccc;
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: none;
}

.em-tab-new {
  font-size: 12px;
  color: #444;
  padding: 0 6px;
  line-height: 1;
}

/* Main 3-column */
.em-main {
  display: flex;
  height: 330px;
}

/* Left panel */
.em-left {
  width: 130px;
  flex-shrink: 0;
  background: #141414;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.em-ltabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.em-ltab {
  flex: 1;
  text-align: center;
  padding: 6px 2px;
  font-size: 8px;
  color: #555;
  cursor: pointer;
  white-space: nowrap;
}

.em-ltab-active {
  color: #ccc;
  border-bottom: 1.5px solid #e8ff57;
}

.em-lbody {
  padding: 8px 8px;
  overflow: hidden;
  flex: 1;
}

.em-lsection {
  font-size: 8px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 8px 0 5px;
}

.em-lsection:first-child { margin-top: 0; }

.em-egrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 4px;
}

.em-ecard {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 5px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #aaa;
  cursor: pointer;
}

.em-ecard:hover { background: rgba(255,255,255,0.1); }

.em-upload {
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 5px;
  padding: 7px 4px;
  text-align: center;
  font-size: 8px;
  color: #555;
}

.em-color-row-m {
  display: flex;
  align-items: center;
  gap: 5px;
}

.em-swatch-sm {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.em-hex-sm {
  font-size: 8px;
  color: #666;
  font-family: monospace;
}

/* Canvas area */
.em-canvas-area {
  flex: 1;
  background: #1a1a1a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.em-canvas-scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: 100%;
}

.em-canvas {
  position: relative;
  border-radius: 2px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
  overflow: visible;
}

.em-zoom {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  position: absolute;
  bottom: 8px;
  right: 10px;
  background: rgba(13,13,13,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
}

.em-zbtn {
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #888;
  cursor: pointer;
}

.em-zpct { font-size: 9px; color: #888; }

.em-zfit {
  font-size: 9px;
  color: #888;
  padding: 2px 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
}

/* Right panel */
.em-right {
  width: 130px;
  flex-shrink: 0;
  background: #141414;
  border-left: 1px solid rgba(255,255,255,0.06);
  padding: 8px;
  overflow: hidden;
}

.em-colormode {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 8px;
  color: #555;
}

.em-cm-toggle {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  overflow: hidden;
}

.em-cm {
  padding: 2px 5px;
  font-size: 8px;
  color: #555;
  cursor: pointer;
}

.em-cm.active {
  background: rgba(255,255,255,0.1);
  color: #ccc;
}

.em-rsection {
  font-size: 8px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 8px 0 5px;
}

.em-rsection:first-of-type { margin-top: 0; }

.em-proprow {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}

.em-prop {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.em-prop > span {
  font-size: 7px;
  color: #555;
}

.em-inp {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 3px 5px;
  font-size: 8px;
  color: #aaa;
  text-align: center;
}

.em-slider-wrap {
  margin-top: 6px;
  font-size: 8px;
  color: #555;
}

.em-slider {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.em-slider-fill {
  height: 100%;
  background: #e8ff57;
  border-radius: 2px;
}

.em-fontsel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 4px 6px;
  font-size: 8px;
  color: #aaa;
  margin-bottom: 5px;
}

.em-actions {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}

.em-act-btn {
  padding: 3px 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  font-size: 8px;
  color: #888;
  cursor: pointer;
}

.em-act-danger {
  color: #ff5f5f;
  border-color: rgba(255,95,95,0.2);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .editor-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .editor-text { max-width: 100%; }
  .editor-mockup-wrap { max-width: 600px; margin: 0 auto; }
}

/* ── CTA BANNER ── */
.cta-section {
  padding: 100px 40px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(232,255,87,0.04) 50%, transparent);
}

.cta-section .section-title { margin-bottom: 20px; }

.cta-section .section-sub { margin-bottom: 48px; }

/* ── FOOTER ── */
.landing-footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--muted);
  text-decoration: none;
}

.footer-logo span { color: var(--accent); }

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

.footer-link {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover { color: var(--text); }

.footer-attribution {
  text-align: center;
  padding: 12px 0 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-attribution a {
  color: var(--text-muted);
  text-decoration: underline;
}
.footer-attribution a:hover { color: var(--text); }

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════ */

/* Large tablets / small laptops (≤ 1200px) */
@media (max-width: 1200px) {
  .features { padding: 100px 40px; }
  .editor-section { padding: 100px 40px; }
  .tpl-showcase { padding: 100px 0 80px; }
}

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .landing-nav { padding: 0 28px; }
  .features { padding: 80px 28px; }
  .editor-section { padding: 80px 28px; }
  .cta-section { padding: 80px 28px; }
  .tpl-showcase-header { padding: 0 28px; margin-bottom: 48px; }
  .tpl-showcase-cta { padding: 0 28px; margin-top: 40px; }
  .section-sub { font-size: 16px; margin-bottom: 56px; }
}

/* iPad portrait / large phones (≤ 768px) */
@media (max-width: 768px) {
  .landing-nav { padding: 0 20px; height: 56px; }
  .nav-logo { font-size: 20px; }
  .nav-cta { padding: 9px 18px; font-size: 13px; }

  .hero-title { letter-spacing: -1px; }
  .hero-subtitle { font-size: clamp(15px, 4vw, 18px); margin-bottom: 36px; }
  .hero-eyebrow { font-size: 12px; padding: 5px 14px; margin-bottom: 20px; }

  .editor-section { padding: 70px 20px; }
  .editor-section-inner { gap: 40px; }
  .editor-text { max-width: 100%; }
  .editor-mockup-wrap { max-width: 480px; margin: 0 auto; }

  .features { padding: 70px 20px; }
  .section-sub { font-size: 15px; margin-bottom: 44px; }
  .feature-card { padding: 28px 24px; }

  .tpl-showcase { padding: 70px 0 60px; }
  .tpl-showcase-header { padding: 0 20px; margin-bottom: 36px; }
  .tpl-showcase-cta { margin-top: 32px; padding: 0 20px; }
  .marquee-fade { width: 80px; }

  .cta-section { padding: 70px 20px; }

  .landing-footer { padding: 32px 20px; justify-content: center; text-align: center; }
  .footer-logo { width: 100%; text-align: center; }
}

/* Mobile (≤ 600px) */
@media (max-width: 600px) {
  .landing-nav { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; padding: 14px 28px; }
  .features { padding: 60px 16px; }
  .cta-section { padding: 60px 16px; }
  .landing-footer { padding: 28px 16px; }
  .section-sub { margin-bottom: 36px; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .marquee-fade { width: 50px; }
  .mq-card { width: 130px; }
}

/* Small phones (≤ 420px) */
@media (max-width: 420px) {
  .landing-nav { height: 52px; }
  .nav-logo { font-size: 18px; }
  .nav-cta { padding: 7px 14px; font-size: 12px; gap: 5px; }
  .hero-eyebrow { font-size: 11px; padding: 5px 12px; letter-spacing: 0.08em; }
  .hero-title { letter-spacing: -0.5px; }
  .hero-subtitle { margin-bottom: 28px; }
  .hero-scroll-hint { bottom: 20px; }
  .editor-mockup { font-size: 8px; }
  .em-main { height: 260px; }
  .em-left, .em-right { width: 100px; }
  .section-title { letter-spacing: -0.5px; }
  .feature-card { padding: 24px 18px; }
  .feature-name { font-size: 18px; }
}

/* ══════════════════════════════════════════════
   STEPS SECTION (Hoe het werkt)
══════════════════════════════════════════════ */
.steps-section {
  padding: 120px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.steps-grid .reveal {
  transform: none;
}

.step-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.step-item:hover {
  background: rgba(255,255,255,0.02);
}

.step-item:last-child {
  border-right: none;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 52px;
  font-weight: 800;
  color: rgba(232,255,87,0.2);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 800px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px 28px;
  }
  .step-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .steps-section { padding: 60px 16px; }
  .step-num { font-size: 40px; }
}

/* ══════════════════════════════════════════════
   PRICING SECTION
══════════════════════════════════════════════ */
.pricing-section {
  padding: 100px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px auto 32px;
  max-width: 1000px;
  text-align: left;
}

.pricing-card {
  background: #141414;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(255,255,255,0.15);
}

.pricing-card-pro {
  border: 2px solid var(--accent);
  background: #141e06;
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pricing-plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-period {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}

.pricing-tagline {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.pricing-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 28px;
  transition: opacity 0.15s;
}
.pricing-btn:hover { opacity: 0.85; }

.pricing-btn-accent {
  background: var(--accent);
  color: #000;
}

.pricing-btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  font-size: 15px;
  color: #bbb;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.pf-check {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0;
  color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8l3.5 3.5 7.5-7.5' stroke='%23666' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.pf-check.pf-accent {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.5 8l3.5 3.5 7.5-7.5' stroke='%23e8ff57' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pf-dash {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0;
  color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8h8' stroke='%23333' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.pricing-card-pro .pricing-features li {
  color: #ddd;
}

.pricing-note {
  font-size: 12px;
  color: #3a3a3a;
  margin-top: 8px;
}

/* Pricing responsive */
@media (max-width: 800px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
  .pricing-card-pro {
    order: -1;
  }
}

/* ══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.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; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-count {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.testimonials-count span {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
  transition: border-color 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(232,255,87,0.2);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.testimonial-role {
  font-size: 12px;
  color: #555;
  margin-top: 2px;
}

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

@media (max-width: 580px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 60px 16px; }
}

/* ══════════════════════════════════════════════
   FOOTER GRID (expanded — landing page only)
══════════════════════════════════════════════ */
.footer-grid {
  border-top: 1px solid var(--border);
  padding: 64px 40px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 220px;
  margin: 4px 0 8px;
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px 20px 32px;
  }
  .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

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

/* ── MOBILE FIXES ────────────────────────── */
@media (max-width: 480px) {
  .landing-nav { padding: 0 16px; }
}

@media (max-width: 480px) {
  .editor-mockup { display: none; }
  .editor-section-inner { grid-template-columns: 1fr; }
}

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

@media (max-width: 480px) {
  .pricing-price { font-size: 28px; }
  .pricing-features li { font-size: 13px; }
}

@media (max-width: 480px) {
  .step-num { font-size: 36px; }
}

@media (max-width: 380px) {
  .btn-primary, .btn-secondary { max-width: 100%; padding: 12px 20px; font-size: 14px; }
  .marquee-fade { width: 30px; }
}

/* ══════════════════════════════════════════════
   DEVELOPERS / EMBED SECTION
══════════════════════════════════════════════ */
.dev-section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.dev-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.dev-text .section-title {
  text-align: left;
  font-size: clamp(28px, 3.5vw, 48px);
  margin-bottom: 20px;
}

.dev-desc {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}

.dev-params {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.dev-param {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.dev-param code {
  background: rgba(232,255,87,0.1);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 5px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 13px;
  flex-shrink: 0;
}

.dev-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.dev-link:hover { text-decoration: underline; }

.dev-code-wrap {
  background: #0a0a0a;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.dev-code-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--border);
}

.dev-code-header span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dev-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(232,255,87,0.1);
  color: var(--accent);
  border: 1px solid rgba(232,255,87,0.2);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.dev-copy-btn:hover { background: rgba(232,255,87,0.2); }
.dev-copy-btn.copied { color: #7bff8f; border-color: rgba(123,255,143,0.3); background: rgba(123,255,143,0.1); }

.dev-code pre {
  padding: 20px;
  overflow-x: auto;
  margin: 0;
}

.dev-code code {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 12.5px;
  line-height: 1.7;
  color: #c9d1d9;
  white-space: pre;
}

.dev-code .tok-tag    { color: #7ee787; }
.dev-code .tok-attr   { color: #79c0ff; }
.dev-code .tok-val    { color: #a5d6ff; }
.dev-code .tok-cmt    { color: #8b949e; font-style: italic; }

.dev-pricing-note {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(232,255,87,0.06);
  border: 1px solid rgba(232,255,87,0.15);
  border-radius: 10px;
  font-size: 13px;
  color: rgba(232,255,87,0.8);
  line-height: 1.5;
}

/* ── OPEN EMBED SECTION ── */
.open-embed-section {
  padding: 100px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.open-embed-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 860px) {
  .open-embed-section { padding: 72px 24px; }
  .open-embed-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .dev-section { padding: 72px 24px; }
  .dev-inner { grid-template-columns: 1fr; gap: 40px; }
}
