/* 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;
  --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;
  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;
}
.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;
}
.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;
}
.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 input:focus-visible {
  outline-offset: 1px;
  border-color: var(--ink);
}
.field.has-error input {
  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 .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;
}

/* 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);
}
.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);
}
.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: relative;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
}
.site-header.is-over-hero {
  position: absolute;
  inset-inline: 0;
  top: 0;
  background: transparent;
}
.site-header-row {
  height: 64px;
  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;
}
.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);
}
.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 104px;
  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 {
  padding-block: 64px 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: 1.875rem;
}
.hero-lead {
  max-width: 48ch;
  color: #D3DCE2;
}
.hero-buttons {
  padding-top: 4px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stats {
  margin: 8px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat strong {
  font: 700 1.5rem/1 var(--font-heading);
  font-variant-numeric: tabular-nums;
}
.stat span {
  color: #B9C6CF;
  font-size: 0.8125rem;
  line-height: 1.3;
}
.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);
}
.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;
}
.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.6875rem;
  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.6875rem;
  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;
}
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);
}
details.faq-item p {
  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;
}
.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;
}
.start-button {
  align-self: flex-start;
}
.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);
}
.contact-grid {
  display: grid;
  gap: 24px;
}
.alert-info a {
  font-weight: 600;
}
@media (min-width: 40rem) {
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 40px;
  }
}
@media (min-width: 60rem) {
  .container {
    padding-inline: 56px;
  }
  .site-header-row {
    height: 84px;
  }
  .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;
  }
  .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.kop-groot {
    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;
  }
  .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;
  }
  .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 {
    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 {
  max-width: 40rem;
}
.step-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.step-header .muted {
  font-size: 0.875rem;
}
.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: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.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;
}
.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);
}
.upload {
  padding: 12px;
  border: 1.5px dashed var(--grey-500);
  border-radius: var(--radius-card);
  background: var(--concrete-2);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.upload.has-error {
  border-color: var(--red);
  background: #FBF1EF;
}
.upload-button {
  cursor: pointer;
}
.upload-button:focus-within {
  outline: 3px solid var(--spark);
  outline-offset: 2px;
}
.file {
  padding: 8px 10px;
  border: 1px solid var(--grey-200);
  border-radius: 6px;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
}
.file-icon {
  width: 38px;
  height: 44px;
  border-radius: 4px;
  background: var(--error-surface);
  color: var(--error-text);
  display: grid;
  place-items: center;
  flex: none;
}
.file-text {
  flex: 1;
  min-width: 0;
  overflow-wrap: anywhere;
}
.file-text small {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--success-text);
  font-size: 0.8125rem;
  font-weight: 600;
}
.file-text small svg {
  width: 14px;
  height: 14px;
}
.file-text small.file-error {
  color: var(--red);
}
.step-entrance-fee p {
  font-size: 0.9375rem;
}
.review {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-grid,
.review-details,
.review-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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;
}
.details-list {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 10px 16px;
  font-size: 0.9375rem;
}
.details-list dt {
  color: var(--grey-700);
}
.details-list dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
  overflow-wrap: break-word;
  font-variant-numeric: tabular-nums;
}
.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);
}
.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-aside .entrance-fee {
    margin-top: auto;
  }
  .enrollment-aside .entrance-fee strong {
    font-size: 2.5rem;
  }
  .enrollment-content {
    padding: 40px 56px;
  }
  .step h1 {
    font-size: 2.5rem;
  }
  .step-entrance-fee {
    display: none;
  }
  .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;
  }
  .photo-button {
    display: none;
  }
  .upload-buttons {
    grid-template-columns: auto;
    justify-content: start;
  }
  .review-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
  }
  .review-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .details-block.wide {
    grid-column: 1 / -1;
  }
  .review .entrance-fee strong {
    font-size: 2.75rem;
  }
  .confirmation {
    padding-bottom: 48px;
  }
  .confirmation-content h1 {
    font-size: 2.5rem;
  }
}

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