/* she connect — by editah.
   Monochroom, editorial: zwart-witfotografie, neutrale grijzen en één kleur.
   Terracotta is het enige accent: knoppen, eyebrows en het editah.-woordmerk. */

:root {
  --bg: #ffffff;
  --surface: #f3f3f2;
  --surface-strong: #e9e9e7;
  --text: #111111;
  --text-soft: #4a4a4a;
  --muted: #8a8a8a;
  --border: #e2e2e0;

  --accent: #b5714b;
  --accent-dark: #92583a;
  --accent-soft: #f4e2d3;

  --dark-1: #2a2a2a;
  --dark-2: #0e0e0e;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-pill: 999px;

  --shell-max: 480px;
  --gutter: 22px;
  --nav-space: 110px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #ebebea;
  color: var(--text);
  font-family: "Fahkwang", "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Fahkwang", "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font-family: inherit;
}

.app-shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
}

.screen {
  flex: 1;
  padding: 28px var(--gutter) var(--nav-space);
}

.screen--no-nav {
  padding-bottom: 32px;
}

/* editah. wordmark badge — small, present on every screen */
.editah-badge {
  position: absolute;
  top: 14px;
  right: calc(var(--gutter) - 4px);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 4px;
}
.editah-badge strong {
  color: var(--accent);
  font-weight: 600;
}

/* ---------- Eyebrow / headings ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.page-title {
  font-size: clamp(26px, 8vw, 34px);
  margin-top: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-pill);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
}
.btn-dark {
  background: var(--text);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-social {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-small {
  width: auto;
  padding: 10px 18px;
  font-size: 14px;
}
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------- Form fields ---------- */
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="password"],
.field textarea,
.field select {
  width: 100%;
  padding: 15px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 16px;
  color: var(--text);
}
.field textarea {
  resize: vertical;
}
.field .checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
}
.field .checkbox-row input {
  margin-top: 3px;
}
.field .errorlist {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  color: var(--accent-dark);
  font-size: 13px;
}

.divider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
}
.divider-row::before,
.divider-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ---------- Bottom navigation ---------- */
.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--shell-max);
  background: #fff;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-around;
  padding: 10px 0 max(10px, env(safe-area-inset-bottom));
  z-index: 30;
}
.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  flex: 1;
}
.nav-item svg {
  width: 24px;
  height: 24px;
}
.nav-item.active {
  color: var(--accent);
}

/* ---------- Vandaag ---------- */
.greeting-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 22px;
}
.streak-badge {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  margin-top: 8px;
}

.quote-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.35) 0%, rgba(14, 14, 14, 0.92) 85%),
    repeating-linear-gradient(100deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 2px, transparent 2px, transparent 14px),
    linear-gradient(160deg, var(--dark-1), var(--dark-2));
  overflow: hidden;
}
.quote-card .eyebrow {
  color: rgba(255, 255, 255, 0.75);
}
.quote-card blockquote {
  margin: 10px 0 0;
  font-size: clamp(18px, 5.4vw, 22px);
  line-height: 1.4;
  font-weight: 500;
}
.save-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.save-btn.is-saved {
  background: var(--accent);
}
.save-btn svg {
  width: 18px;
  height: 18px;
}

.task-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 26px;
  margin-top: 18px;
}
.task-card p {
  font-size: clamp(16px, 4.8vw, 19px);
  margin: 10px 0 20px;
}
.task-card .btn-dark[disabled] {
  background: #bdbdbb;
  opacity: 1;
}

.closing-line {
  text-align: center;
  font-style: italic;
  color: var(--text-soft);
  margin-top: 26px;
  font-size: 15px;
}

/* ---------- Community ---------- */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--text);
}
.icon-btn svg {
  width: 19px;
  height: 19px;
}

.pill-row {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.pill-row::-webkit-scrollbar {
  display: none;
}
.pill {
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
}
.pill.sort-active {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  color: var(--accent-dark);
}
.pill.category-active {
  background: var(--text);
  border-color: var(--text);
  color: #fff;
}
.pill svg {
  width: 14px;
  height: 14px;
}

.post-list {
  margin-top: 16px;
}
.post {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.post-header {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}
.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.post-author {
  font-weight: 600;
  font-size: 15px;
}
.post-time {
  font-size: 13px;
  color: var(--muted);
}
.post-tag {
  display: inline-block;
  margin: 12px 0 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}
.post-body {
  font-size: 16px;
  color: var(--text);
  white-space: pre-wrap;
}
.post-actions {
  display: flex;
  gap: 18px;
  margin-top: 14px;
}
.post-action {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 14px;
  padding: 0;
  cursor: pointer;
}
.post-action svg {
  width: 19px;
  height: 19px;
}
.post-action.liked {
  color: var(--accent);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--muted);
}

.fab {
  position: fixed;
  right: max(20px, calc((100vw - var(--shell-max)) / 2 + 20px));
  bottom: 96px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(181, 113, 75, 0.4);
  z-index: 25;
  border: none;
}
.fab svg {
  width: 26px;
  height: 26px;
}

/* ---------- Profiel ---------- */
.profile-header {
  text-align: center;
  margin-top: 6px;
}
.profile-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--dark-2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  overflow: hidden;
}
.profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-name {
  font-size: 26px;
}
.profile-email {
  color: var(--muted);
  font-size: 14px;
  margin-top: 4px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 26px 0;
}
.stat-tile {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 18px 8px;
  text-align: center;
}
.stat-tile .stat-value {
  font-size: 26px;
  font-weight: 600;
  color: var(--accent-dark);
}
.stat-tile .stat-label {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 4px;
}

.tab-row {
  display: flex;
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 5px;
  margin-bottom: 18px;
}
.tab-row a {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}
.tab-row a.active {
  background: var(--text);
  color: #fff;
}

.journal-entry {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 12px;
}
.journal-entry time {
  font-size: 12px;
  color: var(--muted);
}
.journal-entry p {
  margin-top: 6px;
  white-space: pre-wrap;
}

.invite-link-box {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 16px;
  font-size: 14px;
  word-break: break-all;
  color: var(--accent-dark);
  margin: 10px 0 16px;
}

/* ---------- Login / Intro (zwart-witfotografie, terracotta titel) ---------- */
.auth-screen {
  padding-top: 44px;
}
.auth-logo {
  margin: 34px 0 44px;
}
.auth-logo img {
  display: block;
  width: 200px;
  max-width: 60%;
  height: auto;
}
.auth-eyebrow {
  color: var(--accent);
}
.auth-title {
  font-size: clamp(26px, 7.5vw, 32px);
  margin: 8px 0 8px;
}
.auth-subtitle {
  color: var(--text-soft);
  font-size: 15px;
  margin-bottom: 30px;
}

.intro-photo {
  border-radius: var(--radius-lg);
  height: 46vh;
  min-height: 300px;
  max-height: 420px;
  background-color: var(--dark-2);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(1) contrast(1.08);
  position: relative;
  overflow: hidden;
}
.intro-photo--1 { background-image: url("../img/intro-dancers.d26eaeb6e0e6.jpg"); background-position: center 40%; }
.intro-photo--2 { background-image: url("../img/intro-coat.6538d2a9af44.jpg"); background-position: 60% 20%; }
.intro-photo--3 { background-image: url("../img/intro-sketches.4aa152b59afc.jpg"); background-position: center 30%; }
.intro-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}
.intro-carousel {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.intro-track {
  display: flex;
  width: 100%;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.intro-track--photos {
  flex-shrink: 0;
}
.intro-track--texts {
  flex: 1;
  min-height: 0;
}
.intro-cell {
  flex: 0 0 100%;
  min-width: 0;
}
.intro-text {
  padding: 8px 0 24px;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.intro-text::-webkit-scrollbar {
  display: none;
}
.intro-text[aria-hidden="true"] {
  opacity: 0;
  transition: opacity 0.2s ease;
}
.intro-text[aria-hidden="false"] {
  opacity: 1;
  transition: opacity 0.35s ease 0.15s;
}
.intro-dots {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 18px 0 14px;
}
.intro-dot {
  width: 22px;
  height: 6px;
  border-radius: var(--radius-pill);
  background: var(--border);
  transition: width 0.3s ease, background-color 0.3s ease;
}
.intro-dot.active {
  background: var(--accent);
  width: 34px;
}
@media (prefers-reduced-motion: reduce) {
  .intro-track, .intro-dot, .intro-text { transition: none; }
}
.intro-screen {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  overflow: hidden;
}
.intro-screen form {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.intro-screen .top-row {
  flex-shrink: 0;
}
.intro-screen .intro-photo {
  height: clamp(170px, 36dvh, 400px);
  min-height: 0;
  max-height: none;
}
.intro-footer {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0 max(18px, env(safe-area-inset-bottom));
  background: var(--bg);
}
.intro-footer::before {
  content: "";
  position: absolute;
  left: calc(var(--gutter) * -1);
  right: calc(var(--gutter) * -1);
  top: -36px;
  height: 36px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--bg) 100%);
  pointer-events: none;
}
.intro-prev {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px 0;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  visibility: hidden;
}
.intro-prev.is-visible {
  visibility: visible;
}
.intro-prev svg {
  width: 14px;
  height: 14px;
}
.skip-link {
  color: var(--muted);
  font-size: 14px;
  background: none;
  border: none;
}
.intro-next {
  width: auto;
  padding: 14px 26px;
  flex-shrink: 0;
}

.social-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ---------- Locked / premium ---------- */
.locked-card {
  background: linear-gradient(160deg, var(--dark-1), var(--dark-2));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  text-align: center;
  margin-top: 20px;
}
.locked-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: var(--accent-soft);
}
.locked-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.locked-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  margin-bottom: 22px;
}

.challenge-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 16px;
}
.challenge-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
}
.challenge-card .price {
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
  display: block;
}

.message-banner {
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  margin-bottom: 18px;
}
.message-banner.success {
  background: var(--surface-strong);
  color: var(--text);
}
.message-banner.error {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 18px;
}

/* =====================================================================
   Responsief
   Basis = telefoon. Daarboven: kleine telefoons, tablets, desktop.
   ===================================================================== */

/* Kleine telefoons (iPhone SE, oudere Androids) */
@media (max-width: 360px) {
  :root {
    --gutter: 16px;
    --nav-space: 100px;
  }
  .btn {
    padding: 14px 20px;
    font-size: 15px;
  }
  .stat-tile .stat-value {
    font-size: 22px;
  }
  .stat-tile .stat-label {
    font-size: 11px;
  }
  .pill {
    padding: 8px 13px;
    font-size: 13px;
  }
}

/* Vanaf brede telefoons / kleine tablets: shell als kaart in het midden */
@media (min-width: 540px) {
  .app-shell {
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 32px;
    overflow: hidden;
    min-height: calc(100vh - 48px);
  }
  .bottom-nav {
    border-radius: 0 0 32px 32px;
    bottom: 24px;
  }
  .fab {
    bottom: 120px;
  }
  .intro-screen {
    height: calc(100vh - 48px);
    height: calc(100dvh - 48px);
  }
}

/* Tablets (portret en landschap) */
@media (min-width: 700px) {
  :root {
    --shell-max: 640px;
    --gutter: 36px;
  }
  .screen {
    padding-top: 40px;
  }
  .page-title {
    font-size: 36px;
  }
  .quote-card {
    min-height: 280px;
    padding: 34px 30px;
  }
  .quote-card blockquote {
    font-size: 24px;
  }
  .task-card {
    padding: 30px;
  }
  .stat-row {
    gap: 14px;
  }
  .stat-tile {
    padding: 22px 12px;
  }
  .stat-tile .stat-value {
    font-size: 30px;
  }
  .intro-screen .intro-photo {
    height: clamp(220px, 40dvh, 460px);
  }
  .auth-logo img {
    width: 240px;
  }
}

/* Desktop: zijbalk met navigatie, inhoud met maximale breedte */
@media (min-width: 1024px) {
  :root {
    --gutter: 56px;
    --content-max: 720px;
    --sidebar: 236px;
  }
  .app-shell--nav {
    max-width: 1120px;
    display: grid;
    grid-template-columns: var(--sidebar) minmax(0, 1fr);
    align-items: start;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }
  .app-shell--nav .editah-badge {
    display: none;
  }
  .app-shell--nav .screen {
    order: 2;
    min-height: calc(100vh - 48px);
    background: var(--bg);
    border-radius: 0 32px 32px 0;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.08);
    /* centreer de inhoud op --content-max, met minimaal de gutter als marge */
    padding: 56px max(var(--gutter), calc((100% - var(--content-max)) / 2)) 72px;
  }
  .app-shell--nav .bottom-nav {
    order: 1;
    position: sticky;
    top: 24px;
    left: auto;
    bottom: auto;
    transform: none;
    width: auto;
    max-width: none;
    height: calc(100vh - 48px);
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    padding: 40px 18px;
    border-top: none;
    border-right: 1px solid var(--border);
    border-radius: 32px 0 0 32px;
    background: var(--bg);
  }
  .app-shell--nav .bottom-nav::before {
    content: "";
    display: block;
    width: 118px;
    height: 34px;
    margin: 0 14px 38px;
    background: url("../img/editah-wordmark.04e0cc1e9c53.png") left center / contain no-repeat;
  }
  .app-shell--nav .nav-item {
    flex: none;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-soft);
  }
  .app-shell--nav .nav-item:hover {
    background: var(--surface);
  }
  .app-shell--nav .nav-item.active {
    background: var(--accent-soft);
    color: var(--accent-dark);
  }
  .app-shell--nav .nav-item svg {
    width: 22px;
    height: 22px;
  }
  .app-shell--nav .fab {
    right: max(32px, calc((100vw - 1120px) / 2 + 32px));
    bottom: 40px;
  }
  .page-title {
    font-size: 38px;
  }
  .btn:hover {
    opacity: 0.92;
  }
  /* Schermen zonder navigatie (login, intro, uitnodiging) blijven een compacte kaart */
  .app-shell:not(.app-shell--nav) {
    max-width: 520px;
  }
  .app-shell:not(.app-shell--nav) .screen {
    --gutter: 40px;
  }
}

/* ---------- PWA: installatiehint en offline-scherm ---------- */
.install-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 13px;
  color: var(--text-soft);
}
.install-hint__text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.install-hint__text strong {
  color: var(--text);
  font-weight: 600;
}
.install-hint__text em {
  font-style: normal;
  color: var(--text);
}
.install-hint__glyph {
  color: var(--accent);
}
.install-hint__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.install-hint__close {
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  padding: 4px 6px;
  cursor: pointer;
}
.offline-screen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  min-height: 100vh;
  min-height: 100dvh;
}
.offline-screen .btn {
  margin-top: 12px;
}
.offline-text {
  color: var(--text-soft);
}
/* Geïnstalleerd (standalone): geen kaart-schaduw, de app is het scherm */
@media (display-mode: standalone) {
  body {
    background: var(--bg);
  }
}
