:root {
  --paper: #fdf6f0;
  --paper-deep: #f5e9dd;
  --ink: #1f140d;
  --ink-soft: #4a342a;
  --muted: #7a6050;
  --terracotta: #e05c3a;
  --terracotta-deep: #c94a28;
  --terracotta-dark: #8a2e15;
  --rust: #712b13;
  --cream: #ffd9c4;
  --cream-light: #fff1e6;
  --accent: #2d5d4f;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Geist', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== Decorative noise ===== */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* ===== Nav ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(253, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(112, 43, 19, 0.08);
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--terracotta);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-15deg);
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--cream);
  border-radius: 50% 50% 50% 4px;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-cta {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover {
  background: var(--terracotta);
  transform: translateY(-1px);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 140px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  z-index: 2;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--rust);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(112, 43, 19, 0.12);
}
.hero-tag .pulse {
  width: 6px; height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

h1.hero-title {
  font-family: 'Playfair Display', 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(46px, 6.5vw, 84px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: var(--ink);
}
h1.hero-title em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
  position: relative;
}
h1.hero-title em::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: 8px;
  height: 12px;
  background: var(--cream);
  z-index: -1;
  opacity: 0.6;
  transform: skew(-3deg);
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--terracotta);
  color: white;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
  box-shadow: 0 8px 24px rgba(224, 92, 58, 0.3);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(224, 92, 58, 0.4);
}
.btn-primary .arrow {
  transition: transform 0.25s;
}
.btn-primary:hover .arrow {
  transform: translateX(4px);
}
.btn-secondary {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 0;
  border-bottom: 1.5px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(112, 43, 19, 0.12);
}
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== Hero card preview ===== */
.hero-card-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card-wrap::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(224, 92, 58, 0.18) 0%, transparent 70%);
  z-index: 0;
  animation: drift 8s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

/* Embedded Amara card (slimmed from original) */
.preview-card {
  width: 360px;
  background: #fffaf7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(112, 43, 19, 0.25), 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;
  z-index: 1;
  transform: rotate(2deg);
  transition: transform 0.5s cubic-bezier(.2,.9,.3,1);
}
.preview-card:hover { transform: rotate(0deg) translateY(-6px); }

.pc-hero {
  background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-deep) 100%);
  padding: 24px 22px;
  color: white;
  position: relative;
  overflow: hidden;
}
.pc-hero::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.pc-hero-inner { display: flex; align-items: center; gap: 14px; position: relative; }
.pc-avatar {
  border-radius: 50%;
  border: 3px solid rgba(255,200,180,0.45);
  flex-shrink: 0;
  overflow: hidden;
}
.pc-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; line-height: 1.1; margin-bottom: 4px; }
.pc-sub { font-size: 11px; opacity: 0.85; margin-bottom: 10px; }
.pc-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.pc-chip {
  background: rgba(255,217,196,0.35); border: 1px solid rgba(255,255,255,0.25);
  color: white; padding: 2px 10px; border-radius: 999px; font-size: 10px; font-weight: 600;
}

.pc-body { padding: 18px 18px 22px; min-height: 200px; }
.pc-section-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.4px;
  color: var(--muted); text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.pc-section-label::after { content: ""; flex: 1; height: 1px; background: #f0e4da; }

.pc-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pc-pill {
  padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700;
  background: #e05c3a18; color: var(--terracotta); border: 1px solid #e05c3a33;
}
.pc-pill.style {
  background: var(--cream); color: var(--rust); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.5px; border-radius: 6px;
  border-color: rgba(112,43,19,0.1);
}
.pc-lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.pc-lang-row { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 3px; }
.pc-lang-name { font-weight: 700; color: var(--ink); }
.pc-lang-level { color: var(--muted); font-size: 9px; }
.pc-bar-bg { height: 5px; border-radius: 999px; background: #f0e4da; overflow: hidden; }
.pc-bar-fill { height: 5px; border-radius: 999px; background: var(--terracotta); width: 0; transition: width 1s ease 0.3s; }
.pc-strength-list { display: flex; flex-direction: column; gap: 7px; }
.pc-strength-item { display: flex; align-items: center; gap: 9px; background: #fdf2eb; border-radius: 10px; padding: 8px 10px; }
.pc-strength-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.pc-strength-name { font-weight: 700; font-size: 12px; color: var(--ink); }
.pc-strength-sub { font-size: 9px; color: var(--muted); }
.pc-story { font-family: 'Fraunces', serif; font-size: 13px; font-style: italic; line-height: 1.7; color: var(--ink); border-left: 3px solid var(--terracotta); padding-left: 12px; }

.pc-dots {
  display: flex; justify-content: center; gap: 6px; padding: 4px 0 14px;
}
.pc-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(112,43,19,0.15); transition: all 0.3s; }
.pc-dot.on { background: var(--terracotta); width: 16px; border-radius: 999px; }

/* ===== Section base ===== */
section {
  position: relative;
  padding: 100px 40px;
  z-index: 2;
}
.section-container { max-width: 1280px; margin: 0 auto; }
.section-header { margin-bottom: 60px; max-width: 720px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--terracotta);
}
h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
h2 em { font-style: italic; color: var(--terracotta); }
.section-lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
}

/* ===== About / Why section ===== */
.why {
  background: var(--paper-deep);
  border-radius: 32px;
  padding: 80px 60px;
  margin: 60px auto;
  max-width: 1280px;
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,92,58,0.12) 0%, transparent 70%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.problem-prose {
  max-width: 780px;
  margin-top: 20px;
}
.problem-prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.problem-prose p em {
  font-style: italic;
  color: var(--ink);
  font-weight: 500;
}
.problem-prose .sources {
  font-size: 13px;
  color: var(--muted);
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(112, 43, 19, 0.12);
  line-height: 1.6;
}
.why-card {
  position: relative;
}
.why-num {
  font-family: 'Fraunces', serif;
  font-size: 64px;
  font-style: italic;
  color: var(--terracotta);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.6;
}
.why-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ===== Wat is YourSkillspass ===== */
.profiles-section { background: var(--paper); }
.wat-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: start;
}
.wat-prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.wat-prose p em {
  font-style: italic;
  color: var(--terracotta);
  font-weight: 500;
}
.wat-prose h2 { margin-bottom: 28px; }

.wat-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  top: 100px;
}
.widget-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 18px;
  max-width: 340px;
  line-height: 1.55;
  text-align: center;
  font-style: italic;
}

/* Example card (Amara, in Wat is sectie) */
.example-card {
  width: 360px;
  background: #fffaf7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(112, 43, 19, 0.18);
  border: 1px solid rgba(112, 43, 19, 0.06);
}
.ec-hero {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  padding: 24px 22px;
  color: white;
  position: relative;
  overflow: hidden;
}
.ec-hero::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.ec-hero-inner { display: flex; align-items: center; gap: 14px; position: relative; }
.ec-avatar {
  border-radius: 50%;
  border: 3px solid rgba(255,200,180,0.45);
  flex-shrink: 0;
  overflow: hidden;
}
.ec-name { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700; line-height: 1.1; margin-bottom: 4px; }
.ec-sub { font-size: 11px; opacity: 0.85; margin-bottom: 10px; }
.ec-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.ec-chip {
  background: rgba(255,217,196,0.35); border: 1px solid rgba(255,255,255,0.25);
  color: white; padding: 2px 10px; border-radius: 999px; font-size: 10px; font-weight: 600;
}
.ec-body { padding: 18px 18px 4px; min-height: 200px; }
.ec-section-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.4px;
  color: var(--muted); text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.ec-section-label::after { content: ""; flex: 1; height: 1px; background: #f0e4da; }
.ec-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.ec-pill {
  padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700;
  background: #e05c3a18; color: var(--terracotta); border: 1px solid #e05c3a33;
}
.ec-pill.style {
  background: var(--cream); color: var(--rust); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.5px; border-radius: 6px;
  border-color: rgba(112,43,19,0.1);
}
.ec-lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.ec-lang-row { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 3px; }
.ec-lang-name { font-weight: 700; color: var(--ink); }
.ec-lang-level { color: var(--muted); font-size: 9px; }
.ec-bar-bg { height: 5px; border-radius: 999px; background: #f0e4da; overflow: hidden; }
.ec-bar-fill { height: 5px; border-radius: 999px; background: var(--terracotta); width: 0; transition: width 1s ease 0.3s; }
.ec-strength-list { display: flex; flex-direction: column; gap: 7px; }
.ec-strength-item { display: flex; align-items: center; gap: 9px; background: #fdf2eb; border-radius: 10px; padding: 8px 10px; }
.ec-strength-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.ec-strength-name { font-weight: 700; font-size: 12px; color: var(--ink); }
.ec-strength-sub { font-size: 9px; color: var(--muted); }
.ec-story { font-family: 'Fraunces', serif; font-size: 13px; font-style: italic; line-height: 1.7; color: var(--ink); border-left: 3px solid var(--terracotta); padding-left: 12px; }
.ec-dots {
  display: flex; justify-content: center; gap: 6px; padding: 4px 0 16px;
}
.ec-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(112,43,19,0.15); transition: all 0.3s; }
.ec-dot.on { background: var(--terracotta); width: 16px; border-radius: 999px; }

/* ===== Build your own ===== */
.build-section {
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}
.build-section::before {
  content: "";
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,92,58,0.15) 0%, transparent 60%);
}
.build-section::after {
  content: "";
  position: absolute;
  bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,121,63,0.12) 0%, transparent 60%);
}
.build-section .eyebrow { color: var(--cream); }
.build-section .eyebrow::before { background: var(--cream); }
.build-section h2 { color: var(--paper); }
.build-section h2 em { color: var(--cream); }
.build-section .section-lead { color: rgba(253, 246, 240, 0.7); }

.build-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

.build-form {
  background: rgba(253, 246, 240, 0.06);
  border: 1px solid rgba(253, 246, 240, 0.12);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(10px);
}

/* Wizard steps indicator */
.wizard-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.wizard-step {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.25s;
}
.wizard-step.active,
.wizard-step.done { opacity: 1; }
.wizard-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(253,246,240,0.1);
  border: 1.5px solid rgba(253,246,240,0.2);
  font-size: 13px;
  font-weight: 700;
  color: var(--paper);
  transition: all 0.25s;
}
.wizard-step.active .wizard-step-num {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
  box-shadow: 0 0 0 4px rgba(224,92,58,0.2);
}
.wizard-step.done .wizard-step-num {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--rust);
}
.wizard-step-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--paper);
}
.wizard-divider {
  flex: 0 0 16px;
  height: 1.5px;
  background: rgba(253,246,240,0.15);
}

.wizard-panel { display: none; animation: panelIn 0.4s ease; }
.wizard-panel.active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.wizard-panel h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--paper);
}
.wizard-panel-sub {
  font-size: 13px;
  color: rgba(253,246,240,0.6);
  margin-bottom: 24px;
}

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-group label .hint {
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
  color: rgba(253,246,240,0.5);
  font-weight: 400;
  margin-left: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(253, 246, 240, 0.08);
  border: 1px solid rgba(253, 246, 240, 0.15);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--paper);
  font-family: inherit;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(253, 246, 240, 0.4);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
  background: rgba(253, 246, 240, 0.12);
}
.form-group textarea { resize: vertical; min-height: 90px; font-family: inherit; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Chip input (generic) */
.chip-input {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 10px;
  background: rgba(253, 246, 240, 0.08);
  border: 1px solid rgba(253, 246, 240, 0.15);
  border-radius: 12px;
  min-height: 52px;
  align-items: center;
}
.chip-input .chip-item {
  color: white;
  padding: 4px 10px 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: chipIn 0.25s ease;
}
.chip-input .chip-item.skill { background: var(--terracotta); }
.chip-input .chip-item.value { background: rgba(255,217,196,0.9); color: var(--rust); }
.chip-input .chip-item.style { background: var(--cream); color: var(--rust); font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; border-radius: 6px; }
@keyframes chipIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.chip-input .chip-item button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 14px;
  line-height: 1;
  opacity: 0.7;
  color: inherit;
}
.chip-input .chip-item button:hover { opacity: 1; }
.chip-input input {
  background: transparent;
  border: none;
  flex: 1;
  min-width: 100px;
  color: var(--paper);
  font-family: inherit;
  font-size: 13px;
  padding: 4px 0;
}
.chip-input input:focus { outline: none; }

/* Language item with slider */
.lang-item-input {
  background: rgba(253, 246, 240, 0.06);
  border: 1px solid rgba(253, 246, 240, 0.12);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
  position: relative;
}
.lang-item-input .lang-row {
  display: grid;
  grid-template-columns: 1fr 140px 28px;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.lang-item-input input[type="text"],
.lang-item-input select {
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 8px;
}
.lang-item-input .remove-btn {
  background: rgba(253,246,240,0.08);
  border: 1px solid rgba(253,246,240,0.15);
  color: var(--paper);
  border-radius: 8px;
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.lang-item-input .remove-btn:hover { background: var(--terracotta); border-color: var(--terracotta); }
.lang-item-input .slider-row {
  display: flex; align-items: center; gap: 12px;
}
.lang-item-input input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(253,246,240,0.15);
  border-radius: 999px;
  outline: none;
  padding: 0;
  border: none;
}
.lang-item-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px; height: 16px;
  background: var(--terracotta);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--paper);
}
.lang-item-input input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px;
  background: var(--terracotta);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--paper);
}
.lang-item-input .pct-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  min-width: 36px;
  text-align: right;
}

/* Strength item with icon picker + score */
.strength-item-input {
  background: rgba(253, 246, 240, 0.06);
  border: 1px solid rgba(253, 246, 240, 0.12);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 10px;
}
.strength-row-top {
  display: grid;
  grid-template-columns: 56px 1fr 28px;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.icon-picker {
  width: 100%;
  background: rgba(253,246,240,0.1);
  border: 1px solid rgba(253,246,240,0.15);
  border-radius: 8px;
  padding: 8px;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  color: var(--paper);
  font-family: inherit;
}
.icon-picker:focus { outline: none; border-color: var(--terracotta); }
.strength-item-input .label-input {
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 8px;
}
.strength-row-bottom {
  display: grid;
  grid-template-columns: 1fr 140px 50px;
  gap: 10px;
  align-items: center;
}
.strength-row-bottom input[type="text"] {
  padding: 8px 12px;
  font-size: 12px;
  border-radius: 8px;
  color: rgba(253,246,240,0.7);
}
.strength-row-bottom .score-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  text-align: right;
}

/* Certificate item */
.cert-item-input {
  display: grid;
  grid-template-columns: 1fr 90px 28px;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.cert-item-input input {
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 8px;
}
.cert-item-input .remove-btn {
  background: rgba(253,246,240,0.08);
  border: 1px solid rgba(253,246,240,0.15);
  color: var(--paper);
  border-radius: 8px;
  width: 28px; height: 28px;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.cert-item-input .remove-btn:hover { background: var(--terracotta); border-color: var(--terracotta); }

.add-row-btn {
  background: transparent;
  border: 1px dashed rgba(253,246,240,0.25);
  color: var(--cream);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.add-row-btn:hover {
  background: rgba(253,246,240,0.06);
  border-color: var(--terracotta);
  color: var(--terracotta);
}

/* Wizard navigation */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(253,246,240,0.1);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(253,246,240,0.2);
  color: var(--paper);
  padding: 13px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: rgba(253,246,240,0.08);
  border-color: rgba(253,246,240,0.35);
}
.btn-ghost:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.wizard-nav .btn-primary {
  padding: 13px 22px;
  font-size: 14px;
}

/* Multi-select option grid (tag-style chooser) */
.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.option-tag {
  background: rgba(253, 246, 240, 0.06);
  border: 1px solid rgba(253, 246, 240, 0.15);
  color: var(--paper);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.option-tag:hover {
  background: rgba(253, 246, 240, 0.12);
  border-color: rgba(253, 246, 240, 0.3);
}
.option-tag.selected {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
  font-weight: 600;
}
.option-tag.selected .check-mark {
  display: inline;
}
.option-tag .check-mark {
  display: none;
  font-size: 11px;
  opacity: 0.9;
}
.option-grid.icons .option-tag {
  padding: 10px 14px;
  font-size: 13px;
}
.option-grid.icons .option-tag .icon {
  font-size: 16px;
}

/* Language picker (step 3) */
.add-lang-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 10px;
  margin-top: 8px;
}
.add-lang-row select {
  background: rgba(253, 246, 240, 0.08);
  border: 1px solid rgba(253, 246, 240, 0.15);
  border-radius: 12px;
  padding: 12px 14px;
  color: var(--paper);
  font-family: inherit;
  font-size: 14px;
}
.add-lang-row select:focus { outline: none; border-color: var(--terracotta); }
.add-lang-btn {
  background: var(--terracotta);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.add-lang-btn:hover { background: var(--terracotta-deep); }
.add-lang-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(253,246,240,0.1);
}

.lang-pill {
  background: rgba(253, 246, 240, 0.06);
  border: 1px solid rgba(253, 246, 240, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
}
.lang-pill-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--paper);
}
.lang-pill .level-segmented {
  display: inline-flex;
  background: rgba(253,246,240,0.08);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-pill .level-segmented button {
  background: transparent;
  border: none;
  color: rgba(253,246,240,0.65);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.lang-pill .level-segmented button:hover {
  color: var(--paper);
}
.lang-pill .level-segmented button.on {
  background: var(--terracotta);
  color: white;
}
.lang-pill .remove-lang {
  background: rgba(253,246,240,0.06);
  border: 1px solid rgba(253,246,240,0.12);
  color: rgba(253,246,240,0.7);
  border-radius: 8px;
  width: 30px; height: 30px;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.lang-pill .remove-lang:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
}

.build-preview {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.preview-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,246,240,0.5);
}
.live-card {
  width: 360px;
  background: #fffaf7;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45);
  color: var(--ink);
}
.live-slide-label {
  text-align: center;
  color: rgba(253,246,240,0.4);
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 600;
}
.live-hero {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  padding: 24px 22px;
  color: white;
  position: relative;
  overflow: hidden;
}
.live-hero::before {
  content: ""; position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.live-hero-inner { display: flex; align-items: center; gap: 14px; position: relative; }
.live-avatar {
  border-radius: 50%;
  border: 3px solid rgba(255,200,180,0.45);
  flex-shrink: 0;
  overflow: hidden;
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: #F5C4B3;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--rust);
  font-size: 26px;
}
.live-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
  min-height: 24px;
}
.live-name-empty { opacity: 0.55; font-style: italic; font-weight: 400; }
.live-sub { font-size: 11px; opacity: 0.85; margin-bottom: 10px; min-height: 15px; }
.live-sub-empty { opacity: 0.5; font-style: italic; }
.live-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.live-chips.values { margin-top: 6px; }
.live-chip {
  background: rgba(255,217,196,0.35);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  padding: 2px 10px; border-radius: 999px; font-size: 10px; font-weight: 600;
}
.live-chip.outline { background: rgba(255,255,255,0.12); }
.live-body {
  padding: 20px 22px;
  min-height: 180px;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.live-section-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.4px;
  color: var(--muted); text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: center; gap: 6px;
}
.live-section-label::after { content: ""; flex: 1; height: 1px; background: #f0e4da; }
.live-skills-list {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px;
}
.live-skill-pill {
  padding: 5px 12px; border-radius: 999px; font-size: 11px; font-weight: 700;
  background: #e05c3a18; color: var(--terracotta); border: 1px solid #e05c3a33;
}
.live-style-pill {
  padding: 5px 12px; border-radius: 6px; font-size: 9px; font-weight: 700;
  background: var(--cream); color: var(--rust);
  text-transform: uppercase; letter-spacing: 0.5px;
  border: 1px solid rgba(112,43,19,0.1);
}
.live-empty {
  font-style: italic; font-size: 12px; color: var(--muted); padding: 6px 0;
}
.live-lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; }
.live-lang-row { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 3px; }
.live-lang-name { font-weight: 700; color: var(--ink); }
.live-lang-level { color: var(--muted); font-size: 9px; }
.live-bar-bg { height: 5px; border-radius: 999px; background: #f0e4da; overflow: hidden; }
.live-bar-fill { height: 5px; border-radius: 999px; background: var(--terracotta); transition: width 0.8s ease; }
.live-strength-list { display: flex; flex-direction: column; gap: 7px; }
.live-strength-item {
  display: flex; align-items: center; gap: 9px;
  background: #fdf2eb; border-radius: 10px; padding: 8px 10px;
}
.live-strength-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.live-strength-name { font-weight: 700; font-size: 12px; color: var(--ink); }
.live-strength-sub { font-size: 9px; color: var(--muted); }
.live-story {
  font-family: 'Fraunces', serif;
  font-size: 13px; font-style: italic; line-height: 1.7;
  color: var(--ink);
  border-left: 3px solid var(--terracotta);
  padding-left: 12px;
}
.live-cert-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.live-cert-item { display: flex; align-items: center; gap: 9px; }
.live-cert-icon {
  width: 26px; height: 26px; border-radius: 8px;
  background: #e05c3a18; display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0; color: var(--terracotta);
}
.live-cert-name { font-weight: 700; font-size: 12px; color: var(--ink); }
.live-cert-year { font-size: 10px; color: var(--muted); }

.live-dots {
  display: flex; justify-content: center; gap: 6px; padding: 6px 0 16px;
}
.live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(112,43,19,0.15); transition: all 0.3s;
}
.live-dot.on { background: var(--terracotta); width: 16px; border-radius: 999px; }

/* ===== Over ons ===== */
.over-section {
  padding: 100px 40px;
  background: var(--paper-deep);
  position: relative;
  overflow: hidden;
}
.over-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 92, 58, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.over-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.over-photo-wrap {
  display: flex;
  justify-content: center;
}
.over-photo {
  width: 280px;
  height: 360px;
  border-radius: 140px;
  background: linear-gradient(135deg, var(--cream) 0%, #f5c4b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(112, 43, 19, 0.18);
  border: 6px solid #fffaf7;
}
.over-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}
.over-photo-placeholder {
  text-align: center;
  color: var(--rust);
  padding: 20px;
}
.over-photo-placeholder .icon {
  font-size: 56px;
  margin-bottom: 6px;
  opacity: 0.7;
}
.over-photo-placeholder .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.7;
}
.over-prose .eyebrow { margin-bottom: 12px; }
.over-prose h2 { margin-bottom: 24px; }
.over-prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.over-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(112, 43, 19, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.over-contact-item {
  display: flex;
  flex-direction: column;
}
.over-contact-name {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.over-contact-email {
  font-size: 14px;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.over-contact-email:hover {
  color: var(--terracotta-deep);
  text-decoration: underline;
}
.voorwie-section {
  padding: 100px 40px;
  background: var(--paper);
}
.voorwie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.voorwie-card {
  background: var(--paper-deep);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(112, 43, 19, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.voorwie-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(112, 43, 19, 0.1);
}
.voorwie-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.voorwie-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.voorwie-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}
.voorwie-card p:last-of-type {
  margin-bottom: 24px;
}
.voorwie-cta {
  margin-top: auto;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border-top: 1px solid rgba(112, 43, 19, 0.1);
  transition: gap 0.2s, color 0.2s;
}
.voorwie-cta:hover {
  color: var(--terracotta-deep);
  gap: 10px;
}
.voorwie-cta .arrow {
  transition: transform 0.2s;
}
.voorwie-cta:hover .arrow {
  transform: translateX(2px);
}

/* ===== Footer ===== */
footer {
  background: var(--rust);
  color: var(--cream-light);
  padding: 60px 40px 30px;
  position: relative;
  z-index: 2;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { color: var(--cream-light); }
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.7;
  max-width: 320px;
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--cream-light);
  opacity: 0.7;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: 1280px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,217,196,0.15);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.6;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--paper);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.2,.9,.3,1);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast .check {
  width: 18px; height: 18px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.9,.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 20px 60px;
    gap: 40px;
    min-height: auto;
  }
  .hero-card-wrap { order: -1; }
  section { padding: 60px 20px; }
  .why { padding: 50px 28px; margin: 30px auto; border-radius: 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 30px; }
  .wat-grid { grid-template-columns: 1fr; gap: 40px; }
  .wat-widget { position: static; }
  .voorwie-grid { grid-template-columns: 1fr; }
  .voorwie-section { padding: 60px 20px; }
  .over-section { padding: 60px 20px; }
  .over-grid { grid-template-columns: 1fr; gap: 36px; }
  .over-photo { width: 220px; height: 290px; border-radius: 110px; }
  .over-contact { grid-template-columns: 1fr; }
  .build-grid { grid-template-columns: 1fr; gap: 40px; }
  .build-preview { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .problem-prose p { font-size: 16px; }
}
