:root {
  color-scheme: dark;
  --bg: #050504;
  --black: #090705;
  --stone: #17120d;
  --stone-2: #241b12;
  --gold: #f6b72c;
  --gold-bright: #ffe48a;
  --green: #8dab34;
  --green-deep: #334516;
  --ember: #bd531e;
  --crimson: #7e1416;
  --smoke: #b9ad94;
  --white: #fff6dc;
  --max: 1180px;
  --header-h: 74px;
  --scroll: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(246, 183, 44, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(246, 183, 44, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 72px 72px;
  color: var(--white);
  font-family:
    "Trebuchet MS",
    "Segoe UI",
    system-ui,
    sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 5, 4, 0.1), rgba(5, 5, 4, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(141, 171, 52, 0.14), transparent 34%),
    radial-gradient(circle at 12% 72%, rgba(126, 20, 22, 0.12), transparent 28%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 15;
  content: "";
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.025) 0,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: overlay;
  opacity: 0.22;
  pointer-events: none;
}

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

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

::selection {
  background: rgba(246, 183, 44, 0.35);
  color: var(--white);
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
}

.scroll-meter span {
  display: block;
  width: calc(var(--scroll) * 100%);
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold-bright), var(--ember));
  box-shadow: 0 0 18px rgba(246, 183, 44, 0.8);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: var(--header-h);
  padding: 0 clamp(18px, 4vw, 54px);
  background: rgba(5, 5, 4, 0.42);
  border-bottom: 1px solid rgba(246, 183, 44, 0.16);
  backdrop-filter: blur(18px);
}

.brand-mark,
.site-header nav {
  display: flex;
  align-items: center;
}

.brand-mark {
  width: 52px;
  height: 52px;
  overflow: visible;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 0 14px rgba(246, 183, 44, 0.42));
}

.site-header nav {
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 246, 220, 0.78);
}

.site-header nav a {
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(246, 183, 44, 0.7);
}

.nav-cta {
  min-height: 38px;
  padding: 12px 16px;
  border: 1px solid rgba(246, 183, 44, 0.42);
  background: rgba(246, 183, 44, 0.12);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  isolation: isolate;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(calc(1.02 + var(--scroll) * 0.045));
  filter: saturate(1.12) contrast(1.1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.9) 0%, rgba(5, 5, 4, 0.56) 38%, rgba(5, 5, 4, 0.32) 62%, rgba(5, 5, 4, 0.9) 100%),
    linear-gradient(180deg, rgba(5, 5, 4, 0.34) 0%, rgba(5, 5, 4, 0.1) 52%, var(--bg) 100%);
}

.hero-content {
  align-self: end;
  width: min(720px, calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 58px) 0 16vh;
  transform: translateY(calc(var(--scroll) * -42px));
}

.eyebrow,
.chapter-kicker {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 900;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 11ch;
  color: var(--gold-bright);
  font-size: clamp(4.2rem, 13vw, 10.8rem);
  line-height: 0.82;
  text-shadow:
    0 0 18px rgba(246, 183, 44, 0.64),
    0 8px 0 rgba(56, 35, 9, 0.7);
}

.hero-copy {
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(255, 246, 220, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions,
.cta-block,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.social-actions {
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 14px 20px;
  border: 1px solid transparent;
  appearance: none;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #130d03;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border-color: rgba(255, 228, 138, 0.9);
  box-shadow: 0 18px 40px rgba(246, 183, 44, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 54px rgba(246, 183, 44, 0.38);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 246, 220, 0.06);
  border-color: rgba(255, 246, 220, 0.28);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(246, 183, 44, 0.62);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.button-large {
  min-height: 56px;
  padding: 17px 24px;
}

.scroll-cue {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: 36px;
  width: 32px;
  height: 56px;
  border: 1px solid rgba(255, 246, 220, 0.5);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 10px;
  background: var(--gold-bright);
  transform: translateX(-50%);
  animation: cue 1.4s infinite ease-in-out;
}

@keyframes cue {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.2;
  }

  50% {
    transform: translate(-50%, 22px);
    opacity: 1;
  }
}

.prologue {
  display: grid;
  min-height: 74vh;
  place-items: center;
  padding: 90px 22px;
  background:
    linear-gradient(180deg, var(--bg), rgba(14, 8, 3, 0.94)),
    linear-gradient(90deg, transparent, rgba(246, 183, 44, 0.08), transparent);
  text-align: center;
}

.prologue-inner {
  width: min(900px, 100%);
}

.prologue p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 9vw, 7.4rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 246, 220, 0.26);
  text-transform: uppercase;
}

.prologue p:nth-child(2) {
  color: rgba(141, 171, 52, 0.56);
}

.prologue p:nth-child(3) {
  color: var(--gold-bright);
  text-shadow: 0 0 28px rgba(246, 183, 44, 0.72);
}

.chapters {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 43vw) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 72px);
  max-width: 1460px;
  margin: 0 auto;
  padding: 8vh clamp(18px, 4vw, 54px) 12vh;
}

.chapters::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(43vw + clamp(18px, 4vw, 54px) + clamp(15px, 2.5vw, 36px));
  width: 1px;
  content: "";
  background:
    linear-gradient(
      180deg,
      transparent,
      rgba(246, 183, 44, 0.35),
      rgba(141, 171, 52, 0.3),
      transparent
    );
}

.chapter-visual {
  position: sticky;
  top: var(--header-h);
  align-self: start;
  height: calc(100svh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 34px 0;
}

.vault-frame {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(246, 183, 44, 0.24);
  background: #050403;
  box-shadow:
    inset 0 0 80px rgba(0, 0, 0, 0.68),
    0 28px 80px rgba(0, 0, 0, 0.5);
}

.vault-frame::before,
.vault-frame::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
}

.vault-frame::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.72), transparent 28%, transparent 72%, rgba(5, 5, 4, 0.72)),
    linear-gradient(180deg, rgba(5, 5, 4, 0.18), transparent 48%, rgba(5, 5, 4, 0.52));
}

.vault-frame::after {
  border: 1px solid rgba(255, 228, 138, 0.26);
  box-shadow: inset 0 0 44px rgba(246, 183, 44, 0.16);
}

.vault-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform:
    scale(calc(1.02 + var(--scroll) * 0.08))
    translateY(calc(var(--scroll) * -16px));
  filter: saturate(1.12) contrast(1.08);
}

.gold-touch {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: calc(12% + var(--scroll) * 42%);
  background:
    linear-gradient(180deg, transparent, rgba(246, 183, 44, 0.32)),
    repeating-linear-gradient(
      118deg,
      rgba(255, 228, 138, 0),
      rgba(255, 228, 138, 0) 13px,
      rgba(255, 228, 138, 0.18) 14px,
      rgba(255, 228, 138, 0.18) 17px
    );
  mix-blend-mode: screen;
  opacity: 0.85;
  pointer-events: none;
}

.ticker-stamp {
  position: absolute;
  right: clamp(12px, 4vw, 38px);
  bottom: clamp(24px, 7vh, 74px);
  color: rgba(255, 228, 138, 0.75);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 5.6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.85;
  text-shadow: 0 0 26px rgba(246, 183, 44, 0.4);
  transform: rotate(-4deg);
}

.chapter-list {
  display: grid;
  gap: min(10vh, 90px);
  padding: 10vh 0;
}

.chapter {
  position: relative;
  min-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 6vw, 68px) clamp(20px, 5vw, 72px);
  border-left: 1px solid rgba(246, 183, 44, 0.2);
  background:
    linear-gradient(90deg, rgba(246, 183, 44, 0.085), transparent 72%),
    rgba(255, 246, 220, 0.025);
}

.chapter::before {
  position: absolute;
  top: 50%;
  left: -18px;
  width: 35px;
  height: 35px;
  content: attr(data-chapter);
  display: grid;
  place-items: center;
  color: #150d02;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  border: 1px solid rgba(255, 228, 138, 0.78);
  box-shadow: 0 0 22px rgba(246, 183, 44, 0.55);
  font-size: 0.72rem;
  font-weight: 900;
  transform: translateY(-50%);
}

.chapter h2,
.final h2 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(2.5rem, 6.8vw, 6.6rem);
  line-height: 0.88;
  text-shadow: 0 0 24px rgba(246, 183, 44, 0.28);
}

.chapter p:not(.chapter-kicker) {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 246, 220, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.78;
}

.chapter p:last-child {
  color: rgba(255, 246, 220, 0.94);
}

.momentum {
  position: relative;
  display: grid;
  min-height: 92vh;
  place-items: center;
  padding: 90px 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 4, 0.6), rgba(126, 20, 22, 0.25), rgba(5, 5, 4, 0.84)),
    linear-gradient(90deg, rgba(141, 171, 52, 0.12), transparent, rgba(246, 183, 44, 0.14));
}

.momentum::before {
  position: absolute;
  inset: 12% 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 228, 138, 0.8), transparent);
  box-shadow:
    0 18vh 0 rgba(246, 183, 44, 0.12),
    0 36vh 0 rgba(141, 171, 52, 0.12);
}

.momentum-track {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.momentum-track span {
  position: absolute;
  width: 2px;
  height: 120px;
  background: linear-gradient(180deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 18px rgba(246, 183, 44, 0.55);
  opacity: 0.48;
  animation: streak 4s infinite linear;
}

.momentum-track span:nth-child(1) {
  left: 18%;
  animation-delay: -0.8s;
}

.momentum-track span:nth-child(2) {
  left: 43%;
  animation-delay: -2.2s;
}

.momentum-track span:nth-child(3) {
  left: 68%;
  animation-delay: -1.4s;
}

.momentum-track span:nth-child(4) {
  left: 86%;
  animation-delay: -3s;
}

@keyframes streak {
  from {
    transform: translateY(-140px);
  }

  to {
    transform: translateY(calc(100vh + 160px));
  }
}

.momentum-copy {
  width: min(1020px, calc(100vw - 40px));
  text-align: center;
}

.momentum-copy p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 8.8rem);
  font-weight: 900;
  line-height: 0.95;
  color: rgba(255, 246, 220, 0.28);
  text-transform: uppercase;
}

.momentum-copy p:nth-child(2) {
  color: var(--gold-bright);
}

.momentum-copy p:nth-child(3) {
  color: var(--white);
  text-shadow: 0 0 26px rgba(246, 183, 44, 0.54);
}

.final {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  min-height: 100svh;
  padding: calc(var(--header-h) + 50px) clamp(18px, 5vw, 74px) 70px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 5, 4, 0.9), rgba(15, 8, 2, 0.84)),
    linear-gradient(110deg, rgba(141, 171, 52, 0.16), transparent 44%, rgba(246, 183, 44, 0.18));
}

.final::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(246, 183, 44, 0.09) 1px, transparent 1px),
    linear-gradient(0deg, rgba(246, 183, 44, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
  opacity: 0.5;
  pointer-events: none;
}

.final-image {
  position: relative;
  z-index: 1;
  align-self: end;
  min-height: 58vh;
  overflow: hidden;
  border-right: 1px solid rgba(246, 183, 44, 0.22);
}

.final-image img {
  width: 100%;
  height: 100%;
  min-height: 58vh;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.08);
}

.final-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 4, 0.78), transparent 38%, rgba(5, 5, 4, 0.42)),
    linear-gradient(180deg, transparent 42%, rgba(5, 5, 4, 0.86));
}

.final-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
}

.final-copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 246, 220, 0.82);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  line-height: 1.72;
}

.final-copy .final-line {
  color: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.2vw, 2.95rem);
  font-weight: 900;
  line-height: 1.05;
}

.contract-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 680px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid rgba(246, 183, 44, 0.28);
  background:
    linear-gradient(90deg, rgba(246, 183, 44, 0.12), rgba(141, 171, 52, 0.06)),
    rgba(5, 5, 4, 0.58);
  box-shadow: inset 0 0 30px rgba(246, 183, 44, 0.06);
}

.contract-label {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contract-address {
  min-width: 0;
  color: rgba(255, 246, 220, 0.9);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: clamp(0.78rem, 1.15vw, 0.95rem);
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.contract-copy {
  justify-self: start;
  min-height: 44px;
  white-space: nowrap;
}

.contract-status {
  min-height: 1em;
  color: rgba(255, 228, 138, 0.82);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 54px);
  color: rgba(255, 246, 220, 0.64);
  border-top: 1px solid rgba(246, 183, 44, 0.16);
  background: #040302;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-contract {
  overflow-wrap: anywhere;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-socials a {
  color: var(--gold-bright);
  transition: color 180ms ease, text-shadow 180ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--white);
  text-shadow: 0 0 14px rgba(246, 183, 44, 0.58);
}

.reveal {
  transform: translateY(36px);
  opacity: 0;
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 980px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .site-header nav {
    gap: 12px;
    font-size: 0.7rem;
  }

  .nav-cta {
    padding-inline: 12px;
  }

  .hero-backdrop {
    object-position: 54% center;
  }

  .hero-content {
    margin-left: 18px;
    margin-right: 18px;
    padding-bottom: 15vh;
  }

  .chapters {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .chapters::before {
    display: none;
  }

  .chapter-visual {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    padding-top: 0;
  }

  .vault-frame {
    width: min(520px, 100%);
  }

  .ticker-stamp {
    right: 18px;
    bottom: 18px;
  }

  .chapter-list {
    gap: 34px;
    padding: 0;
  }

  .chapter {
    min-height: auto;
    padding-block: 42px;
  }

  .final {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .final-image {
    min-height: 42vh;
    border-right: 0;
    border-bottom: 1px solid rgba(246, 183, 44, 0.22);
  }

  .final-image img {
    min-height: 42vh;
    object-position: center 38%;
  }
}

@media (max-width: 640px) {
  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 5, 4, 0.9), rgba(5, 5, 4, 0.42), rgba(5, 5, 4, 0.92)),
      linear-gradient(180deg, rgba(5, 5, 4, 0.16), rgba(5, 5, 4, 0.18) 45%, var(--bg) 100%);
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5.4rem);
  }

  .hero-copy {
    max-width: 96%;
  }

  .hero-actions,
  .cta-block,
  .social-actions,
  .contract-card {
    align-items: stretch;
    flex-direction: column;
  }

  .contract-card {
    display: flex;
  }

  .contract-address {
    font-size: 0.68rem;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
  }

  .scroll-cue {
    right: 18px;
    bottom: 22px;
  }

  .prologue {
    min-height: 64vh;
  }

  .chapters {
    padding-inline: 14px;
  }

  .chapter {
    padding: 36px 22px 36px 30px;
  }

  .chapter::before {
    left: -12px;
    width: 26px;
    height: 26px;
    font-size: 0.62rem;
  }

  .chapter h2,
  .final h2 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .momentum {
    min-height: 78vh;
  }

  .momentum-copy p {
    font-size: clamp(2.25rem, 13vw, 5.8rem);
  }

  .final {
    padding-inline: 18px;
  }

  .final-copy .final-line {
    font-size: clamp(1.55rem, 9vw, 2.45rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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