/* ===== Fonts ===== */
@font-face {
  font-family: "Seatren";
  src: url("assets/fonts/seatren.woff2") format("woff2"),
       url("assets/fonts/seatren.woff") format("woff");
  font-weight: 400 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Seatren";
  src: url("assets/fonts/seatren-italic.woff2") format("woff2"),
       url("assets/fonts/seatren-italic.woff") format("woff");
  font-weight: 400 700; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/fonts/inter-400-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/assets/fonts/inter-500-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/assets/fonts/inter-600-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ===== Tokens ===== */
:root {
  --ink: #181f10;
  --ink-2: #212a18;
  --paper: #f7f2e7;
  --paper-2: #efe7d3;
  --green: #29c700;
  --green-700: #1f9b00;
  --green-900: #114f0a;
  --peach: #f3d8c9;
  --text: #2a3320;
  --muted: #6c7458;
  --line: rgba(24, 31, 16, .12);
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --maxw: 1160px;
  --shadow: 0 28px 60px -28px rgba(24, 31, 16, .45);
  --shadow-sm: 0 10px 30px -16px rgba(24, 31, 16, .35);
  --font-display: "Seatren", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0; background: var(--paper); color: var(--text);
  font-family: var(--font-body); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
::selection { background: var(--green); color: var(--ink); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.02; margin: 0; color: var(--ink); letter-spacing: -.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 780px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200; }
.skip-link:focus { left: 0; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 14px 24px; border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .14s ease, color .14s ease;
  white-space: nowrap; line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--green-900); outline-offset: 2px; }
.btn--green { background: var(--green); color: var(--ink); }
.btn--green:hover { background: var(--green-700); box-shadow: 0 14px 30px -12px rgba(31, 155, 0, .6); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-2); box-shadow: var(--shadow-sm); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn__arrow { display: inline-block; transition: transform .18s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ===== Eyebrow + highlight mark ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--green-900); background: rgba(41, 199, 0, .14);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow--dark { color: var(--green-900); }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.mark { color: var(--ink); background: var(--green); padding: 0 .12em; border-radius: 6px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }

/* ===== Announce ===== */
.announce { background: var(--ink); color: var(--paper); font-size: .9rem; }
.announce__inner { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 40px; text-align: center; }
.announce a { color: var(--green); font-weight: 600; }
.announce a:hover { text-decoration: underline; }
.announce__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: 0 0 8px; }

/* ===== Nav ===== */
.nav { position: sticky; top: 0; z-index: 100; background: var(--paper); transition: box-shadow .25s ease, background .25s ease; }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 74px; }
.nav__logo img { height: 30px; width: auto; }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { font-weight: 500; font-size: .98rem; color: var(--text); padding: 6px 0; border-bottom: 2px solid transparent; transition: border-color .15s, color .15s; }
.nav__links a:hover { color: var(--ink); border-color: var(--green); }
.nav__cta { padding: 11px 20px; font-size: .95rem; }
.nav.scrolled { box-shadow: 0 8px 30px -18px rgba(24, 31, 16, .4); background: rgba(247, 242, 231, .92); backdrop-filter: blur(8px); }

/* ===== Hero ===== */
.hero { position: relative; padding: 64px 0 36px; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__title { font-size: clamp(2.7rem, 6vw, 4.6rem); line-height: .98; }
.hero__sub { margin: 26px 0 30px; font-size: 1.2rem; max-width: 36ch; color: var(--text); }

.waitlist-form { display: grid; grid-template-columns: 1fr auto; gap: 12px; max-width: 500px; }
.waitlist-form--center { margin: 0 auto; }
.waitlist-form__input {
  font-family: var(--font-body); font-size: 1.02rem; padding: 15px 20px;
  border-radius: 999px; border: 2px solid var(--line); outline: none;
  background: #fff; color: var(--ink); min-width: 0; transition: border-color .15s;
}
.waitlist-form__input::placeholder { color: #9aa28c; }
.waitlist-form__input:focus { border-color: var(--green); }
.waitlist-form__note { grid-column: 1 / -1; font-size: .9rem; color: var(--muted); margin-top: 2px; }
.waitlist-form.is-done .waitlist-form__input, .waitlist-form.is-done .btn { display: none; }
.waitlist-form__success {
  grid-column: 1 / -1; display: flex; align-items: center; gap: 11px;
  font-weight: 600; font-size: 1.05rem; color: var(--ink);
  background: rgba(41, 199, 0, .16); padding: 15px 20px; border-radius: var(--radius-sm);
}
.waitlist-form__success::before { content: "✓"; display: grid; place-items: center; flex: 0 0 26px; height: 26px; background: var(--green); color: var(--ink); border-radius: 50%; font-size: .9rem; font-weight: 700; }

/* Hero visual */
.hero__visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 480px; perspective: 1300px; }
.blob { position: absolute; width: 118%; padding-bottom: 118%; height: 0; border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%; background: var(--peach); z-index: 0; animation: blob-spin 28s linear infinite; }
@keyframes blob-spin { to { transform: rotate(360deg); } }
.phone { position: relative; z-index: 2; width: 286px; background: var(--ink); border-radius: 42px; padding: 12px; box-shadow: var(--shadow); transform-style: preserve-3d; transition: transform .35s cubic-bezier(.2, .7, .2, 1); will-change: transform; }
.phone::before { content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 72px; height: 6px; border-radius: 3px; background: rgba(255, 255, 255, .2); }
.phone__screen { background: #eef1ea; border-radius: 31px; padding: 30px 15px 16px; }
.wallet-top { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-display); color: #6a7268; font-size: .95rem; padding: 0 4px 12px; }
.wallet-top__dots { letter-spacing: 2px; }

.pass {
  --pass-bg: var(--green); --pass-fg: var(--ink); --pass-accent: var(--ink);
  --pass-soft: rgba(24, 31, 16, .12); --pass-line: rgba(24, 31, 16, .4);
  background: var(--pass-bg); color: var(--pass-fg);
  border-radius: 20px; padding: 17px 17px 16px; box-shadow: 0 16px 28px -16px rgba(17, 79, 10, .4);
}
/* Per-business brand themes */
.pass--coffee { --pass-bg: #36261a; --pass-fg: #f4e8d5; --pass-accent: #db9b53; --pass-soft: rgba(244, 232, 213, .12); --pass-line: rgba(244, 232, 213, .34); box-shadow: 0 18px 32px -16px rgba(54, 38, 26, .6); }
.pass--barber { --pass-bg: #15181d; --pass-fg: #eff2f6; --pass-accent: #e1473f; --pass-soft: rgba(239, 242, 246, .10); --pass-line: rgba(239, 242, 246, .32); box-shadow: 0 18px 32px -16px rgba(21, 24, 29, .7); }
.pass--nails { --pass-bg: #f6dbe7; --pass-fg: #4d2740; --pass-accent: #d56aa0; --pass-soft: rgba(77, 39, 64, .10); --pass-line: rgba(77, 39, 64, .3); box-shadow: 0 18px 32px -16px rgba(213, 106, 160, .45); }
.pass--lunch { --pass-bg: #b54a26; --pass-fg: #fceee4; --pass-accent: #f3c9a0; --pass-soft: rgba(252, 238, 228, .14); --pass-line: rgba(252, 238, 228, .36); box-shadow: 0 18px 32px -16px rgba(181, 74, 38, .5); }
.pass--gym { --pass-bg: #15171d; --pass-fg: #eef1f6; --pass-accent: #c2f24a; --pass-soft: rgba(238, 241, 246, .1); --pass-line: rgba(238, 241, 246, .32); box-shadow: 0 18px 32px -16px rgba(21, 23, 29, .7); }
.pass--bakker { --pass-bg: #7a4a22; --pass-fg: #f7ead3; --pass-accent: #e6b264; --pass-soft: rgba(247, 234, 211, .12); --pass-line: rgba(247, 234, 211, .34); box-shadow: 0 18px 32px -16px rgba(122, 74, 34, .55); }
.pass--restaurant { --pass-bg: #5e2530; --pass-fg: #f6e7d4; --pass-accent: #e3b872; --pass-soft: rgba(246, 231, 212, .12); --pass-line: rgba(246, 231, 212, .34); box-shadow: 0 18px 32px -16px rgba(94, 37, 48, .55); }

.pass__head { display: flex; align-items: center; gap: 12px; }
.pass__avatar { width: 42px; height: 42px; border-radius: 12px; background: var(--pass-accent); color: var(--pass-bg); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.25rem; }
.pass__biz { display: flex; flex-direction: column; line-height: 1.2; }
.pass__biz strong { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; }
.pass__biz span { font-size: .8rem; opacity: .8; }
.pass__brand { margin-left: auto; }
.pass__brand img { height: 30px; width: auto; opacity: .85; }
.pass__reward { display: flex; flex-direction: column; margin: 15px 0 14px; background: var(--pass-soft); border-radius: 12px; padding: 10px 13px; }
.pass__reward-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; opacity: .75; }
.pass__reward-value { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; }
.pass__stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-bottom: 12px; }
.pass--sm .pass__stamps { gap: 7px; }
.dot { aspect-ratio: 1; border-radius: 50%; border: 2px dashed var(--pass-line); display: grid; place-items: center; transition: transform .2s ease; }
.dot.is-on { background: var(--pass-accent); border: 2px solid var(--pass-accent); color: var(--pass-bg); }
.dot.is-on:empty::after { content: ""; width: 7px; height: 7px; background: var(--pass-bg); border-radius: 50%; }
.dot.is-on svg { width: 56%; height: 56%; }
.pass__progress { font-size: .85rem; opacity: .85; }
.pass__barcode { margin-top: 14px; height: 44px; border-radius: 8px; background-color: rgba(255, 255, 255, .92); background-image: repeating-linear-gradient(90deg, var(--ink) 0 3px, transparent 3px 7px, var(--ink) 7px 9px, transparent 9px 14px); }
.pass__by { display: flex; align-items: center; gap: 6px; margin-top: 13px; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--pass-fg); opacity: .5; }
.pass__by img { display: block; }
.pass--sm .pass__by { margin-top: 11px; }

.float-card { position: absolute; z-index: 3; background: #fff; border-radius: 14px; box-shadow: var(--shadow); padding: 11px 14px; font-size: .82rem; animation: floaty 5.5s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.float-card--toast { top: 30px; left: -8px; display: flex; align-items: center; gap: 10px; animation-delay: -1.2s; }
.float-card--toast strong { display: block; font-weight: 600; color: var(--ink); }
.float-card--toast span { color: var(--muted); }
.float-card__check { display: grid; place-items: center; flex: 0 0 26px; height: 26px; background: var(--green); color: var(--ink); border-radius: 50%; font-weight: 700; }
.float-card--wallet { bottom: 34px; right: -10px; display: flex; flex-direction: column; gap: 6px; animation-duration: 7s; animation-delay: -3.4s; }
.float-card__pill { font-weight: 600; color: var(--ink); }
.float-card__pill::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--green); margin-right: 7px; vertical-align: middle; }

/* Trust strip */
.trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line); }
.trust__label { font-weight: 600; color: var(--muted); font-size: .88rem; }
.trust__list { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.trust__list li { font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); opacity: .55; }

/* ===== Stat band ===== */
.statband { background: var(--ink); color: var(--paper); padding: 76px 0; }
.statband__grid { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center; }
.statband__num { font-family: var(--font-display); font-size: clamp(5rem, 13vw, 11rem); line-height: .8; color: var(--green); }
.statband__body h2 { color: var(--paper); font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.08; max-width: 22ch; }
.statband__body p { margin: 16px 0 22px; color: rgba(247, 242, 231, .72); max-width: 50ch; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { font-size: .9rem; font-weight: 500; padding: 8px 15px; border-radius: 999px; border: 1px solid rgba(247, 242, 231, .24); color: var(--paper); }

/* ===== Sections ===== */
.section { padding: 96px 0; }
.section--paper2 { background: var(--paper-2); }
.section__head { max-width: 680px; margin: 0 0 56px; }
.section__head h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); margin-top: 8px; }
.section__lead { margin-top: 16px; color: var(--muted); font-size: 1.12rem; max-width: 52ch; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: transform .18s ease, box-shadow .18s ease; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.step__num { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--green); line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 1.5rem; margin-bottom: 10px; }
.step p { color: var(--muted); }

/* Showcase */
.showcase { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 920px; margin: 0 auto; }
.pass--sm { box-shadow: var(--shadow); transition: transform .3s cubic-bezier(.2, .7, .2, 1), box-shadow .3s ease; }
.pass--sm .pass__brand { display: none; }
.showcase .pass--sm:hover { transform: translateY(-10px) scale(1.025) rotate(-.4deg); }
.showcase .pass--sm:hover .dot.is-on { transform: scale(1.08); }

/* Features */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; min-height: 184px; transition: transform .18s ease, box-shadow .18s ease; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.feature h3 { font-size: 1.45rem; margin-bottom: 10px; }
.feature p { color: var(--muted); }
.feature--green { background: var(--green); border-color: var(--green); }
.feature--green h3, .feature--green p { color: var(--ink); }
.feature--green p { opacity: .82; }
.feature--peach { background: var(--peach); border-color: var(--peach); }
.feature--ink { background: var(--ink); border-color: var(--ink); }
.feature--ink h3 { color: var(--paper); }
.feature--ink p { color: rgba(247, 242, 231, .72); }

/* CTA */
.cta { background: var(--green); padding: 92px 0; text-align: center; }
.cta__inner { max-width: 660px; margin: 0 auto; }
.cta h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--ink); }
.cta p { margin: 18px auto 30px; font-size: 1.15rem; color: var(--green-900); max-width: 46ch; }
.cta .waitlist-form__input { border-color: transparent; }
.cta .waitlist-form__note { color: var(--green-900); opacity: .8; }
.cta .waitlist-form__success { background: var(--ink); color: var(--paper); }
.cta .waitlist-form__success::before { background: var(--green); color: var(--ink); }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; background: #fff; }
.faq__item summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--font-display); font-size: 1.2rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--green-700); font-size: 1.5rem; line-height: 1; flex: 0 0 auto; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { color: var(--muted); padding: 0 0 20px; max-width: 64ch; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: var(--paper); padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.footer__brand img { height: 30px; margin-bottom: 16px; }
.footer__brand p { color: rgba(247, 242, 231, .68); font-size: .95rem; max-width: 30ch; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h4 { font-family: var(--font-body); font-weight: 600; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(247, 242, 231, .5); margin-bottom: 4px; }
.footer__col a { color: rgba(247, 242, 231, .85); font-size: .96rem; }
.footer__col a:hover { color: var(--green); }
.footer__cta { align-self: flex-start; margin-top: 6px; }
.footer__cta:hover { color: var(--ink); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(247, 242, 231, .14); font-size: .88rem; color: rgba(247, 242, 231, .6); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__visual { order: -1; min-height: 0; }
  .hero__sub { max-width: none; }
  .statband__grid { grid-template-columns: 1fr; gap: 18px; }
  .steps, .features, .showcase { grid-template-columns: 1fr; }
  .showcase { max-width: 420px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .waitlist-form { grid-template-columns: 1fr; }
  .float-card { display: none !important; }
  .blob { width: 130%; padding-bottom: 130%; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .features .feature { min-height: 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .step:hover, .feature:hover { transform: none; }
  .float-card, .blob { animation: none; }
  .phone, .dot { transition: none; }
}


/* =====================================================================
   Dashboard page styles (merged from dashboard.css)
   ===================================================================== */

/* ===== Dashboard page (marketing) ===== */
.dhero { padding: 56px 0 0; }
.dhero__inner { max-width: 820px; margin: 0 auto; text-align: center; }
.dhero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1; }
.dhero__sub { margin: 22px auto 28px; font-size: 1.18rem; color: var(--text); max-width: 56ch; }
.dhero__cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.dhero__appwrap { margin-top: 52px; }

/* ===== App window ===== */
.appwin {
  background: #eef1ea; border: 1px solid rgba(24, 31, 16, .1); border-radius: 22px;
  box-shadow: 0 44px 90px -44px rgba(24, 31, 16, .5); overflow: hidden;
  display: grid; grid-template-columns: 230px 1fr; text-align: left;
}
.app-side { background: var(--ink); color: var(--paper); padding: 22px 16px; display: flex; flex-direction: column; gap: 22px; }
.app-logo img { height: 26px; width: auto; }
.app-nav { display: flex; flex-direction: column; gap: 3px; }
.app-nav a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 10px; color: rgba(247, 242, 231, .7); font-weight: 500; font-size: .92rem; transition: background .15s, color .15s; }
.app-nav a svg { width: 18px; height: 18px; flex: 0 0 18px; }
.app-nav a:hover { background: rgba(255, 255, 255, .07); color: #fff; }
.app-nav a.is-active { background: var(--green); color: var(--ink); }
.app-side__foot { margin-top: auto; display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid rgba(247, 242, 231, .13); }
.app-side__av { width: 34px; height: 34px; border-radius: 9px; background: var(--green); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); flex: 0 0 34px; }
.app-side__foot strong { display: block; font-size: .9rem; }
.app-side__foot small { color: rgba(247, 242, 231, .6); font-size: .78rem; }

.app-main { background: #eef1ea; padding: 22px 24px 26px; min-width: 0; }
.app-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.app-top h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; color: var(--ink); }
.app-top__sub { color: var(--muted); font-size: .85rem; margin-top: 2px; }
.app-top__right { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.app-pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; font-weight: 500; font-size: .82rem; display: inline-flex; gap: 6px; align-items: center; color: var(--ink); }
.app-btn { background: var(--green); color: var(--ink); border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: .82rem; border: 0; display: inline-flex; gap: 6px; align-items: center; }

/* KPI cards */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 16px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 15px 16px; }
.kpi__label { color: var(--muted); font-size: .8rem; display: flex; align-items: center; gap: 7px; }
.kpi__label svg { width: 15px; height: 15px; }
.kpi__num { font-family: var(--font-display); font-weight: 400; font-size: 2.1rem; line-height: 1; margin: 9px 0 7px; color: var(--ink); }
.kpi__delta { font-size: .76rem; font-weight: 600; color: var(--green-900); background: rgba(41, 199, 0, .15); padding: 3px 8px; border-radius: 999px; }

/* Panels */
.panel-grid { display: grid; gap: 14px; }
.panel-grid--2 { grid-template-columns: 1.7fr 1fr; }
.panel-grid--even { grid-template-columns: 1fr 1fr; }
.panel { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; }
.panel__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; gap: 10px; }
.panel__title { font-weight: 600; font-size: .95rem; color: var(--ink); }
.panel__hint { font-size: .78rem; color: var(--muted); }

/* Charts */
.chart { width: 100%; height: auto; display: block; }
.donut { display: flex; gap: 18px; align-items: center; }
.donut__svg { flex: 0 0 auto; }
.donut__center { font-family: var(--font-display); font-size: 1.5rem; fill: var(--ink); }
.donut__legend { display: flex; flex-direction: column; gap: 9px; font-size: .84rem; }
.donut__legend span { display: flex; align-items: center; gap: 8px; color: var(--text); }
.dot-key { width: 10px; height: 10px; border-radius: 50%; flex: 0 0 10px; }

/* Feed */
.feed { display: flex; flex-direction: column; gap: 13px; }
.feed__item { display: flex; gap: 11px; align-items: flex-start; font-size: .86rem; color: var(--text); }
.feed__ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(41, 199, 0, .14); color: var(--green-900); display: grid; place-items: center; flex: 0 0 30px; }
.feed__ic svg { width: 16px; height: 16px; }
.feed__item b { font-weight: 600; color: var(--ink); }
.feed__time { color: var(--muted); font-size: .76rem; margin-top: 2px; }

/* Top list */
.toplist { display: flex; flex-direction: column; gap: 13px; }
.toplist__row { display: flex; align-items: center; gap: 11px; }
.toplist__bar { flex: 1; height: 7px; background: var(--line); border-radius: 4px; overflow: hidden; }
.toplist__bar i { display: block; height: 100%; background: var(--green); border-radius: 4px; }
.toplist__val { font-weight: 600; font-size: .82rem; color: var(--ink); flex: 0 0 auto; }
.toplist__name { font-size: .85rem; color: var(--text); flex: 0 0 92px; }

/* Avatars */
.av { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; font-weight: 600; font-size: .8rem; flex: 0 0 32px; }
.av--a { background: #36261a; color: #f4e8d5; }
.av--b { background: #15181d; color: #eff2f6; }
.av--c { background: #f6dbe7; color: #4d2740; }
.av--d { background: rgba(41, 199, 0, .2); color: var(--green-900); }
.av--e { background: rgba(224, 150, 45, .2); color: #92510a; }

/* Table */
.table-wrap { overflow-x: auto; }
.dtable { width: 100%; border-collapse: collapse; font-size: .86rem; min-width: 460px; }
.dtable th { text-align: left; color: var(--muted); font-weight: 500; font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; padding: 0 10px 11px; }
.dtable td { padding: 12px 10px; border-top: 1px solid var(--line); color: var(--text); }
.dtable__klant { display: flex; align-items: center; gap: 10px; }
.dtable__klant b { font-weight: 600; color: var(--ink); }
.prog { display: flex; align-items: center; gap: 9px; }
.prog__track { width: 64px; height: 6px; background: var(--line); border-radius: 3px; overflow: hidden; }
.prog__track i { display: block; height: 100%; background: var(--green); border-radius: 3px; }
.prog__txt { font-size: .78rem; color: var(--muted); }
.badge { font-size: .73rem; font-weight: 600; padding: 4px 9px; border-radius: 999px; white-space: nowrap; }
.badge--active { color: var(--green-900); background: rgba(41, 199, 0, .15); }
.badge--almost { color: #92510a; background: rgba(224, 150, 45, .18); }
.badge--ready { color: var(--paper); background: var(--ink); }

/* Rewards + coupons */
.rewards { display: flex; flex-direction: column; gap: 11px; }
.reward { display: flex; align-items: center; gap: 13px; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; }
.reward__ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(41, 199, 0, .14); color: var(--green-900); display: grid; place-items: center; flex: 0 0 40px; }
.reward__ic svg { width: 20px; height: 20px; }
.reward__meta b { display: block; font-weight: 600; color: var(--ink); font-size: .92rem; }
.reward__meta small { color: var(--muted); font-size: .8rem; }
.reward__stat { margin-left: auto; text-align: right; }
.reward__stat b { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); display: block; line-height: 1; }
.reward__stat small { font-size: .72rem; color: var(--muted); }

/* Heatmap */
.heat { display: grid; grid-template-columns: 64px repeat(7, 1fr); gap: 5px; align-items: center; }
.heat__corner, .heat__col, .heat__rowlabel { font-size: .72rem; color: var(--muted); }
.heat__col { text-align: center; }
.heat__rowlabel { white-space: nowrap; }
.heat-cell { aspect-ratio: 1.6; border-radius: 5px; background: var(--green); }

/* ===== Zig-zag feature sections ===== */
.dsection { padding: 84px 0; }
.dsection--alt { background: var(--paper-2); }
.dsection__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.dsection--flip .dsection__copy { order: 2; }
.dsection__copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
.dsection__copy > p { margin-top: 16px; color: var(--muted); font-size: 1.1rem; }
.checks { display: flex; flex-direction: column; gap: 11px; margin-top: 22px; }
.checks li { display: flex; gap: 11px; align-items: flex-start; color: var(--text); }
.check { flex: 0 0 22px; height: 22px; background: var(--green); color: var(--ink); border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 700; margin-top: 1px; }
.dsection__media { position: relative; }
.dsection__media .panel { box-shadow: 0 36px 70px -36px rgba(24, 31, 16, .4); }
.dsection__media .panel + .panel { margin-top: 14px; }

/* ===== Pop-in animations (only when .js-anim is set, i.e. motion allowed) ===== */
.js-anim .kpi,
.js-anim .panel { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s cubic-bezier(.2, .7, .2, 1); }
.in .kpi, .in .panel { opacity: 1; transform: none; }

.js-anim .kpi__num,
.js-anim .reward__stat b,
.js-anim .toplist__val { opacity: 0; transition: opacity .5s ease .1s; }
.js-anim .donut__center { opacity: 0; transition: opacity .5s ease .3s; }
.in .kpi__num, .in .reward__stat b, .in .toplist__val, .in .donut__center { opacity: 1; }

.js-anim .toplist__bar i,
.js-anim .prog__track i { transform: scaleX(0); transform-origin: left center; transition: transform 1s cubic-bezier(.2, .7, .2, 1); }
.in .toplist__bar i, .in .prog__track i { transform: scaleX(1); }

.js-anim .heat-cell { transform: scale(0); transition: transform .5s cubic-bezier(.2, .8, .3, 1); }
.in .heat-cell { transform: scale(1); }

.js-anim .donut-arc { stroke-dashoffset: 205; transition: stroke-dashoffset 1.5s cubic-bezier(.2, .7, .2, 1); }
.in .donut-arc { stroke-dashoffset: 0; }

.js-anim .chart-line { transition: stroke-dashoffset 1.7s cubic-bezier(.3, .6, .2, 1); }
.js-anim .chart-area,
.js-anim .chart-dot { opacity: 0; transition: opacity .9s ease .5s; }
.in .chart-area, .in .chart-dot { opacity: 1; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .appwin { grid-template-columns: 1fr; }
  .app-side { flex-direction: row; align-items: center; gap: 14px; padding: 12px 14px; overflow-x: auto; }
  .app-logo { flex: 0 0 auto; }
  .app-nav { flex-direction: row; gap: 4px; }
  .app-nav a span { display: none; }
  .app-side__foot { display: none; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .panel-grid--2, .panel-grid--even { grid-template-columns: 1fr; }
  .dsection__grid { grid-template-columns: 1fr; gap: 32px; }
  .dsection--flip .dsection__copy { order: 0; }
}
@media (max-width: 560px) {
  .app-main { padding: 16px; }
  .kpi__num { font-size: 1.8rem; }
  .app-top { flex-wrap: wrap; }
  .app-top__right { margin-left: auto; }
}
@media (prefers-reduced-motion: reduce) {
  .dsection__media .panel { box-shadow: 0 20px 40px -24px rgba(24, 31, 16, .35); }
}

/* =====================================================================
   ROI calculator (homepage)
   ===================================================================== */
.roi__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.roi__panel { border-radius: var(--radius); padding: 32px 30px; }
.roi__controls { background: #fff; border: 1px solid var(--line); }
.roi__controls h3 { font-size: 1.4rem; margin-bottom: 26px; }

.roi__field { margin-bottom: 24px; }
.roi__field-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.roi__field-top label { font-weight: 500; color: var(--text); font-size: 1rem; }
.roi__val { font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); flex: 0 0 auto; }

.roi__field input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 8px; border-radius: 999px; margin: 0;
  background: linear-gradient(to right, var(--green) 0%, var(--green) var(--pct, 12%), var(--line) var(--pct, 12%), var(--line) 100%);
  outline: none; cursor: pointer;
}
.roi__field input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%; background: var(--green); border: 4px solid #fff; box-shadow: 0 2px 10px -2px rgba(24, 31, 16, .45); cursor: pointer; transition: transform .12s ease; }
.roi__field input[type="range"]:active::-webkit-slider-thumb { transform: scale(1.18); }
.roi__field input[type="range"]:focus-visible::-webkit-slider-thumb { outline: 3px solid var(--green-900); outline-offset: 2px; }
.roi__field input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border: 4px solid #fff; border-radius: 50%; background: var(--green); box-shadow: 0 2px 10px -2px rgba(24, 31, 16, .45); cursor: pointer; }
.roi__field input[type="range"]::-moz-range-track { height: 8px; border-radius: 999px; background: transparent; }

.roi__scenario-label { display: block; font-weight: 500; font-size: .95rem; color: var(--muted); margin-bottom: 12px; }
.roi__seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.roi__seg-btn { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 11px 6px; border: 1px solid var(--line); background: #fff; border-radius: var(--radius-sm); cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: .92rem; color: var(--text); transition: background .15s, border-color .15s, color .15s; }
.roi__seg-btn small { font-weight: 500; font-size: .76rem; color: var(--muted); }
.roi__seg-btn:hover { border-color: var(--green); }
.roi__seg-btn.is-active { background: var(--green); border-color: var(--green); color: var(--ink); }
.roi__seg-btn.is-active small { color: var(--green-900); }

.roi__results { background: var(--ink); color: var(--paper); display: flex; flex-direction: column; }
.roi__results-label { font-size: .82rem; color: rgba(247, 242, 231, .68); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.roi__big { margin: 8px 0 22px; }
.roi__big-num { font-family: var(--font-display); font-size: clamp(3rem, 7.5vw, 4.6rem); line-height: 1; color: var(--green); display: inline-block; }
.roi__big-num.pulse { animation: roi-pulse .42s ease; }
@keyframes roi-pulse { 0% { transform: scale(1); } 38% { transform: scale(1.05); } 100% { transform: scale(1); } }

.roi__bars { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.roi__barrow { display: grid; grid-template-columns: 104px 1fr; align-items: center; gap: 12px; }
.roi__barrow-label { font-size: .85rem; color: rgba(247, 242, 231, .7); }
.roi__track { height: 16px; border-radius: 999px; background: rgba(247, 242, 231, .1); overflow: hidden; display: flex; }
.roi__fill { height: 100%; transition: width .55s cubic-bezier(.2, .7, .2, 1); }
.roi__fill--base { background: rgba(247, 242, 231, .5); }
.roi__fill--extra { background: var(--green); }

.roi__subs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.roi__sub { background: rgba(247, 242, 231, .08); border-radius: var(--radius-sm); padding: 15px 16px; }
.roi__sub-num { display: block; font-family: var(--font-display); font-size: 1.8rem; color: var(--paper); line-height: 1.1; }
.roi__sub-label { font-size: .82rem; color: rgba(247, 242, 231, .68); }

.roi__cta { width: 100%; margin-top: auto; }
.roi__note { font-size: .78rem; color: rgba(247, 242, 231, .55); margin-top: 16px; }

@media (max-width: 820px) { .roi__grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) {
  .roi__big-num.pulse { animation: none; }
  .roi__fill { transition: none; }
}

/* =====================================================================
   Dark section variant + paper-vs-digital comparison
   ===================================================================== */
.section--ink { background: var(--ink); }
.section--ink .section__head h2 { color: var(--paper); }
.section--ink .section__lead { color: rgba(247, 242, 231, .72); }
.section--ink .eyebrow { color: var(--green); background: rgba(41, 199, 0, .16); }
.section--ink .eyebrow__dot { background: var(--green); }

.compare { max-width: 940px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 36px 70px -36px rgba(0, 0, 0, .5); }
.compare__head, .compare__row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.compare__row { border-top: 1px solid var(--line); transition: background .15s ease; }
.compare__row:hover { background: rgba(24, 31, 16, .025); }

.compare__col-h { display: flex; align-items: center; gap: 9px; padding: 18px 20px; font-family: var(--font-display); font-size: 1.15rem; }
.compare__hi { width: 20px; height: 20px; flex: 0 0 20px; }
.compare__hi--muted { color: var(--muted); }
.compare__hi--green { color: var(--green); }
.compare__col-h--paper { color: var(--muted); }
.compare__col-h--us { color: var(--ink); background: rgba(41, 199, 0, .07); }
.compare__badge { font-family: var(--font-body); font-weight: 600; font-size: .64rem; text-transform: uppercase; letter-spacing: .06em; background: var(--green); color: var(--ink); padding: 3px 8px; border-radius: 999px; margin-left: 4px; }

.compare__feature { display: flex; align-items: center; padding: 16px 20px; font-weight: 600; color: var(--ink); font-size: .96rem; }
.compare__cell { display: flex; align-items: flex-start; gap: 11px; padding: 16px 20px; font-size: .95rem; line-height: 1.4; }
.compare__cell--paper { color: var(--muted); }
.compare__cell--us { color: var(--text); background: rgba(41, 199, 0, .07); }
.compare__icon { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; display: inline-grid; place-items: center; margin-top: 1px; }
.compare__icon svg { width: 12px; height: 12px; }
.compare__cell--us .compare__icon { background: var(--green); color: var(--ink); }
.compare__cell--paper .compare__icon { background: rgba(24, 31, 16, .1); color: var(--muted); }

.compare__foot { max-width: 940px; margin: 28px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.compare__foot p { color: rgba(247, 242, 231, .82); font-size: 1.05rem; max-width: 58ch; }
.compare__foot p strong { color: var(--paper); }
.compare__foot .btn { flex: 0 0 auto; }

@media (max-width: 720px) {
  .compare__head { grid-template-columns: 1fr 1fr; }
  .compare__corner { display: none; }
  .compare__row { grid-template-columns: 1fr 1fr; }
  .compare__feature { grid-column: 1 / -1; padding: 14px 16px 2px; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
  .compare__cell, .compare__col-h { padding: 12px 16px; font-size: .9rem; }
  .compare__col-h { font-size: 1rem; }
}

/* =====================================================================
   Niche landing pages (pain points, reward chips, clickable trust)
   ===================================================================== */
.trust__list a { color: inherit; transition: color .15s, opacity .15s; }
.trust__list li:has(a) { opacity: 1; }
.trust__list a:hover { color: var(--green); text-decoration: underline; }

.pains { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 720px) { .pains { grid-template-columns: 1fr; } }

.rewardlist { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.reward-chip { display: flex; flex-direction: column; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 22px; transition: transform .18s ease, box-shadow .18s ease; }
.reward-chip:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.reward-chip__ico { width: 46px; height: 46px; border-radius: 13px; background: rgba(41, 199, 0, .12); color: var(--green-900); display: grid; place-items: center; }
.reward-chip__ico svg { width: 24px; height: 24px; }
.reward-chip strong { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; color: var(--ink); line-height: 1.1; }
.reward-chip span { font-size: .88rem; color: var(--muted); }
@media (max-width: 860px) { .rewardlist { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .rewardlist { grid-template-columns: 1fr; } }

/* Voor-wie hub */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 980px; margin: 0 auto; }
.hubcard { display: flex; flex-direction: column; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; color: var(--text); transition: transform .18s ease, box-shadow .18s ease; }
a.hubcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.hubcard__ic { width: 50px; height: 50px; border-radius: 14px; background: rgba(41, 199, 0, .12); color: var(--green-900); display: grid; place-items: center; }
.hubcard__ic svg { width: 26px; height: 26px; }
.hubcard strong { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--ink); }
.hubcard__tag { color: var(--muted); font-size: .92rem; flex: 1; }
.hubcard__go { font-weight: 600; color: var(--green-900); font-size: .92rem; }
.hubcard--soon { border-style: dashed; }
@media (max-width: 820px) { .hub-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .hub-grid { grid-template-columns: 1fr; } }

/* ===== GIDS (content hub) ===== */
.gids-hero { padding: 72px 0 8px; text-align: center; }
.gids-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.1rem, 5vw, 3.2rem); line-height: 1.06; color: var(--ink); margin: 14px 0 0; }
.gids-hero__lead { color: var(--muted); font-size: 1.12rem; line-height: 1.6; max-width: 620px; margin: 16px auto 0; }

.gids-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gidscard { display: flex; flex-direction: column; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 26px; color: var(--text); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
a.gidscard:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); border-color: rgba(41, 199, 0, .5); }
.gidscard__cat { font-size: .78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--green-900); }
.gidscard strong { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; line-height: 1.12; color: var(--ink); }
.gidscard__excerpt { color: var(--muted); font-size: .96rem; line-height: 1.55; flex: 1; }
.gidscard__go { font-weight: 600; color: var(--green-900); font-size: .92rem; }
@media (max-width: 900px) { .gids-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .gids-grid { grid-template-columns: 1fr; } }
.gids-more { text-align: center; margin-top: 36px; }

/* Article */
.article { padding: 30px 0 8px; }
.breadcrumb { font-size: .86rem; color: var(--muted); margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--green-900); text-decoration: underline; }
.breadcrumb span[aria-hidden] { opacity: .5; }
.article__cat { margin-bottom: 16px; }
.article__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.6vw, 3rem); line-height: 1.08; color: var(--ink); margin: 0 0 18px; }
.article__lead { font-size: 1.2rem; line-height: 1.62; color: var(--text); margin: 0 0 22px; }
.article__meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: .9rem; color: var(--muted); padding-bottom: 26px; border-bottom: 1px solid var(--line); }

/* TL;DR box */
.tldr { background: linear-gradient(180deg, rgba(41, 199, 0, .08), rgba(41, 199, 0, .03)); border: 1px solid rgba(41, 199, 0, .28); border-radius: var(--radius); padding: 24px 26px; margin: 30px 0; }
.tldr__title { font-family: var(--font-body); font-weight: 600; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--green-900); margin: 0 0 14px; }
.tldr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.tldr li { position: relative; padding-left: 28px; color: var(--text); line-height: 1.5; }
.tldr li::before { content: ""; position: absolute; left: 0; top: 3px; width: 17px; height: 17px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(41, 199, 0, .15); }
.tldr li::after { content: ""; position: absolute; left: 5px; top: 8px; width: 6px; height: 3.5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }

/* Table of contents */
.toc { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin: 0 0 34px; background: var(--paper-2); }
.toc__label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.toc ol { margin: 12px 0 0; padding-left: 20px; display: grid; gap: 8px; }
.toc a { color: var(--text); text-decoration: none; }
.toc a:hover { color: var(--green-900); text-decoration: underline; }

/* Prose typography */
.prose { max-width: 100%; }
.prose__block { scroll-margin-top: 90px; }
.prose h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.55rem, 3vw, 2rem); line-height: 1.14; color: var(--ink); margin: 40px 0 14px; }
.prose h3 { font-size: 1.18rem; font-weight: 600; color: var(--ink); margin: 26px 0 8px; }
.prose p { font-size: 1.06rem; line-height: 1.72; color: var(--text); margin: 0 0 16px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 24px; display: grid; gap: 9px; }
.prose li { font-size: 1.06rem; line-height: 1.6; color: var(--text); }
.prose li::marker { color: var(--green-700); }
.prose a { color: var(--green-900); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose a:hover { text-decoration-thickness: 2px; }
.prose strong { color: var(--ink); font-weight: 600; }

/* Comparison table */
.table-wrap { overflow-x: auto; margin: 0 0 20px; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; min-width: 520px; border-collapse: collapse; font-size: .98rem; }
.compare-table th, .compare-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table thead th { font-weight: 600; color: var(--ink); background: var(--paper-2); }
.compare-table thead th.is-us { background: rgba(41, 199, 0, .12); color: var(--green-900); border-top-right-radius: var(--radius-sm); }
.compare-table tbody td:first-child { font-weight: 500; color: var(--ink); }
.compare-table td.pos { color: var(--green-900); }
.compare-table td.neg { color: #a2482d; }
.compare-table td.mid { color: var(--muted); }
.compare-table tbody tr td.is-us, .compare-table tbody td:last-child { background: rgba(41, 199, 0, .05); }

@media (max-width: 640px) {
  .article__lead { font-size: 1.08rem; }
  .prose p, .prose li { font-size: 1rem; }
}

/* ===== Cookie consent ===== */
.cookie { position: fixed; z-index: 300; left: 16px; right: 16px; bottom: 16px; max-width: 720px; margin: 0 auto; background: var(--ink); color: var(--paper); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 24px; transform: translateY(160%); transition: transform .5s cubic-bezier(.16, .84, .44, 1); }
.cookie.is-in { transform: none; }
.cookie__inner { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cookie__text { flex: 1; min-width: 240px; }
.cookie__text strong { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; display: block; margin-bottom: 5px; color: #fff; }
.cookie__text p { font-size: .9rem; line-height: 1.55; color: rgba(247, 242, 231, .78); margin: 0; }
.cookie__text a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie__btn { font-family: var(--font-body); font-weight: 600; font-size: .92rem; padding: 11px 22px; border-radius: 999px; cursor: pointer; border: 1px solid transparent; transition: background .16s ease, border-color .16s ease, transform .16s ease; }
.cookie__btn:active { transform: translateY(1px); }
.cookie__btn--accept { background: var(--green); color: var(--ink); }
.cookie__btn--accept:hover { background: #34e000; }
.cookie__btn--deny { background: transparent; color: var(--paper); border-color: rgba(247, 242, 231, .32); }
.cookie__btn--deny:hover { border-color: rgba(247, 242, 231, .6); }
@media (max-width: 560px) {
  .cookie { padding: 18px 18px; }
  .cookie__actions { width: 100%; }
  .cookie__btn { flex: 1; }
}

/* ===== Pilot pitch page ===== */
.pilot-pill { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--green-900); background: rgba(41, 199, 0, .12); border: 1px solid rgba(41, 199, 0, .3); padding: 5px 13px; border-radius: 999px; }
.spots { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 600; color: var(--ink); margin-top: 16px; }
.spots__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(41, 199, 0, .2); }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
.checklist li { position: relative; padding-left: 40px; line-height: 1.5; color: var(--text); font-size: 1.06rem; }
.checklist li strong { color: var(--ink); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 0; width: 25px; height: 25px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(41, 199, 0, .14); }
.checklist li::after { content: ""; position: absolute; left: 8px; top: 8px; width: 9px; height: 5px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg); }

.founder { display: flex; gap: 22px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); max-width: 720px; margin: 0 auto; }
.founder__avatar { width: 62px; height: 62px; border-radius: 50%; background: var(--paper-2); display: grid; place-items: center; font-family: var(--font-display); font-size: 1.7rem; color: var(--green-900); flex-shrink: 0; }
.founder__photo { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.founder__body p { font-size: 1.08rem; line-height: 1.65; color: var(--text); margin: 0 0 14px; }
.founder__sign { font-family: var(--font-display); font-size: 1.35rem; color: var(--ink); }
.founder__role { display: block; font-family: var(--font-body); font-size: .9rem; color: var(--muted); margin-top: 2px; }

/* Article author card (E-E-A-T) */
.authorcard { display: flex; gap: 16px; align-items: center; margin: 40px 0 8px; padding: 20px 22px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.authorcard__photo { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.authorcard__body strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; color: var(--ink); }
.authorcard__body > span { display: block; font-size: .85rem; font-weight: 600; letter-spacing: .02em; color: var(--green-900); margin: 2px 0 6px; }
.authorcard__body p { font-size: .95rem; line-height: 1.55; color: var(--muted); margin: 0; }
.authorcard__body a { color: var(--green-900); font-weight: 600; white-space: nowrap; }
@media (max-width: 560px) { .authorcard { flex-direction: column; align-items: flex-start; text-align: left; } }

.pilot-cta-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 32px; box-shadow: var(--shadow); max-width: 540px; margin: 0 auto; }
.pilot-form { display: grid; gap: 13px; text-align: left; }
.pilot-form__field { display: grid; gap: 6px; }
.pilot-form__field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.pilot-form input, .pilot-form select { width: 100%; font-family: var(--font-body); font-size: 1rem; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); color: var(--ink); }
.pilot-form input:focus, .pilot-form select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(41, 199, 0, .15); }
.pilot-form button { width: 100%; justify-content: center; margin-top: 6px; }
.pilot-form__note { font-size: .84rem; color: var(--muted); text-align: center; margin: 6px 0 0; }
.pilot-form__success { text-align: center; padding: 14px 6px; }
.pilot-form__check { display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 50%; background: var(--green); color: var(--ink); font-size: 1.6rem; font-weight: 700; margin-bottom: 14px; }
.pilot-form__success strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--ink); margin-bottom: 8px; }
.pilot-form__success p { color: var(--muted); font-size: .98rem; line-height: 1.55; margin: 0; }

.painlist { list-style: none; margin: 32px auto 0; padding: 0; max-width: 600px; display: grid; gap: 16px; }
.painlist li { position: relative; padding-left: 34px; color: var(--text); line-height: 1.55; font-size: 1.08rem; }
.painlist li strong { color: var(--ink); font-weight: 600; }
.painlist li::before { content: ""; position: absolute; left: 0; top: .6em; width: 18px; height: 3px; border-radius: 2px; background: #cf8a63; }

.pilot-stat { text-align: center; max-width: 560px; margin: 0 auto; }
.pilot-stat__num { font-family: var(--font-display); font-weight: 400; font-size: clamp(3.4rem, 12vw, 5.4rem); line-height: 1; color: var(--green-900); }
.pilot-stat__label { color: var(--text); font-size: 1.1rem; line-height: 1.6; max-width: 460px; margin: 16px auto 0; }

@media (max-width: 560px) {
  .founder { flex-direction: column; gap: 14px; padding: 26px 22px; }
  .pilot-cta-card { padding: 30px 22px; }
  .painlist li { font-size: 1.02rem; }
}
