/* ==========================================================================
   Monis Chattingstube
   Tokens und Regeln stehen in DESIGN.md. Reihenfolge der Abschnitte:
   01 Fonts · 02 Tokens · 03 Reset · 04 Layout · 05 Typo · 06 Buttons
   07 Icons · 08 Logo · 09 Nav · 10 Hero · 11 Facts · 12 Story
   13 Ablauf · 14 Ledger · 15 Track · 16 Vorteil · 17 Mentor · 18 Markt
   19 Über Moni · 20 Für wen · 21 FAQ · 22 Schluss-CTA · 23 Footer
   24 Sticky CTA · 25 Modal und Formular · 26 Funnelseiten · 27 Rechtsseiten
   28 Reveal-Handshake · 29 Reduced Motion
   ========================================================================== */

/* 01 Fonts ---------------------------------------------------------------- */

@font-face {
  font-family: "Familjen Grotesk";
  src: url("/assets/fonts/familjen-grotesk-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  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: "Familjen Grotesk";
  src: url("/assets/fonts/familjen-grotesk-latin-ext.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  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: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  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: "Instrument Sans";
  src: url("/assets/fonts/instrument-sans-latin-ext.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  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;
}

/* 02 Tokens --------------------------------------------------------------- */

:root {
  --ink: #12312f;
  --ink-2: #1d4744;
  --muted: #5a6d6a;
  --paper: #f7f6f2;
  --surface: #ffffff;
  --line: #e4e2da;
  --line-2: #efede6;

  /* Sektionsgrund und die Kartenflaeche darauf. Beide kippen zusammen in
     .section--surface. Komponenten lesen --card, statt dass die Sektion ihre
     Hintergrundregel ueberschreibt: sonst gewinnt ".section--surface .mcard"
     per Spezifitaet gegen Modifier wie ".mcard--goal". */
  --ground: #f7f6f2;
  --card: #ffffff;

  --accent: #e5795a;
  --accent-ink: #b34420;  /* AA auf paper (5.16), accent-soft (4.67) und weiss */
  --accent-soft: #fbe7df;

  --on-dark: #e8edeb;
  --on-dark-muted: #a8bab6;

  --r-card: 18px;
  --r-input: 11px;
  --r-pill: 999px;

  --shadow-1: 0 1px 2px rgba(18, 49, 47, 0.05), 0 8px 24px -14px rgba(18, 49, 47, 0.18);
  --shadow-2: 0 2px 4px rgba(18, 49, 47, 0.06), 0 24px 52px -24px rgba(18, 49, 47, 0.26);

  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --font-display: "Familjen Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --fs-h1: clamp(2.4rem, 4.6vw + 0.6rem, 4.4rem);
  --fs-h2: clamp(2rem, 3.6vw + 0.5rem, 3.3rem);
  --fs-h3: clamp(1.3rem, 1vw + 1rem, 1.65rem);
  --fs-body: clamp(1.0625rem, 0.3vw + 1rem, 1.1875rem);
  --fs-lead: clamp(1.125rem, 0.6vw + 1rem, 1.35rem);

  --container: 1120px;
  --gutter: clamp(20px, 5vw, 40px);
  --section: clamp(72px, 10vw, 128px);
  --nav-h: 68px;

  --z-nav: 40;
  --z-sticky: 45;
  --z-modal: 60;

  color-scheme: light;
}

/* 03 Reset ---------------------------------------------------------------- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.58;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

/* Muss nach den Komponenten greifen: ".event { display: grid }" wuerde das
   hidden-Attribut sonst aushebeln. */
[hidden] {
  display: none !important;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.06;
  text-wrap: balance;
}

p {
  margin: 0;
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 2.5px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--accent-soft);
  color: var(--ink);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--on-dark);
  border-radius: 0 0 var(--r-input) 0;
}
.skip:focus {
  left: 0;
}

.num {
  font-variant-numeric: lining-nums tabular-nums;
}

/* 04 Layout --------------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section);
}

.section--surface {
  --ground: var(--surface);
  --card: var(--paper);
  background: var(--surface);
}

.section--tight {
  padding-block: clamp(48px, 7vw, 88px);
}

.section__head {
  max-width: 24ch;
  margin-bottom: clamp(32px, 4vw, 56px);
}

.section__head .sub {
  margin-top: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
}

.on-ink {
  --logo-body: #f7f6f2;
  --logo-dot: #12312f;
  background: var(--ink);
  color: var(--on-dark);
}
.on-ink .sub,
.on-ink .lead {
  color: var(--on-dark-muted);
}

/* 05 Typo ----------------------------------------------------------------- */

.h1 {
  font-size: var(--fs-h1);
  letter-spacing: -0.042em;
  line-height: 1;
}

.h2 {
  font-size: var(--fs-h2);
}

.h3 {
  font-size: var(--fs-h3);
  letter-spacing: -0.02em;
  line-height: 1.24;
}

.h4 {
  font-size: 1.0625rem;
  letter-spacing: -0.012em;
  line-height: 1.32;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 34ch;
}

.sub {
  color: var(--muted);
  max-width: 52ch;
}

.prose {
  max-width: 65ch;
  display: grid;
  gap: 1.1em;
}

.tag {
  display: inline-block;
  padding: 5px 13px 6px;
  border-radius: var(--r-pill);
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Korall-Marker unter einem Wort. Animiert background-size, nicht width. */
.mark {
  background-image: linear-gradient(
    100deg,
    transparent 0.1em,
    var(--accent-soft) 0.18em,
    var(--accent-soft) calc(100% - 0.12em),
    transparent calc(100% - 0.04em)
  );
  background-repeat: no-repeat;
  background-size: 100% 0.5em;
  background-position: 0 86%;
  padding-inline: 0.06em;
  margin-inline: -0.06em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.js .mark[data-swipe] {
  background-size: 0% 0.5em;
  transition: background-size 820ms var(--ease-out) 120ms;
}
.js .mark[data-swipe].is-in {
  background-size: 100% 0.5em;
}
.on-ink .mark {
  background-image: linear-gradient(
    100deg,
    transparent 0.1em,
    rgba(229, 121, 90, 0.32) 0.18em,
    rgba(229, 121, 90, 0.32) calc(100% - 0.12em),
    transparent calc(100% - 0.04em)
  );
}

.strike {
  position: relative;
  color: var(--muted);
}
.strike::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 54%;
  height: 2px;
  background: currentColor;
  transform-origin: left center;
  transform: rotate(-1.2deg);
  opacity: 0.7;
}

/* 06 Buttons -------------------------------------------------------------- */

.btn {
  --btn-bg: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 58px;
  padding: 15px 28px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.014em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: inset 0 -2px 0 rgba(18, 49, 47, 0.14), 0 8px 18px -10px rgba(18, 49, 47, 0.34);
  transition: transform 160ms var(--ease-out), background-color 200ms ease,
    box-shadow 200ms ease;
  -webkit-tap-highlight-color: transparent;
}

/* Sheen-Sweep. Läuft auf Hover und beim Aufmerksamkeits-Ping. */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 32%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 68%
  );
  transform: translateX(-120%);
}
.btn.is-pinging::after {
  transform: translateX(120%);
  transition: transform 900ms var(--ease-out);
}

.btn__i {
  width: 19px;
  height: 19px;
  flex: none;
  transition: transform 240ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .btn:not(:disabled):hover {
    --btn-bg: #ee8a6d;
    box-shadow: inset 0 -2px 0 rgba(18, 49, 47, 0.16), 0 12px 24px -12px rgba(18, 49, 47, 0.4);
  }
  .btn:not(:disabled):hover .btn__i {
    transform: translateX(4px);
  }
  .btn:not(:disabled):hover::after {
    transform: translateX(120%);
    transition: transform 700ms var(--ease-out);
  }
}

.btn:active:not(:disabled) {
  transform: scale(0.97);
}

.btn:disabled {
  cursor: not-allowed;
  background: #e6e4dc;
  /* 4.87:1 auf der Flaeche. Der Nutzer soll lesen koennen, was passiert,
     sobald das Formular vollstaendig ist. */
  color: #5a635f;
  box-shadow: none;
}

.on-ink .btn,
.seats .btn {
  box-shadow: inset 0 -2px 0 rgba(18, 49, 47, 0.18);
}

.btn--lg {
  min-height: 64px;
  padding: 18px 34px;
  font-size: 1.125rem;
}

.btn--block {
  width: 100%;
}

.btn--ghost {
  --btn-bg: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn--ghost::after {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover {
    --btn-bg: var(--surface);
    border-color: var(--ink);
    box-shadow: none;
  }
}

.btn-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--muted);
}
.btn-note .i {
  width: 16px;
  height: 16px;
  flex: none;
}
.on-ink .btn-note {
  color: var(--on-dark-muted);
}

/* 07 Icons ---------------------------------------------------------------- */

.i {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex: none;
}

.ibox {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.ibox .i {
  width: 21px;
  height: 21px;
}
.on-ink .ibox {
  background: rgba(232, 237, 235, 0.1);
  color: var(--accent);
}

/* 08 Logo ----------------------------------------------------------------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: inherit;
}

/* Als Link braucht das Logo 44px Trefferhoehe. Negativer Rand haelt die
   optische Ausrichtung, damit die Navigation nicht waechst. */
a.logo {
  min-height: 44px;
  padding-block: 5px;
  margin-block: -5px;
}

.mark-logo {
  width: 34px;
  height: 34px;
  flex: none;
}
.mark-logo__body {
  fill: var(--logo-body, var(--ink));
}
.mark-logo__dot {
  fill: var(--logo-dot, var(--paper));
}
.mark-logo__dot--accent {
  fill: var(--accent);
}

/* Tipp-Indikator. Einziges Dauer-Loop-Element der Seite. */
.motion .logo:hover .mark-logo__dot,
.motion .logo:focus-visible .mark-logo__dot,
.motion .logo:hover .mark-logo__dot--accent,
.motion .logo:focus-visible .mark-logo__dot--accent {
  animation: typing 1.1s var(--ease-in-out) infinite;
}
.motion .logo .mark-logo__dot:nth-of-type(2) {
  animation-delay: 0.12s;
}
.motion .logo .mark-logo__dot:nth-of-type(3) {
  animation-delay: 0.24s;
}

@keyframes typing {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-2.1px);
  }
}

.logo__text {
  display: grid;
  gap: 1px;
  line-height: 1;
}
.logo__name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.logo__sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.on-ink .logo__sub {
  color: var(--on-dark-muted);
}

/* 09 Nav ------------------------------------------------------------------ */

.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(247, 246, 242, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, background-color 220ms ease;
}
.nav.is-stuck {
  border-bottom-color: var(--line);
}
.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}
.nav .btn {
  min-height: 46px;
  padding: 11px 20px;
  font-size: 0.9375rem;
}

@media (max-width: 640px) {
  .nav .btn {
    display: none;
  }
}

/* 10 Hero ----------------------------------------------------------------- */

.hero {
  padding-block: clamp(28px, 4vw, 72px) var(--section);
  overflow: clip;
}

.hero__grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
    gap: clamp(40px, 5vw, 76px);
  }
}

.hero__copy {
  display: grid;
  gap: 22px;
  justify-items: start;
}

.hero__title {
  font-size: var(--fs-h1);
  letter-spacing: -0.042em;
  line-height: 1;
  max-width: 15ch;
}

.hero__sub {
  font-size: var(--fs-lead);
  line-height: 1.45;
  color: var(--ink-2);
  max-width: 38ch;
}

.hero__actions {
  display: grid;
  gap: 12px;
  width: 100%;
}

@media (min-width: 560px) {
  .hero__actions {
    width: auto;
  }
}

.hero__photo {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #e9e7e1;
  box-shadow: var(--shadow-2);
}
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(18, 49, 47, 0.08);
  pointer-events: none;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Provisions-Karte, die auf dem Hero-Foto liegt. */
.floatcard {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 2px 13px;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-1);
}
.floatcard__label {
  grid-column: 2;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.3;
}
.floatcard__value {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.028em;
}
.floatcard .ibox {
  grid-row: span 2;
  width: 44px;
  height: 44px;
}

@media (min-width: 900px) {
  .floatcard {
    left: auto;
    right: 18px;
    bottom: 18px;
    width: min(300px, 78%);
  }
}

/* 11 Facts ---------------------------------------------------------------- */

.facts {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
}

@media (min-width: 620px) {
  .facts {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1000px) {
  .facts {
    grid-template-columns: repeat(4, 1fr);
  }
}

.fact {
  display: grid;
  gap: 5px;
  padding: 22px 24px 24px;
  background: var(--ground);
}
.fact__k {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.1;
}
.fact__v {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.4;
}

/* 12 Story ---------------------------------------------------------------- */

.story {
  display: grid;
  gap: clamp(30px, 4vw, 52px);
}

@media (min-width: 880px) {
  .story {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.story__stats {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 26px;
}
.story__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 2px;
  background: var(--ground);
}
.story__row dt {
  color: var(--muted);
  font-size: 0.9375rem;
}
.story__row dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  /* "5 bis 10 Jahre" darf nicht umbrechen, sonst kippt die Zeile auseinander. */
  white-space: nowrap;
}

@media (max-width: 400px) {
  .story__row dd {
    font-size: 1.125rem;
  }
}

.pull {
  margin: 0;
  padding: 0;
  border: 0;
}
.pull__q {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw + 0.8rem, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 1.3;
  text-wrap: balance;
}
.pull__q::before {
  content: "\201E";
}
.pull__q::after {
  content: "\201C";
}
.pull__by {
  display: block;
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--muted);
}
.pull .i {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--accent);
}

/* 13 Ablauf --------------------------------------------------------------- */

.flow {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
}

@media (min-width: 900px) {
  .flow {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
  }
}

.steps {
  display: grid;
  gap: 2px;
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 4px 18px;
  padding: 22px 0 24px;
  border-top: 1px solid var(--line);
}
.step:last-child {
  border-bottom: 1px solid var(--line);
}
.step__n {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--on-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  font-variant-numeric: lining-nums tabular-nums;
}
.step__t {
  align-self: center;
}
.step__d {
  font-size: 1rem;
  color: var(--muted);
  max-width: 44ch;
}

.photo {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: #e9e7e1;
}
.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(18, 49, 47, 0.08);
  pointer-events: none;
}
.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo--tall {
  aspect-ratio: 4 / 5;
}
.photo--wide {
  aspect-ratio: 5 / 4;
}

.photo__cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 44px 18px 16px;
  background: linear-gradient(to top, rgba(18, 49, 47, 0.8), transparent);
  color: var(--on-dark);
  font-size: 0.9375rem;
  line-height: 1.35;
}

/* 14 Ledger --------------------------------------------------------------- */

.ledger {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--card);
}

.ledger__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.ledger__row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 2px 15px;
  padding: 17px 22px;
  border-bottom: 1px solid var(--line-2);
}
.ledger__row:last-of-type {
  border-bottom: 0;
}
.ledger__t {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.ledger__d {
  grid-column: 2;
  font-size: 0.875rem;
  color: var(--muted);
}
.ledger__amt {
  grid-row: span 2;
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.028em;
  white-space: nowrap;
}
.ledger__row .ibox {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  border-radius: 12px;
}
.ledger__row .ibox .i {
  width: 19px;
  height: 19px;
}

.ledger__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px 22px;
  background: var(--ink);
  color: var(--on-dark);
}
.ledger__total-k {
  font-size: 0.9375rem;
  color: var(--on-dark-muted);
  max-width: 22ch;
  line-height: 1.35;
}
.ledger__total-v {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw + 0.7rem, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.036em;
  white-space: nowrap;
}

/* Unter 560px reicht die Breite nicht fuer Icon, Text und Betrag nebeneinander.
   Der Betrag rueckt dann unter den Text, statt auf zwei Zeilen zu brechen. */
@media (max-width: 559px) {
  .ledger__row {
    grid-template-columns: 40px 1fr;
    gap: 3px 13px;
    padding: 16px 18px;
  }
  .ledger__amt {
    grid-column: 2;
    grid-row: auto;
    margin-top: 5px;
    font-size: 1.125rem;
  }
  .ledger__head,
  .ledger__total {
    padding-inline: 18px;
  }
  .ledger__total {
    display: grid;
    gap: 10px;
  }
  .ledger__total-k {
    max-width: none;
  }
}

/* 15 Track ---------------------------------------------------------------- */

.track {
  display: grid;
  gap: 14px;
  grid-auto-flow: column;
  grid-auto-columns: minmax(258px, 1fr);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  margin-inline: calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: none;
}
.track::-webkit-scrollbar {
  display: none;
}

@media (min-width: 900px) {
  .track {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    margin-inline: 0;
    padding-inline: 0;
    gap: 18px;
  }
}

.mcard {
  scroll-snap-align: start;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px 24px 26px;
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
}
.mcard--goal {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--on-dark);
}
.mcard--goal .mcard__k,
.mcard--goal .mcard__d {
  color: var(--on-dark-muted);
}

.mcard__k {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.mcard__v {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 1.6vw + 1.2rem, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.036em;
  line-height: 1.02;
}
.mcard__u {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-top: -8px;
}
.mcard--goal .mcard__u {
  color: var(--on-dark-muted);
}
.mcard__d {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Fortschrittsbalken ohne gefüllte Hintergrundspur. */
.bar {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 46px;
}
.bar span {
  flex: 1;
  border-radius: 3px;
  background: var(--accent);
  transform-origin: bottom;
}
.mcard--goal .bar span {
  background: var(--accent);
}
/* Jeder Monat bekommt ein eigenes Profil. Gleiche Balken in allen drei
   Karten wuerden suggerieren, es passiere nichts. */
.bar--1 span:nth-child(1) { height: 18%; }
.bar--1 span:nth-child(2) { height: 26%; }
.bar--1 span:nth-child(3) { height: 34%; }
.bar--1 span:nth-child(4) { height: 44%; }

.bar--2 span:nth-child(1) { height: 30%; }
.bar--2 span:nth-child(2) { height: 44%; }
.bar--2 span:nth-child(3) { height: 58%; }
.bar--2 span:nth-child(4) { height: 72%; }

.bar--3 span:nth-child(1) { height: 48%; }
.bar--3 span:nth-child(2) { height: 66%; }
.bar--3 span:nth-child(3) { height: 84%; }
.bar--3 span:nth-child(4) { height: 100%; }

/* 16 Vorteil -------------------------------------------------------------- */

.split {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--rev > :first-child {
    order: 2;
  }
}

.checklist {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}
.check-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 3px 13px;
}
.check-item > .i {
  width: 21px;
  height: 21px;
  margin-top: 3px;
  color: var(--accent-ink);
}
.check-item__t {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.check-item__d {
  grid-column: 2;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.45;
}
.on-ink .check-item > .i {
  color: var(--accent);
}
.on-ink .check-item__d {
  color: var(--on-dark-muted);
}

/* 17 Mentor --------------------------------------------------------------- */

.versus {
  display: grid;
  gap: 16px;
}

@media (min-width: 760px) {
  .versus {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

.vcard {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px 26px 28px;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--card);
}
.vcard--good {
  border-color: rgba(229, 121, 90, 0.45);
  background: var(--accent-soft);
}
.vcard__k {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.vcard--good .vcard__k {
  color: var(--accent-ink);
}
.vcard__k .i {
  width: 16px;
  height: 16px;
}
.vlist {
  display: grid;
  gap: 11px;
}
.vlist li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  font-size: 1rem;
  line-height: 1.45;
}
.vlist .i {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--muted);
}
.vcard--good .vlist .i {
  color: var(--accent-ink);
}

/* 18 Markt ---------------------------------------------------------------- */

.band {
  display: grid;
  gap: clamp(30px, 4vw, 48px);
}

@media (min-width: 900px) {
  .band {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.band__points {
  display: grid;
  gap: 1px;
  background: rgba(232, 237, 235, 0.14);
  border-radius: var(--r-card);
  overflow: hidden;
}
.band__point {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 3px 15px;
  padding: 20px 22px;
  background: var(--ink);
}
.band__point-t {
  font-weight: 600;
  letter-spacing: -0.01em;
}
.band__point-d {
  grid-column: 2;
  font-size: 0.9375rem;
  color: var(--on-dark-muted);
  line-height: 1.45;
}

/* 19 Über Moni ------------------------------------------------------------ */

.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

/* 20 Für wen -------------------------------------------------------------- */

.fit {
  display: grid;
  gap: 16px;
}

@media (min-width: 760px) {
  .fit {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
}

.seats {
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: clamp(28px, 4vw, 44px);
  padding: 26px 26px 28px;
  border-radius: var(--r-card);
  background: var(--ink);
  color: var(--on-dark);
}

@media (min-width: 800px) {
  .seats {
    grid-template-columns: 1fr auto;
    gap: 28px;
    padding: 28px 32px;
  }
}

.seats__t {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.024em;
  line-height: 1.3;
}
.seats__d {
  margin-top: 8px;
  font-size: 0.9375rem;
  color: var(--on-dark-muted);
  max-width: 46ch;
}

/* 21 FAQ ------------------------------------------------------------------ */

.faq {
  max-width: 760px;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 2px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.3;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary .i {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--muted);
  transition: transform 220ms var(--ease-out);
}
.faq details[open] summary .i {
  transform: rotate(180deg);
}
.faq__a {
  padding: 0 2px 22px;
  color: var(--muted);
  max-width: 62ch;
}
.faq__a p + p {
  margin-top: 0.9em;
}

@media (hover: hover) and (pointer: fine) {
  .faq summary:hover {
    color: var(--accent-ink);
  }
}

/* 22 Schluss-CTA ---------------------------------------------------------- */

.finale {
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
}

@media (min-width: 880px) {
  .finale {
    grid-template-columns: 1fr 0.86fr;
  }
}

.finale__copy {
  display: grid;
  gap: 22px;
  justify-items: start;
}

/* 23 Footer --------------------------------------------------------------- */

.footer {
  padding-block: clamp(44px, 6vw, 68px) 108px;
  background: var(--ink);
  color: var(--on-dark);
  --logo-body: #f7f6f2;
  --logo-dot: #12312f;
}

@media (min-width: 641px) {
  .footer {
    padding-bottom: clamp(44px, 6vw, 68px);
  }
}

.footer__in {
  display: grid;
  gap: 28px;
}

@media (min-width: 760px) {
  .footer__in {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 40px;
  }
}

.footer .logo__sub {
  color: var(--on-dark-muted);
}

.footer__note {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--on-dark-muted);
  max-width: 56ch;
  line-height: 1.5;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  font-size: 0.9375rem;
  /* Negativer Rand nur vertikal und links: die vergroesserte Trefferflaeche
     soll die Ausrichtung nicht verschieben, aber auch nicht den Container
     verbreitern. */
  margin: -10px 0 -10px -12px;
}
.footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-inline: 12px;
  color: var(--on-dark-muted);
  text-decoration: none;
}
.footer__nav a span {
  border-bottom: 1px solid transparent;
}
@media (hover: hover) and (pointer: fine) {
  .footer__nav a:hover {
    color: var(--on-dark);
  }
  .footer__nav a:hover span {
    border-bottom-color: currentColor;
  }
}

.footer__bar {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(232, 237, 235, 0.16);
  font-size: 0.8125rem;
  color: var(--on-dark-muted);
}

/* 24 Sticky CTA ----------------------------------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-sticky);
  padding: 11px var(--gutter) calc(11px + env(safe-area-inset-bottom));
  background: rgba(247, 246, 242, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 320ms var(--ease-out);
}
.sticky-cta.is-visible {
  transform: none;
}
.sticky-cta .btn {
  width: 100%;
  min-height: 54px;
}

@media (min-width: 641px) {
  .sticky-cta {
    display: none;
  }
}

/* 25 Modal und Formular --------------------------------------------------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms var(--ease-out), visibility 220ms;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 49, 47, 0.52);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  border: 0;
  padding: 0;
  cursor: pointer;
}
.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 470px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 26px 24px 28px;
  border-radius: var(--r-card);
  background: var(--surface);
  box-shadow: var(--shadow-2);
  /* Modals skalieren aus der Mitte, nicht aus einem Trigger. */
  transform: scale(0.96);
  transition: transform 220ms var(--ease-out);
}
.modal.is-open .modal__dialog {
  transform: scale(1);
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: var(--r-pill);
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), color 160ms ease;
}
.modal__close .i {
  width: 17px;
  height: 17px;
}
@media (hover: hover) and (pointer: fine) {
  .modal__close:hover {
    color: var(--ink);
  }
}
.modal__close:active {
  transform: scale(0.94);
}
.modal__head {
  max-width: 30ch;
  padding-right: 34px;
}
.modal__head .sub {
  margin-top: 10px;
  font-size: 0.9375rem;
}
body.modal-open {
  overflow: hidden;
}

.form {
  display: grid;
  /* minmax(0, 1fr) statt 1fr: sonst zieht die intrinsische Mindestbreite des
     Telefonfelds die Spalte ueber den Dialog hinaus. */
  grid-template-columns: minmax(0, 1fr);
  gap: 15px;
  margin-top: 24px;
}

.field {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 7px;
}
.field > label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.006em;
}
.field input,
.field select {
  min-height: 54px;
  /* Formularfelder bringen eine intrinsische Mindestbreite mit (size-Attribut).
     Ohne min-width:0 koennen sie in Grid und Flex nicht schrumpfen. */
  min-width: 0;
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-input);
  background: var(--surface);
  font-size: 1.0625rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input::placeholder {
  color: #8b948f;
}
.field input:focus,
.field select:focus {
  outline: 0;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(18, 49, 47, 0.1);
}
.field__phone {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 9px;
}
.field__phone select {
  padding-inline: 11px;
}
.field__error {
  display: none;
  font-size: 0.875rem;
  color: var(--accent-ink);
}
.field.has-error input {
  border-color: var(--accent-ink);
}
.field.has-error .field__error {
  display: block;
}

.check {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 11px;
  align-items: start;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--ink-2);
  cursor: pointer;
}
.check input {
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--ink);
  cursor: pointer;
}
.check a {
  color: var(--accent-ink);
}

.form__legal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.form__legal .i {
  width: 15px;
  height: 15px;
  flex: none;
}

/* 26 Funnelseiten --------------------------------------------------------- */

.funnel {
  padding-block: clamp(30px, 5vw, 64px) clamp(56px, 8vw, 104px);
}

.funnel__head {
  max-width: 34ch;
  margin-bottom: clamp(26px, 3.5vw, 40px);
}
.funnel__head .sub {
  margin-top: 14px;
}

.trail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.trail__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  background: var(--line);
  flex: none;
}
.trail__dot.is-on {
  background: var(--accent);
}

/* Click-to-load Video. Vimeo lädt erst nach dem Klick. */
.video {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 800px;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-2);
}
.video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.video__btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 14px;
  align-content: center;
  border: 0;
  background: linear-gradient(to top, rgba(18, 49, 47, 0.62), rgba(18, 49, 47, 0.14));
  color: var(--on-dark);
  cursor: pointer;
  transition: background-color 220ms ease;
}
.video__play {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--ink);
  transition: transform 220ms var(--ease-out);
}
.video__play .i {
  width: 30px;
  height: 30px;
  margin-left: 3px;
}
.video__label {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  max-width: 24ch;
  text-align: center;
  padding-inline: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .video__btn:hover .video__play {
    transform: scale(1.06);
  }
}
.video__btn:active .video__play {
  transform: scale(0.97);
}
.video.is-pending .video__label {
  display: none;
}
.video__pending {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 18px;
  background: rgba(18, 49, 47, 0.9);
  color: var(--on-dark-muted);
  font-size: 0.875rem;
  text-align: center;
}

.cal {
  max-width: 800px;
}
.cal__box {
  min-width: 320px;
  height: 1040px;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-1);
}
@media (max-width: 779px) {
  .cal__box {
    height: 1160px;
  }
}
.cal__loading {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--muted);
  font-size: 0.9375rem;
}
.cal__fallback {
  margin-top: 14px;
  font-size: 0.875rem;
  color: var(--muted);
}
.cal__fallback a {
  color: var(--accent-ink);
}

.event {
  display: grid;
  gap: 18px;
  max-width: 560px;
  padding: 26px;
  border-radius: var(--r-card);
  border: 1px solid var(--line);
  background: var(--surface);
}
/* Zeilen mit Haarlinie statt eigener Kartenflaeche: sonst steckt eine Karte
   in einer Karte. */
.event__rows {
  display: grid;
  border-top: 1px solid var(--line);
}
.event__row {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 3px 14px;
  padding: 15px 2px;
  border-bottom: 1px solid var(--line);
}
.event__k {
  font-size: 0.8125rem;
  color: var(--muted);
}
.event__v {
  grid-column: 2;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.event__row .ibox {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  border-radius: 11px;
}
.event__row .ibox .i {
  width: 18px;
  height: 18px;
}
.event__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.event__actions .btn {
  min-height: 48px;
  padding: 12px 20px;
  font-size: 0.9375rem;
}

.prep {
  display: grid;
  gap: 16px;
  margin-top: clamp(34px, 5vw, 56px);
  max-width: 620px;
}

/* 27 Rechtsseiten --------------------------------------------------------- */

.legal {
  padding-block: clamp(34px, 5vw, 64px) clamp(56px, 8vw, 96px);
}
.legal__in {
  max-width: 68ch;
}
.legal h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.75rem);
}
.legal h2 {
  margin-top: 2.2em;
  font-size: 1.3rem;
  letter-spacing: -0.022em;
}
.legal h3 {
  margin-top: 1.6em;
  font-size: 1.0625rem;
}
.legal p,
.legal ul {
  margin-top: 0.9em;
  color: var(--ink-2);
}
.legal ul {
  display: grid;
  gap: 0.5em;
  padding-left: 1.1em;
  list-style: disc;
}
.legal a {
  color: var(--accent-ink);
}
.legal__note {
  margin-top: 0.6em;
  font-size: 0.875rem;
  color: var(--muted);
}

/* Platzhalter, die der Kunde noch liefern muss. */
.todo {
  padding: 2px 7px;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  font-size: 0.9375rem;
  font-weight: 600;
}

/* 28 Reveal-Handshake ----------------------------------------------------- */

/* Inhalt ist opak, solange JS und Motion nicht beide da sind. */
.js.motion [data-reveal],
.js.motion [data-stagger] > * {
  opacity: 0;
}
.gsap-ready [data-reveal],
.gsap-ready [data-stagger] > * {
  opacity: 1;
}
.split-word {
  display: inline-block;
}

/* 29 Reduced Motion ------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .mark[data-swipe] {
    background-size: 100% 0.5em;
  }
}
