/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Fonts ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Tomarik';
  src: url('../fonts/tomarik-brush.woff2') format('woff2'),
       url('../fonts/tomarik-brush.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Shared ────────────────────────────────────────────── */
body {
  font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
  font-weight: 600;
  font-size: 18px;
}
h1, h2, h3 { line-height: 1.25; font-family: 'Tomarik', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;}
.btn, .btn-header, .btn-hero {
  font-family: 'Tomarik', 'Trebuchet MS', 'Lucida Sans Unicode', Arial, sans-serif;
  font-size: 24px;
  box-shadow: 6px 6px 0 #000;
  border-radius: 16px;
}
p { letter-spacing: -0.01em; }

a {
  color: #DD4A93;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color .15s, text-decoration-color .15s;
}
a:hover {
  color: #b8307a;
  text-decoration-color: transparent;
}

.cta a:not(.btn) {
  color: #000;
  /* text-decoration-color: rgba(255,255,255,.5); */
}
.cta a:not(.btn):hover {
  color: #fff;
  text-decoration-color: transparent;
}
/* ── Bell page ─────────────────────────────────────────── */
body.bell-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}


.card h1 { font-size: 1.7rem; font-weight: 700; color: #111; margin-bottom: 6px; }

.btn {
  display: block;
  padding: 16px 24px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  transition: opacity .15s, transform .1s;
}
.btn:last-child { margin-bottom: 0; }
.btn:active { opacity: .85; transform: scale(.98); }
.btn-whatsapp { background: #25d366; }
.btn-telegram  { background: #229ed9; }
.btn-signal    { background: #3a76f0; }

/* ── Push-first CTA on the bell page ───────────────────── */
.btn-push {
  display: block; width: 100%;
  padding: 18px 24px; border: none; border-radius: 14px;
  background: #EE7533; color: #fff;
  font-family: inherit; font-size: 1.15rem; font-weight: 700;
  cursor: pointer; transition: opacity .15s, transform .1s;
}
.btn-push:active { opacity: .85; transform: scale(.98); }
.btn-push:disabled { opacity: .6; cursor: default; }
.push-why { color: #5A6360; font-size: .85rem; margin: 10px 0 0; }

#push-status { margin-top: 14px; font-size: .95rem; line-height: 1.5; }
#push-status.ok  { color: #276749; font-weight: 600; }
#push-status.err { color: #c53030; }
#push-settings-link { display: block; margin-top: 14px; font-size: .9rem; color: #5A6360; }

/* The install nudge. On iOS this is not a preference: Safari refuses notification
   permission until the app is on the home screen. */
#install-guide { margin-top: 18px; text-align: left; background: #F4F6F5; border-radius: 14px; padding: 18px 20px; }
.ios-intro { font-size: .95rem; margin: 0 0 12px; color: #1A1A1A; }
.ios-steps { margin: 0; padding-left: 0; list-style: none; counter-reset: iosstep; }
.ios-steps li {
  counter-increment: iosstep; position: relative;
  padding-left: 34px; margin-bottom: 12px;
  font-size: .95rem; line-height: 1.45; color: #1A1A1A;
}
.ios-steps li:last-child { margin-bottom: 0; }
.ios-steps li::before {
  content: counter(iosstep); position: absolute; left: 0; top: -1px;
  width: 24px; height: 24px; border-radius: 50%;
  background: #EE7533; color: #fff; font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ios-icon { display: inline-block; }
#install-skip { display: block; margin-top: 14px; font-size: .85rem; color: #5A6360; text-decoration: underline; }

.other-channels { margin-top: 28px; text-align: left; }
.other-channels summary {
  cursor: pointer; color: #5A6360; font-size: .9rem;
  padding: 10px 0; list-style: revert;
}
.other-channels summary::-webkit-details-marker { color: #5A6360; }
.other-channels-note { color: #5A6360; font-size: .8rem; line-height: 1.5; margin: 4px 0 14px; }

.empty { color: #aaa; font-size: .9rem; font-style: italic; }

.card-footer { margin-top: 32px; color: #ccc; font-size: .75rem; }

/* ── Landing page ──────────────────────────────────────── */
header {
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header .logo { flex-shrink: 0; }
header .logo img { width: 200px; height: auto; }

.header-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  color: #111;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
}
.main-nav a:hover { color: #DD4A93; }

.btn-header {
  display: inline-block;
  padding: 10px 24px;
  background: #d4f04c;
  color: #000;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: transform .15s;
}
.btn-header:hover {
  color: #000;
  text-decoration-color: transparent;
  transform: translateY(-2px);
}

.hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 80px 80px 40px;
  margin: -80px 0 0;
  min-height: 40vh;
  background-image: url('../images/background-blue.svg');
  background-repeat: no-repeat;
  background-position: center 3vh;
  background-size: 150vw;
  /* border: 1px solid red; */
}

.hero-text {
  flex: 1;
  max-width: 540px;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid #111;
  border-radius: 99px;
  padding: 6px 16px;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e53e3e;
  flex-shrink: 0;
}

.hero h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.25rem;
  max-width: 440px;
  margin-bottom: 32px;
  font-weight: 600;
  line-height: 1.6;
}

.btn-hero {
  display: inline-block;
  padding: 14px 32px;
  background: #DD4A93;
  color: #fff;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform .15s;
}
.btn-hero:hover {
  color: #fff;
  text-decoration-color: transparent;
  transform: translateY(-2px);
}

.hero img {
  flex-shrink: 0;
  width: 460px;
  height: auto;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  padding: 0px 24px 80px 24px;
  background-color: #DC4A93;
  background-image: url('../images/blob-r.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90%;
  text-align: center;
}

.cta-inner { max-width: 560px; padding-top: 140px; }

.cta h3 { font-size: 2.5rem; margin-bottom: 24px; color: #fff; }

.cta p { margin-bottom: 32px; color: #fff; }

.cta .btn {
  display: inline-block;
  padding: 10px 40px;
  background: #d4f04c;
  color: #000;
  border-radius: 16px;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform .15s;
  box-shadow: 6px 6px 0 #000;
}

.cta .btn:hover {
  transform: translateY(-2px);
}

.how { padding: 56px 24px; background: #ABE4FF; }
.how-inner { max-width: 600px; margin: 0 auto; }
.how h3, .channels h3 { font-size: 3rem; font-weight: 700; margin-bottom: 24px; text-align: center; }

.steps { display: flex; flex-direction: column; gap: 16px; }
.step {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ABE4FF;
  border: 3px solid #000;
  border-radius: 22px;
  padding: 20px 24px;
  box-shadow: 6px 6px 0 #000;
}
.step .num {
  background: #111; color: #fff; border-radius: 22px;
  width: 64px; height: 64px; min-width: 64px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Tomarik', 'Trebuchet MS', Arial, sans-serif;
  font-size: 28px;
}
.step-text strong { display: block; margin-bottom: 2px; }
.step-text span { color: #000; }

.channels { padding: 56px 24px; }
.channels-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.en-sub { font-size: .85rem; color: #fff; font-style: italic; margin-bottom: 28px; text-align: center;}

.pill-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 99px;
  font-size: .95rem; font-weight: 600; color: #fff;
}
.pill-wa  { background: #25d366; }
.pill-tg  { background: #229ed9; }
.pill-sig { background: #020f89; }
.pill .tag { font-size: .7rem; font-weight: 400; opacity: .85; }

.about { padding: 56px 24px; background: #d4f04c; }
.about-inner { max-width: 600px; margin: 0 auto; }
.about h3 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; text-align: center; }
.about p { text-align: center; }
.about a { color: inherit; text-decoration: underline; }

.nieuwsbrief { padding: 56px 24px; background: #DD4A93; }
.nieuwsbrief-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.nieuwsbrief h3 { font-family: 'Tomarik', sans-serif; font-size: 2rem; color: #fff; margin-bottom: 12px; }
.nieuwsbrief p { color: #fff; margin-bottom: 28px; font-size: 1rem; }
.nieuwsbrief-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.nieuwsbrief-form input[type="email"] { flex: 1; min-width: 220px; padding: 14px 20px; border: none; border-radius: 16px; font-family: 'Hanken Grotesk', sans-serif; font-size: 1rem; outline: none; }
.nieuwsbrief-form .btn-nw { background: #d4f04c; color: #000; border: none; cursor: pointer; font-size: 18px; padding: 14px 28px; }
.nieuwsbrief-melding { margin-top: 16px; color: #fff; font-weight: 600; min-height: 24px; }

footer {
  padding: 40px 24px;
  text-align: center;
  color: #000;
  font-size: .8rem;
}
footer a { color: #000; text-decoration: underline; }
footer a:hover { color: #111; }


/* ── Thank you page ─────────────────────────────────────── */
body.thankyou-page {
  background: #d4f04c;
}

.thankyou-hero {
  display: flex;
  flex-direction: row;
  min-height: 85vh;
  overflow: hidden;
}

.thankyou-content {
  flex: 1;
  background: #d4f04c;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.thankyou-content h2 {
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1.1;
}

.thankyou-content p {
  font-size: 1.2rem;
  max-width: 440px;
}

.thankyou-image {
  flex: 1;
  overflow: hidden;
}

.thankyou-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

@media screen and (max-width: 768px) {
  .thankyou-hero { flex-direction: column; min-height: auto; }
  .thankyou-content { padding: 48px 24px; -webkit-mask-image: none; mask-image: none; }
  .thankyou-content h2 { font-size: 2.5rem; }
  .thankyou-image { height: 320px; }
}

/* ── Privacy page ──────────────────────────────────────── */
body.privacy-page { line-height: 1.7; }



.content { max-width: 640px; margin: 0 auto; padding: 48px 24px 80px; }

.content h2 { font-size: 1.9rem; font-weight: 800; margin-bottom: 8px; }
.updated { font-size: .85rem; color: #999; margin-bottom: 40px; }
.content h3 { font-weight: 700; margin: 32px 0 8px; }
.content p { margin-bottom: 12px; }
.content ul { margin: 0 0 12px 20px;  }
.content ul li { margin-bottom: 6px; }
.content a { color: #111; }

@media screen and (max-width: 1024px) {
  .hero { background-size: auto 100%; background-position: center center; }
}

@media screen and (max-width: 768px) {
  body { font-size: 16px; }
  header { padding: 16px 20px; flex-wrap: wrap; justify-content: center; gap: 12px; }
  .main-nav { display: none; }
  .hero { flex-direction: column; padding: 48px 24px 80px; gap: 0px; margin: -40px 0 0; background-size: auto 100%; background-position: center center; }
  .hero-text { max-width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero h2 { font-size: 2.4rem; }
  .hero img { width: 100%; max-width: 360px; }
  .cta { background-size: auto 100%, auto 100%; background-position: center center, center center; }
  .cta-inner { padding-top: 80px; }
  .cta .btn { padding-left: 16px; padding-right: 16px; }
  .step .num { width: 32px; height: 32px; min-width: 32px; font-size: .85rem; }
}

/* ── Auth pages ────────────────────────────────────────── */
body.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #f5f5f5;
}

.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 4px 32px rgba(0,0,0,.08);
}

.auth-card--wide { max-width: 480px; }

.auth-logo { margin-bottom: 24px; }
.auth-logo img { height: 40px; width: auto; }

.auth-card h1 { font-size: 1.5rem; margin-bottom: 8px; }

.auth-hint { font-size: .9rem; color: #666; margin-bottom: 20px; font-weight: 400; }
.auth-hint-inline { font-size: .8rem; color: #999; font-weight: 400; }

.auth-error {
  background: #fff0f0;
  border: 1px solid #fcc;
  color: #c00;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .9rem;
  margin-bottom: 16px;
  font-weight: 400;
}

.auth-success {
  background: #f0fff4;
  border: 1px solid #9ae6b4;
  color: #276749;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .9rem;
  margin-bottom: 16px;
  font-weight: 400;
}

.auth-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.auth-card input[type=email],
.auth-card input[type=password],
.auth-card input[type=text] {
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
  font-weight: 400;
}

.auth-card input:focus { border-color: #DD4A93; }

.auth-card button[type=submit] {
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: background .15s;
  font-family: inherit;
}

.auth-card button[type=submit]:hover { background: #DD4A93; }

.auth-back {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: .85rem;
  color: #999;
  text-decoration: none;
}
.auth-back:hover { color: #DD4A93; text-decoration-color: transparent; }

.totp-qr { text-align: center; margin: 20px 0; }

.totp-open-btn {
  display: block;
  text-align: center;
  background: #DD4A93;
  color: #fff;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.totp-open-btn:hover { background: #c93d82; }
.totp-qr img { border-radius: 12px; border: 1px solid #eee; }

.totp-manual {
  font-size: .8rem;
  color: #999;
  margin-bottom: 20px;
  text-align: center;
}
.totp-manual code {
  display: block;
  margin-top: 8px;
  letter-spacing: .1em;
  font-size: .85rem;
  color: #555;
  word-break: break-all;
}

/* ── Problem Section ─────────────────────────────────────── */
.problem {
  padding: 80px 24px;
  /* background: #fff; */
}

.problem-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.problem h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.stat-card {
  background: #d4f04c;
  -webkit-mask-image: url('../images/blob-b-h.svg');
  -webkit-mask-size: 100% 100%;
  mask-image: url('../images/blob-b-h.svg');
  mask-size: 100% 100%;
  padding: 56px 40px;
  text-align: left;
}

.stat-num {
  font-family: 'Tomarik', 'Trebuchet MS', 'Lucida Sans Unicode', Arial, sans-serif;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 16px;
  color: #111;
}

.stat-text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #111;
}

.stat-source {
  font-size: 0.85rem;
  color: #555;
  font-weight: 400;
}

/* ── Solution Section ─────────────────────────────────────── */
.solution {
  padding: 100px 24px;
  background-image: url('../images/blob-b-v.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solution-blob {
  background-image: url('../images/blob-r.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 80px 160px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.solution-blob h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: #fff;
}

.solution-blob p {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

@media screen and (max-width: 640px) {
  .stat-cards { grid-template-columns: 1fr; gap: 0px; }
  .stat-card { padding: 40px 28px; }
  .stat-num { font-size: 3.5rem; }
  .solution-blob { padding: 60px 40px; }
  .solution-blob h2 { font-size: 2rem; }
}

/* ── Video Section ───────────────────────────────────────── */
.video-section {
  padding: 56px 24px;
}

.video-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.video-inner h3 {
  font-size: 2.5rem;
  margin-bottom: 32px;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 22px;
  box-shadow: 6px 6px 0 #000;
  overflow: hidden;
}

.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── FAQ & Accordion ────────────────────────────────────── */
.faq {
  padding: 256px 24px 80px;
  background-image: url('../images/blob-faq.svg');
  background-repeat: no-repeat;
  background-position: center 110%;
  background-size: auto 110%;
}

.faq-inner {
  max-width: 600px;
  margin: 0 auto;
}

.faq h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.accordion details {
  overflow: hidden;
}

.accordion summary {
  padding: 16px 20px;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color .15s;
  background: #fff;
  border-radius: 12px;
}

.accordion summary:hover {
  background-color: rgba(255,255,255,.8);
}

.accordion summary::after {
  content: '▼';
  font-size: .7rem;
  display: inline-block;
  transition: transform .2s;
  margin-left: 12px;
  flex-shrink: 0;
}

.accordion details[open] summary::after {
  transform: rotate(-180deg);
}

.accordion summary h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1.3;
  flex: 1;
  text-align: left;
}

.accordion-content {
  padding: 20px 16px;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

.accordion-content p {
  margin: 0;
}

.accordion-content a {
  color: #DD4A93;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── News Section with Blobbly Images ──────────────────────────────────── */
.news {
  padding: 56px 24px;
}

.news-inner {
  max-width: 900px;
  margin: 0 auto;
}

.news h3 {
  font-family: 'Tomarik', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.news-hero {
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .15s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-hero:hover {
  transform: translateY(-4px);
}

.news-image-container {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f0f0f0;
  -webkit-mask-image: url('../images/blobbly-mask.svg');
  -webkit-mask-size: 100% 100%;
  mask-image: url('../images/blobbly-mask.svg');
  mask-size: 100% 100%;
}

.news-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-hero-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-hero-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #111;
  text-decoration: underline;
}

.news-hero-content p {
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
}

.news-other {
  text-align: center;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.news-other a {
  color: #111;
  text-decoration: underline;
  font-weight: 600;
  text-underline-offset: 4px;
  transition: color .15s;
}

.news-other a:hover {
  color: #DD4A93;
}