/* main.css */
:root {
  
  --bg-primary: #0a0a0f;
  --bg-secondary: #101018;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.07);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --accent-1: #e84393;
  --accent-2: #6c5ce7;
  --accent-gradient: linear-gradient(135deg, #e84393, #6c5ce7);
  --text-primary: #eeeef2;
  --text-secondary: #9494a8;
  --text-muted: #5a5a6e;
  --white: #ffffff;

  
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;
  --ff-mono: "JetBrains Mono", "Fira Code", monospace;

  
  --section-gap: 6rem;
  --container-max: 1140px;
  --header-h: 4.5rem;
  --header-h-scroll: 3.75rem;

  
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease);
  --radius: 1rem;
  --radius-sm: 0.5rem;
  --shadow-glow: 0 0 30px rgba(232, 67, 147, 0.12);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.25);

  
  --z-header: 100;
  --z-menu: 200;
  --z-lightbox: 500;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
}

:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--accent-gradient);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius-sm);
  z-index: 999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin-inline: auto;
}

.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}
.section-subtitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent-gradient);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(232, 67, 147, 0.3);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232, 67, 147, 0.45);
}

.btn--outline {
  border: 1px solid var(--glass-border-hover);
  color: var(--text-primary);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
  background: rgba(232, 67, 147, 0.06);
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition);
}
.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.35s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: var(--z-header);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}
.header--scrolled {
  height: var(--header-h-scroll);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

.nav__brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  z-index: calc(var(--z-menu) + 1);
}
.nav__brand span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__list {
  display: flex;
  gap: 2.25rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition);
  border-radius: 1px;
}
.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}
.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  z-index: calc(var(--z-menu) + 1);
  transition: color var(--transition);
  background: none;
  border: none;
  padding: 0.25rem;
}
.nav__toggle:hover {
  color: var(--accent-1);
}

@media (max-width: 768px) {
  .nav__toggle {
    display: block;
  }
  .nav__menu {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
    z-index: var(--z-menu);
  }
  .nav__menu.open {
    opacity: 1;
    visibility: visible;
  }
  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .nav__link {
    font-size: 1.25rem;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 500px;
  height: 500px;
  background: var(--accent-1);
  top: 5%;
  left: -10%;
  animation: float-orb 12s ease-in-out infinite alternate;
}
.hero::after {
  width: 400px;
  height: 400px;
  background: var(--accent-2);
  bottom: 10%;
  right: -8%;
  animation: float-orb 10s ease-in-out infinite alternate-reverse;
}

@keyframes float-orb {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, -30px); }
}

.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 2rem 0;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 50px;
  background: rgba(108, 92, 231, 0.15);
  color: #818cf8;
  border: 1px solid rgba(108, 92, 231, 0.3);
  margin-bottom: 0.75rem;
}

.hero__greeting {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent-1);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero__description {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}

.hero__stat {
  text-align: center;
  min-width: 90px;
}

.hero__stat-number {
  font-family: var(--ff-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__image-wrapper {
  display: flex;
  justify-content: center;
}

.hero__image {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--glass-border);
  box-shadow: 0 0 60px rgba(232, 67, 147, 0.15),
              0 0 120px rgba(108, 92, 231, 0.08);
  transition: var(--transition);
}
.hero__image:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 0 80px rgba(232, 67, 147, 0.25),
              0 0 140px rgba(108, 92, 231, 0.12);
}

@media (min-width: 769px) {
  .hero__container {
    grid-template-columns: 1fr auto;
    text-align: left;
  }
  .hero__content {
    text-align: left;
  }
  .hero__description {
    margin-inline: 0;
  }
  .hero__actions {
    justify-content: flex-start;
  }
  .hero__stats {
    justify-content: flex-start;
  }
  .hero__image {
    width: 320px;
    height: 320px;
  }
}

@media (min-width: 1024px) {
  .hero__image {
    width: 360px;
    height: 360px;
  }
}

.about__content {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 3rem;
}

.about__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin-bottom: 1.25rem;
}

.about__description {
  line-height: 1.8;
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.skill-card {
  padding: 1.75rem;
}

.skill-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.skill-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  border-radius: var(--radius-sm);
  font-size: 1.15rem;
  color: var(--white);
  flex-shrink: 0;
}

.skill-card__title {
  font-size: 0.95rem;
  font-weight: 600;
}

.skill-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.skill-card__item {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.skill-card__item i {
  color: var(--accent-1);
  font-size: 0.7rem;
  flex-shrink: 0;
}

@media (min-width: 560px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.timeline-section {
  margin-bottom: 4rem;
}

.timeline-section__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.15rem;
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.timeline-section__title i {
  color: var(--accent-1);
  font-size: 1.25rem;
}

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent-1) 0%,
    var(--accent-2) 50%,
    var(--glass-border) 100%
  );
  border-radius: 1px;
}

.timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(232, 67, 147, 0.2);
  z-index: 1;
  transform: translateX(calc(-50% + 6px));
}

.timeline__role {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.timeline__org {
  font-size: 0.875rem;
  color: var(--accent-1);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.timeline__date {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.timeline__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

@media (min-width: 768px) {
  .timeline-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.resume-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
  margin-top: 1rem;
}

.resume-bar__text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.publications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pub-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.pub-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-gradient);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.pub-card:hover::before {
  opacity: 1;
}

.pub-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.pub-card__number {
  font-family: var(--ff-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.pub-card__badge {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-1);
  background: rgba(232, 67, 147, 0.1);
  border: 1px solid rgba(232, 67, 147, 0.25);
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  letter-spacing: 0.02em;
}

.pub-card__badge--peer {
  color: var(--accent-2);
  background: rgba(108, 92, 231, 0.1);
  border-color: rgba(108, 92, 231, 0.25);
}

.pub-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.pub-card__title a {
  color: var(--text-primary);
  transition: color var(--transition);
}
.pub-card__title a:hover {
  color: var(--accent-1);
}

.pub-card__journal {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.project-card {
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.project-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.project-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-secondary);
  transition: transform 0.5s var(--ease);
}

.project-card:hover .project-card__img {
  transform: scale(1.02);
}

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.9) 0%,
    rgba(10, 10, 15, 0.2) 60%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.project-card:hover .project-card__overlay {
  opacity: 1;
}

.project-card__overlay-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.project-card__body {
  padding: 1.5rem;
}

.project-card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.project-card__description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

@media (min-width: 560px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact {
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--accent-1);
  filter: blur(120px);
  opacity: 0.08;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.contact__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 3.5rem 2rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 1;
}

.contact__title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}

.contact__description {
  max-width: 500px;
  line-height: 1.75;
}

.contact__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .contact__wrapper {
    flex-direction: row;
    text-align: left;
    padding: 4rem 3.5rem;
  }
  .contact__content {
    flex: 1;
  }
  .contact__actions {
    flex-shrink: 0;
  }
}

.footer {
  background: var(--bg-secondary);
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.footer__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer__social-link:hover {
  color: var(--accent-1);
  border-color: var(--accent-1);
  background: rgba(232, 67, 147, 0.08);
  transform: translateY(-2px);
}

.footer__contact-link {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--transition);
  margin-bottom: 0.35rem;
}
.footer__contact-link:hover {
  color: var(--accent-1);
}

.footer__copyright {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 2rem;
}

@media (min-width: 560px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-lightbox);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox__image {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s var(--ease-bounce);
}
.lightbox.open .lightbox__image {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  background: none;
  border: none;
  line-height: 1;
  padding: 0.5rem;
}
.lightbox__close:hover {
  color: var(--accent-1);
  transform: rotate(90deg);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--glass-border-hover);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-1);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--glass-border-hover) var(--bg-primary);
}

@media (max-width: 560px) {
  .hero__stats {
    gap: 1.5rem;
  }
  .hero__stat-number {
    font-size: 1.5rem;
  }
  .resume-bar {
    flex-direction: column;
    text-align: center;
  }
}
