:root {
  --bg: #09111d;
  --border: rgba(164, 197, 228, 0.14);
  --text: #edf4ff;
  --muted: #a0b1c9;
  --accent: #8fb9ff;
  --accent-strong: #d8b36a;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --max-width: 1180px;
  --reader-width: 860px;
  --reader-font-size: 1.15rem;
  --reader-line-height: 1.8;
  --reader-bg: linear-gradient(180deg, rgba(18, 25, 38, 0.98), rgba(12, 17, 28, 0.98));
  --reader-surface: #101722;
  --reader-text: #ebf2ff;
  --reader-muted: #afbdd3;
  --reader-border: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(90, 140, 212, 0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(216, 179, 106, 0.14), transparent 20%),
    linear-gradient(135deg, #050a12 0%, #0b1624 52%, #07101b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.18;
  pointer-events: none;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0 0.75rem;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.8rem;
}

.brand-mark {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.06) 28%),
    linear-gradient(135deg, rgba(216, 179, 106, 0.95), rgba(143, 185, 255, 0.4));
  box-shadow: 0 0 28px rgba(143, 185, 255, 0.24);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a,
.reader-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav a:hover,
.reader-control:hover {
  color: var(--text);
}

.button,
.reader-control,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  line-height: 1;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

.button {
  color: var(--text);
  font-weight: 700;
}

.button:hover,
.reader-control:hover,
.filter-button:hover,
.filter-button.is-active {
  background: rgba(143, 185, 255, 0.18);
  border-color: rgba(143, 185, 255, 0.34);
}

.button-ghost {
  background: transparent;
}

.hero,
.library-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: stretch;
  padding: 4.5rem 0 2rem;
}

.hero-copy h1,
.library-hero h1,
.section-heading h2,
.reader-header h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero-copy h1,
.library-hero h1 {
  font-size: clamp(3.6rem, 8vw, 6.7rem);
  max-width: 11ch;
}

.hero-text,
.library-intro,
.feature-card p,
.timeline p,
.story-card p,
.library-card p,
.note-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.eyebrow,
.panel-label,
.story-meta,
.card-index,
.timeline span {
  margin: 0 0 1rem;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-panel,
.hero-orbit-card,
.feature-card,
.story-card,
.timeline article,
.library-card,
.note-grid article {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 28, 45, 0.92), rgba(9, 16, 28, 0.78));
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.6rem;
}

.hero-side {
  display: grid;
  grid-template-rows: minmax(220px, 1fr) auto;
  gap: 1.2rem;
}

.hero-orbit-card {
  padding: 1.5rem;
  display: grid;
  gap: 1.2rem;
  align-content: start;
}

.network-map {
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 20%, rgba(143, 185, 255, 0.18), transparent 26%),
    radial-gradient(circle at 76% 72%, rgba(216, 179, 106, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.network-map svg {
  width: 100%;
  display: block;
}

.network-map-bg {
  fill: rgba(8, 17, 29, 0.82);
}

.network-grid path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 1;
}

.network-links path {
  fill: none;
  stroke: url(#networkStroke);
  stroke-width: 1.9;
  stroke-linecap: round;
  opacity: 0.9;
}

.network-rings circle {
  fill: none;
  stroke: rgba(143, 185, 255, 0.14);
  stroke-width: 1;
}

.network-labels text {
  fill: rgba(237, 244, 255, 0.86);
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.star {
  fill: #8fb9ff;
  filter: url(#softGlow);
}

.star.sol {
  fill: #fff2cf;
}

.star.proxima,
.star.alpha {
  fill: #b9d3ff;
}

.star.tau {
  fill: #d8b36a;
}

.star.eridani {
  fill: #95c8ff;
}

.star.wolf {
  fill: #c5b6ff;
}

.orbit-points {
  display: grid;
  gap: 0.75rem;
}

.orbit-points p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-panel blockquote {
  margin: 0 0 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.15;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.signal-grid span {
  aspect-ratio: 1;
  border-radius: 0.85rem;
  background:
    linear-gradient(135deg, rgba(143, 185, 255, 0.28), rgba(216, 179, 106, 0.12)),
    rgba(255, 255, 255, 0.04);
  animation: pulse 5s ease-in-out infinite;
}

.signal-grid span:nth-child(odd) {
  animation-delay: 0.6s;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 4rem;
}

.metrics article {
  padding: 1.25rem 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics span {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 2rem;
  font-weight: 800;
}

.section {
  padding: 2rem 0 4.5rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(2.6rem, 5vw, 4.3rem);
}

.feature-grid,
.story-grid,
.note-grid {
  display: grid;
  gap: 1.25rem;
}

.feature-grid,
.story-grid,
.note-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.story-card,
.library-card,
.note-grid article {
  padding: 1.5rem;
}

.feature-card h3,
.timeline h3,
.story-card h3,
.library-card h2,
.note-grid h3 {
  margin: 0 0 0.8rem;
  font-size: 1.28rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.timeline article {
  padding: 1.5rem;
}

.story-card a,
.library-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: var(--text);
  font-weight: 700;
}

.library-footer a {
  min-height: 2.55rem;
  min-width: 8rem;
  padding: 0 1rem;
  margin-top: 0;
  border-radius: 999px;
  border: 1px solid rgba(143, 185, 255, 0.28);
  background: rgba(143, 185, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  flex: 0 0 auto;
  white-space: nowrap;
}

.library-footer a:hover {
  background: rgba(143, 185, 255, 0.22);
  border-color: rgba(143, 185, 255, 0.44);
}

.library-controls {
  padding-top: 0;
}

.filter-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.library-card {
  display: flex;
  flex-direction: column;
}

.library-card.is-hidden {
  display: none;
}

.library-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.library-footer span {
  flex: 1 1 auto;
}

.reader-shell {
  width: min(calc(100% - 2rem), 980px);
}

.topbar-reader {
  padding-bottom: 1rem;
}

.reader-main {
  display: flex;
  justify-content: center;
  padding: 2rem 0 1.5rem;
}

.story-reader {
  width: min(100%, var(--reader-width));
  padding: 3rem clamp(1.4rem, 4vw, 4rem);
  border-radius: 1.8rem;
  border: 1px solid var(--reader-border);
  background: var(--reader-bg), var(--reader-surface);
  color: var(--reader-text);
  box-shadow: var(--shadow);
}

.reader-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--reader-border);
}

.reader-header h1 {
  font-size: clamp(3rem, 6vw, 4.6rem);
}

.deck {
  margin-top: 1rem;
  max-width: 50ch;
  color: var(--reader-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.story-reader p {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", serif;
  font-size: var(--reader-font-size);
  line-height: var(--reader-line-height);
}

.story-reader .story-meta {
  color: #e6c98d;
}

.reader-toolbar {
  position: sticky;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin: 0 auto 2.5rem;
  padding: 0.9rem;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  background: rgba(8, 17, 29, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.reader-toolbar-group {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.reader-toolbar-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-right: 0.15rem;
}

body:is([data-page="reader"], [data-page="story"]) .reader-control.is-active,
body:is([data-page="reader"], [data-page="story"]) [data-theme-toggle][aria-pressed="false"] {
  background: rgba(216, 179, 106, 0.2);
  border-color: rgba(216, 179, 106, 0.34);
  color: var(--text);
}

.story-empty {
  width: min(100%, 760px);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(14, 28, 45, 0.92), rgba(9, 16, 28, 0.78));
  box-shadow: var(--shadow);
}

.story-empty h1 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 6vw, 4rem);
}

.story-empty p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

body.reader-light {
  --reader-bg: linear-gradient(180deg, rgba(248, 249, 252, 0.97), rgba(237, 240, 247, 0.96));
  --reader-surface: #f4f7fb;
  --reader-text: #14202f;
  --reader-muted: #43556e;
  --reader-border: rgba(20, 32, 47, 0.1);
}

body.reader-light .story-reader .story-meta {
  color: #8a6520;
}

body.reader-light .reader-toolbar {
  background: rgba(8, 17, 29, 0.84);
}

.reader-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 20;
  background: rgba(255, 255, 255, 0.06);
}

.reader-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  box-shadow: 0 0 20px rgba(143, 185, 255, 0.32);
}

.library-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: 1.4rem;
  align-items: end;
}

.library-hero-copy {
  max-width: 860px;
}

.library-hero h1 {
  max-width: 13ch;
  font-size: clamp(3.1rem, 6vw, 5.4rem);
}

.library-intro {
  max-width: 42rem;
  margin: 1.25rem 0 0;
}

.library-side {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.library-side-card,
.library-side-metrics article {
  background: linear-gradient(180deg, rgba(14, 28, 45, 0.92), rgba(9, 16, 28, 0.78));
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
}

.library-side-card {
  padding: 1.4rem;
}

.library-side-card h2 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.02;
}

.library-side-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.library-side-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.library-side-metrics article {
  padding: 1.15rem 1.2rem;
}

.library-side-metrics span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.8rem;
  font-weight: 800;
}

.library-side-metrics p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-6px);
  }
}

@media (max-width: 980px) {
  .hero,
  .library-hero,
  .feature-grid,
  .story-grid,
  .note-grid,
  .timeline,
  .library-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .library-hero h1 {
    max-width: 13ch;
  }

  .library-side-metrics {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-shell,
  .reader-shell {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .topbar,
  .library-footer {
    align-items: flex-start;
  }

  .library-footer {
    flex-direction: column;
  }

  .library-footer a {
    min-width: 100%;
  }

  .topbar {
    flex-direction: column;
  }

  .nav {
    align-items: center;
  }

  .nav a {
    min-height: 2.2rem;
    padding: 0 0.2rem;
    line-height: 1;
  }

  body:not([data-page="reader"]):not([data-page="story"]) .topbar .nav {
    width: 100%;
    justify-content: flex-start;
  }

  body:not([data-page="reader"]):not([data-page="story"]) .topbar .button-ghost {
    margin-left: auto;
    padding: 0 0.95rem;
    min-height: 2.45rem;
  }

  body:not([data-page="reader"]):not([data-page="story"]) .topbar .nav a:not(.button-ghost) {
    padding-right: 0.35rem;
  }

  body:not([data-page="reader"]):not([data-page="story"]) .topbar .button-ghost {
    margin-right: 0.1rem;
  }

  .story-reader {
    padding: 1.4rem;
  }

  .reader-toolbar {
    position: fixed;
    left: 0.6rem;
    right: 0.6rem;
    bottom: 0.6rem;
    justify-content: flex-start;
    width: auto;
    margin: 0;
    padding: 0.6rem 0.7rem;
    border-radius: 1rem;
    gap: 0.6rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    z-index: 14;
  }

  .reader-toolbar-group {
    flex-wrap: nowrap;
    flex: 0 0 auto;
  }

  .reader-toolbar-label {
    display: none;
  }

  .reader-main {
    padding: 1.2rem 0 5.5rem;
  }

  .topbar-reader {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 0 0.4rem;
    gap: 0.7rem;
  }

  .topbar-reader .brand {
    min-width: 0;
    gap: 0.65rem;
  }

  .topbar-reader .brand-mark {
    width: 2.1rem;
    height: 2.1rem;
  }

  .topbar-reader .brand strong {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .topbar-reader .brand small {
    display: none;
  }

  .topbar-reader .nav {
    gap: 0.45rem;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
  }

  .topbar-reader .nav a,
  .topbar-reader .reader-control {
    min-height: 2.2rem;
    padding: 0 0.8rem;
    font-size: 0.88rem;
  }

  .hero-copy h1,
  .library-hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  body:is([data-page="reader"], [data-page="story"]) .topbar {
    position: static !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.55rem !important;
    padding: 0.45rem 0 0.2rem !important;
    backdrop-filter: none !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .brand {
    min-width: 0 !important;
    gap: 0.45rem !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .brand-mark {
    width: 1.7rem !important;
    height: 1.7rem !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .brand strong {
    font-size: 0.72rem !important;
    letter-spacing: 0.04em !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .brand small {
    display: none !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .nav {
    gap: 0.3rem !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: flex-end !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .nav a,
  body:is([data-page="reader"], [data-page="story"]) .reader-control {
    min-height: 1.75rem !important;
    padding: 0 0.55rem !important;
    font-size: 0.74rem !important;
    border-radius: 999px !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .reader-main {
    padding: 0.65rem 0 4rem !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .reader-toolbar {
    position: fixed !important;
    left: 0.4rem !important;
    right: 0.4rem !important;
    bottom: 0.35rem !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0.35rem 0.4rem !important;
    gap: 0.35rem !important;
    border-radius: 0.8rem !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    z-index: 30 !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .reader-toolbar::-webkit-scrollbar {
    display: none;
  }

  body:is([data-page="reader"], [data-page="story"]) .reader-toolbar-group {
    flex-wrap: nowrap !important;
    flex: 0 0 auto !important;
    gap: 0.3rem !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .reader-toolbar-label {
    display: none !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .story-reader {
    padding: 1rem !important;
    border-radius: 1rem !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .reader-header {
    margin-bottom: 1rem !important;
    padding-bottom: 0.85rem !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .reader-header h1 {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .deck {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .story-reader p {
    margin-bottom: 0.9rem !important;
  }
}

@media (max-width: 540px) {
  .hero,
  .library-hero {
    padding-top: 3rem;
  }

  .library-side-metrics {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .filter-row {
    gap: 0.7rem;
  }

  .hero-actions {
    align-items: center;
  }

  .button,
  .filter-button,
  .library-footer a {
    min-height: 2.55rem;
    padding: 0 0.9rem;
  }

  .story-reader {
    padding: 1.15rem;
    border-radius: 1.2rem;
  }

  .story-reader p {
    font-size: max(1.02rem, var(--reader-font-size));
  }

  .deck {
    font-size: 0.96rem;
  }

  .topbar-reader .nav a {
    padding: 0 0.7rem;
    font-size: 0.84rem;
  }

  .topbar-reader .reader-control {
    min-height: 2.05rem;
    padding: 0 0.7rem;
    font-size: 0.82rem;
  }

  .reader-toolbar {
    left: 0.45rem;
    right: 0.45rem;
    bottom: 0.45rem;
    padding: 0.5rem 0.55rem;
  }

  body:is([data-page="reader"], [data-page="story"]) .nav a {
    font-size: 0.68rem !important;
    padding: 0 0.45rem !important;
  }

  body:is([data-page="reader"], [data-page="story"]) .reader-control {
    min-height: 1.65rem !important;
    padding: 0 0.45rem !important;
    font-size: 0.7rem !important;
  }
}
