:root {
  --bg: #0b1021;
  --card: #11193a;
  --line: #27325e;
  --text: #e6eaf7;
  --muted: #afc1ff;
  --accent: #4f7cff;
  --accent2: #9ad7a8;
  --link: #7ee8d2;
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  /** Breedte: laptop gebruikt meer canvas; mobiel blijft één smalle kolom. */
  --layout-max: 90rem;
  --hero-text-max: min(48rem, 100%);
}

@media (min-width: 1200px) {
  :root {
    --hero-text-max: min(58rem, 100%);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  background:
    radial-gradient(ellipse 130% 70% at 50% -25%, rgba(79, 124, 255, 0.14), transparent 52%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
}

a,
a:visited {
  color: var(--link);
  text-decoration-color: rgba(126, 232, 210, 0.85);
  text-underline-offset: 0.16em;
}

a:hover {
  color: #b6fff0;
}

.top {
  border-bottom: 1px solid var(--line);
  background: rgba(17, 25, 58, 0.6);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Blur can be heavy / unstable on some mobile WebKit builds; fall back to solid bar. */
@media (max-width: 600px) {
  .top {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(17, 25, 58, 0.92);
  }
}

.top-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 16px clamp(20px, 4vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 22%;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.brand-text {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--card);
}

.lang-btn {
  margin: 0;
  padding: 8px 16px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}

.lang-btn.is-active {
  background: var(--accent);
  color: #fff;
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 2px;
}

main.page-wrap {
  flex: 1;
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 32px clamp(20px, 4vw, 56px) 48px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-aside--end {
  display: none;
}

.hero-aside--start {
  display: flex;
  justify-content: center;
}

@media (min-width: 880px) {
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr minmax(0, var(--hero-text-max)) 1fr;
    gap: clamp(1.25rem, 3vw, 2.75rem);
    align-items: start;
  }

  .hero-aside--end {
    display: flex;
  }

  .hero-aside--start,
  .hero-aside--end {
    position: sticky;
    top: 1.25rem;
    padding-top: 0.35rem;
  }

  .hero-aside--start {
    justify-content: flex-end;
  }

  .hero-aside--end {
    justify-content: flex-start;
  }
}

.hero-app-icon {
  width: 100%;
  max-width: 176px;
  height: auto;
  border-radius: 22%;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
  display: block;
  margin: 0 auto;
}

.hero-app-icon--flank {
  max-width: 148px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.34);
}

@media (min-width: 880px) {
  .hero-app-icon,
  .hero-app-icon--flank {
    margin: 0;
  }
}

.hero-body {
  min-width: 0;
}

/* Geen harde witte emphase: strong volgt de kleur van de alinea, alleen iets dikker. */
.hero-body strong {
  font-weight: 600;
  color: inherit;
}

.lang-panel h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  line-height: 1.18;
  margin: 0 0 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  color: var(--accent2);
  font-weight: 700;
  margin: 0 0 8px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 24px;
}

@media (min-width: 880px) {
  .lead {
    font-size: 1.08rem;
    margin-bottom: 20px;
  }

  .callout {
    margin-bottom: 18px;
  }

  .choices {
    margin-bottom: 18px;
  }

  .channel-tip {
    margin-bottom: 16px;
  }

  .trust-block {
    margin-bottom: 18px;
  }

  .details-more {
    margin-bottom: 18px;
  }
}

.callout {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid rgba(79, 124, 255, 0.45);
  background: linear-gradient(145deg, rgba(26, 42, 92, 0.95), rgba(17, 25, 58, 0.9));
  color: #dce4ff;
  font-size: 0.98rem;
  line-height: 1.5;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.callout strong {
  color: inherit;
  display: block;
  margin-bottom: 6px;
  font-size: inherit;
  font-weight: 600;
}

.choices {
  margin: 0 0 22px;
  font-size: 0.95rem;
  color: #c8d3f8;
  line-height: 1.55;
}

.channel-tip {
  margin: 0 0 18px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #9eb0e8;
}

.trust-block {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(17, 25, 58, 0.65);
  font-size: 0.93rem;
  color: #c8d3f8;
  line-height: 1.58;
}

/* EU policy context — placed high on homepage for visibility */
.trust-block--eu {
  border-color: rgba(79, 124, 255, 0.38);
  background: rgba(17, 28, 62, 0.72);
}

.trust-block p {
  margin: 0 0 12px;
}

.trust-block p:last-child {
  margin-bottom: 0;
}

.trust-block-note {
  font-size: 0.86rem;
  color: #9eb0e8;
  line-height: 1.5;
}

.trust-block-note--highlight {
  font-size: 0.9rem;
  color: #bac9f5;
  line-height: 1.52;
}

.trust-block a {
  color: var(--link);
  font-weight: 500;
  text-decoration-thickness: 1px;
}

.details-more {
  margin: 0 0 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 15, 36, 0.72);
  overflow: hidden;
}

.details-more-summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(230, 234, 247, 0.92);
  list-style: none;
}

.details-more-summary::-webkit-details-marker {
  display: none;
}

.details-more-summary::after {
  content: ' +';
  color: rgba(158, 182, 255, 0.9);
  font-weight: 600;
}

.details-more[open] .details-more-summary::after {
  content: ' −';
}

.details-more-body {
  padding: 4px 18px 18px;
  border-top: 1px solid rgba(39, 50, 94, 0.75);
}

.details-more-intro {
  margin: 14px 0 14px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #9eb0e8;
}

.details-more-list {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.58;
  color: #c8d3f8;
}

.details-more-list li {
  margin-bottom: 10px;
}

.details-more-list li:last-child {
  margin-bottom: 0;
}

.store-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 12px;
}

@media (min-width: 420px) {
  .store-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  color: #fff;
  flex: 1 1 auto;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.store-btn:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 3px;
}

.store-btn--ios {
  background: #000;
  border: 1px solid #333;
}

.store-btn--android {
  background: #01875f;
  border: 1px solid #016b4c;
}

.store-btn--pending {
  opacity: 0.88;
  cursor: default;
  pointer-events: none;
}

.store-pending {
  margin: 0 0 18px;
  font-size: 0.82rem;
  color: #9aa6d4;
  line-height: 1.45;
}

.android-beta-callout {
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(1, 135, 95, 0.45);
  background: rgba(1, 135, 95, 0.1);
}

.android-beta-callout__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #e8ecff;
}

.android-beta-callout__text {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #c5cce8;
}

.android-beta-callout__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 4px 0 12px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  color: #fff;
  background: #01875f;
  border: 1px solid #016b4c;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.android-beta-callout__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.android-beta-callout__btn:focus-visible {
  outline: 2px solid var(--accent2);
  outline-offset: 3px;
}

.android-beta-callout__note {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #9aa6d4;
}

.android-beta-callout__note a {
  color: #afc1ff;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  background: var(--card);
  margin: 0;
}

.note--compact {
  font-size: 0.85rem;
  padding: 12px 14px;
}

.note a {
  color: var(--accent);
}

.foot {
  border-top: 1px solid var(--line);
}

.foot-inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  padding: 28px clamp(20px, 4vw, 56px) 32px;
}

.foot-stack {
  max-width: 34rem;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
}

.foot-contact {
  margin: 0;
  font-size: 0.95rem;
}

.foot-contact-line {
  margin: 0 0 12px;
  text-align: center;
  font-size: 0.92rem;
}

.foot-contact a {
  color: var(--accent);
  font-weight: 600;
}

.foot-callout {
  margin: 0;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.03);
}

.foot-callout-title {
  margin: 0 0 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #b8c0dc;
}

.foot-callout-body {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #9aa3c4;
}

.foot-disclaimer {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  line-height: 1.5;
  color: #7d879f;
}

.foot-disclaimer a {
  color: #9eb4e8;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.foot-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 0 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.foot-legal a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.foot-legal a:hover {
  text-decoration: underline;
}

.foot-small {
  margin: 0;
  text-align: center;
  font-size: 0.76rem;
  color: #7d879f;
}

.lang-panel[hidden] {
  display: none !important;
}
