:root {
  --ink: #151011;
  --ink-2: #1E1719;
  --oxblood: #5C1A2B;
  --oxblood-soft: #7A2A3C;
  --bone: #ECE4D8;
  --bone-dim: #B6ABA0;
  --bronze: #8C6A3F;
  --bronze-deep: #6E5230;
  --muted: #8A7F79;
  --line: rgba(236, 228, 216, 0.14);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--bone);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}

.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bronze);
}

.wrap {
  width: min(100% - 2.5rem, 75rem);
  margin-inline: auto;
}

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

::selection {
  background: var(--oxblood);
  color: var(--bone);
}

:focus-visible {
  outline: 1px solid var(--bronze);
  outline-offset: 3px;
}

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

/* ---------- Nav ---------- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem;
  transition: opacity 0.4s, background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
  opacity: 0;
  pointer-events: none;
}

nav.show {
  opacity: 1;
  pointer-events: auto;
}

nav.scrolled {
  background: rgba(21, 16, 17, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 1rem 1.25rem;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  letter-spacing: 0.5em;
  padding-left: 0.5em;
  font-weight: 500;
}

.navlinks {
  display: none;
  gap: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

.navlinks a {
  transition: color 0.3s;
}

.navlinks a:hover {
  color: var(--bronze);
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.25rem 4rem;
  background:
    radial-gradient(1100px 620px at 70% -10%, rgba(92, 26, 43, 0.5), transparent 60%),
    radial-gradient(800px 500px at 0% 110%, rgba(140, 106, 63, 0.12), transparent 55%),
    var(--ink);
}

.stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(52vw, 380px);
  width: 100%;
}

.mark {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.6s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.glyph {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(9.5rem, 26vw, 14.5rem);
  height: clamp(9.5rem, 26vw, 14.5rem);
}

.glyph span {
  grid-area: 1 / 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(9.5rem, 26vw, 14.5rem);
  line-height: 1;
  transition: transform 0.5s ease;
}

.glyph .gO {
  color: var(--bone);
}

.glyph .gA {
  color: var(--bronze);
}

.mark:hover .glyph .gA,
.mark:focus-visible .glyph .gA {
  transform: translateY(-4px);
}

.mark .lock {
  margin-top: 0.9rem;
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

.mark .lock b {
  color: var(--bronze);
  border: 1px solid var(--bronze-deep);
  border-radius: 2px;
  padding: 0.55rem 1.1rem;
  display: inline-block;
  font-weight: 400;
  transition: background 0.3s, color 0.3s;
}

.mark:hover .lock b,
.mark:focus-visible .lock b {
  background: var(--bronze);
  color: var(--ink);
}

.stage.open .mark {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
}

.word {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(3.2rem, 14vw, 11rem);
  line-height: 0.8;
  color: var(--bone);
  transition: opacity 0.5s 0.35s;
}

.stage.open .word {
  opacity: 1;
  pointer-events: auto;
}

.word .ltr {
  display: inline-block;
  position: relative;
  transition:
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.8s ease,
    max-width 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s;
}

.word .mid {
  opacity: 0;
  transform: translateY(16px) scaleX(0.2);
  max-width: 0;
  overflow: hidden;
}

.stage.open .word .mid {
  opacity: 1;
  transform: none;
  max-width: 1.2em;
}

.word .m1 {
  transition-delay: 0.35s;
}

.word .m2 {
  transition-delay: 0.46s;
}

.word .m3 {
  transition-delay: 0.57s;
}

.word .m4 {
  transition-delay: 0.68s;
}

.word .A {
  color: var(--bronze);
}

.word .O {
  color: var(--bone);
}

.word .ltr[data-chapter] {
  cursor: pointer;
}

.word .ltr[data-chapter]:hover {
  color: var(--bronze);
}

.hero-tag {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--bronze);
  margin-top: 2.2em;
  max-width: 28ch;
  opacity: 0;
  transition: opacity 1s 0.7s;
}

.hero-sub {
  margin-top: 0.7em;
  max-width: 60ch;
  color: var(--bone-dim);
  opacity: 0;
  transition: opacity 1s 0.8s;
  font-size: 0.98rem;
}

.hero-hint {
  margin-top: 1.5em;
  font-size: 0.64rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 1s 0.9s;
}

.stage.open ~ .hero-tag,
.stage.open ~ .hero-sub,
.stage.open ~ .hero-hint {
  opacity: 1;
}

/* ---------- Sections ---------- */
section {
  padding: 5.5rem 0;
  position: relative;
}

.sec-head {
  max-width: 60ch;
  margin-bottom: 2.75rem;
}

.sec-head h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.05;
  margin-top: 1rem;
  font-weight: 300;
}

.sec-head p {
  margin-top: 1.15rem;
  color: var(--bone-dim);
  font-size: 1.02rem;
  max-width: 54ch;
}

/* Ethos */
.ethos {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ethos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.ethos-quote {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.24;
}

.ethos-quote em {
  color: var(--bronze);
  font-style: italic;
}

.ethos-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ethos-item {
  padding-left: 1.5rem;
  border-left: 1px solid var(--oxblood-soft);
}

.ethos-item h3 {
  font-size: 1.4rem;
  color: var(--bone);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.ethos-item p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Journey ladder */
.ladder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: stretch;
}

.spine {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.rung {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.1rem 1rem 1.1rem 0.5rem;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.3s;
  position: relative;
}

.rung .rn {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--bronze-deep);
  width: 2rem;
  letter-spacing: 0.05em;
}

.rung .rl {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  width: 2rem;
  text-align: center;
  color: var(--bone-dim);
  transition: color 0.3s;
}

.rung .rp {
  font-size: 0.88rem;
  color: var(--bone);
  flex: 1;
}

.rung .rlock {
  font-size: 0.78rem;
  color: var(--bronze-deep);
  letter-spacing: 0.08em;
}

.rung::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--bronze);
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: top;
}

.rung:hover .rl {
  color: var(--bone);
}

.rung.active {
  background: linear-gradient(90deg, rgba(92, 26, 43, 0.28), transparent);
}

.rung.active::before {
  transform: scaleY(1);
}

.rung.active .rl {
  color: var(--bronze);
}

.rung[data-t="A"] .rl {
  font-size: 2.4rem;
}

.panel {
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 18rem;
  position: relative;
}

.panel.is-updating {
  opacity: 0.55;
  transition: opacity 0.2s;
}

.panel .pt {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.panel .pt b {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 8vw, 4.6rem);
  font-weight: 300;
  color: var(--bronze);
  line-height: 0.8;
}

.panel .pn {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--bronze-deep);
  letter-spacing: 0.1em;
}

.panel .pp {
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", serif;
  color: var(--bone);
  margin-top: 0.25rem;
}

.panel .pm {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--bone);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  max-width: 46ch;
  margin-top: 1.25rem;
}

.panel .pf {
  display: flex;
  gap: 1.75rem;
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.panel .pf div span {
  display: block;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.panel .pf div b {
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--bone);
  font-family: "Space Grotesk", sans-serif;
}

.ladder-note {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}

/* Apex gate */
.gate {
  text-align: center;
  max-width: 26rem;
  margin: 0 auto;
}

.gate .glock {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  color: var(--bronze);
  line-height: 1;
}

.gate h3 {
  font-size: 1.65rem;
  font-weight: 400;
  margin: 0.5rem 0 0.35rem;
}

.gate p {
  color: var(--bone-dim);
  font-size: 0.96rem;
  margin-bottom: 1.35rem;
}

.gate .grow {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  flex-wrap: wrap;
}

.gate input {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 0.85rem 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-align: center;
  min-width: min(100%, 14rem);
}

.gate input:focus {
  outline: none;
  border-color: var(--bronze);
}

.gate .gmsg {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  min-height: 1em;
}

.gate .gmsg.err {
  color: var(--oxblood-soft);
}

.gate .gmsg.ok {
  color: var(--bronze);
}

.gate .greq {
  margin-top: 1.1rem;
  font-size: 0.78rem;
  color: var(--bronze);
  cursor: pointer;
  letter-spacing: 0.08em;
  background: none;
  border: none;
  font-family: inherit;
}

.gate .greq:hover {
  text-decoration: underline;
}

/* Ascent path */
.ascent {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.path {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0.5rem 0;
}

.path-rail {
  position: absolute;
  left: 1.20rem;
  top: 1.5rem;
  bottom: 1.5rem;
  width: 1px;
  background: linear-gradient(var(--bronze), var(--oxblood-soft), var(--line));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.path.in .path-rail {
  transform: scaleY(1);
}

.path-rungs {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.path-rung {
  position: relative;
  display: grid;
  grid-template-columns: 3.1rem 2.8rem minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem 1rem;
  padding: 1.1rem 0.25rem 1.1rem 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.path.in .path-rung {
  opacity: 1;
  transform: none;
}

.path.in .path-rung:nth-child(1) {
  transition-delay: 0.55s;
}

.path.in .path-rung:nth-child(2) {
  transition-delay: 0.45s;
}

.path.in .path-rung:nth-child(3) {
  transition-delay: 0.35s;
}

.path.in .path-rung:nth-child(4) {
  transition-delay: 0.25s;
}

.path.in .path-rung:nth-child(5) {
  transition-delay: 0.15s;
}

.path.in .path-rung:nth-child(6) {
  transition-delay: 0.05s;
}

.pr-count {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1.5px solid var(--bronze-deep);
  display: grid;
  place-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  background: var(--ink-2);
  z-index: 1;
}

.path-rung.apex .pr-count {
  border-color: var(--bronze);
  color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(92, 26, 43, 0.35);
}

.path-rung.base .pr-count {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--ink);
  box-shadow: 0 0 0 5px rgba(140, 106, 63, 0.16);
}

.pr-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 2.45rem);
  font-weight: 300;
  color: var(--bronze);
  line-height: 1;
  text-align: center;
}

.path-rung.apex .pr-letter {
  font-size: clamp(2.35rem, 3.6vw, 2.85rem);
}

.pr-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.pr-header {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 400;
  color: var(--bone-dim);
  line-height: 1.15;
}

.pr-label {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.4;
}

.pr-tag {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  grid-column: 3;
  justify-self: start;
  margin-top: 0.15rem;
}

.pr-tag.live {
  background: var(--bronze);
  color: var(--ink);
}

.pr-tag.soon {
  border: 1px solid var(--line);
  color: var(--muted);
}

.pr-tag.inv {
  border: 1px solid var(--bronze-deep);
  color: var(--bronze);
}

@media (min-width: 768px) {
  .path-rung {
    grid-template-columns: 3.1rem 2.8rem minmax(0, 1fr) auto;
    gap: 1.15rem 1.35rem;
    padding: 1.25rem 0.5rem 1.25rem 0;
  }

  .pr-tag {
    grid-column: auto;
    justify-self: end;
    align-self: center;
    margin-top: 0;
  }
}

/* Mark */
.mark-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.mark-visual {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 40%, rgba(92, 26, 43, 0.4), var(--ink) 70%);
}

.pin {
  width: min(9.5rem, 42%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--bronze);
  display: grid;
  place-items: center;
  position: relative;
  background: radial-gradient(circle at 38% 32%, #20181a, #0f0b0c);
  box-shadow:
    0 1.8rem 4rem rgba(0, 0, 0, 0.6),
    inset 0 1px 2px rgba(140, 106, 63, 0.3);
}

.pin span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 8vw, 4.4rem);
  color: var(--bronze);
  font-weight: 300;
  line-height: 1;
}

.mark-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.6rem;
  font-size: 0.56rem;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-align: center;
  text-transform: uppercase;
  color: var(--bronze-deep);
  line-height: 1.2;
  pointer-events: none;
}

.mark-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  margin: 1.1rem 0 1.25rem;
}

.mark-copy {
  color: var(--bone-dim);
  font-size: 1.02rem;
  max-width: 48ch;
}

/* Audience */
.audience {
  background:
    radial-gradient(900px 500px at 50% 120%, rgba(92, 26, 43, 0.5), transparent 60%),
    var(--ink);
  text-align: center;
}

.audience-eyebrow {
  display: inline-block;
}

.audience h2 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 300;
  line-height: 1.02;
  margin-top: 1.25rem;
}

.audience > .wrap > .reveal > p:not(.wl-note) {
  max-width: 48ch;
  margin: 1.35rem auto 0;
  color: var(--bone-dim);
}

.wl-form {
  margin: 2.5rem auto 0;
  max-width: 32rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.wl-form input[type="text"],
.wl-form input[type="email"] {
  flex: 1 1 14rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--bone);
  padding: 1rem 1.15rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.wl-form input::placeholder {
  color: var(--muted);
}

.wl-form input:focus {
  outline: none;
  border-color: var(--bronze);
}

.btn {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 1rem 1.9rem;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  transition: background 0.35s, color 0.35s;
  cursor: pointer;
  background: none;
}

.btn:hover:not(:disabled) {
  background: var(--bronze);
  color: var(--ink);
}

.btn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.btn.is-success {
  background: var(--bronze);
  color: var(--ink);
}

.wl-note {
  margin: 1.1rem auto 0;
  max-width: none;
  width: max-content;
  white-space: nowrap;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.wl-note.is-error {
  color: var(--oxblood-soft);
}

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0;
  color: var(--muted);
}

.foot-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.foot-grid .brand {
  font-size: 1.15rem;
}

.foot-tag {
  font-size: 0.82rem;
  max-width: 30ch;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.foot-links a:hover {
  color: var(--bronze);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 0.8s, transform 0.8s;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Breakpoints (mobile-first) ---------- */
@media (min-width: 768px) {
  nav {
    padding: 1.5rem 2rem;
  }

  nav.scrolled {
    padding: 1.15rem 2rem;
  }

  .navlinks {
    display: flex;
  }

  .wrap {
    width: min(100% - 4rem, 75rem);
  }

  section {
    padding: 7.5rem 0;
  }

  .panel {
    padding: 2.75rem;
    min-height: 24rem;
  }

  .foot-grid {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .ethos-grid,
  .mark-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4.25rem;
  }

  .mark-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .ladder-grid {
    grid-template-columns: minmax(18rem, auto) 1fr;
    gap: 3.5rem;
  }

  .spine {
    min-width: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .word .ltr,
  .mark,
  .reveal,
  .path-rung,
  .path-rail {
    transition: opacity 0.4s ease !important;
  }

  .word .mid {
    transform: none;
    max-width: 1.2em;
  }

  .reveal,
  .path-rung {
    transform: none;
  }

  .path-rail {
    transform: scaleY(1);
  }

  .path .path-rung {
    opacity: 1;
  }
}
