:root {
  --paper: #FAF8F3;
  --paper-2: #F3F0E7;
  --ink: #14161A;
  --groei: #176B4D;
  --groei-deep: #0F4D37;
  --groei-soft: #E4EFE8;
  --ochre: #BE7E26;
  --muted: #6E7167;
  --line: #E5E0D3;
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Hanken Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --maxw: 1000px;
  --pad: clamp(1.25rem, 5vw, 3.5rem);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper); color: var(--ink);
  font-family: var(--body); font-size: 17px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
a { color: var(--groei); text-underline-offset: 3px; }
a:hover { color: var(--groei-deep); }
h1, h2, h3 { font-family: var(--display); letter-spacing: -0.02em; line-height: 1.08; }

.eyebrow {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow .dot { color: var(--groei); }

/* NAV */
nav { position: sticky; top: 0; z-index: 50; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0.85rem var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.brand { font-family: var(--mono); font-size: 0.92rem; font-weight: 500; text-decoration: none; color: var(--ink); }
.brand .slash { color: var(--groei); }
.nav-links { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.nav-links a { font-family: var(--mono); font-size: 0.78rem; text-decoration: none; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

/* HERO */
header.page { padding: clamp(2.8rem, 8vw, 5.5rem) 0 clamp(1.5rem, 4vw, 2.5rem); }
.hero-eyebrow { margin-bottom: 1.4rem; }
h1 { font-size: clamp(2.1rem, 6.5vw, 3.6rem); font-weight: 600; max-width: 18ch; }
h1 .accent { color: var(--groei); }
.lede { margin-top: 1.6rem; max-width: 54ch; font-size: clamp(1.02rem, 2.2vw, 1.2rem); color: #33373c; }

/* SECTIONS */
section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.section-head { margin-bottom: 2rem; }
.section-head .eyebrow { display: block; margin-bottom: 0.8rem; }
.section-head h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 600; max-width: 22ch; }
.prose p { color: #33373c; max-width: 60ch; }
.prose p + p { margin-top: 0.9rem; }

/* CARDS */
.cards { display: grid; gap: 1.2rem; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .cards.two, .cards.three { grid-template-columns: 1fr; } }
.card { border: 1px solid var(--line); border-radius: 14px; padding: 1.5rem; background: #fff; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-3px); box-shadow: 0 14px 38px -22px rgba(20,22,26,.35); border-color: #d8d2c2; }
.card .kicker { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--groei); }
.card h3 { font-size: 1.2rem; font-weight: 600; margin: 0.7rem 0 0.5rem; }
.card p { font-size: 0.95rem; color: #43474c; }
.card .more { margin-top: auto; padding-top: 0.9rem; font-family: var(--mono); font-size: 0.78rem; color: var(--groei); }

/* BADGE */
.badge { display: inline-block; font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.28rem 0.6rem; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); background: var(--paper-2); }
.badge.live { color: var(--groei); border-color: #BFE0CD; background: var(--groei-soft); }
.badge.beta { color: var(--ochre); border-color: #EAD4A8; background: #FBF3E2; }

/* FEATURE LIST */
.featlist { list-style: none; }
.featlist li { padding: 1rem 0; border-top: 1px solid var(--line); }
.featlist li:last-child { border-bottom: 1px solid var(--line); }
.featlist h4 { font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
.featlist p { font-size: 0.95rem; color: #43474c; margin-top: 0.2rem; max-width: 58ch; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: s; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { border-left: 2px solid var(--groei-soft); padding-left: 1rem; }
.step .n { font-family: var(--mono); font-size: 0.8rem; color: var(--groei); }
.step h4 { font-family: var(--display); font-weight: 600; font-size: 1.05rem; margin: 0.3rem 0; }
.step p { font-size: 0.92rem; color: #43474c; }

/* PILLS */
.pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
.pill { font-size: 0.85rem; padding: 0.32rem 0.8rem; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: #3a3e43; }

/* PRODUCT HERO VISUAL */
.phero { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem; align-items: center; }
@media (max-width: 760px) { .phero { grid-template-columns: 1fr; } }
.glass { border-radius: 18px; aspect-ratio: 4/3; border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden; }
.glass.green { background: radial-gradient(120% 90% at 20% 12%, rgba(190,126,38,.28), transparent 55%), linear-gradient(160deg, #14583F, #0B3B2A); border-color: #2C6149; }
.phone { width: 40%; aspect-ratio: 9/19; border-radius: 18px; background: linear-gradient(180deg, #0C2E22, #0A2419); border: 1.5px solid #3E7A60; box-shadow: 0 20px 50px -20px rgba(0,0,0,.6); position: relative; }
.phone::before { content:""; position:absolute; inset: 11% 14% auto 14%; height:8%; border-radius:6px; background: var(--ochre); opacity:.85; }
.phone::after { content:""; position:absolute; inset: 27% 14% 14% 14%; border-radius:8px; background: repeating-linear-gradient(180deg, rgba(255,255,255,.09) 0 6px, transparent 6px 16px); }
.dash { width: 78%; }
.dash .bar { height: 9px; border-radius: 5px; background: #cfe3d8; margin: 8px 0; }
.dash .bar.o { background: var(--ochre); opacity:.8; }
.dash .bar.s { width: 60%; } .dash .bar.m { width: 80%; }

/* PRODUCT SHOT */
.shot-wrap { display: flex; justify-content: center; }
.shot { width: auto; max-width: 100%; height: auto; max-height: 540px; border-radius: 18px; border: 1px solid #20242a; box-shadow: 0 28px 70px -30px rgba(20,22,26,.55); display: block; }
@media (max-width: 760px) { .shot { max-height: 460px; } }
.shot-frame { margin-top: 2.4rem; }
.shot-wide { width: 100%; max-width: 920px; height: auto; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 28px 70px -32px rgba(20,22,26,.5); display: block; margin: 0 auto; }

/* CTA / BUTTONS */
.btn { font-family: var(--mono); font-size: 0.82rem; text-decoration: none; padding: 0.8rem 1.4rem; border-radius: 999px; display: inline-flex; align-items: center; gap: 0.5rem; transition: transform .2s, background .2s, color .2s; }
.btn-primary { background: var(--groei); color: #fff; } .btn-primary:hover { background: var(--groei-deep); color:#fff; transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); background:#fff; } .btn-ghost:hover { border-color: var(--groei); color: var(--groei); transform: translateY(-2px); }
.actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.8rem; }

/* CALLOUT */
.callout { background: var(--groei-deep); color: #EAF3EE; border-radius: 18px; padding: clamp(1.6rem, 4vw, 2.6rem); }
.callout h2 { color: #fff; } .callout p { color: #C3DBCF; max-width: 56ch; margin-top: 0.7rem; }

/* INFO TABLE (about/legal) */
.info { border-top: 1px solid var(--line); }
.info .row { display: flex; gap: 1.5rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line); }
.info .row .k { font-family: var(--mono); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); min-width: 150px; }
.info .row .v { color: var(--ink); }

/* FOOTER */
footer { border-top: 1px solid var(--line); margin-top: 2rem; padding: 2.2rem 0 3rem; }
.foot-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; align-items: flex-start; }
.foot-col .ft { font-family: var(--display); font-weight: 600; margin-bottom: 0.4rem; }
.foot-col a { display: block; font-size: 0.9rem; text-decoration: none; color: #43474c; padding: 0.15rem 0; }
.foot-col a:hover { color: var(--groei); }
.foot-meta { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); margin-top: 1.6rem; line-height: 1.7; }

a:focus-visible, .btn:focus-visible { outline: 2px solid var(--groei); outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
