/* Full-viewport chapters: background image + text overlay + nav chevrons */

:root {
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.chapter-view {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #0a0a0a;
  --chapter-header-height: clamp(3.25rem, 7vw, 4.5rem);
  --chapter-footer-height: clamp(4rem, 8vw, 5.5rem);
  --chapter-bg-y-offset: clamp(2.5rem, 11vh, 7.5rem);
}

@keyframes chapter-bg-ken {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045);
  }
}

.chapter-view__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center calc(50% + var(--chapter-bg-y-offset));
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  transform-origin: center center;
  transition: opacity 0.35s ease;
  animation: chapter-bg-ken 32s ease-in-out infinite alternate;
}

@media (prefers-reduced-motion: reduce) {
  .chapter-view__bg {
    animation: none;
  }

  .chapter-view__bg,
  .chapter-view__overlay {
    transition: none;
  }
}

.chapter-view__bg.is-hidden {
  opacity: 0;
}

.chapter-view__menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 59;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.chapter-view__menu-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .chapter-view__menu-backdrop {
    transition: none;
  }
}

.chapter-view__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(1.25rem, 4vw, 3rem);
  padding-top: calc(var(--chapter-header-height) + clamp(0.5rem, 1.2vw, 1rem) + 2em);
  padding-bottom: calc(var(--chapter-footer-height) + clamp(0.5rem, 1.2vw, 1rem));
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.12) 100%
  );
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.chapter-view__overlay.is-hidden {
  opacity: 0;
}

.chapter-view__text {
  max-width: 40rem;
  max-height: calc(100vh - var(--chapter-header-height) - var(--chapter-footer-height) - clamp(2rem, 4vw, 4rem));
  overflow-y: auto;
  padding-right: 0.35rem;
  pointer-events: auto;
  color: #f5f5f5;
  font-family: var(--font-body);
}

.chapter-view__text::-webkit-scrollbar {
  width: 0.45rem;
}

.chapter-view__text::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.chapter-view__text h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
}

@keyframes chapter-text-enter {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chapter-view__text.chapter-view__text--enter {
  animation: chapter-text-enter 0.42s ease-out forwards;
}

@media (prefers-reduced-motion: reduce) {
  .chapter-view__text.chapter-view__text--enter {
    animation: none;
  }
}

.chapter-view__text .chapter-view__subtitle {
  margin: 0 0 1rem;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem);
  color: #c4c4c4;
  font-weight: 400;
  line-height: 1.45;
}

.chapter-view__text .chapter-view__body {
  font-size: 0.98rem;
  line-height: 1.55;
  color: #e8e8e8;
}

.chapter-view__text .chapter-view__body p {
  margin: 0 0 0.75rem;
}

.chapter-view__text .chapter-view__body p:last-child {
  margin-bottom: 0;
}

.chapter-view__text a {
  color: #fff;
  text-decoration: underline;
}

.chapter-view__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(0.7rem, 2vw, 1rem) clamp(0.9rem, 2.5vw, 1.5rem);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  pointer-events: auto;
  isolation: isolate;
}

.chapter-view__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.chapter-view__brand:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 4px;
}

.chapter-view__brand-flock {
  height: clamp(1.35rem, 2.1vw, 1.8rem);
  width: auto;
  object-fit: contain;
}

.chapter-view__brand-wordmark {
  width: 180px;
  max-width: 30vw;
  height: auto;
  object-fit: contain;
}

.chapter-view__menu {
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  padding: 8px;
}

.chapter-view__menu span {
  display: block;
  width: 30px;
  height: 3px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.9);
}

.chapter-view__menu span + span {
  margin-top: 5px;
}

@media (max-width: 769px) {
  .chapter-view__brand-wordmark {
    width: 200px;
  }
}

.chapter-view__menu-panel {
  position: absolute;
  top: calc(100% - 0.15rem);
  right: clamp(0.9rem, 2.5vw, 1.5rem);
  z-index: 70;
  min-width: min(26rem, calc(100vw - 2rem));
  max-height: min(70vh, 28rem);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.45rem;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.chapter-view__menu-list {
  list-style: none;
  margin: 0;
  padding: 0.2rem;
}

.chapter-view__menu-item {
  width: 100%;
  border: 0;
  background: transparent;
  color: #e9e9e9;
  text-align: left;
  padding: 0.55rem 0.65rem;
  font-size: 0.95rem;
  border-radius: 0.3rem;
  cursor: pointer;
}

.chapter-view__menu-item:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
}

.chapter-view__menu-item.is-current,
.chapter-view__menu-item:disabled {
  font-weight: 700;
  color: #fff;
  opacity: 1;
  cursor: not-allowed;
}

.chapter-view__footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.chapter-view__nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  pointer-events: auto;
}

.chapter-view__nav button {
  min-width: 3.15rem;
  min-height: 3.35rem;
  padding: 0.35rem 0.45rem 0.3rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.12rem;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.chapter-view__nav-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.82;
  line-height: 1;
}

.chapter-view__nav button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.chapter-view__nav button:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.chapter-view__nav button svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chapter-view__counter {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  pointer-events: auto;
}

.chapter-view[data-chapter="solutions-that-propel-business-success"] .chapter-view__text {
  max-width: min(64rem, calc(100vw - 3rem));
}

.chapter-view[data-chapter="transforming-data-into-actionable-intelligence"] .chapter-view__overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.45) 38%,
    rgba(0, 0, 0, 0.14) 70%,
    rgba(0, 0, 0, 0.06) 100%
  );
}

.chapter-view[data-chapter="transforming-data-into-actionable-intelligence"] .chapter-view__text {
  max-width: min(42rem, calc(100vw - 3rem));
  margin-top: clamp(2rem, 9vh, 6.5rem);
}

.chapter-view[data-chapter="transforming-data-into-actionable-intelligence"] .chapter-view__text h1 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
}

.chapter-view[data-chapter="transforming-data-into-actionable-intelligence"] .chapter-view__text .chapter-view__subtitle {
  font-size: clamp(1rem, 1.85vw, 1.35rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.15rem;
}

.chapter-view[data-chapter="transforming-data-into-actionable-intelligence"] .chapter-view__body .home-hero-copy {
  max-width: 36rem;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.52;
}

.chapter-view[data-chapter="transforming-data-into-actionable-intelligence"] .chapter-view__body .home-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 2px solid #050505;
  background: #ffec00;
  color: #050505;
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: 0.055em;
  text-transform: uppercase;
  box-shadow: none;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.chapter-view[data-chapter="transforming-data-into-actionable-intelligence"] .chapter-view__body .home-hero-cta:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: #3a3a3e;
  color: #fff;
}

.chapter-view[data-chapter="transforming-data-into-actionable-intelligence"] .chapter-view__body .home-hero-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.chapter-view[data-chapter="solutions-that-propel-business-success"] .chapter-view__text h1 {
  text-align: center;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  margin-bottom: 1.3rem;
}

.chapter-view[data-chapter="solutions-that-propel-business-success"] .chapter-view__body .solutions-cards {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.6rem);
}

@media (min-width: 1000px) {
  .chapter-view[data-chapter="solutions-that-propel-business-success"] .chapter-view__body .solutions-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
    align-items: stretch;
  }
}

.chapter-view[data-chapter="solutions-that-propel-business-success"] .chapter-view__body .solution-card {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: 999px;
  background: rgba(26, 29, 35, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(0.95rem, 1.8vw, 1.45rem) clamp(1.05rem, 2.2vw, 1.55rem);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.chapter-view[data-chapter="solutions-that-propel-business-success"] .chapter-view__body .solution-card:hover {
  background: rgba(36, 40, 48, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
}

.chapter-view[data-chapter="solutions-that-propel-business-success"] .chapter-view__body .solution-card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.chapter-view[data-chapter="solutions-that-propel-business-success"] .chapter-view__body .solution-card h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  line-height: 1.25;
  font-weight: 400;
  color: #f2f2f2;
}

.chapter-view[data-chapter="solutions-that-propel-business-success"] .chapter-view__body .solution-card p {
  margin: 0;
  font-size: clamp(1rem, 1.65vw, 1.45rem);
  line-height: 1.35;
  font-weight: 700;
  color: #f6f6f6;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__text {
  max-width: min(70rem, calc(100vw - 3rem));
}

.chapter-view[data-chapter="current-projects"] .chapter-view__text h1 {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1.35rem;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__bg {
  opacity: 0.5;
  background-position: calc(50% - 100px) calc(50% + var(--chapter-bg-y-offset));
}

.chapter-view[data-chapter="current-projects"] .chapter-view__bg.is-hidden {
  opacity: 0;
}

.chapter-view[data-chapter="expertise-in-software-engineering"] .chapter-view__bg,
.chapter-view[data-chapter="advanced-data-modeling"] .chapter-view__bg,
.chapter-view[data-chapter="comprehensive-data-visualization"] .chapter-view__bg {
  opacity: 0.5;
}

.chapter-view[data-chapter="expertise-in-software-engineering"] .chapter-view__bg.is-hidden,
.chapter-view[data-chapter="advanced-data-modeling"] .chapter-view__bg.is-hidden,
.chapter-view[data-chapter="comprehensive-data-visualization"] .chapter-view__bg.is-hidden {
  opacity: 0;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .projects-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.15rem, 2.2vw, 1.75rem);
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row {
  display: grid;
  grid-template-columns: minmax(0, clamp(7.5rem, 20vw, 13.5rem)) minmax(0, 1fr);
  gap: clamp(0.85rem, 2vw, 1.35rem);
  align-items: start;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, rgba(16, 19, 25, 0.96), rgba(10, 12, 16, 0.98));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 228, 255, 0.66);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__thumb:hover {
    transform: none;
  }
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(7, 9, 12, 0.45);
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__thumb--text {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: none;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__thumb--text:hover {
  border-color: #fff;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__thumb-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0.85rem;
  color: #000;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  font-weight: 600;
  line-height: 1.25;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__title a {
  color: #fff;
  text-decoration: none;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__title a:hover {
  text-decoration: underline;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__blurb {
  margin: 0;
  font-size: clamp(0.9rem, 1.35vw, 1.02rem);
  line-height: 1.5;
  color: rgba(235, 235, 235, 0.92);
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__source {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(200, 210, 220, 0.78);
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__source a {
  color: rgba(186, 220, 255, 0.95);
  text-decoration: underline;
}

.chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__source a:hover {
  color: #fff;
}

@media (max-width: 560px) {
  .chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row {
    grid-template-columns: 1fr;
  }

  .chapter-view[data-chapter="current-projects"] .chapter-view__body .project-row__thumb {
    max-width: min(19rem, 100%);
  }
}

.chapter-view[data-chapter="contact"] .chapter-view__text {
  max-width: min(62rem, calc(100vw - 3rem));
}

.chapter-view[data-chapter="contact"] .chapter-view__text h1,
.chapter-view[data-chapter="contact"] .chapter-view__text .chapter-view__subtitle {
  text-align: center;
}

.chapter-view[data-chapter="contact"] .chapter-view__text h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 0.7rem;
}

.chapter-view[data-chapter="contact"] .chapter-view__text .chapter-view__subtitle {
  margin-bottom: 1.1rem;
}

.chapter-view[data-chapter="contact"] .contact-chapter {
  width: min(52rem, 100%);
  margin: 0 auto;
}

.chapter-view[data-chapter="contact"] .contact-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.9rem;
}

.chapter-view[data-chapter="contact"] .contact-privacy {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.chapter-view[data-chapter="about"] .chapter-view__body .about-lead {
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 1rem;
}

.chapter-view[data-chapter="contact"] .contact-form {
  width: 100%;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.chapter-view[data-chapter="contact"] .contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.chapter-view[data-chapter="contact"] .contact-field {
  display: block;
  margin: 0 0 0.95rem;
}

.chapter-view[data-chapter="contact"] .contact-field > span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}

.chapter-view[data-chapter="contact"] .contact-field em {
  font-style: normal;
  opacity: 0.8;
}

.chapter-view[data-chapter="contact"] .contact-field input,
.chapter-view[data-chapter="contact"] .contact-field textarea {
  box-sizing: border-box;
  width: 100%;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  padding: 12px;
  font-size: 18px;
  font: inherit;
}

.chapter-view[data-chapter="contact"] .contact-field textarea {
  min-height: 140px;
}

.chapter-view[data-chapter="contact"] .contact-phone-e164-hint:not([hidden]) {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.68);
}

.chapter-view[data-chapter="contact"] .contact-phone-e164-hint:not([hidden]) a {
  color: rgba(186, 220, 255, 0.95);
  text-decoration: underline;
}

.chapter-view[data-chapter="contact"] .contact-upload {
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 25px;
  padding: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.03);
}

.chapter-view[data-chapter="contact"] .contact-upload span {
  text-decoration: underline;
}

.chapter-view[data-chapter="contact"] .contact-upload small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.68);
}

.chapter-view[data-chapter="contact"] .contact-file-input {
  display: block;
  width: 100%;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.92);
}

.chapter-view[data-chapter="contact"] .contact-upload-error {
  margin: 0.45rem 0 0;
  color: #ff7373;
  font-size: 0.92rem;
}

.chapter-view[data-chapter="contact"] .contact-submit {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 12px;
  font-size: 18px;
  font-family: inherit;
  cursor: pointer;
}

.chapter-view[data-chapter="contact"] .contact-meta {
  margin: 0.9rem 0 0;
  text-align: center;
}

@media (max-width: 900px) {
  .chapter-view[data-chapter="contact"] .contact-row {
    grid-template-columns: 1fr;
  }
}
