:root {
  --ink: #1a1a18;
  --ink-muted: #5f5e5a;
  --ink-faint: #b4b2a9;
  --accent: #ba7517;
  --accent-dark: #854f0b;
  --accent-light: #faeeda;
  --surface: #f7f5f0;
  --surface-warm: #efece3;
  --surface-dark: #1e1d1b;
  --white: #ffffff;
  --border: rgba(26,26,24,0.1);
  --border-strong: rgba(26,26,24,0.18);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Nav */
.nav {
  padding: 1.75rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--ink);
}
.nav-brand span { color: var(--accent); }
.nav-links { display: flex; gap: 1.5rem; font-size: 13px; color: var(--ink-muted); }
.nav-links a:hover { color: var(--accent); }

/* Hero */
.hero { padding: 3rem 0 2.5rem; }
.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.slogan {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.slogan em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-muted);
  max-width: 580px;
  margin-bottom: 2rem;
}
.hero-sub strong { font-weight: 500; color: var(--ink); }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ink-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 12px 18px;
  border: 0.5px solid var(--border-strong);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Section */
.section {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}
.section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.005em;
}
.section-title em { font-style: italic; color: var(--accent); }

/* Prose */
.prose p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.prose p.muted { color: var(--ink-muted); }
.prose p.intro { color: var(--ink-muted); font-size: 16px; max-width: 580px; }
.prose strong { font-weight: 500; }
.prose h1,.prose h2,.prose h3,.prose h4 { font-family:'DM Serif Display',serif; line-height:1.25; margin:2rem 0 .75rem; color:var(--ink); }
.prose h1 { font-size:2rem; }
.prose h2 { font-size:1.5rem; }
.prose h3 { font-size:1.2rem; }
.prose ul,.prose ol { padding-left:1.5rem; margin-bottom:1.1rem; }
.prose li { font-size:16px; line-height:1.75; margin-bottom:.3rem; }
.prose a { color:var(--accent); text-decoration:underline; }
.prose blockquote { border-left:4px solid var(--accent); margin:1.5rem 0; padding:.75rem 1.25rem; color:var(--ink-muted); font-style:italic; }
.prose code { font-family:'Courier New',monospace; font-size:.875em; background:#f4f4f4; padding:.1em .35em; border-radius:4px; }
.prose pre { background:#1e1e1e; color:#d4d4d4; padding:1.25rem; border-radius:8px; overflow-x:auto; margin-bottom:1.5rem; }
.prose pre code { background:none; padding:0; font-size:.875rem; }
.prose hr { border:none; border-top:1px solid var(--clr-border,#e5e5e5); margin:2rem 0; }
.prose img { max-width:100%; border-radius:8px; margin:1rem 0; }

/* Story block */
.story {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  margin: 1rem 0;
}
.pull-quote {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 1.1rem;
  margin: 1.5rem 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
  margin-top: 1rem;
}
.about-photo {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  border: 0.5px solid var(--border);
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 1.5rem;
}
.pillar {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
.pillar:hover { border-color: var(--accent); }
.pillar-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.pillar-title { font-size: 14px; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.pillar-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.55; flex-grow: 1; }
.pillar-status {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 0.5px solid var(--border);
}
.pillar-status.soon { color: var(--ink-faint); }
.pillar-cta {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}
.pillar-cta::after { content: '→'; }

/* Anti-pitch */
.antipitch {
  background: var(--surface-warm);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-muted);
}
.antipitch strong { color: var(--ink); font-weight: 500; }

/* Proof */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 1rem;
}
.proof-card { background: var(--accent-light); border-radius: 12px; padding: 1.25rem; }
.proof-card-title { font-size: 14px; font-weight: 500; color: var(--accent-dark); margin-bottom: 6px; }
.proof-card-desc { font-size: 13px; color: #633806; line-height: 1.55; }

/* Journal */
.journal-intro {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 560px;
}
.journal-entry {
  border-top: 0.5px solid var(--border);
  padding: 1.5rem 0;
  display: block;
  cursor: pointer;
  transition: padding-left 0.2s;
}
.journal-entry:hover { padding-left: 8px; }
.journal-entry:hover .journal-title { color: var(--accent); }
.journal-meta {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 8px;
}
.journal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.journal-excerpt { font-size: 14.5px; color: var(--ink-muted); line-height: 1.6; }
.journal-empty {
  background: var(--surface-warm);
  border-radius: 12px;
  padding: 1.5rem;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.65;
  font-style: italic;
}
.journal-empty strong { font-style: normal; font-weight: 500; color: var(--ink); }

/* Contact / capture */
.contact-card {
  background: var(--ink);
  color: #f7f5f0;
  border-radius: 14px;
  padding: 2rem;
  margin: 1rem 0;
}
.contact-card .section-label { color: var(--accent); }
.contact-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: #f7f5f0;
  line-height: 1.35;
  margin-bottom: 1rem;
}
.contact-sub { font-size: 14px; color: #b4b2a9; line-height: 1.65; margin-bottom: 1.5rem; }
.capture-form { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1rem; }
.capture-input {
  flex: 1;
  min-width: 220px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  color: #f7f5f0;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.capture-input::placeholder { color: rgba(255,255,255,0.4); }
.capture-input:focus { border-color: var(--accent); background: rgba(255,255,255,0.09); }
.capture-btn {
  font-size: 13px;
  font-weight: 500;
  padding: 11px 18px;
  background: var(--accent);
  color: #1a1a18;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}
.capture-btn:hover { opacity: 0.88; }
.capture-success {
  display: none;
  font-size: 14px;
  color: var(--accent);
  font-style: italic;
  padding: 0.5rem 0 1rem;
}
.capture-success.shown { display: block; }
.contact-tiny { font-size: 12px; color: rgba(180,178,169,0.7); margin-top: 0.75rem; }
.contact-tiny a { color: var(--accent); }
.contact-tiny a:hover { text-decoration: underline; }

/* Dashboard */
.dash-meter {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 1.25rem; max-width: 480px;
}
.dash-meter-label {
  font-size: 12px; font-weight: 500; color: var(--ink-muted);
  margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.dash-meter-bar {
  height: 6px; background: var(--surface-warm); border-radius: 99px;
  overflow: hidden; margin-bottom: 6px;
}
.dash-meter-fill { height: 100%; background: var(--accent); border-radius: 99px; transition: width 0.4s; }
.dash-meter-cijfers { font-size: 11px; color: var(--ink-faint); }
.dash-badge {
  font-size: 9px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 2px 7px; border-radius: 99px;
}
.dash-badge--gratis { background: var(--surface-warm); color: var(--ink-faint); }
.dash-badge--betaald { background: var(--accent-light); color: var(--accent-dark); }

/* Tool cards */
.tool-card {
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 12px; padding: 1.25rem; display: flex;
  flex-direction: column; gap: 8px; transition: border-color 0.2s;
}
.tool-card:hover { border-color: var(--accent); }
.tool-card--locked { opacity: 0.65; }
.tool-card-naam { font-size: 15px; font-weight: 500; color: var(--ink); }
.tool-card-beschrijving { font-size: 13px; color: var(--ink-muted); line-height: 1.55; flex-grow: 1; }
.tool-card-cta { font-size: 12px; font-weight: 500; color: var(--accent); margin-top: 4px; }
.tool-card-cta--lock { color: var(--ink-faint); }

/* Tool shell (chat interface) */
.tool-shell {
  display: flex; flex-direction: column;
  height: calc(100vh - 80px); max-width: 860px;
  margin: 0 auto; padding: 0 2.5rem;
}
.tool-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 0; border-bottom: 0.5px solid var(--border);
  flex-shrink: 0;
}
.tool-terug { font-size: 13px; color: var(--ink-muted); white-space: nowrap; }
.tool-terug:hover { color: var(--accent); }
.tool-titel { font-size: 15px; font-weight: 500; flex-grow: 1; }
.tool-token-meter { font-size: 11px; color: var(--ink-faint); white-space: nowrap; }
.tool-gesprek {
  flex-grow: 1; overflow-y: auto; padding: 1.5rem 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.gesprek-bericht {
  max-width: 78%; padding: 12px 16px; border-radius: 12px;
  font-size: 14px; line-height: 1.65; white-space: pre-wrap;
}
.gesprek-bericht--user {
  align-self: flex-end; background: var(--accent);
  color: #fff; border-bottom-right-radius: 4px;
}
.gesprek-bericht--assistant {
  align-self: flex-start; background: var(--white);
  border: 0.5px solid var(--border); border-bottom-left-radius: 4px;
}
.tool-input-wrap {
  padding: 1rem 0 1.5rem; border-top: 0.5px solid var(--border); flex-shrink: 0;
}
.tool-input-row { display: flex; gap: 8px; align-items: flex-end; }
.tool-textarea {
  flex: 1; padding: 10px 14px; border: 0.5px solid var(--border-strong);
  border-radius: 8px; font-family: inherit; font-size: 14px;
  background: var(--white); color: var(--ink); resize: none;
  line-height: 1.5; outline: none;
}
.tool-textarea:focus { border-color: var(--accent); }
.tool-stuur-btn { border: none; flex-shrink: 0; }
.tool-diepte-label { font-size: 12px; color: var(--ink-muted); display: flex; align-items: center; gap: 6px; cursor: pointer; }

/* Registration form */
.reg-form { display: flex; flex-direction: column; gap: 1.25rem; }
.reg-field { display: flex; flex-direction: column; gap: 6px; }
.reg-label { font-size: 13px; font-weight: 500; color: var(--ink); }
.reg-input {
  background: var(--white);
  border-color: var(--border-strong);
  color: var(--ink);
  width: 100%;
}
.reg-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.reg-chip { display: inline-flex; cursor: pointer; }
.reg-chip input[type="radio"] { display: none; }
.reg-chip span {
  display: inline-block;
  padding: 7px 14px;
  border: 0.5px solid var(--border-strong);
  border-radius: 20px;
  font-size: 13px;
  color: var(--ink-muted);
  background: var(--white);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  user-select: none;
}
.reg-chip input[type="radio"]:checked + span {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent-dark);
  font-weight: 500;
}
.reg-chip:hover span { border-color: var(--accent); color: var(--ink); }

/* Footer */
.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.7;
}
.footer a { color: var(--ink-muted); }
.footer a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.social-link:hover { color: var(--accent); }
.footer-copy { font-size: 11px; color: var(--ink-faint); }

/* ── Landing page sections ── */
.lp-section        { padding: 7rem 0; border-top: 1px solid var(--border); }
.lp-section--warm  { background: var(--surface-warm); }
.lp-section--dark  { background: var(--surface-dark); border-top: none; }

.lp-h2 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.07;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}
.lp-h2 em { font-style: italic; color: var(--accent); }
.lp-h2--white { color: #fff; }
.lp-h2--white em { color: var(--accent); }

.lp-lead {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Hero */
.lp-hero-headline {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.75rem;
  max-width: 680px;
}
.lp-hero-headline em { font-style: italic; color: var(--accent); }

/* Flow diagram */
.lp-flow {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.lp-flow-step {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.lp-flow-step:last-child { border-right: none; }
.lp-flow-n {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
}
.lp-flow-t { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.lp-flow-d { font-size: 13px; color: var(--ink-muted); line-height: 1.55; }
.lp-flow-arr {
  position: absolute; right: -11px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px; background: var(--surface);
  border: 1px solid var(--border-strong); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--accent); z-index: 1;
}

/* Problem grid */
.lp-prob-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border-strong); border-radius: 14px;
  overflow: hidden; margin-top: 3rem;
}
.lp-prob-card { background: var(--white); padding: 2rem 1.75rem; }
.lp-prob-icon { font-size: 1.2rem; margin-bottom: 1rem; opacity: 0.6; }
.lp-prob-title { font-family: 'DM Serif Display', serif; font-size: 1.05rem; margin-bottom: 0.5rem; }
.lp-prob-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }

/* Origin story */
.lp-origin-inner {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 6rem; align-items: start;
}
.lp-origin-left { position: sticky; top: 3rem; }
.lp-origin-hl {
  font-family: 'DM Serif Display', serif;
  font-weight: 400; font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
}
.lp-origin-body { font-size: 16px; color: var(--ink-muted); line-height: 1.85; }
.lp-origin-body p { margin-bottom: 1.25rem; }
.lp-origin-body p:last-child { margin-bottom: 0; }
.lp-origin-body strong { color: var(--ink); font-weight: 500; }
.lp-origin-list {
  list-style: none; margin: 1.25rem 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.lp-origin-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  font-size: 15px; color: var(--ink-muted);
}
.lp-origin-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); margin-top: 10px; flex-shrink: 0;
}
.lp-pullquote {
  margin-top: 2.5rem; padding: 1.75rem 1.75rem 1.75rem 2rem;
  border-left: 3px solid var(--accent);
  background: rgba(186,117,23,0.06);
  border-radius: 0 10px 10px 0;
}
.lp-pullquote p {
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: 1.2rem;
  line-height: 1.5; color: var(--ink); margin: 0;
}

/* Shift comparison */
.lp-shift-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: var(--border);
  border: 1px solid var(--border-strong); border-radius: 14px;
  overflow: hidden; margin-top: 3rem;
}
.lp-shift-col { background: var(--white); padding: 2.5rem; }
.lp-shift-col--dark { background: var(--surface-dark); }
.lp-shift-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.75rem;
}
.lp-shift-col--dark .lp-shift-label { color: rgba(255,255,255,0.28); }
.lp-shift-row {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 1rem; font-size: 14px; line-height: 1.5; color: var(--ink-muted);
}
.lp-shift-col--dark .lp-shift-row { color: rgba(255,255,255,0.6); }
.lp-shift-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ink-faint); margin-top: 8px; flex-shrink: 0;
}
.lp-shift-col--dark .lp-shift-dot { background: var(--accent); }

/* Steps */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3.5rem; margin-top: 4rem; }
.lp-step-n {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem; color: var(--border-strong);
  line-height: 1; margin-bottom: 1.25rem;
}
.lp-step-t { font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 0.75rem; }
.lp-step-d { font-size: 14px; color: var(--ink-muted); line-height: 1.65; }

/* Tool showcase UI */
.lp-showcase {
  margin-top: 4rem; border: 1px solid var(--border-strong);
  border-radius: 14px; overflow: hidden; background: var(--white);
  box-shadow: 0 6px 48px rgba(26,26,24,0.08);
}
.lp-showcase-bar {
  background: var(--surface-warm); border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.4rem; display: flex; align-items: center; gap: 0.5rem;
}
.lp-showcase-bar-label { font-size: 12px; color: var(--ink-muted); font-weight: 500; margin-left: 0.6rem; }
.lp-showcase-cols { display: grid; grid-template-columns: 1fr 1fr; }
.lp-showcase-form { padding: 2rem; border-right: 1px solid var(--border); }
.lp-showcase-form-hd {
  font-size: 11px; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.5rem;
}
.lp-f-field { margin-bottom: 1rem; }
.lp-f-label { display: block; font-size: 11px; font-weight: 500; color: var(--ink-muted); margin-bottom: 0.3rem; }
.lp-f-input {
  width: 100%; background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: 6px; padding: 8px 12px; font-size: 13px;
  font-family: inherit; color: var(--ink);
}
.lp-f-area { height: 66px; resize: none; }
.lp-tag-row { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 4px; }
.lp-tag {
  font-size: 11px; padding: 3px 10px; border-radius: 20px;
  border: 1px solid var(--border-strong); color: var(--ink-muted);
}
.lp-tag--on { background: var(--accent-light); border-color: var(--accent); color: var(--accent); }
.lp-showcase-chat {
  padding: 2rem; background: var(--surface);
  display: flex; flex-direction: column; gap: 0.85rem;
}
.lp-chat-hd {
  font-size: 11px; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.25rem;
}
.lp-bubble {
  padding: 0.8rem 1rem; border-radius: 10px;
  font-size: 13px; line-height: 1.55; max-width: 92%;
}
.lp-bubble--ai { background: var(--white); border: 1px solid var(--border); color: var(--ink-muted); }
.lp-bubble--user { background: var(--accent); color: var(--white); align-self: flex-end; }
.lp-chat-result {
  background: var(--white); border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 1rem 1.2rem; margin-top: 0.25rem;
}
.lp-chat-result-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.lp-chat-result-text {
  font-size: 12px; color: var(--ink-muted); line-height: 1.6;
  font-family: 'Courier New', monospace;
}

/* Vision grid */
.lp-vision-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.lp-v-card {
  border: 1px solid var(--border); border-radius: 12px;
  padding: 1.75rem; background: var(--white);
}
.lp-v-card--dark { background: var(--surface-dark); border-color: transparent; }
.lp-v-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.6rem;
}
.lp-v-card--dark .lp-v-label { color: rgba(255,255,255,0.28); }
.lp-v-title { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.lp-v-card--dark .lp-v-title { color: var(--white); }
.lp-v-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }
.lp-v-card--dark .lp-v-desc { color: rgba(255,255,255,0.5); }

/* Newsletter section */
.lp-nl-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-bottom: 3rem;
}
.lp-nl-card {
  background: var(--white); border: 1px solid var(--border-strong);
  border-radius: 12px; padding: 1.75rem;
}
.lp-nl-editie {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.75rem;
}
.lp-nl-title { font-family: 'DM Serif Display', serif; font-size: 1.05rem; line-height: 1.3; margin-bottom: 0.75rem; }
.lp-nl-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.6; }
.lp-signup-row { display: flex; gap: 8px; max-width: 500px; }
.lp-signup-input {
  flex: 1; background: var(--white); border: 1px solid var(--border-strong);
  border-radius: 8px; padding: 12px 16px; font-size: 14px;
  color: var(--ink); font-family: inherit; outline: none;
}
.lp-signup-input:focus { border-color: var(--accent); }
.lp-signup-btn {
  background: var(--accent); color: var(--white); border: none;
  border-radius: 8px; padding: 12px 22px; font-size: 14px;
  font-weight: 500; font-family: inherit; cursor: pointer;
  white-space: nowrap;
}
.lp-signup-btn:hover { opacity: 0.88; }
.lp-signup-note { font-size: 12px; color: var(--ink-faint); margin-top: 0.75rem; }

/* About section */
.lp-about-inner {
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 5rem; align-items: start;
}
.lp-about-text h2 {
  font-family: 'DM Serif Display', serif; font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.1; margin-bottom: 1.75rem;
}
.lp-about-text h2 em { font-style: italic; color: var(--accent); }
.lp-about-text p { font-size: 16px; color: var(--ink-muted); line-height: 1.8; margin-bottom: 1.1rem; }
.lp-about-text p strong { color: var(--ink); font-weight: 500; }
.lp-about-list {
  list-style: none; margin: 1.25rem 0;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.lp-about-list li {
  font-size: 15px; color: var(--ink-muted);
  display: flex; gap: 0.75rem; align-items: flex-start;
}
.lp-about-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); margin-top: 9px; flex-shrink: 0;
}
.lp-about-img {
  width: 100%; border-radius: 14px; display: block;
  border: 1px solid var(--border); filter: saturate(0.85) contrast(1.02);
}

/* Dark CTA section */
.lp-section--dark .section-label { color: rgba(255,255,255,0.28); }
.lp-cta-sub { font-size: 16px; color: rgba(255,255,255,0.4); max-width: 420px; margin-bottom: 2.5rem; line-height: 1.65; }
.lp-btn-wht {
  display: inline-block; background: var(--white); color: var(--ink);
  font-size: 14px; font-weight: 500; padding: 13px 24px; border-radius: 8px;
}
.lp-btn-ghost {
  display: inline-block; color: rgba(255,255,255,0.55);
  font-size: 14px; padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 8px;
}

/* Updated footer (dark) */
.footer {
  background: var(--surface-dark) !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  padding: 2rem 0 !important;
  color: rgba(255,255,255,0.2) !important;
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; color: rgba(255,255,255,0.3);
}
.footer-brand span { color: var(--accent); }
.footer-icons { display: flex; gap: 8px; }
.footer-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: rgba(255,255,255,0.5);
  transition: color 0.2s, background 0.2s;
}
.footer-icon:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }
.footer-copy-dark { font-size: 11px; color: rgba(255,255,255,0.18); }

/* ── Landing page responsive ── */
@media (max-width: 960px) {
  .lp-flow         { grid-template-columns: 1fr 1fr; }
  .lp-prob-grid    { grid-template-columns: 1fr 1fr; }
  .lp-origin-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-origin-left  { position: static; }
  .lp-shift-grid   { grid-template-columns: 1fr; }
  .lp-steps        { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-showcase-cols { grid-template-columns: 1fr; }
  .lp-vision-grid  { grid-template-columns: 1fr 1fr; }
  .lp-nl-cards     { grid-template-columns: 1fr 1fr; }
  .lp-about-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-about-img    { max-width: 360px; }
}

/* Mobile */
@media (max-width: 600px) {
  .wrap { padding: 0 1.25rem; }
  .nav { padding: 1.5rem 1.25rem; }
  .pillars { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-photo { max-width: 280px; margin: 0 auto; }
  .nav-links { display: none; }
  .story, .contact-card, .antipitch { padding: 1.5rem; }
  .section { padding: 2.5rem 0; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
}
