:root {
  --ink: #07110f;
  --ink-2: #0c1a16;
  --pine: #143028;
  --cream: #f4efe4;
  --cream-dim: #cfc6b6;
  --paper: #f6efe2;
  --teal: #2ee6d4;
  --teal-deep: #0e8f84;
  --gold: #e7a23c;
  --gold-2: #f6d48a;
  --line: rgba(244, 239, 228, 0.14);
  --display: "Lilita One", "Trebuchet MS", sans-serif;
  --cat: "Chewy", "Trebuchet MS", cursive;
  --body: "Nunito", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: rgba(46, 230, 212, 0.35); color: #fff; }

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--teal), var(--gold-2));
  z-index: 40;
}

.aurora, .rosettes, #dust, .grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
}
.aurora { z-index: 0; }
.aurora span {
  position: absolute;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: drift 22s ease-in-out infinite;
}
.aurora span:nth-child(1) {
  background: radial-gradient(circle, rgba(46, 230, 212, 0.38), transparent 68%);
  top: -12vw;
  left: -8vw;
}
.aurora span:nth-child(2) {
  background: radial-gradient(circle, rgba(231, 162, 60, 0.28), transparent 70%);
  right: -10vw;
  top: 30vh;
  animation-delay: -8s;
}
.aurora span:nth-child(3) {
  background: radial-gradient(circle, rgba(14, 143, 132, 0.35), transparent 68%);
  left: 30vw;
  bottom: -18vw;
  animation-delay: -14s;
}
.rosettes {
  z-index: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(circle at 30% 40%, transparent 0 16px, rgba(231, 162, 60, 0.16) 17px 19px, transparent 20px 28px, rgba(46, 230, 212, 0.12) 29px 30px, transparent 31px),
    radial-gradient(circle at 70% 60%, transparent 0 11px, rgba(46, 230, 212, 0.14) 12px 13px, transparent 14px);
  background-size: 320px 320px, 240px 240px;
  animation: rosette 70s linear infinite;
}
#dust { z-index: 1; width: 100%; height: 100%; }
.grain {
  z-index: 4;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 0.6px, transparent 0.6px);
  background-size: 3px 3px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 14px 6vw;
  background: rgba(7, 17, 15, 0.55);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(7, 17, 15, 0.86);
  border-bottom-color: var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(46, 230, 212, 0.7), 0 0 18px rgba(46, 230, 212, 0.35);
}
.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  font-family: var(--cat);
  font-size: 1.15rem;
  color: var(--cream-dim);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--cream);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}
section { position: relative; z-index: 3; scroll-margin-top: 84px; }

.hero {
  min-height: 100vh;
  padding: 28px 0 120px;
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 160px);
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(8, 22, 20, 0.45);
  font-family: var(--cat);
  letter-spacing: 0.04em;
  color: var(--gold-2);
}
.name {
  display: block;
  font-family: var(--display);
  font-size: clamp(4.6rem, 11vw, 8.4rem);
  line-height: 0.82;
  letter-spacing: 0.01em;
  background: linear-gradient(115deg, #f6d48a 8%, #fff8ea 32%, #9ff7ef 62%, #e7a23c 100%);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen 9s ease-in-out infinite;
  filter: drop-shadow(0 12px 24px rgba(46, 230, 212, 0.18));
}
.the-cat {
  display: inline-block;
  margin-top: 6px;
  font-family: var(--cat);
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  font-weight: 400;
  color: var(--cream);
  transform: rotate(-2.5deg);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
h1 { margin: 0; }
.symbol-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 8px;
}
.symbol {
  font-family: var(--cat);
  color: var(--teal);
  font-size: 1.2rem;
}
.symbol-row strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  padding: 2px 12px 4px;
  border-radius: 999px;
  border: 1px solid rgba(46, 230, 212, 0.45);
  background: rgba(46, 230, 212, 0.08);
}
.lede {
  max-width: 38rem;
  color: var(--cream-dim);
  font-size: 1.12rem;
}
.hero-actions, .chart-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-socials {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.hero-socials a, .join-card {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(8, 20, 18, 0.55);
  border: 1px solid rgba(46, 230, 212, 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.hero-socials a:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(46, 230, 212, 0.18);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--cat);
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-sm { padding: 10px 16px; font-size: 1.05rem; }
.btn-gold {
  color: #1c1206;
  background: linear-gradient(180deg, #ffe3a6, #e7a23c 46%, #c9842a);
  box-shadow: 0 10px 28px rgba(231, 162, 60, 0.28);
}
.btn-line {
  color: var(--cream);
  background: rgba(7, 17, 15, 0.4);
  border-color: rgba(46, 230, 212, 0.4);
}
.btn:hover { transform: translateY(-2px); }
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-130%);
  animation: shine 4.2s ease-in-out infinite;
}
.nav .btn { margin-left: 8px; }

.mark {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: none;
  position: relative;
  z-index: 1;
}
.mark-pump { width: 46px; filter: hue-rotate(18deg) saturate(1.25) brightness(1.05); }
.mark-x { filter: invert(84%) sepia(38%) saturate(820%) hue-rotate(128deg) brightness(1.02); }
.mark-tg { filter: hue-rotate(-42deg) saturate(1.45) brightness(1.12); width: 26px; height: 26px; }
.mark-ig { filter: hue-rotate(145deg) saturate(0.45) brightness(1.15) contrast(1.05); width: 26px; height: 26px; }
.mark-dex { width: 46px; filter: drop-shadow(0 0 7px rgba(46, 230, 212, 0.9)); }
.mark-sol {
  height: 16px;
  width: auto;
  filter: hue-rotate(-82deg) saturate(1.15) brightness(1.08);
}
.mark-phantom {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  filter: hue-rotate(-88deg) saturate(1.15) brightness(1.08);
}
.mark-sol-lg {
  width: 46px;
  height: 36px;
  object-fit: contain;
  filter: hue-rotate(-82deg) saturate(1.15) brightness(1.08);
}

.portrait-wrap { display: grid; place-items: center; }
.portrait {
  position: relative;
  width: min(440px, 86vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: floaty 6.5s ease-in-out infinite;
}
.portrait::before {
  content: "";
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(46, 230, 212, 0.55), rgba(231, 162, 60, 0.12) 42%, transparent 70%);
  filter: blur(18px);
  animation: eye 3.6s ease-in-out infinite;
  z-index: 0;
}
.portrait img {
  width: 78%;
  height: 78%;
  object-fit: cover;
  border-radius: 46% 54% 48% 52%;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px dashed rgba(46, 230, 212, 0.55);
  animation: spin 22s linear infinite;
}
.orbit-b {
  inset: 7%;
  border-style: solid;
  border-color: transparent rgba(231, 162, 60, 0.8) transparent rgba(246, 212, 138, 0.15);
  animation-duration: 14s;
  animation-direction: reverse;
}
.spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 12px var(--gold);
  z-index: 2;
  animation: twinkle 2.8s ease-in-out infinite;
}
.s1 { top: 12%; right: 16%; }
.s2 { bottom: 18%; left: 10%; animation-delay: -1s; background: var(--teal); box-shadow: 0 0 12px var(--teal); }
.s3 { top: 22%; left: 18%; animation-delay: -1.8s; }

.water {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
  height: 150px;
  background:
    radial-gradient(120% 80% at 20% 100%, rgba(46, 230, 212, 0.22), transparent 55%),
    radial-gradient(90% 70% at 80% 100%, rgba(231, 162, 60, 0.16), transparent 50%),
    linear-gradient(180deg, transparent, rgba(8, 40, 38, 0.35));
  mask-image: linear-gradient(180deg, transparent, #000 50%);
  animation: eye 7s ease-in-out infinite;
  z-index: 2;
}
.peaks {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 180px;
  z-index: 2;
}

.about {
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(46, 230, 212, 0.16), transparent 60%),
    linear-gradient(180deg, #f8f1e4, #efe4d0);
  color: #1b2420;
  padding: 92px 0 88px;
  clip-path: polygon(0 36px, 100% 0, 100% 100%, 0 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
}
.photo {
  margin: 0;
  position: relative;
}
.photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 36px 64px 40px 58px;
  position: relative;
  z-index: 1;
  box-shadow: 18px 24px 0 rgba(14, 143, 132, 0.18);
  transition: transform 0.6s ease;
}
.photo:hover img { transform: scale(1.03) rotate(-0.4deg); }
.photo-glow {
  position: absolute;
  inset: 12% -6%;
  background: radial-gradient(circle, rgba(231, 162, 60, 0.45), transparent 70%);
  filter: blur(16px);
  animation: eye 4.5s ease-in-out infinite;
}
.about .index { color: var(--teal-deep); }
.about h2, .howto h2, .chart h2, .join h2 {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.9;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.index {
  margin: 0 0 6px;
  font-family: var(--display);
  letter-spacing: 0.22em;
  color: var(--teal);
}
.statement {
  font-family: var(--cat);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  color: #12312b;
  margin: 0 0 12px;
}
.about-copy p { color: #3c463f; }
.traits {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}
.traits li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(14, 143, 132, 0.16);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.traits li:hover {
  transform: translateX(6px);
  border-color: rgba(231, 162, 60, 0.55);
}
.traits h3, .trail h3, .join-card h3 {
  margin: 0 0 4px;
  font-family: var(--cat);
  font-size: 1.35rem;
  font-weight: 400;
  color: #12312b;
}
.traits p { margin: 0; }

.howto, .chart, .join { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head p:last-child { color: var(--cream-dim); margin: 0; }
.trail {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
.trail::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), var(--gold), var(--teal), transparent);
  background-size: 200% 100%;
  animation: caustic 8s linear infinite;
}
.trail li {
  position: relative;
  padding: 54px 16px 18px;
  border-radius: 24px;
  background: rgba(8, 22, 20, 0.62);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  min-height: 280px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.trail li:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 230, 212, 0.45);
}
.step-no {
  position: absolute;
  top: -16px;
  left: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  background: var(--ink);
  border: 2px solid var(--gold);
  color: var(--gold-2);
  z-index: 1;
}
.step-logo { margin-bottom: 10px; }
.trail h3 { color: var(--cream); }
.trail p { margin: 0 0 12px; color: var(--cream-dim); font-size: 0.98rem; }
.text-link {
  font-family: var(--cat);
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(46, 230, 212, 0.4);
}
.text-link:hover { color: var(--gold-2); }

.chart-shell {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(46, 230, 212, 0.28);
  background: #050d0b;
  box-shadow: 0 0 0 1px rgba(231, 162, 60, 0.12), 0 30px 80px rgba(0, 0, 0, 0.35);
  position: relative;
}
.chart-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(246, 212, 138, 0.12);
  animation: rim 4.5s ease-in-out infinite;
}
.chart-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
  font-family: var(--cat);
  font-size: 1.15rem;
}
.chart-meta {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
}
.live {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(46, 230, 212, 0.7);
  animation: ping 1.8s ease-out infinite;
}
#chart-frame {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  background: #0b0f0e;
}
.chart-links { margin-top: 18px; }

.banner-frame {
  margin: 0;
  padding: 3px;
  border-radius: 30px;
  background: conic-gradient(from var(--spin), var(--teal), var(--gold-2), #fff6e4, var(--teal-deep), var(--teal));
  animation: rimspin 10s linear infinite;
}
.banner-frame img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  border-radius: 27px;
  background: #10241f;
}
.join-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.join-card {
  width: auto;
  height: auto;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  text-decoration: none;
  justify-content: flex-start;
  background: rgba(8, 22, 20, 0.66);
}
.join-card h3 { color: var(--cream); margin: 0; }
.join-card p { margin: 0; color: var(--cream-dim); }
.join-card img { width: 36px; height: 36px; }
.join-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
}

.footer {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  color: var(--cream-dim);
  font-size: 0.95rem;
}
.footer-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}
.footer strong {
  display: block;
  font-family: var(--display);
  color: var(--cream);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.footer span { font-family: var(--cat); color: var(--teal); }
.on-sol {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: var(--cat);
  color: var(--cream);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.8s ease forwards;
}
.trail li:nth-child(2) { animation-delay: 0.08s; }
.trail li:nth-child(3) { animation-delay: 0.16s; }
.trail li:nth-child(4) { animation-delay: 0.24s; }
.join-card:nth-child(2) { animation-delay: 0.08s; }
.join-card:nth-child(3) { animation-delay: 0.16s; }

@property --spin {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4vw, 3vh, 0) scale(1.08); }
}
@keyframes rosette {
  from { background-position: 0 0, 0 0; }
  to { background-position: 320px 180px, -240px 120px; }
}
@keyframes sheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes eye {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes rimspin { to { --spin: 360deg; } }
@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes caustic { to { background-position: 220px 0, 0 0; } }
@keyframes shine {
  0%, 62% { transform: translateX(-130%); }
  100% { transform: translateX(130%); }
}
@keyframes ping {
  70% { box-shadow: 0 0 0 10px rgba(46, 230, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 230, 212, 0); }
}
@keyframes rim {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .portrait-wrap { order: -1; }
  .portrait { width: min(250px, 64vw); animation: none; }
  .hero { min-height: auto; padding-bottom: 72px; }
  .hero-grid { min-height: 0; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .lede { margin-inline: auto; }
  .hero-actions, .hero-socials, .chart-links { justify-content: center; }
  .peaks { height: 100px; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px 6vw 16px;
    background: rgba(7, 17, 15, 0.96);
    border-bottom: 1px solid var(--line);
  }
  .nav.open .nav-links { display: flex; }
  .nav .btn { display: none; }
  .hero-grid, .about-grid, .trail, .join-grid, .footer-row {
    grid-template-columns: 1fr;
  }
  .trail::before { display: none; }
  .trail li { min-height: 0; }
  .footer-row { gap: 10px; }
  .hero { padding-top: 12px; }
  #chart-frame { height: 480px; }
}

@media (max-width: 640px) {
  .wrap { width: min(1140px, calc(100% - 28px)); }
  .name { font-size: 4.2rem; }
  .hero-actions .btn, .chart-links .btn { width: 100%; }
  #chart-frame { height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
