/* Ondyne landing page
   Values transcribed from the Claude Design prototype "Ondyne Landing Page.dc.html".
   Palette, type scale and spacing are 1:1 with the design; the media queries at the
   bottom are the responsive behaviour the prototype did not specify. */

/*
 * STI-624 — LA LANDING SUIT LE MODE SOMBRE, ET IL A FALLU DÉMÊLER UN JETON POUR ÇA.
 *
 * PB, 31/08 : « le mode AUTO est cassé ». Il l'était depuis STI-618c : `/` rendait auparavant
 * `src/pages/Landing.tsx`, qui portait 41 jetons de thème et suivait donc l'OS comme le reste de
 * l'application. Le HTML statique qui l'a remplacée n'avait aucune règle `prefers-color-scheme`.
 *
 * `--cream` SERVAIT À DEUX CHOSES : le fond de la page, ET le texte posé sur les surfaces navy
 * (boutons, champ du formulaire final, pastille). L'inverser pour le mode sombre aurait donc donné
 * du sombre sur sombre sur les quatre endroits où il était une couleur de TEXTE. D'où `--on-navy`,
 * qui ne bouge jamais : ce qui est écrit sur du navy reste clair dans les deux modes.
 *
 * `color-scheme` est déclaré pour que les champs, la barre de défilement et les contrôles natifs
 * suivent aussi — sans lui, le formulaire garde sa forme claire au milieu d'une page sombre.
 */
:root {
  color-scheme: light dark;

  /**
   * TROIS JETONS QUI NE BOUGENT PAS, et un qui suit.
   *
   * `--on-navy` / `--on-bronze` : ce qui est écrit SUR une surface colorée. Ces surfaces gardent
   * leur couleur dans les deux modes, donc leur texte aussi — les inverser donnerait du sombre sur
   * sombre sur les boutons.
   *
   * `--heading` : le texte des titres, qui utilisait `--navy`. C'est le MÊME piège que `--cream` :
   * un jeton qui sert à la fois de surface et d'encre ne peut pas s'inverser. Vu à l'écran avant
   * d'être corrigé — les titres sortaient en bleu foncé sur noir.
   *
   * `--nav-bg` : la barre du haut était écrite en `rgba(250, 248, 243, 0.9)` littéral, donc
   * increvablement claire. Elle a maintenant son jeton.
   */
  --on-navy: #FAF8F3;
  --on-bronze: #1B2836;
  --heading: #1B2836;
  --nav-bg: rgba(250, 248, 243, 0.9);

  --cream: #FAF8F3;
  --white: #FFFFFF;
  --navy: #1B2836;
  --navy-soft: #233245;
  --navy-border: #33445A;
  --navy-sub: #9FB0BF;
  --ink: #1D1A15;
  --body: #4A453C;
  --muted: #6B6459;
  --muted-light: #94897A;
  --muted-lighter: #B0A896;
  --bronze: #B8894A;
  --bronze-deep: #8A6A2F;
  --hairline: #EDE7D9;
  --field-border: #DCD4C0;
  --rule: #D8D0BE;

  --pad-xs: clamp(24px, 3.5vw, 34px);
  --pad-sm: clamp(48px, 7vw, 80px);
  --pad-md: clamp(56px, 7vw, 88px);
  --pad-lg: clamp(56px, 7vw, 96px);
  --pad-xl: clamp(56px, 8vw, 96px);
}

/*
 * LE MODE SOMBRE. Seuls les jetons changent — aucune règle de mise en page n'est dupliquée.
 * Le fond reprend celui de l'application (`#121110`, la valeur qu'`applyTheme` pose déjà sur la
 * barre d'état), pour que passer de la page de vente à l'app ne fasse pas un saut de couleur.
 * Le bronze s'éclaircit : #B8894A sur un fond sombre perd le contraste qu'il a sur le crème.
 */
@media (prefers-color-scheme: dark) {
  :root {
    --cream: #121110;
    --white: #191817;
    --navy: #1E3348;
    --navy-soft: #22384F;
    --navy-border: #35506B;
    --navy-sub: #9FB0BF;
    --ink: #F2EEE6;
    --body: #C9C2B6;
    --muted: #9A9287;
    --muted-light: #7E766B;
    --muted-lighter: #655E54;
    --bronze: #C89A5B;
    --bronze-deep: #B8894A;
    --hairline: #282624;
    --field-border: #332F2B;
    --rule: #2E2B27;
    --heading: #F2EEE6;
    --nav-bg: rgba(18, 17, 16, 0.9);
  }
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

/* ---------- layout primitives ---------- */

.wrap {
  max-width: var(--maxw, 1160px);
  margin: 0 auto;
  padding: var(--pad, 0) 28px;
}
.wrap-600 { --maxw: 600px; }
.wrap-680 { --maxw: 680px; }
.wrap-720 { --maxw: 720px; }
.wrap-760 { --maxw: 760px; }
.wrap-880 { --maxw: 880px; }
.wrap-900 { --maxw: 900px; }

.pad-xs { --pad: var(--pad-xs); }
.pad-sm { --pad: var(--pad-sm); }
.pad-md { --pad: var(--pad-md); }
.pad-lg { --pad: var(--pad-lg); }
.pad-xl { --pad: var(--pad-xl); }

.band-hairline { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.band-white { background: var(--white); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }

.center { text-align: center; }

.grid { display: grid; gap: clamp(20px, 3vw, 34px); }
.grid-230 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.grid-240 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-260 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-320 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }
.gap-12 { gap: 12px; }
.gap-18 { gap: 18px; }
.gap-24 { gap: 24px; }
.gap-28 { gap: 28px; }

/* ---------- shared type ---------- */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--bronze);
  margin: 0 0 16px;
}

.h2 {
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 32px);
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0 0 8px;
}
.h2-sm { font-size: clamp(24px, 3.2vw, 29px); }
.h2-xs { font-size: clamp(22px, 3vw, 27px); }
.h2-tight { line-height: 1.25; margin-bottom: 24px; }
.h2-gap { margin-bottom: 44px; }
.h2-gap-sm { margin-bottom: 32px; }
.h2-gap-xs { margin-bottom: 18px; }
.measure-620 { max-width: 620px; }

.section-sub { font-size: 15px; color: var(--muted-light); margin: 0 0 48px; }
.section-lead { font-size: 16px; line-height: 1.7; color: var(--body); margin: 0 0 44px; max-width: 560px; }

.prose { display: flex; flex-direction: column; gap: 15px; font-size: 16px; line-height: 1.7; color: var(--body); }
.prose p { margin: 0; }
.prose-gap { gap: 14px; margin-bottom: 24px; }
.prose-strong { font-weight: 600; color: var(--heading); }
.prose-muted { color: var(--muted-light); }

.pull-quote {
  margin: 6px 0;
  padding-left: 18px;
  border-left: 2px solid var(--bronze);
  font-style: italic;
  color: var(--heading);
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
}
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-word { font-family: 'Fraunces', Georgia, serif; font-size: 18px; font-weight: 600; color: var(--heading); }

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
  gap: clamp(14px, 1.8vw, 26px);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { color: var(--muted); text-decoration: none; white-space: nowrap; }
.nav-links a:hover { color: var(--heading); }

.nav-end { display: flex; align-items: center; gap: 16px; }
.lang { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.lang-sep { color: var(--rule); }
.lang-btn {
  border: none;
  background: none;
  font: inherit;
  font-weight: 500;
  color: var(--muted-lighter);
  cursor: pointer;
  padding: 0;
}
.lang-btn.is-active {
  font-weight: 700;
  color: var(--heading);
  text-decoration: underline;
  text-decoration-color: var(--bronze);
}

.btn-nav {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--on-navy);
  background: var(--navy);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.btn-nav:hover { background: var(--bronze); }

/* ---------- hero ---------- */

.hero {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 88px) 28px clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.hero .eyebrow { font-size: 12.5px; margin-bottom: 20px; }
.hero h1 {
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 18px;
}
.hero-subtag {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--bronze-deep);
  margin: 0 0 24px;
}
.hero-imagine { font-size: 16px; line-height: 1.65; color: var(--body); margin: 0 0 30px; max-width: 460px; }
.hero-disclaimer { font-size: 13px; color: var(--muted-light); margin: 0; }

.hero-shot { position: relative; display: flex; justify-content: center; }
.hero-shot img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(27, 40, 54, 0.18);
  transform: rotate(1.5deg);
}

/* ---------- forms ---------- */

.form { display: flex; flex-wrap: wrap; gap: 10px; }
.form-hero { max-width: 440px; margin: 0 0 12px; }
.form-disclaimer { max-width: 420px; }
.form-final { max-width: 420px; margin: 0 auto; }

.form input {
  flex: 1;
  min-width: 180px;
  border: 1px solid var(--field-border);
  background: var(--white);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.form input:focus-visible { border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.18); }
.form-disclaimer input { background: var(--cream); padding: 12px 16px; }
.form-final input {
  border: 1px solid var(--navy-border);
  background: var(--navy-soft);
  color: var(--on-navy);
}
.form-final input::placeholder { color: var(--navy-sub); }
.form-final input:focus-visible { border-color: var(--bronze); box-shadow: 0 0 0 3px rgba(184, 137, 74, 0.28); }

.btn-navy,
.btn-bronze {
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.btn-navy { background: var(--navy); color: var(--on-navy); padding: 13px 20px; font-weight: 600; }
.btn-navy:hover { background: var(--bronze); }
.form-disclaimer .btn-navy { padding: 12px 20px; }
.btn-bronze { background: var(--bronze); color: var(--on-bronze); padding: 13px 22px; font-weight: 700; }
.btn-bronze:hover { background: #C99A5B; }

.form-status {
  flex: 1 0 100%;
  margin: 2px 0 0;
  font-size: 13px;
  color: var(--bronze-deep);
  min-height: 0;
}
.form-status:empty { display: none; }
.form-final .form-status { color: var(--bronze); }

/* ---------- manifesto ---------- */

.manifesto { text-align: center; }
.manifesto-map {
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0 0 20px;
}
.manifesto-note {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--bronze);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- ternary ---------- */

.ternary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 36px);
  text-align: center;
}
.ternary-item { font-size: 13.5px; letter-spacing: 0.03em; color: var(--muted-light); font-weight: 500; }
.ternary-strong { color: var(--heading); font-weight: 700; }
.ternary-rule { width: 1px; height: 14px; background: var(--field-border); }

/* ---------- screens ---------- */

.shots { display: flex; justify-content: center; align-items: flex-end; }
.shot { height: auto; position: relative; }
.shot-left,
.shot-right {
  width: 220px;
  border-radius: 22px;
  box-shadow: 0 20px 44px rgba(27, 40, 54, 0.14);
  z-index: 1;
}
.shot-left { transform: rotate(-4deg) translateY(18px); }
.shot-right { transform: rotate(4deg) translateY(18px); }
.shot-mid {
  width: 250px;
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(27, 40, 54, 0.22);
  z-index: 2;
  margin: 0 -18px;
}

/* ---------- frameworks ---------- */

.framework { border-top: 1.5px solid var(--navy); padding-top: 16px; }
.framework-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--heading);
  margin: 0 0 10px;
}
.framework-body { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------- how it works ---------- */

.step-n {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--bronze);
  margin: 0 0 14px;
}
.step-title { font-weight: 700; font-size: 16px; color: var(--heading); margin: 0 0 10px; }
.step-body { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------- promises ---------- */

.dot { display: block; width: 8px; height: 8px; border-radius: 50%; background: var(--bronze); margin-bottom: 16px; }
.promise-title { font-weight: 700; font-size: 16px; color: var(--heading); margin: 0 0 10px; }
.promise-body { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------- mirror / features ---------- */

.mirror-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.mirror-head .h2 { margin-bottom: 20px; }
.mirror-lead { font-size: 15.5px; line-height: 1.7; color: var(--body); margin: 0; }

.feature {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 2px 6px rgba(27, 40, 54, 0.03);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.feature:hover { box-shadow: 0 12px 28px rgba(27, 40, 54, 0.09); transform: translateY(-3px); }
.feature-title { font-weight: 700; font-size: 15.5px; color: var(--heading); margin: 0 0 8px; }
.feature-body { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

.clarifier {
  max-width: 560px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 14.5px;
  font-style: italic;
  line-height: 1.65;
  color: var(--muted-light);
}

/* ---------- memory ---------- */

.memory-close {
  margin: 26px 0 0;
  padding-left: 18px;
  border-left: 2px solid var(--bronze);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--heading);
}

/* ---------- results ---------- */

.result { text-align: center; }
.result-check {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--bronze);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--bronze);
}
.result p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body); }
.result-bold { font-weight: 700; color: var(--heading); display: block; margin-bottom: 4px; }

/* ---------- about ---------- */

.about { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start; }
.about-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--on-navy);
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.about-title { font-weight: 700; font-size: 18px; color: var(--heading); margin: 0 0 14px; }
.about-prose { display: flex; flex-direction: column; gap: 11px; font-size: 15px; line-height: 1.7; color: var(--body); }
.about-prose p { margin: 0; }

/* ---------- disclaimer ---------- */

.disclaimer-cta { font-weight: 700; color: var(--heading); margin: 0 0 16px; }

/* ---------- faq ---------- */

.faq details {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 16px 20px;
}
.faq summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--heading);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq .chev { flex: none; font-size: 17px; color: var(--bronze); transition: transform 0.2s; }
.faq details[open] .chev { transform: rotate(45deg); }
.faq details p { margin: 10px 0 0; font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ---------- privacy ---------- */

.privacy { display: grid; grid-template-columns: 0.8fr 1fr; gap: clamp(24px, 4vw, 48px); }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--bronze-deep);
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 5px 13px;
}
.privacy-prose { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; line-height: 1.7; color: var(--body); }
.privacy-prose p { margin: 0; }
.privacy-cards { display: flex; flex-direction: column; }
.privacy-card { padding: 16px 0; border-top: 1px solid var(--hairline); }
.privacy-card-title { font-weight: 700; font-size: 14px; color: var(--heading); margin: 0 0 5px; }
.privacy-card-body { font-size: 13px; line-height: 1.6; color: var(--muted); margin: 0; }
.privacy-footer { font-size: 12.5px; font-style: italic; color: var(--muted-light); margin: 16px 0 0; }

/* ---------- final cta ---------- */

.cta-final { background: var(--navy); }
.cta-tagline {
  font-weight: 800;
  font-size: clamp(24px, 3.4vw, 32px);
  letter-spacing: -0.01em;
  color: var(--on-navy);
  margin: 0 0 14px;
}
.cta-sub { font-size: 15px; color: var(--navy-sub); margin: 0 0 28px; }

/* ---------- footer ---------- */

.footer {
  max-width: 1160px;
  margin: 0 auto;
  padding: 30px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--muted-light);
}
.footer p { margin: 0; max-width: 560px; }
.footer-copy { color: var(--muted-lighter); }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--muted-light); text-decoration: none; }
.footer-links a:hover { color: var(--heading); }

/* ---------- legal pages (privacy.html, terms.html) ---------- */

.legal { display: block; }
.legal-back {
  display: inline-block;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 18px;
}
.legal-back:hover { color: var(--heading); }
.legal-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0 0 10px;
}
.legal-updated { font-size: 13.5px; color: var(--muted-light); margin: 0 0 32px; }

.legal-operator {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 32px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--body);
}
.legal-operator p { margin: 0; }
.legal-operator p:first-child { font-weight: 700; color: var(--heading); }

.legal-body { display: flex; flex-direction: column; gap: 18px; }
.legal-section {
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 26px;
}
.legal-section h2 {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0 0 14px;
}
.legal-section p { margin: 0 0 11px; font-size: 15px; line-height: 1.7; color: var(--body); }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { font-weight: 700; color: var(--heading); }

/* ---------- scroll reveal ---------- */

.reveal.is-armed { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- responsive ----------
   The prototype was drawn at 1200px and declares no breakpoints. These rules keep
   the same visual language down to 320px. */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-shot { justify-content: flex-start; }
  .hero-shot img { transform: rotate(1.5deg) translateY(4px); }
  .privacy { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .nav-inner { flex-wrap: wrap; row-gap: 14px; }
  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .nav-links::-webkit-scrollbar { display: none; }
}

@media (max-width: 740px) {
  .shots { flex-wrap: wrap; gap: 22px; }
  .shot-left,
  .shot-mid,
  .shot-right { width: min(250px, 68vw); margin: 0; }
  .shot-left { transform: rotate(-2deg); }
  .shot-right { transform: rotate(2deg); }
}

@media (max-width: 560px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .nav-inner { padding-left: 20px; padding-right: 20px; }
  .footer { padding-left: 20px; padding-right: 20px; }
  .hero-shot { justify-content: center; }
  .about { grid-template-columns: 1fr; gap: 20px; }
  .form input { min-width: 100%; }
  .form button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal.is-armed { opacity: 1; transform: none; transition: none; }
  .feature { transition: none; }
}
