/* NewAngle — "quiet instruments". Monochroom platform; de apps zijn de enige kleur.
   Self-contained: alleen system-fonts, geen externe requests. */

:root {
  --ink:      #14161a;
  --ink-soft: #565b63;
  --ink-faint:#91959c;
  --paper:    #f2f1ec;
  --line:     #dcdbd4;
  --line-soft:#e8e7e1;

  /* de apps — de enige kleuren op de pagina, spaarzaam gebruikt */
  --ikzelf:    #3b49c9;
  --migrenio:  #17867d;
  --musiclover:#2f7d46;

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", "SF Mono", "Cascadia Mono", "Roboto Mono", "Consolas", ui-monospace, monospace;

  --measure: 34rem;
  --gut: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
::selection { background: var(--ink); color: var(--paper); }

.wrap { width: 100%; max-width: 1120px; margin: 0 auto; padding-left: var(--gut); padding-right: var(--gut); }

/* mono utility label */
.meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* angle mark */
.angle { display: inline-block; vertical-align: middle; color: currentColor; }

a { color: inherit; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

/* ---------- nav ---------- */
.nav { border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: 22px; letter-spacing: -.02em; }
.brand .angle { width: 40px; height: 40px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-family: var(--mono); font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(64px, 13vw, 150px) 0 clamp(52px, 9vw, 104px); overflow: hidden; }
/* de "hoek": één diagonale haarlijn die de hero doorsnijdt */
.hero::after {
  content: ""; position: absolute; right: calc(-1 * var(--gut)); top: 0; bottom: 0; width: 60%;
  background: linear-gradient(to top right, transparent calc(50% - 0.5px), var(--line) calc(50% - 0.5px), var(--line) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }
.hero .meta { margin: 0 0 26px; }
.hero h1 {
  font-size: clamp(38px, 7.2vw, 82px);
  line-height: 1.0;
  letter-spacing: -.035em;
  font-weight: 600;
  margin: 0 0 26px;
  max-width: 14ch;
}
.hero p.lead { font-size: clamp(16px, 2vw, 19px); color: var(--ink-soft); max-width: var(--measure); margin: 0; }
.hero .scroll { margin-top: 46px; display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.hero .scroll .meta { color: var(--ink); }
.hero .scroll .angle { width: 14px; height: 14px; transform: rotate(90deg); color: var(--ink); }

/* ---------- index van werk ---------- */
.works { padding: clamp(40px, 7vw, 84px) 0; }
.works-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.works-head h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 600; letter-spacing: -.02em; margin: 0; }

.index { border-top: 1px solid var(--line); }
.row {
  display: grid;
  grid-template-columns: 26px minmax(150px, 1.1fr) 2fr auto;
  align-items: center;
  gap: 22px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  transition: background .18s ease, padding-left .18s ease;
}
a.row:hover { background: #ecebe3; padding-left: 12px; }
.row .angle { width: 18px; height: 18px; color: var(--ink-faint); transition: color .18s ease; }
a.row:hover .angle { color: var(--c, var(--ink)); }
.row .name { font-size: clamp(20px, 2.6vw, 27px); font-weight: 600; letter-spacing: -.02em; display: flex; align-items: center; gap: 12px; }
.row .tick { width: 9px; height: 9px; border-radius: 50%; background: var(--c, var(--ink-faint)); flex: none; }
.row .desc { color: var(--ink-soft); font-size: 15.5px; }
.row .go { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); white-space: nowrap; transition: color .18s ease, transform .18s ease; }
a.row:hover .go { color: var(--ink); transform: translateX(4px); }

/* rijen die nog niet af zijn */
.row.soon { color: var(--ink-faint); }
.row.soon .name { color: var(--ink-faint); font-weight: 500; }
.row.soon .tick { background: transparent; border: 1px solid var(--line); }

/* ---------- principes ---------- */
.principles { padding: clamp(48px, 9vw, 104px) 0; border-top: 1px solid var(--line); }
.principles h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 600; letter-spacing: -.02em; margin: 0 0 34px; max-width: 20ch; }
.p-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.p-item .meta { margin: 0 0 10px; color: var(--ink); }
.p-item p { margin: 0; color: var(--ink-soft); font-size: 15.5px; max-width: 30ch; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding: 40px 0 56px; }
.foot-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.foot .brand { font-weight: 600; }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-family: var(--mono); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); text-decoration: none; }
.foot-links a:hover { color: var(--ink); }
.foot .note { width: 100%; font-family: var(--mono); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-faint); margin: 26px 0 0; }

@media (max-width: 760px) {
  .row { grid-template-columns: 20px 1fr; grid-auto-rows: auto; gap: 6px 16px; padding: 20px 2px; }
  .row .angle { grid-row: 1 / 3; align-self: start; margin-top: 4px; }
  .row .desc { grid-column: 2; }
  .row .go { grid-column: 2; margin-top: 4px; }
  .p-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero::after { width: 90%; opacity: .6; }
  .nav-links { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}


/* ---------- app pages (uitbreiding, zelfde taal: haarlijnen, mono-labels) ---------- */
.crumb { padding-top: 22px; }
.crumb a { font-family: var(--mono); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); text-decoration: none; }
.crumb a:hover { color: var(--ink); }

.app-hero { position: relative; padding: clamp(40px,7vw,86px) 0 clamp(40px,7vw,80px); overflow: hidden; }
.app-hero::after {
  content: ""; position: absolute; right: calc(-1 * var(--gut)); top: 0; bottom: 0; width: 46%;
  background: linear-gradient(to top right, transparent calc(50% - 0.5px), var(--line) calc(50% - 0.5px), var(--line) calc(50% + 0.5px), transparent calc(50% + 0.5px));
  pointer-events: none;
}
.app-hero .wrap { position: relative; z-index: 1; }
.app-grid { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,auto); gap: clamp(32px,6vw,72px); align-items: center; }
.app-kicker { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; }
.app-kicker .tick { width: 9px; height: 9px; border-radius: 50%; background: var(--c, var(--ink)); flex: none; }
.app-h1 { font-size: clamp(32px,5.4vw,58px); line-height: 1.03; letter-spacing: -.032em; font-weight: 600; margin: 0 0 22px; max-width: 15ch; }
.lead { font-size: clamp(16px,2vw,19px); color: var(--ink-soft); max-width: var(--measure); margin: 0 0 14px; }
.body-copy { font-size: 15.5px; color: var(--ink-soft); max-width: var(--measure); margin: 0 0 30px; }

/* store-knoppen: outline in inkt, vult bij hover */
.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.store {
  display: inline-flex; align-items: center; gap: 11px; padding: 10px 16px;
  border: 1px solid var(--ink); border-radius: 3px; text-decoration: none; color: var(--ink);
  background: transparent; transition: background .18s ease, color .18s ease;
}
.store:hover { background: var(--ink); color: var(--paper); }
.store .glyph { font-size: 17px; line-height: 1; }
.store .lines { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.15; }
.store .small { font-family: var(--mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.store .big { font-size: 14.5px; font-weight: 600; letter-spacing: -.01em; }
.soon-badge { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1px dashed var(--line); border-radius: 3px; }

/* telefoon */
.phone { width: clamp(230px, 26vw, 288px); aspect-ratio: 9 / 19.2; padding: 8px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: 0 22px 50px -34px rgba(20,22,26,.55); }
.phone-in { position: relative; width: 100%; height: 100%; border-radius: 21px; overflow: hidden; background: var(--line-soft); }

/* screenshots vullen hun frame */
.phone-in img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* sectiekop met haarlijn */
.sec { padding: clamp(36px,6vw,72px) 0; border-top: 1px solid var(--line); }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.sec-head h2 { font-size: clamp(22px,3vw,30px); font-weight: 600; letter-spacing: -.02em; margin: 0; }

/* kenmerken als index-achtige kolommen */
.feats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 0 34px; border-top: 1px solid var(--line); }
.feat { min-width: 0; padding: 22px 0; border-bottom: 1px solid var(--line); }
.feat h3 { font-size: 17px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 7px; }
.feat p { margin: 0; color: var(--ink-soft); font-size: 15px; max-width: 32ch; }

/* screenshots — als mini-telefoons, zelfde taal als de hero-.phone */
.shots { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(20px,3vw,36px); }
.shot { min-width: 0; margin: 0; }
.shot-frame { position: relative; aspect-ratio: 9 / 19.2; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; background: #fff; box-shadow: 0 20px 46px -30px rgba(20,22,26,.5); }
.shot-frame img { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); object-fit: cover; border-radius: 21px; display: block; }
.shot figcaption { margin-top: 11px; font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); }

/* privacy-blok */
.split { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); gap: clamp(28px,5vw,64px); align-items: start; }
.split h3 { font-size: clamp(20px,2.6vw,26px); font-weight: 600; letter-spacing: -.02em; margin: 0 0 12px; max-width: 18ch; }
.split p { margin: 0 0 20px; color: var(--ink-soft); font-size: 15.5px; max-width: 40ch; }
.linklist { border-top: 1px solid var(--line); }
.linklist a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 2px; border-bottom: 1px solid var(--line); text-decoration: none; color: var(--ink); font-size: 15.5px; transition: padding-left .18s ease; }
.linklist a:hover { padding-left: 10px; }
.linklist a span.go { font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }

@media (max-width: 900px) {
  .app-grid { grid-template-columns: 1fr; }
  .feats { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
}

/* ---------- contactformulier ---------- */
.form { max-width: var(--measure); }
/* eigen veld-rij: neutraliseer de globale .index-.row (grid/padding/rand) */
.form .row { display: block; grid-template-columns: none; gap: 0; padding: 0; border: none; margin: 0 0 20px; }
.form .row:hover { background: none; padding-left: 0; }
.form label { display: block; font-family: var(--mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 8px; }
.form input, .form textarea {
  width: 100%; font: inherit; color: var(--ink); background: #fff;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.form textarea { min-height: 168px; resize: vertical; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(20,22,26,.08); }
.form input::placeholder, .form textarea::placeholder { color: var(--ink-faint); }
/* honeypot: onzichtbaar voor mensen, wél voor bots */
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.btn-send {
  display: inline-flex; align-items: center; gap: 10px; font: inherit; font-weight: 600;
  cursor: pointer; padding: 12px 22px; border: 1px solid var(--ink); border-radius: 3px;
  background: var(--ink); color: var(--paper); transition: background .18s ease, color .18s ease;
}
.btn-send:hover { background: transparent; color: var(--ink); }
.form-note { margin: 14px 0 0; }

/* melding na verzenden */
.notice { padding: 14px 16px; border-radius: 8px; margin: 0 0 26px; font-size: 15px; border: 1px solid var(--line); background: #fff; }
.notice.ok { border-color: var(--migrenio); color: var(--migrenio); }
.notice.err { border-color: #c0392b; color: #c0392b; }

/* ---------- documentpagina's (privacy, support, uitleg — uniforme prosestijl) ---------- */
.doc { max-width: 46rem; padding-top: clamp(28px,5vw,52px); padding-bottom: clamp(56px,9vw,96px); }
.doc h1 { font-size: clamp(30px,5.4vw,50px); line-height: 1.05; letter-spacing: -.03em; font-weight: 600; margin: 0 0 10px; }
.doc > .meta { display: block; margin: 0 0 30px; }
.doc .lead { font-size: clamp(16px,2vw,19px); color: var(--ink-soft); margin: 0 0 26px; max-width: var(--measure); }
.doc h2 { font-size: clamp(19px,2.6vw,24px); font-weight: 600; letter-spacing: -.02em; margin: 40px 0 12px; padding-top: 22px; border-top: 1px solid var(--line); }
.doc h3 { font-size: 17px; font-weight: 600; letter-spacing: -.01em; margin: 26px 0 8px; }
.doc p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin: 0 0 16px; }
.doc ul, .doc ol { margin: 0 0 18px; padding-left: 1.25em; }
.doc li { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin: 0 0 9px; }
.doc strong { color: var(--ink); font-weight: 600; }
.doc a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--line); }
.doc a:hover { text-decoration-color: var(--ink); }
.doc hr { border: none; border-top: 1px solid var(--line); margin: 34px 0; }
.doc img { display: block; max-width: 100%; height: auto; border: 1px solid var(--line); border-radius: 12px; margin: 8px 0 26px; }
.doc figure { margin: 8px 0 26px; }
.doc figcaption { font-family: var(--mono); font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-faint); margin-top: 10px; }
.doc .faq { border-top: 1px solid var(--line); margin-top: 8px; }
.doc .faq details { border-bottom: 1px solid var(--line); }
.doc .faq summary { cursor: pointer; padding: 18px 2px; font-size: 17px; font-weight: 600; letter-spacing: -.01em; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.doc .faq summary::-webkit-details-marker { display: none; }
.doc .faq summary::after { content: "+"; color: var(--ink-faint); font-weight: 400; }
.doc .faq details[open] summary::after { content: "–"; }
.doc .faq details > *:not(summary) { margin: 0 2px 18px; }
