:root {
  --bg: #f7faf7;
  --paper: #ffffff;
  --ink: #172321;
  --muted: #5c6c68;
  --line: rgba(23, 35, 33, 0.14);
  --dark: #102421;
  --teal: #217f73;
  --coral: #cf6f55;
  --gold: #d79d3f;
  --blue: #3d6f9f;
  --purple: #7165a8;
  --shadow: 0 22px 70px rgba(16, 36, 33, 0.12);
  --radius: 8px;
  --slide-w: min(92vw, 1220px);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(33, 127, 115, 0.10), transparent 32rem),
    linear-gradient(180deg, #f7faf7 0%, #eef4f0 100%);
}

button { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  color: white;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: .72rem .95rem;
  overflow: visible;
  clip: auto;
}

.language-switch {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 30;
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 34px rgba(16, 36, 33, .10);
  backdrop-filter: blur(14px);
}

.language-switch a {
  padding: .44rem .72rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 850;
  text-decoration: none;
}

.language-switch a[aria-current="page"] {
  background: var(--dark);
  color: white;
}

.presentation {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 24px 92px;
}

.slide {
  display: none;
  width: var(--slide-w);
  min-height: min(68.5vw, 686px);
  aspect-ratio: 16 / 9;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.slide.is-active { display: block; }

.slide-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.8vw, 66px);
  position: relative;
}

.slide-inner::after {
  content: "ReLife Motion | Investor & Partner Discussion Draft";
  position: absolute;
  left: clamp(28px, 4.8vw, 66px);
  bottom: 22px;
  color: #7c8a86;
  font-size: .72rem;
  font-weight: 700;
}

.title-slide {
  color: white;
  background:
    radial-gradient(circle at 83% 18%, rgba(215, 157, 63, .38), transparent 18rem),
    linear-gradient(135deg, var(--dark), #173c37 58%, #f0f5ef 58.3%, #ffffff 100%);
}

.dark-slide {
  color: white;
  background:
    radial-gradient(circle at top right, rgba(33, 127, 115, .34), transparent 27rem),
    linear-gradient(135deg, var(--dark), #142f2b);
}

.dark-slide .slide-inner::after,
.title-slide .slide-inner::after {
  color: rgba(255,255,255,.62);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .72fr);
  gap: 46px;
  align-items: center;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: center;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 850;
}

.dark-slide .kicker,
.title-slide .kicker { color: var(--gold); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(4rem, 9vw, 7.8rem);
}

h2 {
  max-width: 990px;
  margin-bottom: 1.1rem;
  font-size: clamp(2rem, 4.2vw, 3.55rem);
}

h3 {
  margin-bottom: .55rem;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
}

p {
  color: var(--muted);
  font-size: clamp(.98rem, 1.35vw, 1.2rem);
  line-height: 1.48;
}

.title-slide p,
.dark-slide p { color: rgba(255,255,255,.76); }

.subtitle {
  max-width: 780px;
  color: rgba(255,255,255,.84);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.25;
}

.statement-panel {
  padding: 30px;
  border: 1px solid rgba(23, 35, 33, .14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  color: var(--ink);
}

.statement-panel p {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 750;
}

.statement-panel span {
  display: block;
  color: var(--muted);
  font-size: .92rem;
}

.metric-grid,
.card-grid,
.three-columns,
.step-grid,
.competitor-grid,
.safety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 1.6rem;
}

.card-grid,
.three-columns,
.step-grid { grid-template-columns: repeat(3, 1fr); }

.safety-grid { grid-template-columns: repeat(2, 1fr); }

article,
.model-table,
.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.84);
}

.metric-grid article {
  min-height: 150px;
  padding: 24px;
}

.metric-grid strong {
  display: block;
  margin-bottom: .72rem;
  color: var(--teal);
  font-size: clamp(2.1rem, 4.7vw, 4.2rem);
  line-height: 1;
}

.metric-grid span,
.model-table span,
.competitor-grid span,
.stack-list span {
  display: block;
  color: var(--muted);
  line-height: 1.4;
}

.pain-map,
.library-layout,
.business-layout,
.thanks-grid {
  display: grid;
  gap: 16px;
  margin-top: 1.2rem;
}

.pain-map {
  grid-template-columns: repeat(3, 1fr);
}

.pain-map article {
  padding: 20px;
}

.takeaway {
  margin: 1.25rem 0 0;
  color: var(--ink);
  font-size: clamp(1.16rem, 1.75vw, 1.52rem);
  font-weight: 820;
}

.card-grid article,
.three-columns article,
.step-grid article,
.safety-grid article,
.competitor-grid article,
.differentiator-list article,
.gtm-lanes article,
.timeline article,
.ask-strip article {
  padding: 22px;
}

.card-grid p,
.three-columns p,
.step-grid p,
.safety-grid p,
.competitor-grid p,
.differentiator-list p,
.gtm-lanes p,
.timeline p,
.ask-strip p {
  margin-bottom: 0;
  font-size: .98rem;
}

.lede {
  max-width: 820px;
  font-size: 1.18rem;
}

.table-wrap {
  margin-top: 1.4rem;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

caption {
  padding: 18px 22px 0;
  text-align: left;
  color: var(--muted);
  font-weight: 800;
}

th, td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--dark);
  font-size: .82rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-weight: 760;
}

tbody tr:last-child td { border-bottom: 0; }

.note {
  margin: .9rem 0 0;
  color: #74817d;
  font-size: .88rem;
}

.three-columns ul,
.sources-list {
  display: grid;
  gap: .5rem;
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
}

.wedge-layout {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 22px;
  margin-top: 1.7rem;
  align-items: stretch;
}

.risk-ladder {
  display: grid;
  gap: 14px;
}

.risk-ladder article {
  min-height: 112px;
  padding: 18px;
  border-left: 7px solid var(--teal);
}

.risk-ladder article:nth-child(2) {
  border-left-color: var(--gold);
}

.risk-ladder article:nth-child(3) {
  border-left-color: var(--coral);
}

.risk-ladder span,
.signal-rail span,
.evidence-card span,
.dashboard-card span,
.phone-shell span,
.video-card span {
  display: block;
  margin-bottom: .58rem;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.risk-ladder p {
  margin-bottom: 0;
  font-size: .95rem;
}

.primary-card {
  padding: 28px;
  background: linear-gradient(135deg, rgba(33, 127, 115, .16), rgba(255,255,255,.92));
}

.primary-card span {
  display: block;
  margin-bottom: .7rem;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-list article { padding: 18px; }

.dark-slide article {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}

.dark-slide h3,
.dark-slide strong { color: white; }

.step-grid span {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--gold);
  font-weight: 900;
}

.product-system {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 32px;
  align-items: center;
}

.product-system h2 {
  max-width: 880px;
}

.product-visual {
  display: grid;
  gap: 16px;
  align-content: center;
}

.phone-shell,
.dashboard-card {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 20px 48px rgba(0,0,0,.20);
}

.phone-shell {
  max-width: 310px;
  min-height: 350px;
  padding: 28px;
  justify-self: center;
}

.phone-shell strong,
.dashboard-card strong {
  display: block;
  color: white;
  font-size: 1.28rem;
  line-height: 1.2;
}

.phone-shell p,
.dashboard-card p {
  margin: .75rem 0 0;
  font-size: .96rem;
}

.progress-bar {
  height: 12px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--gold);
}

.dashboard-card {
  max-width: 370px;
  padding: 24px;
  justify-self: end;
  border-radius: var(--radius);
}

.video-slide h2 {
  max-width: 1080px;
  font-size: clamp(1.85rem, 4vw, 3.35rem);
}

.library-layout {
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: stretch;
}

.video-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.video-card {
  min-height: 104px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(33, 127, 115, .13), rgba(255,255,255,.94));
}

.video-card.primary {
  grid-row: span 2;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(160deg, rgba(16, 36, 33, .88), rgba(33, 127, 115, .78)),
    linear-gradient(135deg, #eaf2ee, #ffffff);
  color: white;
}

.video-card.primary span,
.video-card.primary p {
  color: rgba(255,255,255,.76);
}

.video-card strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.18;
}

.video-card p {
  margin-bottom: 0;
  font-size: .92rem;
}

.quality-board {
  display: grid;
  gap: 12px;
}

.quality-board article {
  padding: 16px;
}

.quality-board p {
  margin-bottom: 0;
  font-size: .94rem;
}

.adaptation-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.adaptation-grid span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.84);
  color: var(--muted);
  font-size: .76rem;
  font-weight: 850;
  text-align: center;
}

.journey {
  counter-reset: journey;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
}

.journey li {
  counter-increment: journey;
  min-height: 190px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
}

.journey li::before {
  content: counter(journey, decimal-leading-zero);
  display: block;
  margin-bottom: .85rem;
  color: var(--teal);
  font-weight: 900;
}

.journey strong,
.journey span { display: block; }

.journey span {
  margin-top: .45rem;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.38;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 16px;
  align-items: stretch;
  margin-top: 1.35rem;
}

.flow-layout .journey {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 0;
}

.signal-rail {
  display: grid;
  gap: 12px;
}

.signal-rail article {
  padding: 18px;
  background: linear-gradient(135deg, rgba(33, 127, 115, .12), rgba(255,255,255,.92));
}

.signal-rail strong {
  display: block;
  font-size: 1rem;
  line-height: 1.24;
}

.model-table {
  margin-top: 1.6rem;
  overflow: hidden;
}

.model-table div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.model-table div:last-child { border-bottom: 0; }

.business-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .58fr);
  align-items: stretch;
}

.business-layout .model-table {
  margin-top: 0;
}

.evidence-card {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(215, 157, 63, .18), rgba(255,255,255,.94));
}

.evidence-card strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1;
}

.evidence-card p {
  margin: 1rem 0;
}

.evidence-card ul {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: .94rem;
}

.competitor-grid {
  grid-template-columns: repeat(3, 1fr);
}

.competitor-grid .target {
  background: var(--dark);
  color: white;
}

.competitor-grid .target span { color: rgba(255,255,255,.72); }

.competitor-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 1.5rem;
}

.competitor-matrix article {
  min-height: 238px;
  padding: 22px;
}

.competitor-matrix span {
  display: block;
  margin-bottom: .9rem;
  color: var(--teal);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.competitor-matrix strong {
  display: block;
  margin-bottom: .85rem;
  font-size: 1.12rem;
  line-height: 1.2;
}

.competitor-matrix p {
  margin-bottom: 0;
  font-size: .95rem;
}

.competitor-matrix .target {
  background: var(--dark);
  color: white;
}

.competitor-matrix .target span { color: var(--gold); }
.competitor-matrix .target p { color: rgba(255,255,255,.72); }

.differentiator-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 1.6rem;
}

.gtm-lanes,
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 1.6rem;
}

.gtm-lanes span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: .9rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 900;
}

.timeline span {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
  color: var(--teal);
}

.timeline strong {
  color: var(--ink);
  line-height: 1.4;
}

.dark-slide .timeline span {
  color: var(--gold);
}

.dark-slide .timeline strong {
  color: white;
}

.compact-roadmap article {
  min-height: 185px;
}

.ask-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.sources-slide .slide-inner { justify-content: flex-start; }

.sources-list {
  max-width: 1050px;
  margin-top: 1rem;
  columns: 2;
  display: block;
}

.sources-list li {
  margin-bottom: .72rem;
  break-inside: avoid;
}

.legal {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
}

.thank-you-slide h2 {
  margin-bottom: .5rem;
}

.subtitle-dark {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.25;
  font-weight: 760;
}

.thanks-grid {
  grid-template-columns: repeat(2, 1fr);
}

.thanks-grid article {
  padding: 24px;
}

.compact-sources {
  max-width: none;
  columns: 2;
  font-size: .9rem;
}

.presentation-controls {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 34px rgba(16, 36, 33, .13);
  backdrop-filter: blur(14px);
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--dark);
  color: white;
  cursor: pointer;
  font-size: 1.85rem;
  line-height: 1;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--teal);
  outline: 0;
}

.slide-counter {
  min-width: 64px;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 850;
}

.slide-counter strong { color: var(--ink); }

.slide-dots {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 20;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
}

.slide-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(23, 35, 33, .28);
  cursor: pointer;
}

.slide-dot.is-active {
  height: 24px;
  border-radius: 999px;
  background: var(--teal);
}

.slide-dot:focus-visible {
  outline: 2px solid var(--dark);
  outline-offset: 3px;
}

[dir="rtl"] body,
body[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .language-switch {
  right: auto;
  left: 18px;
}

[dir="rtl"] .slide-inner::after {
  content: "ReLife Motion | טיוטת מצגת למשקיעים ושותפים";
  right: clamp(28px, 4.8vw, 66px);
  left: auto;
}

[dir="rtl"] .slide-dots {
  right: auto;
  left: 18px;
}

[dir="rtl"] .model-table div {
  grid-template-columns: 1fr 210px;
}

[dir="rtl"] .three-columns ul,
[dir="rtl"] .sources-list,
[dir="rtl"] .evidence-card ul {
  padding-right: 1.05rem;
  padding-left: 0;
}

[dir="rtl"] .risk-ladder article {
  border-right: 7px solid var(--teal);
  border-left: 1px solid var(--line);
}

[dir="rtl"] .risk-ladder article:nth-child(2) {
  border-right-color: var(--gold);
}

[dir="rtl"] .risk-ladder article:nth-child(3) {
  border-right-color: var(--coral);
}

[dir="rtl"] caption,
[dir="rtl"] th,
[dir="rtl"] td {
  text-align: right;
}

@media (max-width: 1100px) {
  .presentation {
    align-items: start;
    padding: 24px 16px 92px;
  }

  .slide {
    width: min(100%, 900px);
    min-height: auto;
    aspect-ratio: auto;
  }

  .slide-inner {
    min-height: calc(100vh - 132px);
  }

  .hero-layout,
  .split-layout,
  .wedge-layout,
  .product-system,
  .library-layout,
  .business-layout,
  .flow-layout {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .pain-map,
  .journey,
  .gtm-lanes,
  .timeline,
  .competitor-matrix,
  .differentiator-list,
  .flow-layout .journey,
  .adaptation-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
  }

  .phone-shell,
  .dashboard-card {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .presentation {
    padding-inline: 8px;
  }

  .slide-inner {
    min-height: calc(100vh - 126px);
    padding: 26px 22px 58px;
  }

  .slide-inner::after {
    left: 22px;
    bottom: 18px;
    max-width: calc(100% - 44px);
  }

  [dir="rtl"] .slide-inner::after {
    right: 22px;
    left: auto;
  }

  .title-slide {
    background:
      radial-gradient(circle at 80% 10%, rgba(215, 157, 63, .28), transparent 16rem),
      linear-gradient(160deg, var(--dark), #173c37);
  }

  .statement-panel {
    background: rgba(255,255,255,.10);
    border-color: rgba(255,255,255,.18);
    color: white;
  }

  .statement-panel p { color: white; }
  .statement-panel span { color: rgba(255,255,255,.68); }

  h1 { font-size: clamp(3.1rem, 15vw, 5.5rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 3.2rem); }

  .metric-grid,
  .pain-map,
  .card-grid,
  .three-columns,
  .step-grid,
  .competitor-grid,
  .safety-grid,
  .journey,
  .flow-layout .journey,
  .gtm-lanes,
  .timeline,
  .ask-strip,
  .competitor-matrix,
  .differentiator-list,
  .product-visual,
  .video-wall,
  .adaptation-grid,
  .thanks-grid {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    min-height: 260px;
  }

  .adaptation-grid span {
    min-height: 36px;
  }

  .model-table div {
    grid-template-columns: 1fr;
    gap: .4rem;
  }

  [dir="rtl"] .model-table div {
    grid-template-columns: 1fr;
  }

  .sources-list {
    columns: 1;
  }

  .slide-dots {
    display: none;
  }

  .presentation-controls {
    bottom: 10px;
  }
}

@media print {
  body {
    background: white;
  }

  .skip-link,
  .language-switch,
  .presentation-controls,
  .slide-dots {
    display: none !important;
  }

  .presentation {
    display: block;
    padding: 0;
  }

  .slide,
  .slide.is-active {
    display: block;
    width: 100vw;
    min-height: 100vh;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    page-break-after: always;
  }
}
