/* src/styles/fonts.css */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/fonts/archivo-latin-ext.woff2) format("woff2");
  unicode-range:
    U+0100-02BA,
    U+02BD-02C5,
    U+02C7-02CC,
    U+02CE-02D7,
    U+02DD-02FF,
    U+0304,
    U+0308,
    U+0329,
    U+1D00-1DBF,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20C0,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/fonts/archivo-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: "Archivo Narrow";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url(/fonts/archivo-narrow-latin-ext.woff2) format("woff2");
  unicode-range:
    U+0100-02BA,
    U+02BD-02C5,
    U+02C7-02CC,
    U+02CE-02D7,
    U+02DD-02FF,
    U+0304,
    U+0308,
    U+0329,
    U+1D00-1DBF,
    U+1E00-1E9F,
    U+1EF2-1EFF,
    U+2020,
    U+20A0-20AB,
    U+20AD-20C0,
    U+2113,
    U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Archivo Narrow";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url(/fonts/archivo-narrow-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;
}

/* src/styles/tokens.css */
:root {
  --ink: #10222F;
  --ink-700: #1C3A4E;
  --ink-900: #0A1822;
  --spark: #E8500F;
  --spark-deep: #C9430A;
  --spark-light: #FFB08A;
  --concrete: #EAECE8;
  --concrete-2: #F3F4F1;
  --grey-700: #485660;
  --grey-500: #79858E;
  --grey-300: #C3CACE;
  --grey-200: #DFE4E4;
  --green: #2E7D5B;
  --amber: #E9A000;
  --red: #B5312B;
  --white: #FFFFFF;
  --success-surface: #DDEDE5;
  --success-text: #1E5A40;
  --error-surface: #F4DEDB;
  --error-text: #8B231E;
  --warning-surface: #FBEFCC;
  --warning-text: #6A4A00;
  --night-sky:
    radial-gradient(
      90% 70% at 85% 0%,
      #24506A 0%,
      rgba(28, 58, 78, 0.55) 38%,
      rgba(16, 34, 47, 0) 70%),
    radial-gradient(
      60% 50% at 0% 100%,
      rgba(232, 80, 15, 0.16) 0%,
      rgba(232, 80, 15, 0) 70%),
    #10222F;
  --font-heading:
    "Archivo Narrow",
    "Arial Narrow",
    Arial,
    sans-serif;
  --font-body:
    "Archivo",
    "Helvetica Neue",
    Arial,
    sans-serif;
  --radius-button: 6px;
  --radius-card: 8px;
  --button-height: 52px;
  --header-height: 64px;
  --touch-target: 44px;
}

/* src/styles/base.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--concrete);
  color: var(--ink);
  font: 16px/1.55 var(--font-body);
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-wrap: balance;
}
h1 {
  font-size: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}
h2 {
  font-size: 1.25rem;
  line-height: 1.1;
}
h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.25;
}
a {
  color: inherit;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--spark);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.field .sr-only {
  width: 1px;
  min-height: 0;
  height: 1px;
  padding: 0;
  border: 0;
}
.muted {
  color: var(--grey-700);
}
app-icon svg {
  width: 24px;
  height: 24px;
}
.btn {
  min-height: var(--button-height);
  padding-inline: 22px;
  border: 0;
  border-radius: var(--radius-button);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}
.btn svg {
  width: 20px;
  height: 20px;
}
.btn-primary {
  background: var(--spark-deep);
  color: var(--white);
}
.btn-primary:hover {
  background: #B03A08;
}
.btn-outline {
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--grey-500);
}
.btn-block {
  width: 100%;
}
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.link {
  min-height: var(--touch-target);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--spark-deep);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.link svg {
  width: 18px;
  height: 18px;
}
@media (hover: hover) {
  .btn-outline:hover {
    box-shadow: inset 0 0 0 1.5px var(--ink);
  }
  .link:hover {
    text-decoration-thickness: 3px;
  }
}
.icon-btn {
  min-width: var(--touch-target);
  min-height: var(--touch-target);
  padding-inline: 10px;
  border: 0;
  border-radius: var(--radius-button);
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
}
.form-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btn-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--spark-deep);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.btn-link:disabled {
  color: var(--grey-700);
  text-decoration: none;
  cursor: default;
}
.btn-link-danger {
  color: var(--red);
}
.form-stack.card:not(.detail-block) {
  padding: 18px 16px;
}
@media (min-width: 48rem) {
  .form-stack.card:not(.detail-block) {
    padding: 22px;
  }
}
.form-stack > .link {
  align-self: flex-start;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.9375rem;
  font-weight: 600;
}
.field input {
  width: 100%;
  min-height: var(--button-height);
  padding-inline: 14px;
  border: 1.5px solid var(--grey-500);
  border-radius: var(--radius-button);
  background: var(--white);
  font-size: 1.0625rem;
}
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-500);
  border-radius: var(--radius-button);
  background: var(--white);
  font-size: 1.0625rem;
  line-height: 1.5;
  resize: vertical;
}
.field .hint {
  color: var(--grey-700);
  font-size: 0.875rem;
}
.form-actions {
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 10px;
}
.form-actions .btn {
  flex: 1 1 160px;
}
.field input:focus-visible,
.field textarea:focus-visible {
  outline-offset: 1px;
  border-color: var(--ink);
}
.field.has-error input,
.field.has-error textarea {
  border-color: var(--red);
  box-shadow: inset 4px 0 0 var(--red);
}
.field-error {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 600;
}
.field-error svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 56px;
}
.password-wrap .icon-btn {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  color: var(--grey-700);
}
.password-rules {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: var(--grey-700);
  font-size: 0.875rem;
}
.password-rules li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.password-rules li svg {
  width: 18px;
  height: 18px;
  color: var(--grey-500);
}
.password-rules li.is-valid {
  color: var(--success-text);
}
.password-rules li.is-valid svg {
  color: var(--green);
}
.alert {
  padding: 14px;
  border-radius: var(--radius-card);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.4;
}
.alert svg {
  width: 22px;
  height: 22px;
  flex: none;
}
.alert b {
  display: block;
}
.alert-success {
  background: var(--success-surface);
  color: var(--success-text);
}
.alert-error {
  background: var(--error-surface);
  color: var(--error-text);
}
.alert-warning {
  background: var(--warning-surface);
  color: var(--warning-text);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--grey-700);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--spark);
}
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}
.check-list svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}
.dark {
  background: var(--ink);
  color: var(--white);
}
.dark .link {
  color: var(--white);
  text-decoration-color: var(--spark-light);
}
.dark .eyebrow {
  color: var(--spark-light);
}
.dark input,
.dark textarea,
.dark select {
  color: var(--ink);
}
.dark .card {
  color: var(--ink);
}
.dark .card .link {
  color: var(--ink);
  text-decoration-color: var(--spark-deep);
}
.dark .card .muted {
  color: var(--grey-700);
}
.dark .check-list svg {
  color: var(--spark-light);
}
.stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(
      1.2px 1.2px at 12% 18%,
      rgba(255, 255, 255, 0.7),
      transparent 60%),
    radial-gradient(
      1px 1px at 32% 62%,
      rgba(255, 255, 255, 0.45),
      transparent 60%),
    radial-gradient(
      1.4px 1.4px at 58% 22%,
      rgba(255, 255, 255, 0.6),
      transparent 60%),
    radial-gradient(
      1px 1px at 74% 72%,
      rgba(255, 255, 255, 0.4),
      transparent 60%),
    radial-gradient(
      1.2px 1.2px at 88% 44%,
      rgba(255, 255, 255, 0.55),
      transparent 60%),
    radial-gradient(
      1px 1px at 46% 88%,
      rgba(255, 255, 255, 0.35),
      transparent 60%),
    radial-gradient(
      1px 1px at 6% 78%,
      rgba(255, 255, 255, 0.4),
      transparent 60%);
}
.page {
  width: 100%;
  max-width: 60rem;
  margin-inline: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.facts {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.facts dt {
  color: var(--grey-700);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.facts dt:not(:first-child) {
  margin-top: 14px;
}
.facts dd {
  margin: 2px 0 0;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.875rem;
}
.pagination-buttons {
  display: flex;
  gap: 6px;
}
.pagination-buttons button {
  min-width: var(--touch-target);
  min-height: var(--touch-target);
  border: 0;
  border-radius: var(--radius-button);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--grey-500);
  color: var(--ink);
  font-weight: 600;
  cursor: pointer;
}
.pagination-buttons button.is-active {
  background: var(--ink);
  box-shadow: none;
  color: var(--white);
}
.pagination-buttons button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.pagination-total {
  font-size: 0.875rem;
}
@media (max-width: 39.99rem) {
  .pagination-buttons button:not(:first-child, :last-child, .is-active) {
    display: none;
  }
}
.link-back {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-back svg {
  width: 18px;
  height: 18px;
}
.page-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.page-head .link-back {
  margin: -10px 0 0;
  font-size: 0.9375rem;
}
.page-head h1 {
  overflow-wrap: anywhere;
}
.loading-message {
  padding: 56px 0;
  color: var(--grey-700);
  text-align: center;
}
.nav-account,
.nav-logout {
  display: none;
}
@media (min-width: 60rem) {
  .nav-account {
    margin-top: auto;
    min-height: var(--touch-target);
    padding: 14px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    text-decoration: none;
  }
  a.nav-account {
    border-radius: var(--radius-button);
  }
  a.nav-account.is-current {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 3px 0 0 var(--spark);
  }
  .nav-account .avatar {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.8125rem;
    flex: none;
  }
  .nav-account-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    font-size: 0.9375rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-account svg {
    width: 18px;
    height: 18px;
    color: #9FB0BC;
    flex: none;
  }
  .nav-logout {
    width: 100%;
    min-height: var(--touch-target);
    margin-top: 8px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: var(--white);
    display: inline-flex;
    font-size: 0.9375rem;
  }
  .nav-logout svg {
    width: 20px;
    height: 20px;
  }
  @media (hover: hover) {
    a.nav-account:hover {
      background: rgba(255, 255, 255, 0.06);
    }
    .nav-logout:hover {
      border-color: rgba(255, 255, 255, 0.6);
      background: rgba(255, 255, 255, 0.06);
    }
  }
}

/* src/styles/site.css */
.container {
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
  padding-inline: 20px;
}
.decorated {
  position: relative;
  overflow: hidden;
}
.decorated > :not(.stars):not(app-burst) {
  position: relative;
}
.hero-night {
  background: var(--night-sky);
}
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: inset 0 0 0 1px var(--grey-200);
}
.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.28);
}
@media (hover: hover) {
  .btn-glass:hover {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.5);
  }
}
.btn-small {
  min-height: var(--touch-target);
  padding-inline: 16px;
  font-size: 0.9375rem;
}
.alert-info {
  background: #DCE5EB;
  color: var(--ink-700);
}
.pill {
  height: 26px;
  padding-inline: 8px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  white-space: nowrap;
}
.pill::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.pill-active {
  background: var(--success-surface);
  color: var(--success-text);
}
.pill-active::before {
  background: var(--green);
}
.pill-ingeschreven {
  background: #DCE5EB;
  color: var(--ink-700);
}
.pill-goedgekeurd,
.pill-openstaand {
  background: var(--warning-surface);
  color: #735000;
}
.pill-goedgekeurd::before,
.pill-openstaand::before {
  background: var(--amber);
}
.pill-actief,
.pill-betaald {
  background: var(--success-surface);
  color: var(--success-text);
}
.pill-actief::before,
.pill-betaald::before {
  background: var(--green);
}
.pill-geblokkeerd {
  background: var(--error-surface);
  color: var(--error-text);
}
.pill-geblokkeerd::before {
  background: var(--red);
}
.pill-afgewezen {
  background: var(--grey-200);
  color: var(--grey-700);
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: none;
  background: #DCE5EB;
  color: var(--ink-700);
  font-size: 0.875rem;
  font-weight: 700;
}
.avatar svg {
  width: 20px;
  height: 20px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header.is-over-hero {
  background: transparent;
}
.site-header.is-scrolled {
  background: var(--ink);
  box-shadow: 0 6px 20px rgba(5, 14, 21, 0.35);
}
.site-header-row {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-link {
  display: inline-flex;
  min-height: var(--touch-target);
  align-items: center;
}
.site-header img,
.menu-header img {
  height: 30px;
  width: auto;
}
.nav-desktop {
  display: none;
}
.menu-button {
  margin-right: -10px;
}
.menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 0 20px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  animation: menu-slide-in 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes menu-slide-in {
  from {
    transform: translateX(100%);
  }
}
.menu-burst {
  right: -120px;
  bottom: -110px;
  width: 360px;
  height: 360px;
  opacity: 0.14;
}
.menu-header {
  height: 64px;
  margin-right: -10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu nav {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
}
.menu-link {
  min-height: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
}
.menu-link svg,
.already-member > app-icon svg {
  width: 22px;
  height: 22px;
  color: var(--spark-light);
}
@media (hover: hover) {
  .menu-link:hover {
    color: var(--spark-light);
  }
}
.already-member {
  margin-top: 22px;
  min-height: 60px;
  padding: 8px 14px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.3;
  text-decoration: none;
}
.already-member-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink-700);
  display: grid;
  place-items: center;
  flex: none;
}
.already-member-icon svg {
  width: 20px;
  height: 20px;
}
.already-member-text {
  flex: 1;
}
.already-member-text b {
  display: block;
  font-size: 1rem;
}
.menu-footer {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 16px;
  color: #B9C6CF;
  font-size: 0.875rem;
}
.menu-contact a {
  min-height: var(--touch-target);
  display: inline-flex;
  align-items: center;
}
.site-footer {
  padding-block: 40px;
  color: #D3DCE2;
  font-size: 0.9375rem;
}
.site-footer-grid {
  display: grid;
  gap: 24px;
}
.site-footer img {
  width: 230px;
  height: auto;
}
.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-column b {
  color: var(--white);
  margin-bottom: 4px;
}
.footer-column a {
  min-height: var(--touch-target);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer-column a:hover {
  text-decoration: underline;
}
.hero {
  margin-top: calc(-1 * var(--header-height));
  padding-block: calc(var(--header-height) + 24px) 32px;
}
.hero-burst {
  right: -80px;
  top: -30px;
  width: 300px;
  height: 300px;
  opacity: 0.26;
}
.hero-grid {
  padding-top: 26px;
  display: grid;
  gap: 32px;
}
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero h1 {
  font-size: 2.125rem;
  line-height: 1.02;
}
.hero-lead {
  max-width: 48ch;
  color: #D3DCE2;
}
.hero-buttons {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof {
  margin: 2px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #B9C6CF;
  font-size: 0.9375rem;
}
.proof svg {
  width: 18px;
  height: 18px;
  color: var(--spark-light);
  flex: none;
}
.proof strong {
  color: var(--spark-light);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.hero-example {
  display: none;
}
.example-card {
  position: absolute;
  top: 10px;
  right: 30px;
  width: 340px;
  overflow: hidden;
  color: var(--ink);
  transform: rotate(2deg);
}
.example-card-header {
  padding: 14px 16px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.example-card-header img {
  height: 22px;
  width: auto;
}
.example-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
}
.example-name {
  font: 700 1.375rem/1 var(--font-heading);
  text-transform: uppercase;
}
.example-row {
  padding: 10px;
  border-radius: 6px;
  background: var(--concrete-2);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.3;
}
.example-member-card {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 340px;
  transform: rotate(-4deg);
}
.hero-example .card,
.hero-example .member-card {
  box-shadow: 0 20px 44px rgba(5, 14, 21, 0.5);
  will-change: transform;
  backface-visibility: hidden;
}
.band-paper {
  background: var(--white);
}
.band-tint {
  background: var(--concrete);
}
.band-paper + .band-paper,
.band-tint + .band-tint {
  border-top: 1px solid var(--grey-200);
}
.section-centred {
  align-items: center;
  text-align: center;
}
.section-centred .section-header {
  margin-inline: auto;
  align-items: center;
  text-align: center;
}
.closing-band .closing {
  padding-block: 40px;
}
.testimonials-header {
  text-align: center;
}
.section {
  padding-block: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section h2 {
  font-size: 1.5rem;
}
.section-header,
.page-header {
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.section-header p,
.page-header p,
.benefit p {
  color: #33475A;
}
.position-points {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: position;
  display: grid;
  gap: 24px;
}
.position-points li {
  counter-increment: position;
  padding-left: 48px;
  position: relative;
}
.position-points li::before {
  content: counter(position);
  position: absolute;
  left: 0;
  top: -2px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--spark-light);
  display: grid;
  place-items: center;
  font: 700 0.9375rem/1 var(--font-heading);
}
.position-points h3 {
  font-size: 1.125rem;
}
.position-points p {
  margin-top: 6px;
  color: #33475A;
}
.benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 20px;
}
.benefit {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}
.benefit .benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-card);
  background: var(--ink);
  color: var(--spark-light);
  display: grid;
  place-items: center;
}
.benefit .benefit-icon svg {
  width: 26px;
  height: 26px;
}
.benefit p {
  margin-top: 4px;
  font-size: 0.9375rem;
}
.member-card {
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--ink-700);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.example-mobile .member-card {
  max-width: 24rem;
}
.member-card-burst {
  right: -44px;
  bottom: -58px;
  width: 190px;
  height: 190px;
  opacity: 0.3;
}
.member-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.member-card-row img {
  height: 24px;
  width: auto;
}
.member-card-label {
  color: #9FB0BC;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.member-card-name {
  font: 700 1.25rem/1.1 var(--font-heading);
}
.member-card dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.member-card dt {
  color: #9FB0BC;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.member-card dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
}
.costs-block,
.costs-text,
.fee-calculator {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.costs-text {
  gap: 10px;
}
.euro-input {
  position: relative;
}
.euro-input::before {
  content: "\20ac";
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--grey-700);
  font-size: 1.0625rem;
}
.euro-input input {
  padding-left: 32px;
  font-variant-numeric: tabular-nums;
}
.entrance-fee {
  padding: 16px 18px;
  border-radius: var(--radius-card);
  background: var(--concrete-2);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--grey-300);
  display: grid;
  gap: 4px;
  justify-items: start;
}
.entrance-fee-burst {
  top: -36px;
  right: -30px;
  width: 150px;
  height: 150px;
  opacity: 0.35;
}
.entrance-fee-label {
  color: var(--grey-700);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.entrance-fee strong {
  font: 700 1.875rem/1 var(--font-heading);
  font-variant-numeric: tabular-nums;
}
.entrance-fee p {
  color: var(--grey-700);
  font-size: 0.9375rem;
}
.entrance-fee-button {
  margin-top: 10px;
  display: none;
}
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.steps li {
  position: relative;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
}
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: var(--grey-300);
}
.steps .step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.steps li:last-child .step-number {
  background: var(--spark-deep);
}
.steps b {
  display: block;
  padding-top: 4px;
}
.steps small {
  display: block;
  color: var(--grey-700);
  font-size: 0.875rem;
}
.testimonials h2 {
  font-size: 1.25rem;
}
.snap-x {
  padding-inline: 20px;
  scroll-padding-inline: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  display: flex;
  gap: 12px;
}
.snap-x::-webkit-scrollbar {
  display: none;
}
.snap-x::after {
  content: "";
  flex: 0 0 8px;
}
.snap-x > .quote {
  width: min(300px, 82vw);
  flex: none;
  scroll-snap-align: start;
}
.quote {
  margin: 0;
  padding: 20px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--grey-200);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}
.quote blockquote {
  margin: 0;
}
.quote blockquote::before {
  content: "\201c";
  display: block;
  margin-bottom: 6px;
  color: var(--spark);
  font: 700 54px/0.6 var(--font-heading);
}
.quote figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.quote figcaption b {
  display: block;
  font-size: 0.9375rem;
}
.dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
  transition: width 0.2s;
}
.dots i.is-active {
  width: 22px;
  border-radius: 4px;
  background: var(--ink);
}
.faq-list {
  display: flex;
  flex-direction: column;
  overflow-anchor: none;
}
details.faq-item {
  border-bottom: 1px solid var(--grey-200);
}
details.faq-item summary {
  min-height: 60px;
  padding-block: 10px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  cursor: pointer;
}
details.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  background: var(--concrete-2);
  color: var(--spark-deep);
  display: grid;
  place-items: center;
  flex: none;
}
.faq-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s;
}
details.faq-item[open] .faq-toggle svg {
  transform: rotate(45deg);
}
@media (hover: hover) {
  details.faq-item summary:hover .faq-toggle {
    border-color: var(--spark-deep);
  }
}
details.faq-item p {
  max-width: 68ch;
  padding-bottom: 16px;
  color: #26394A;
  white-space: pre-line;
}
.closing {
  padding-block: 8px 40px;
}
.closing-block {
  padding: 36px 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.closing-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.closing-block h2 {
  font-size: 1.5rem;
}
.closing-block p {
  color: #D3DCE2;
}
.closing-burst {
  top: -60px;
  right: -100px;
  width: 300px;
  height: 300px;
  opacity: 0.2;
}
.sticky-cta {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 30;
  padding: 8px 8px 8px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 30px -12px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(140%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-cta.is-visible {
  transform: none;
}
.sticky-cta span {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.3;
}
.sticky-cta b {
  display: block;
  font-size: 0.9375rem;
}
.sticky-cta .btn {
  min-height: 48px;
  padding-inline: 16px;
  font-size: 1rem;
}
.page-intro {
  padding-block: 36px 32px;
}
.page-intro .page-header {
  gap: 14px;
}
.page-intro h1 {
  font-size: 2.125rem;
  line-height: 1.02;
  text-wrap: balance;
}
.page-intro .page-header > p {
  max-width: 34ch;
  font-size: 1.0625rem;
}
.intro-facts {
  --separator-width: 18px;
  margin: 4px 0 0 calc(-1 * var(--separator-width));
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  row-gap: 4px;
  color: var(--grey-700);
  font-size: 0.9375rem;
  clip-path: inset(-8px -8px -8px var(--separator-width));
}
.intro-facts li {
  position: relative;
  padding-left: var(--separator-width);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.intro-facts li::before {
  content: "\b7";
  position: absolute;
  left: 0;
  width: var(--separator-width);
  color: var(--grey-300);
  text-align: center;
}
.intro-facts strong {
  color: var(--ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.intro-button {
  margin-top: 8px;
  align-self: stretch;
}
.start-button,
.closing-block .btn {
  align-self: stretch;
}
.hero-actions {
  margin-top: 8px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-hero-split {
  display: grid;
  gap: 28px;
}
.check-list-cards {
  display: grid;
  gap: 10px;
}
.check-list-cards li {
  padding: 14px 16px;
  align-items: center;
}
.empty-state {
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: var(--grey-700);
}
.empty-state-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--concrete);
  color: var(--ink-700);
  display: grid;
  place-items: center;
}
.empty-state-icon svg {
  width: 28px;
  height: 28px;
}
.event-banner {
  display: block;
  background: var(--spark);
  color: var(--white);
  font-size: 0.875rem;
  text-decoration: none;
}
.event-banner-row {
  min-height: var(--touch-target);
  padding-block: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.event-banner-text {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.event-banner-text svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.event-banner-text b {
  font-weight: 700;
}
.event-banner-when {
  opacity: 0.92;
}
.event-banner-time,
.event-banner-action-word {
  display: none;
}
.event-banner-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: none;
  font-weight: 700;
}
.event-banner-action svg {
  width: 18px;
  height: 18px;
}
.public-page {
  padding-block: 28px 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.public-page h1 {
  font-size: 1.5rem;
}
.narrow {
  max-width: 48rem;
  margin-inline: 0;
}
.heading-small {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 600;
}
.requirements {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.requirements-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.table-wrap {
  overflow-x: auto;
}
table.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.table th {
  padding: 10px 14px;
  border-bottom: 1.5px solid var(--grey-200);
  background: var(--concrete-2);
  color: var(--grey-700);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--grey-200);
  font-variant-numeric: tabular-nums;
}
.table .numeric {
  text-align: right;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.contact-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.contact-text b {
  display: block;
}
.contact-card > app-icon svg {
  width: 20px;
  height: 20px;
  color: var(--grey-500);
}
@media (hover: hover) {
  a.contact-card:hover {
    background: var(--concrete-2);
  }
}
.contact-grid {
  display: grid;
  gap: 24px;
}
.alert-info a {
  font-weight: 600;
}
@media (min-width: 40rem) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-buttons .proof {
    order: 1;
    flex-basis: 100%;
    justify-content: flex-start;
  }
  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 40px;
  }
}
@media (min-width: 60rem) {
  :root {
    --header-height: 84px;
  }
  .container {
    padding-inline: 56px;
  }
  .site-header img {
    height: 40px;
  }
  .menu-button {
    display: none;
  }
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
  }
  .nav-desktop a:not(.btn) {
    min-height: var(--touch-target);
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  .nav-desktop a.is-active {
    box-shadow: inset 0 -3px 0 var(--spark);
  }
  .nav-desktop a.login-link {
    margin-left: 8px;
    text-decoration: underline;
    text-decoration-color: var(--spark-light);
    text-underline-offset: 4px;
  }
  @media (hover: hover) {
    .nav-desktop a:not(.btn, .is-active, .login-link):hover {
      box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.4);
    }
    .nav-desktop a.login-link:hover {
      text-decoration-color: var(--white);
    }
  }
  .site-footer {
    padding-block: 48px;
  }
  .site-footer-grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
  .site-footer img {
    width: 260px;
  }
  .hero {
    padding-block: 84px 64px;
  }
  .hero-burst {
    top: -110px;
    right: auto;
    left: 38%;
    width: 520px;
    height: 520px;
    opacity: 0.22;
  }
  .hero-grid {
    padding-top: 36px;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
  }
  .hero-text {
    gap: 20px;
  }
  .hero h1 {
    font-size: 4rem;
  }
  .hero-lead {
    font-size: 1.125rem;
  }
  .stats {
    display: flex;
    gap: 28px;
  }
  .hero-example {
    position: relative;
    height: 500px;
    display: block;
  }
  .section {
    padding-block: 72px;
  }
  .section h2 {
    font-size: 2.125rem;
  }
  .section h2.heading-large {
    font-size: 2.5rem;
  }
  .section-split {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 2.2fr);
    gap: 48px 64px;
    align-items: start;
  }
  .event-banner {
    font-size: 0.9375rem;
  }
  .event-banner-time,
  .event-banner-action-word {
    display: inline;
  }
  .event-banner-action {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .proof {
    font-size: 1rem;
  }
  .page-intro {
    padding-block: 56px 48px;
  }
  .page-intro h1 {
    font-size: 3.5rem;
  }
  .page-intro .page-header > p {
    font-size: 1.1875rem;
  }
  .page-hero-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
  }
  .examples-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 48px 56px;
  }
  .check-list-cards {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  }
  .position-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
  }
  .intro-facts {
    font-size: 1.0625rem;
  }
  .intro-button,
  .start-button {
    align-self: flex-start;
  }
  .hero-actions {
    flex-direction: row;
  }
  .example-mobile {
    display: none;
  }
  .costs-block {
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 20px 40px -30px rgba(16, 34, 47, 0.5);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas: "text fee" "field fee";
    grid-template-rows: auto 1fr;
    gap: 0;
  }
  .costs-block app-entrance-fee-calculator,
  .costs-block .fee-calculator {
    display: contents;
  }
  .costs-block .costs-text {
    grid-area: text;
    padding: 44px 44px 0;
    gap: 16px;
  }
  .costs-block .field {
    grid-area: field;
    max-width: calc(320px + 88px);
    padding: 20px 44px 44px;
  }
  .costs-block .entrance-fee {
    grid-area: fee;
    padding: 44px;
    border-radius: 0;
    align-content: center;
    gap: 10px;
  }
  .costs-block .entrance-fee-burst {
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    opacity: 0.22;
  }
  .costs-block .entrance-fee strong {
    font-size: 3.75rem;
  }
  .costs-block .entrance-fee-button {
    display: inline-flex;
  }
  .steps-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  .steps-cards li {
    padding: 18px;
    border-radius: var(--radius-card);
    background: var(--white);
    box-shadow: inset 0 0 0 1px var(--grey-200);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .steps-cards li:not(:last-child)::after {
    content: none;
  }
  .steps-cards .step-number {
    width: 36px;
    height: 36px;
  }
  .steps-long small {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
  .testimonials h2 {
    font-size: 2.125rem;
  }
  .snap-x {
    max-width: 76rem;
    margin-inline: auto;
    padding-inline: 56px;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .snap-x::after {
    content: none;
  }
  .snap-x > .quote {
    width: auto;
  }
  .dots,
  .sticky-cta {
    display: none;
  }
  .closing {
    padding-block: 32px 56px;
  }
  .closing-block .btn {
    align-self: auto;
  }
  .closing-block {
    padding: 44px 52px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .closing-block h2 {
    font-size: 2.375rem;
  }
  .closing-burst {
    top: -120px;
    right: 180px;
    width: 380px;
    height: 380px;
  }
  .public-page {
    padding-block: 64px;
    gap: 28px;
  }
  .public-page h1 {
    font-size: 3.25rem;
  }
  .page-header p {
    font-size: 1.125rem;
  }
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
  }
  .contact-card {
    padding: 22px;
  }
}

/* src/styles/enrollment.css */
.enrollment {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--concrete);
}
.enrollment-header {
  padding: 0 16px 14px;
}
.enrollment-bar {
  height: 56px;
  margin-inline: -8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.enrollment-bar img {
  height: 24px;
  width: auto;
}
.progress {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  color: #9FB0BC;
  font-size: 0.75rem;
  font-weight: 600;
}
.progress li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.progress i {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.progress li.is-done i {
  background: var(--green);
}
.progress li.is-current {
  color: var(--white);
}
.progress li.is-current i {
  background: var(--spark);
}
.enrollment-aside {
  display: none;
}
.enrollment-content {
  flex: 1;
  width: 100%;
  padding: 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.enrollment-standalone {
  min-height: 100dvh;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.enrollment-standalone img {
  width: 200px;
  height: auto;
}
.step-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step {
  max-width: 40rem;
}
.step-help {
  display: none;
}
.step-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-header .muted {
  font-size: 0.875rem;
}
.step-header .step-count {
  display: none;
}
.step-subheading {
  margin: 6px 0 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
}
.field-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
@media (min-width: 25rem) {
  .field-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.field .hint {
  color: var(--grey-700);
  font-size: 0.875rem;
}
.field .label {
  font-size: 0.9375rem;
  font-weight: 600;
}
.step-actions {
  position: sticky;
  bottom: 0;
  z-index: 5;
  margin: 8px -20px 0;
  padding: 10px 20px 14px;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-actions .btn {
  width: 100%;
}
.step-actions .previous-link {
  display: none;
}
:root:has(.step-actions) {
  scroll-padding-bottom: 140px;
}
.saved-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: var(--grey-700);
  font-size: 0.8125rem;
}
.saved-note svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}
.step-entrance-fee p {
  font-size: 0.9375rem;
}
.review {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-grid,
.review-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(17rem, 100%), 1fr));
  gap: 16px;
}
.details-block.wide {
  grid-column: 1 / -1;
}
.details-block {
  padding: 4px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.block-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  column-gap: 12px;
}
.block-header b {
  color: var(--grey-700);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.block-header a {
  min-height: var(--touch-target);
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--spark-deep);
  text-underline-offset: 4px;
}
.consents {
  margin: 0;
  padding: 16px;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.consents legend {
  float: left;
  margin-bottom: 4px;
}
.consent-field {
  clear: both;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.consent {
  min-height: var(--touch-target);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.4;
  cursor: pointer;
}
.consent input {
  width: 24px;
  height: 24px;
  margin: 0;
  flex: none;
  accent-color: var(--ink);
}
.consent a {
  font-weight: 600;
}
.confirmation {
  padding: 0 20px 30px;
}
.confirmation-burst {
  top: 40px;
  left: 50%;
  width: 320px;
  height: 320px;
  margin-left: -160px;
  opacity: 0.28;
}
.confirmation-content {
  max-width: 32rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.confirmation-content img {
  align-self: flex-start;
  height: 26px;
  width: auto;
  margin-block: 17px;
}
.confirmation-content p {
  color: #D3DCE2;
}
.confirmation-check {
  width: 72px;
  height: 72px;
  margin-top: 24px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
}
.confirmation-check svg {
  width: 38px;
  height: 38px;
}
.registration-number {
  margin-top: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.registration-number span {
  color: #9FB0BC;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.registration-number b {
  font-size: 1.375rem;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.confirmation-next {
  max-width: 36rem;
  padding-block: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.confirmation-next h2 {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
}
.btn-ink {
  background: var(--ink);
  color: var(--white);
}
@media (hover: hover) {
  .btn-ink:hover {
    background: var(--ink-700);
  }
}
.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}
.timeline li {
  position: relative;
  padding-bottom: 18px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
}
.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: var(--grey-300);
}
.timeline li.is-done:not(:last-child)::after {
  background: var(--green);
}
.timeline .step-number {
  width: 32px;
  height: 32px;
  border: 2px solid var(--grey-300);
  border-radius: 50%;
  background: var(--concrete-2);
  color: var(--grey-700);
  display: grid;
  place-items: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.timeline .step-number svg {
  width: 18px;
  height: 18px;
}
.timeline li.is-done .step-number {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}
.timeline li.is-current .step-number {
  border-color: var(--spark);
  background: var(--white);
  color: var(--spark-deep);
  box-shadow: 0 0 0 5px rgba(232, 80, 15, 0.16);
}
.timeline b {
  display: block;
  padding-top: 4px;
}
.timeline small {
  color: var(--grey-700);
  font-size: 0.875rem;
}
.dark .timeline small {
  color: #9FB0BC;
}
.dark .timeline li:not(.is-done):not(.is-current) .step-number {
  border-color: rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #9FB0BC;
}
@media (min-width: 60rem) {
  .enrollment {
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
  }
  .enrollment-header {
    display: none;
  }
  .enrollment-aside {
    position: sticky;
    top: 0;
    height: 100dvh;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .enrollment-aside > img {
    align-self: flex-start;
    height: 36px;
    width: auto;
  }
  .aside-header h2 {
    margin-top: 10px;
    font-size: 2rem;
  }
  .aside-burst {
    bottom: -140px;
    left: -120px;
    width: 420px;
    height: 420px;
    opacity: 0.18;
  }
  .enrollment-content {
    padding: 40px 56px;
  }
  .step-header h1 {
    font-size: 2.5rem;
  }
  .step-header .step-count {
    display: inline;
  }
  :root:has(.step-actions) {
    scroll-padding-bottom: 0;
  }
  .step-actions {
    position: static;
    margin: 6px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .step-actions .btn {
    width: auto;
  }
  .step-actions .previous-link {
    display: inline-flex;
  }
  .saved-note {
    flex-basis: 100%;
    justify-content: flex-start;
  }
  .review-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
  .review .entrance-fee strong {
    font-size: 2.75rem;
  }
  .confirmation {
    padding-bottom: 48px;
  }
  .confirmation-content h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 75rem) {
  .step-layout,
  .review {
    width: 100%;
    max-width: calc(40rem + 20rem + 48px);
    margin-inline: auto;
  }
  .step-layout {
    display: grid;
    grid-template-columns: minmax(0, 40rem) minmax(0, 20rem);
    gap: 16px 48px;
    align-items: start;
  }
  .step-layout > .step-header {
    grid-column: 1 / -1;
  }
  .step-layout .step {
    max-width: none;
  }
  .step-entrance-fee,
  .step-privacy-note {
    display: none;
  }
  .step-help {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .step-help.card {
    padding: 20px;
  }
  .step-help .entrance-fee strong {
    font-size: 2.5rem;
  }
  .step-help .entrance-fee-burst,
  .review-aside .entrance-fee-burst {
    top: -34px;
    right: -34px;
    width: 120px;
    height: 120px;
  }
  .review-grid {
    grid-template-columns: minmax(0, 40rem) minmax(0, 20rem);
    gap: 48px;
  }
  .review-aside {
    position: sticky;
    top: 40px;
  }
  .review-aside .step-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .review-aside .step-actions .btn {
    width: 100%;
  }
  .review-aside .step-actions .previous-link {
    order: 1;
    align-self: center;
  }
}
.mail-call {
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.mail-call-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--spark);
  color: var(--white);
  display: grid;
  place-items: center;
  flex: none;
}
.mail-call-icon svg {
  width: 24px;
  height: 24px;
}
.mail-call-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mail-call-text h2 {
  font-size: 1.125rem;
}
.mail-call-text small {
  font-size: 0.875rem;
}
.enrollment-closed {
  width: 100%;
  max-width: 28rem;
  text-align: left;
}
.enrollment-closed-form {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* src/styles/admin.css */
.admin {
  --admin-tabs-height: 69px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--concrete);
}
.admin-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.admin-nav {
  display: none;
}
.admin-tabs {
  position: sticky;
  bottom: 0;
  z-index: 10;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
}
.admin-tabs a,
.admin-tabs button {
  min-height: 68px;
  border: 0;
  background: transparent;
  color: var(--grey-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.admin-tabs .is-current {
  color: var(--ink);
}
.admin-tabs a svg,
.admin-tabs button svg {
  width: 24px;
  height: 24px;
}
.admin-bar {
  min-height: 60px;
  padding: 8px 10px 8px 20px;
  border-bottom: 1px solid var(--grey-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.admin-bar > img {
  height: 26px;
  width: auto;
}
.account-button {
  min-width: var(--touch-target);
  min-height: var(--touch-target);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.account-button .avatar {
  width: 36px;
  height: 36px;
}
.account-email {
  margin-top: -10px;
}
.admin-header {
  padding: 16px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.admin-header h1 {
  font-size: 1.5rem;
}
.admin-header.page-head {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.admin-content {
  padding: 16px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.search {
  position: relative;
}
.search svg {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  color: var(--grey-700);
}
.search input {
  width: 100%;
  height: 48px;
  padding-left: 44px;
  border: 1.5px solid var(--grey-500);
  border-radius: 24px;
  background: var(--white);
  font-size: 1rem;
}
.tiles {
  margin-inline: -20px;
  padding: 0 20px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  display: flex;
  gap: 12px;
}
.tiles::-webkit-scrollbar {
  display: none;
}
.tile {
  width: 62vw;
  max-width: 17rem;
  flex: none;
  scroll-snap-align: start;
  padding: 14px;
  border-radius: var(--radius-card);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--grey-200);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--grey-700);
  font-size: 0.8125rem;
  font-weight: 600;
}
.tile-icon {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex: none;
}
.tile-icon svg {
  width: 18px;
  height: 18px;
}
.tile-icon-neutral {
  background: #DCE5EB;
  color: var(--ink-700);
}
.tile-icon-warning {
  background: var(--warning-surface);
  color: var(--warning-text);
}
.tile-icon-success {
  background: var(--success-surface);
  color: var(--success-text);
}
.tile strong {
  font: 700 1.625rem/1 var(--font-heading);
  font-variant-numeric: tabular-nums;
}
.tile small {
  color: var(--grey-700);
  font-size: 0.8125rem;
}
.filters {
  margin-inline: -20px;
  padding-inline: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  display: flex;
  gap: 8px;
}
.filters::-webkit-scrollbar {
  display: none;
}
.chip {
  height: var(--touch-target);
  padding-inline: 14px;
  border: 1.5px solid var(--grey-500);
  border-radius: calc(var(--touch-target) / 2);
  background: var(--white);
  color: var(--ink);
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
}
.chip small {
  padding: 1px 7px;
  border-radius: 10px;
  background: rgba(16, 34, 47, 0.08);
  font-size: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.chip.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.chip.is-active small {
  background: rgba(255, 255, 255, 0.18);
}
.customer-table {
  overflow: hidden;
}
.customer-table-head {
  display: none;
}
.customer-row {
  padding: 14px 16px;
  border-top: 1px solid var(--grey-200);
  color: var(--ink);
  text-decoration: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "identity status" "fee      status";
  gap: 4px 12px;
  align-items: center;
}
.customer-row:first-child {
  border-top: 0;
}
.customer-row:hover {
  background: var(--concrete-2);
}
.customer-identity {
  grid-area: identity;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.customer-identity b {
  display: block;
  font-weight: 600;
}
.customer-identity small {
  display: block;
  color: var(--grey-700);
  font-size: 0.875rem;
}
.customer-kvk {
  white-space: nowrap;
}
.customer-fee {
  grid-area: fee;
  padding-left: 52px;
  color: var(--grey-700);
  font-size: 0.875rem;
  font-variant-numeric: tabular-nums;
}
.customer-status {
  grid-area: status;
}
.customer-registered {
  display: none;
}
.avatar-large {
  width: 52px;
  height: 52px;
  font-size: 1.125rem;
}
.facts > div + div {
  margin-top: 14px;
}
.customer-summary {
  display: flex;
  align-items: center;
  gap: 12px;
}
.customer-summary p {
  margin-top: 6px;
  font-size: 0.875rem;
}
.entrance-fee {
  padding: 14px 18px;
  border-radius: var(--radius-card);
  background: var(--concrete-2);
  box-shadow: inset 0 0 0 1px var(--grey-300);
}
.entrance-fee-label {
  color: var(--grey-700);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.entrance-fee-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.entrance-fee-row strong {
  font: 700 1.75rem/1 var(--font-heading);
  font-variant-numeric: tabular-nums;
}
.detail-block {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.block-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.block-title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-700);
}
.attachment {
  padding: 8px 10px;
  border: 1px solid var(--grey-200);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  text-align: left;
  cursor: pointer;
}
.attachment-icon {
  width: 38px;
  height: 44px;
  border-radius: 4px;
  background: var(--error-surface);
  color: var(--error-text);
  display: grid;
  place-items: center;
  flex: none;
}
.attachment-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.attachment-text small {
  display: block;
  color: var(--grey-700);
  font-size: 0.8125rem;
}
.audit-log {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.audit-log li {
  padding-left: 16px;
  border-left: 2px solid var(--green);
}
.audit-log b {
  display: block;
  font-size: 0.9375rem;
}
.audit-log small {
  color: var(--grey-700);
  font-size: 0.875rem;
}
.btn-approve {
  background: var(--green);
  color: var(--white);
}
.btn-danger {
  background: var(--red);
  color: var(--white);
}
.block-button {
  align-self: flex-start;
}
.decision-bar {
  position: sticky;
  bottom: var(--admin-tabs-height);
  z-index: 5;
  margin: 4px -20px -24px;
  padding: 12px 20px;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.dialog-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.hint-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
}
.hint-row svg {
  width: 16px;
  height: 16px;
  flex: none;
}
@media (min-width: 60rem) {
  .admin {
    flex-direction: row;
  }
  .admin-tabs,
  .admin-bar {
    display: none;
  }
  .admin-nav {
    position: sticky;
    top: 0;
    width: 228px;
    height: 100dvh;
    flex: none;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .admin-nav-burst {
    bottom: 120px;
    left: -60px;
    width: 220px;
    height: 220px;
    opacity: 0.14;
  }
  .admin-nav > img {
    height: 32px;
    width: auto;
    margin: 0 10px 6px;
    align-self: flex-start;
  }
  .admin-nav-label {
    padding: 0 10px 20px;
    color: #9FB0BC;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .admin-nav-link {
    min-height: 48px;
    padding-inline: 12px;
    border: 0;
    border-radius: var(--radius-button);
    background: transparent;
    color: #D3DCE2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }
  .admin-nav-link svg {
    width: 22px;
    height: 22px;
  }
  .admin-nav-link.is-current {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 3px 0 0 var(--spark);
    color: var(--white);
    font-weight: 600;
  }
  .admin {
    --admin-content-width: 72rem;
  }
  .customer-detail-page,
  .question-detail-page {
    --admin-content-width: 48rem;
  }
  .update-editor-page {
    --admin-content-width: 44rem;
  }
  .admin-header {
    min-height: 68px;
    padding: 12px max(28px, calc((100% - var(--admin-content-width)) / 2 + 28px));
    border-bottom: 1px solid var(--grey-200);
    background: var(--white);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .admin-header h1 {
    font-size: 1.75rem;
  }
  .admin-header .search {
    width: 320px;
  }
  .admin-header.page-head .link-back {
    margin: 0;
  }
  .admin-content {
    width: 100%;
    max-width: var(--admin-content-width);
    margin-inline: auto;
    padding: 22px 28px 32px;
  }
  .tiles {
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
  .tile {
    width: auto;
    max-width: none;
  }
  .filters {
    margin-inline: 0;
    padding-inline: 0;
    flex-wrap: wrap;
    overflow: visible;
  }
  .customer-table-head {
    padding: 10px 16px;
    border-bottom: 1.5px solid var(--grey-200);
    background: var(--concrete-2);
    color: var(--grey-700);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 140px 150px 120px;
    gap: 12px;
  }
  .customer-table-head .is-numeric {
    text-align: right;
  }
  .customer-row {
    grid-template-columns: minmax(0, 1fr) 140px 150px 120px;
    grid-template-areas: "identity fee status registered";
    gap: 12px;
  }
  .customer-fee {
    padding-left: 0;
    color: var(--ink);
    font-size: 0.9375rem;
    text-align: right;
  }
  .customer-registered {
    grid-area: registered;
    display: block;
    color: var(--grey-700);
    font-size: 0.875rem;
    font-variant-numeric: tabular-nums;
  }
  .detail-block {
    padding: 18px;
  }
  .decision-bar {
    bottom: 16px;
    margin: 4px 0 0;
    padding: 12px;
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-card);
    box-shadow: 0 8px 24px rgb(16 34 47 / 12%);
    justify-content: flex-end;
    grid-template-columns: repeat(2, max-content);
  }
  .facts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
  }
  .facts-grid-thirds {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .facts-grid > div + div {
    margin-top: 0;
  }
  .payment-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 16px 24px;
  }
  .payment-form > .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .dialog-actions {
    justify-content: flex-end;
    grid-template-columns: repeat(2, max-content);
  }
}
.update-table {
  overflow: hidden;
}
.update-row {
  padding: 14px 16px;
  border-top: 1px solid var(--grey-200);
  color: var(--ink);
  text-decoration: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
}
.update-row:first-child {
  border-top: 0;
}
.update-row:hover {
  background: var(--concrete-2);
}
.update-row-text {
  min-width: 0;
}
.update-row-text b {
  display: block;
  font-weight: 600;
}
.update-row-text small {
  display: block;
  color: var(--grey-700);
  font-size: 0.875rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.update-row-meta {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 720px) {
  .update-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
  .update-row-meta {
    grid-column: 2;
    grid-row: 1;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
  }
}
.update-row-meta small {
  color: var(--grey-700);
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
}
.update-row-marks {
  display: flex;
  gap: 6px;
  color: var(--grey-500);
}
.update-row-marks svg {
  width: 18px;
  height: 18px;
}
.choice-group {
  border: 0;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.choice-group legend {
  padding: 0 0 8px;
  font-size: 0.9375rem;
  font-weight: 600;
}
.choice {
  padding: 12px 14px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-card);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.choice:has(input:checked) {
  border-color: var(--ink);
  background: var(--concrete-2);
}
.choice input {
  margin-top: 3px;
  width: 20px;
  height: 20px;
  flex: none;
  accent-color: var(--spark);
}
.choice span {
  font-weight: 600;
}
.choice small {
  display: block;
  color: var(--grey-700);
  font-size: 0.875rem;
  font-weight: 400;
}
.file-button {
  align-self: flex-start;
  cursor: pointer;
}
.file-button input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.file-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
}
.file-line span {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
@media (min-width: 60rem) {
  .update-form .choice-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .update-form > .btn-primary {
    align-self: flex-start;
    min-width: 12rem;
  }
}
.pill-concept {
  background: var(--grey-200);
  color: var(--grey-700);
}
.pill-gepubliceerd {
  background: var(--success-surface);
  color: var(--success-text);
}
.pill-gepubliceerd::before {
  background: var(--green);
}
.question-table {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.question-row {
  padding: 14px 16px;
  color: var(--ink);
  text-decoration: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 4px 12px;
}
.question-row + .question-row {
  border-top: 1px solid var(--grey-200);
}
.question-row:hover,
.question-row:focus-visible {
  background: var(--grey-100, var(--grey-200));
}
.question-row-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.question-row-text small {
  color: var(--grey-700);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.question-row-when {
  grid-column: 1;
  grid-row: 2;
  color: var(--grey-700);
  font-size: 0.8125rem;
}
@media (min-width: 720px) {
  .question-row {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }
  .question-row-when {
    grid-column: 3;
    grid-row: 1;
    white-space: nowrap;
  }
}
.faq-rows {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-row {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 6px 12px;
}
.faq-row.is-dragging {
  box-shadow: 0 8px 24px rgb(16 34 47 / 18%);
  opacity: 0.95;
}
.faq-handle {
  width: var(--touch-target);
  height: var(--touch-target);
  margin: -6px 0 0 -8px;
  padding: 0;
  border: 0;
  display: grid;
  place-items: center;
  border-radius: var(--radius-button);
  background: transparent;
  color: var(--grey-700);
  cursor: grab;
  touch-action: none;
}
.faq-handle:active {
  cursor: grabbing;
}
.faq-handle svg {
  width: 22px;
  height: 22px;
  display: block;
}
.faq-row-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.faq-row-text small {
  color: var(--grey-700);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.faq-row-actions {
  grid-column: 2;
  margin-block: -6px -8px;
  display: flex;
  gap: 8px;
}
.faq-row-actions .btn-link {
  min-height: var(--touch-target);
  padding-inline: 8px;
  display: inline-flex;
  align-items: center;
}
.faq-row-actions .btn-link:first-child {
  margin-left: -8px;
}
.pill-members {
  background: var(--ink);
  color: var(--white);
}
.pill-members::before {
  background: var(--spark-light);
}
.faq-order-hint {
  font-size: 0.875rem;
}
.faq-keyboard-hint {
  display: none;
}
@media (min-width: 60rem) {
  .faq-keyboard-hint {
    display: inline;
  }
}
.administrator-table {
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.administrator-row {
  padding: 14px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 16px;
}
.administrator-row + .administrator-row {
  border-top: 1px solid var(--grey-200);
}
.administrator-identity {
  grid-column: 1 / -1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.administrator-name {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}
.administrator-identity small {
  color: var(--grey-700);
  overflow-wrap: anywhere;
}
.administrator-row.is-revoked .administrator-name b,
.administrator-row.is-revoked .administrator-identity small {
  color: var(--grey-700);
}
.administrator-when dd {
  font-weight: 500;
}
.administrator-revoke {
  min-height: var(--touch-target);
  justify-self: end;
  margin: 0 -8px 0 0;
  padding-inline: 8px;
  display: inline-flex;
  align-items: center;
}
.pill-you {
  background: #DCE5EB;
  color: var(--ink-700);
}
.pill-revoked {
  background: var(--error-surface);
  color: var(--error-text);
}
.pill-revoked::before {
  background: var(--red);
}
@media (min-width: 720px) {
  .administrator-row {
    grid-template-columns: minmax(0, 1fr) 7.5rem 10rem;
    min-height: 72px;
  }
  .administrator-identity {
    grid-column: auto;
  }
}
.account-sheet-link {
  margin-bottom: 10px;
}

/* src/styles/member.css */
.member {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--concrete);
}
.member {
  --member-width: 64rem;
}
.member-main {
  flex: 1;
  min-width: 0;
}
.member.member-failed {
  padding: 24px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.member-failed > * {
  width: 100%;
  max-width: 28rem;
}
.member-failed > .member-failed-logo {
  width: auto;
  height: 32px;
  margin-bottom: 8px;
}
.member-loading .member-content {
  flex: 1;
  justify-content: center;
}
.member-loading-nav {
  display: none;
}
@media (min-width: 60rem) {
  .member-loading-nav {
    width: 228px;
    flex: none;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
  }
  .member-loading-nav img {
    height: 32px;
    width: auto;
    align-self: flex-start;
  }
  .member-loading .member-bar {
    display: none;
  }
}
.member-nav {
  display: none;
}
.member-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.member-content-area {
  flex: 1;
  min-width: 0;
}
.member-bar {
  min-height: 60px;
  padding: 10px 16px 10px 20px;
  border-bottom: 1px solid var(--grey-200);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.member-bar > img {
  height: 26px;
  width: auto;
}
.member-tabs {
  position: sticky;
  bottom: 0;
  z-index: 10;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
}
.member-tabs a,
.member-tabs button {
  min-height: 68px;
  border: 0;
  background: transparent;
  color: var(--grey-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
.member-tabs a svg,
.member-tabs button svg {
  width: 24px;
  height: 24px;
}
.member-tab-icon {
  position: relative;
  display: grid;
}
.member-tab-icon .tab-count {
  position: absolute;
  top: -6px;
  left: 14px;
  border: 2px solid var(--white);
}
.member-tabs .is-current {
  color: var(--spark-deep);
}
.member-tabs button[disabled] {
  color: var(--grey-300);
  cursor: default;
}
.member-content {
  padding: 18px 20px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.member-title {
  font-size: 1.5rem;
}
.member-block {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.member-block .block-header .link {
  margin-block: -15px;
}
.block-error {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
  color: var(--error-text);
  font-size: 0.9375rem;
}
.block-error svg {
  width: 20px;
  height: 20px;
}
.block-error .btn-link {
  min-height: var(--touch-target);
}
.membership-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius-card);
  background: var(--night-sky);
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.membership-card-label {
  color: var(--spark-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.membership-card-name {
  font: 700 1.5rem/1.2 var(--font-heading);
  text-transform: uppercase;
}
.membership-card-facts {
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  gap: 12px;
}
.membership-card-facts dt {
  color: #B8C9D4;
  font-size: 0.75rem;
}
.membership-card-facts dd {
  margin: 2px 0 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.member-row {
  padding: 12px 14px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.member-row-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--concrete-2);
  color: var(--ink-700);
  display: grid;
  place-items: center;
  flex: none;
}
.member-row-text {
  flex: 1;
  min-width: 0;
  font-weight: 600;
}
.member-row-text small {
  display: block;
  color: var(--grey-700);
  font-size: 0.8125rem;
  font-weight: 400;
}
.member-row-meta {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}
.member-block .member-row {
  padding-inline: 0;
}
.card.member-row {
  padding-inline: 16px;
}
.member-row > svg {
  flex: none;
}
.member-dashboard-main,
.member-dashboard-side {
  display: contents;
}
@media (min-width: 60rem) {
  .member-content.member-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    align-items: start;
    gap: 20px 24px;
  }
  .member-dashboard > .member-title,
  .member-dashboard > .dashboard-faq,
  .member-dashboard > .dashboard-details {
    grid-column: 1 / -1;
  }
  .member-dashboard-main,
  .member-dashboard-side {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .member-block details.faq-item p {
    max-width: 68ch;
  }
}
.shielded {
  position: relative;
  justify-content: center;
  overflow: hidden;
}
.shielded-behind {
  position: absolute;
  inset: 0;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  filter: blur(9px);
  opacity: 0.55;
  pointer-events: none;
}
.shielded-card-shape {
  height: 150px;
  border-radius: var(--radius-card);
  background: var(--night-sky);
}
.shielded-bar {
  height: 18px;
  width: 65%;
  border-radius: 9px;
  background: var(--grey-300);
}
.shielded-bar-short {
  width: 40%;
}
.shielded-block {
  height: 92px;
  border-radius: var(--radius-card);
  background: var(--white);
}
.shielded-front {
  position: relative;
  z-index: 1;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.shielded-message {
  width: 100%;
  max-width: 28rem;
  padding: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.shielded-lock {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--concrete);
  color: var(--ink-700);
  display: grid;
  place-items: center;
}
.shielded-lock svg {
  width: 26px;
  height: 26px;
}
.shielded-message h1 {
  font-size: 1.375rem;
}
.shielded-facts {
  margin: 6px 0 0;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-card);
  background: var(--concrete-2);
  text-align: left;
}
.shielded-columns,
.shielded-column {
  display: contents;
}
.shielded-nav-shape,
.shielded-column.shielded-column-side {
  display: none;
}
.shielded-logo {
  height: 32px;
  width: auto;
}
.shielded-contact {
  margin: 4px 0 0;
  color: var(--grey-700);
  font-size: 0.9375rem;
}
@media (min-width: 60rem) {
  .shielded-behind {
    padding: 0;
    display: grid;
    grid-template-columns: 228px minmax(0, 1fr);
    gap: 0;
  }
  .shielded-nav-shape {
    display: block;
    background: var(--night-sky);
  }
  .shielded-columns {
    width: 100%;
    max-width: var(--member-width);
    margin-inline: auto;
    padding: 90px 32px 40px;
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 24px;
  }
  .shielded-column,
  .shielded-column.shielded-column-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .shielded-column .shielded-block {
    flex: 1;
    min-height: 92px;
  }
  .shielded-message {
    box-shadow: 0 12px 40px rgb(16 34 47 / 12%);
  }
  .shielded-front {
    flex: 1;
    margin-left: 228px;
    padding: 40px 20px;
    justify-content: center;
    gap: 20px;
  }
}
@media (min-width: 60rem) {
  .member {
    flex-direction: row;
  }
  .member-tabs {
    display: none;
  }
  .member-bar {
    width: 100%;
    max-width: var(--member-width);
    min-height: 0;
    margin-inline: auto;
    padding: 16px 32px 0;
    border-bottom: 0;
    background: transparent;
    justify-content: flex-end;
  }
  html:has(.member-main) {
    scrollbar-gutter: stable;
  }
  .member-bar > img {
    display: none;
  }
  .member-nav {
    position: sticky;
    top: 0;
    width: 228px;
    height: 100dvh;
    flex: none;
    padding: 22px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .member-nav-burst {
    bottom: 120px;
    left: -60px;
    width: 220px;
    height: 220px;
    opacity: 0.14;
  }
  .member-nav > img {
    height: 32px;
    width: auto;
    margin: 0 10px 6px;
    align-self: flex-start;
  }
  .member-nav-label {
    padding: 0 10px 20px;
    color: #9FB0BC;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .member-nav-link {
    min-height: 48px;
    padding-inline: 12px;
    border: 0;
    border-radius: var(--radius-button);
    background: transparent;
    color: #D3DCE2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }
  .member-nav-link svg {
    width: 22px;
    height: 22px;
  }
  .member-nav-link.is-current {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 3px 0 0 var(--spark);
    color: var(--white);
    font-weight: 600;
  }
  .member-nav-link[disabled] {
    color: #6C7F8C;
    cursor: default;
  }
  .member-content {
    width: 100%;
    max-width: var(--member-width);
    margin-inline: auto;
    padding: 4px 32px 40px;
  }
  .member-title {
    font-size: 1.875rem;
  }
  .member-block {
    padding: 18px;
  }
  .card.member-row {
    padding-inline: 18px;
  }
  .membership-card {
    padding: 24px;
  }
}
.tab-count {
  min-width: 18px;
  height: 18px;
  padding-inline: 5px;
  border-radius: 9px;
  background: var(--spark);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  display: inline-grid;
  place-items: center;
}
.pill-new {
  background: var(--spark);
  color: var(--white);
}
.pill-new::before {
  background: var(--white);
}
.update-cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.update-card {
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  display: block;
}
.update-card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}
.update-card-text {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.update-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--grey-700);
  font-size: 0.8125rem;
}
.update-card-head small {
  font-size: inherit;
}
.update-card-text b {
  font-size: 1.0625rem;
  font-weight: 600;
}
.update-card-text > small {
  color: var(--grey-700);
  font-size: 0.875rem;
}
.update-card-mark {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--grey-700);
}
.update-card-mark svg {
  width: 16px;
  height: 16px;
}
.update-article {
  overflow: hidden;
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.update-article-image {
  margin-top: -18px;
}
.update-article-image img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.update-article > p,
.update-article > .attachment,
.update-article > .field-error {
  margin-inline: 18px;
}
.update-article > .attachment {
  width: auto;
}
.update-body {
  white-space: pre-line;
  line-height: 1.6;
}
.update-neighbours {
  display: grid;
  gap: 10px;
}
.update-neighbour {
  padding: 14px 16px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.update-neighbour small {
  display: block;
  color: var(--grey-700);
  font-size: 0.8125rem;
  font-weight: 400;
}
.update-neighbour-next {
  text-align: right;
  justify-content: flex-end;
}
@media (min-width: 60rem) {
  .update-article,
  .update-neighbours,
  .update-state {
    width: 100%;
    max-width: calc(68ch + 36px);
  }
  .update-neighbours {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .update-neighbour-next {
    grid-column: 2;
  }
}
.identity {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.identity-text {
  min-width: 0;
}
.identity-text b {
  display: block;
  font: 700 1.25rem/1.15 var(--font-heading);
  text-transform: uppercase;
  overflow-wrap: anywhere;
}
.identity-text small {
  display: block;
  margin-top: 4px;
  color: var(--grey-700);
  font-size: 0.8125rem;
}
.fact-list {
  overflow: hidden;
}
.fact {
  padding: 14px 16px;
  border-top: 1px solid var(--grey-200);
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
}
.fact:first-child {
  border-top: 0;
}
a.fact:hover {
  background: var(--concrete-2);
}
.fact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--concrete-2);
  color: var(--ink-700);
  display: grid;
  place-items: center;
  flex: none;
}
.fact-icon svg {
  width: 20px;
  height: 20px;
}
.fact-text {
  flex: 1;
  min-width: 0;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.fact-text small {
  display: block;
  color: var(--grey-700);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fact-text b {
  font-size: 1.25rem;
  font-variant-numeric: tabular-nums;
}
.fact-list-compact .fact {
  padding-block: 12px;
}
.figure-pair {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.figure-pair small {
  display: block;
  color: var(--grey-700);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.figure-pair b {
  display: block;
  margin-top: 4px;
  font: 700 1.375rem/1 var(--font-heading);
  font-variant-numeric: tabular-nums;
}
@media (min-width: 60rem) {
  .member-content.member-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 24px;
  }
  .member-details > * {
    grid-column: 1 / -1;
  }
  .member-details > .details-half {
    grid-column: auto;
    display: flex;
    flex-direction: column;
  }
  .member-details > .details-half > .card {
    flex: 1;
  }
  .fact-list-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .fact-list-row .fact {
    border-top: 0;
    border-left: 1px solid var(--grey-200);
  }
  .fact-list-row .fact:first-child {
    border-left: 0;
  }
  .member-details .member-details-logout {
    display: none;
  }
  .identity {
    padding: 20px;
  }
  .identity-text b {
    font-size: 1.5rem;
  }
  .figure-pair b {
    font-size: 1.75rem;
  }
}
.member-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.member-title-row .member-title {
  margin: 0;
}
.member-content-narrow {
  max-width: 44rem;
}
@media (min-width: 60rem) {
  .member-content.member-content-narrow {
    max-width: var(--member-width);
  }
  .member-content-narrow > * {
    max-width: 44rem;
  }
}
.question-cards {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.question-card {
  padding: 14px 16px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.question-card-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--grey-700);
}
.pill-done {
  background: var(--grey-200);
  color: var(--ink);
}
.pill-open {
  background: var(--warning-surface);
  color: var(--warning-text);
}
.pill-open::before {
  background: var(--amber);
}
.question-thread {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.question-thread-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
}
.question-bubble {
  padding: 14px 16px;
  border-left: 3px solid var(--grey-500);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.question-bubble-board {
  border-left-color: var(--spark);
}
.question-bubble + .question-bubble {
  margin-top: 12px;
}
.question-text {
  margin: 0;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.question-waiting {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.question-waiting svg {
  flex: none;
  width: 20px;
  height: 20px;
}
.member-bar-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bell-button {
  position: relative;
}
.bell-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding-inline: 4px;
  border: 2px solid var(--white);
  border-radius: 10px;
  background: var(--spark);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  display: inline-grid;
  place-items: center;
}
.bell-panel {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 40;
  max-height: 70vh;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--grey-200);
  border-radius: 16px 16px 0 0;
  background: var(--white);
  box-shadow: 0 -8px 30px rgb(16 34 47 / 18%);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bell-backdrop {
  position: fixed;
  inset: 0;
  z-index: 39;
  background: rgb(10 24 34 / 45%);
}
.bell-grip {
  width: 44px;
  height: 5px;
  border-radius: 3px;
  background: var(--grey-300);
  align-self: center;
}
.bell-handle {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bell-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.bell-empty {
  margin: 0;
}
.bell-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.bell-list a {
  padding: 12px 0;
  border-top: 1px solid var(--grey-200);
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.bell-list svg {
  flex: none;
  width: 20px;
  height: 20px;
  color: var(--spark);
}
.bell-list a > span {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bell-list small {
  color: var(--grey-700);
  font-size: 0.8125rem;
}
.bell-when {
  flex: none;
  white-space: nowrap;
}
.bell-more {
  margin: 0;
  font-size: 0.875rem;
}
@media (min-width: 60rem) {
  .bell-panel {
    position: absolute;
    inset: calc(100% + 10px) 0 auto auto;
    width: 360px;
    max-height: 26rem;
    border: 1px solid var(--grey-200);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgb(16 34 47 / 14%);
  }
  .bell-backdrop,
  .bell-grip {
    display: none;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
