/* =====================================================
   $PNZI — Ponzi Strategy₿ landing
   ===================================================== */

:root {
  --hue: 35;
  --chroma: 0.19;

  --brand: oklch(0.72 var(--chroma) var(--hue));
  --brand-soft: oklch(0.94 calc(var(--chroma) * 0.35) var(--hue));

  --ink: #0a0a0a;
  --ink-mute: #4a4a4a;

  --paper: #fbf6ec;
  --paper-2: #f3ecde;
  --line: rgba(10, 10, 10, 0.14);
  --line-2: rgba(10, 10, 10, 0.24);

  --maxw: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.app {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  transition: background 0.28s linear, color 0.28s linear;
}
.app .nav,
.app .hero__eyebrow,
.app .step,
.app .lore__quote,
.app .theme-toggle,
.app .btn,
.app .hero__stats,
.app .stat,
.app .hero__sub,
.app .hero__line--alt,
.app .hero__btc,
.app .lore__gloss,
.app .lore__gloss p,
.app .step h3,
.app .step p,
.app .section__head h2,
.app .hero__title {
  transition: background 0.28s linear, color 0.28s linear, border-color 0.28s linear, box-shadow 0.28s linear, text-shadow 0.28s linear;
}

.bg-cream { background: var(--paper); }
.bg-noir { background: #0a0a0a; color: #f3ecde; }
.bg-noir .hero__title,
.bg-noir .section__head h2,
.bg-noir .lore__gloss,
.bg-noir .step h3 { color: #fbf6ec; }
.bg-noir .hero__sub,
.bg-noir .step p,
.bg-noir .lore__gloss p { color: rgba(255,255,255,0.7); }
.bg-noir .hero__eyebrow,
.bg-noir .step,
.bg-noir .lore__quote { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.2); }

/* grain */
.has-grain::before {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: 0.06;
  z-index: 1000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* =========================
   NAV
   ========================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklch, var(--paper) 94%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.bg-noir .nav { background: rgba(10,10,10,0.9); border-bottom-color: rgba(255,255,255,0.12); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 16px;
}
.nav__cta { margin-left: 4px; }
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  color: inherit;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__logo img { width: 32px; height: 32px; border-radius: 6px; }
.nav__links {
  display: flex; gap: 24px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.nav__links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity .15s;
}
.nav__links a:hover { opacity: 1; }

.theme-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background .25s ease, border-color .25s ease;
}
.bg-noir .theme-toggle { background: transparent; border-color: rgba(255,255,255,0.4); }

.theme-toggle__sun,
.theme-toggle__moon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px; height: 14px;
  transition: opacity .3s ease, transform .35s ease;
}
.theme-toggle__sun { border-radius: 50%; }
.theme-toggle__moon { color: var(--paper); }

.theme-toggle .theme-toggle__moon { opacity: 0; transform: rotate(-40deg) scale(0.7); }
.theme-toggle .theme-toggle__sun  { opacity: 1; transform: rotate(0) scale(1); }
.theme-toggle.is-noir .theme-toggle__moon { opacity: 1; transform: rotate(0) scale(1); }
.theme-toggle.is-noir .theme-toggle__sun  { opacity: 0; transform: rotate(40deg) scale(0.7); }

.theme-toggle:hover { transform: rotate(-8deg); }
.theme-toggle:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__inner { gap: 10px; padding: 12px 16px; }
  .nav__logo { font-size: 18px; }
  .nav__logo img { width: 28px; height: 28px; }
  .nav__cta { margin-left: auto; }
  .theme-toggle { width: 26px; height: 26px; }
  .theme-toggle__sun, .theme-toggle__moon { width: 13px; height: 13px; }
}

/* =========================
   BUTTONS
   ========================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s, box-shadow .12s;
  font-family: inherit;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.btn--primary { background: var(--brand); }
.btn--ghost { background: transparent; }
.btn--lg { padding: 16px 26px; font-size: 15px; }
.btn--sm { padding: 8px 16px; font-size: 12px; }
.bg-noir .btn { background: transparent; color: var(--paper); border-color: var(--paper); }
.bg-noir .btn--primary { background: var(--brand); color: var(--ink); border-color: var(--brand); }
.bg-noir .btn:hover { box-shadow: 4px 4px 0 var(--brand); }

/* =========================
   MARQUEE
   ========================= */
.marquee {
  background: var(--brand);
  color: var(--ink);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  padding: 10px 0;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee linear infinite;
  gap: 24px;
}
.marquee__item {
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  padding-right: 8px;
}
.marquee__dot { opacity: 0.5; margin-left: 20px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.3333%); }
}

/* =========================
   HERO
   ========================= */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px 32px 64px;
  position: relative;
}
@media (max-width: 720px) { .hero { padding: 40px 20px 40px; } }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) { .hero__grid { grid-template-columns: 1fr; gap: 40px; } }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper-2);
  border: 1px solid var(--line-2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 28px;
}
.pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 oklch(0.72 var(--chroma) var(--hue) / 0.6); }
  70% { box-shadow: 0 0 0 12px oklch(0.72 var(--chroma) var(--hue) / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.72 var(--chroma) var(--hue) / 0); }
}

.hero__title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(54px, 11vw, 156px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  text-wrap: balance;
}
@media (max-width: 480px) {
  .hero__title { font-size: 56px; margin-bottom: 20px; }
  .hero__line--alt { text-shadow: 4px 4px 0 var(--ink); -webkit-text-stroke: 1.5px var(--ink); }
}
.hero__line { display: block; }
.hero__line--alt {
  color: var(--brand);
  -webkit-text-stroke: 2px var(--ink);
  text-shadow: 6px 6px 0 var(--ink);
}
.bg-noir .hero__line--alt { -webkit-text-stroke: 0; text-shadow: 6px 6px 0 rgba(255,255,255,0.1); }
.hero__btc {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--ink);
  -webkit-text-stroke: 0;
  text-shadow: none;
  margin-left: 8px;
}
.bg-noir .hero__btc { color: var(--paper); }

.hero__sub {
  font-size: 19px;
  line-height: 1.45;
  max-width: 520px;
  color: var(--ink-mute);
  margin: 0 0 32px;
  text-wrap: pretty;
}
.bg-noir .hero__sub { color: rgba(255,255,255,0.7); }
@media (max-width: 720px) { .hero__sub { font-size: 16px; margin-bottom: 24px; } }

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }

.hero__ca {
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px dashed var(--line-2);
  padding: 10px 14px;
  border-radius: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  cursor: pointer;
  max-width: 100%;
  overflow: hidden;
}
.hero__ca:hover { border-color: var(--ink); background: var(--paper-2); }
.hero__ca-label { font-weight: 700; letter-spacing: 0.1em; }
.hero__ca code { opacity: 0.75; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 320px; }
@media (max-width: 480px) { .hero__ca code { max-width: 180px; font-size: 11px; } }
.hero__ca-copy { font-size: 10px; text-transform: uppercase; opacity: 0.5; }

/* coin */
.hero__right { position: relative; }
.coin-stage {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  display: grid; place-items: center;
}
@media (max-width: 720px) { .coin-stage { max-width: 300px; } }
.coin {
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow:
    0 30px 60px -20px oklch(0.5 var(--chroma) var(--hue) / 0.55),
    0 10px 20px -5px rgba(0, 0, 0, 0.25),
    inset 0 -8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  animation: coinBob 4s ease-in-out infinite;
}
@keyframes coinBob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}

/* =========================
   SKY OVERLAY (gradient bloom on theme swap)
   ========================= */
.sky-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  opacity: 0;
  transition: opacity 0.28s linear;
  background: radial-gradient(
    ellipse at 50% 40%,
    oklch(0.72 0.18 35 / 0.35) 0%,
    oklch(0.55 0.20 25 / 0.2) 60%,
    transparent 100%
  );
}
.is-celestial .sky-overlay { opacity: 1; }
.coin-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0.5;
  z-index: 1;
}
.coin-halo--2 {
  background: radial-gradient(circle, oklch(0.5 var(--chroma) var(--hue)) 0%, transparent 55%);
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.coin-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  animation: orbit 14s linear infinite;
  z-index: 3;
}
.coin-orbit--2 { animation-duration: 18s; animation-direction: reverse; }
.coin-orbit--3 { animation-duration: 24s; }
.coin-orbit span {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--brand);
  display: grid; place-items: center;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.coin-orbit--1 span { top: 8%; }
.coin-orbit--2 span { top: 50%; left: 8%; }
.coin-orbit--3 span { top: 88%; left: 82%; }
@keyframes orbit {
  from { transform: translate(-50%, -50%) rotate(0); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero__stats {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--line-2);
  border-bottom: 1.5px solid var(--line-2);
}
.bg-noir .hero__stats { border-color: rgba(255,255,255,0.15); }
@media (max-width: 700px) { .hero__stats { grid-template-columns: 1fr; } }
.stat {
  padding: 24px 20px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.bg-noir .stat { border-right-color: rgba(255,255,255,0.1); }
.stat__v {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat__l {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 600;
  opacity: 0.55;
  margin-top: 8px;
}

/* =========================
   SECTIONS
   ========================= */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 32px;
  position: relative;
}
@media (max-width: 720px) { .section { padding: 64px 20px; } }
.section--dark {
  max-width: none;
  padding: 0;
  background: var(--ink);
  color: var(--paper);
}

.section__head { margin-bottom: 48px; max-width: 900px; }
.kicker {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 4px;
  margin-bottom: 22px;
  opacity: 0.85;
}
.section__head h2 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
@media (max-width: 720px) { .section__head { margin-bottom: 32px; } }

/* =========================
   LORE
   ========================= */
.lore {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .lore { grid-template-columns: 1fr; } }

.lore__quote {
  background: #0b0b0b;
  color: #e7e7e7;
  border: 1.5px solid var(--ink);
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 8px 8px 0 var(--ink);
}
.bg-noir .lore__quote { box-shadow: 6px 6px 0 var(--brand); }
@media (max-width: 720px) {
  .lore__quote { padding: 20px; box-shadow: 5px 5px 0 var(--ink); }
  .bg-noir .lore__quote { box-shadow: 5px 5px 0 var(--brand); }
  .lore__text { font-size: 16px; }
}
.lore__repost {
  font-size: 13px;
  font-weight: 600;
  color: #a9a9a9;
  margin-bottom: 14px;
}
.lore__chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 4px 0 16px;
}
.lore__chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 999px;
  padding: 4px 10px 4px 4px;
  font-size: 13px;
  color: #e7e7e7;
}
.lore__chip b { color: oklch(0.58 0.18 25); font-weight: 700; }
.lore__chip-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 12px;
  font-weight: 900;
}
.lore__chip-dot--btc { background: var(--brand); color: #000; }
.lore__chip-dot--m { background: oklch(0.58 0.18 25); color: #fff; }
.mention { color: oklch(0.72 0.15 240); }
.lore__author { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.lore__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--ink);
  background: var(--brand);
  display: block;
}
.lore__name { font-weight: 700; font-size: 15px; color: #fff; }
.lore__handle { font-size: 13px; opacity: 0.55; font-family: "JetBrains Mono", monospace; }
.check { color: oklch(0.6 0.18 230); margin-left: 2px; }
.lore__text {
  font-size: 17px;
  line-height: 1.45;
  margin: 0 0 14px;
  font-weight: 400;
  color: #e7e7e7;
}
.lore__text em {
  font-style: normal;
  background: var(--brand);
  color: #000;
  padding: 0 6px;
  border-radius: 4px;
  font-weight: 600;
}
.lore__text--ticker { font-size: 18px; margin-top: 6px; }
.lore__text--ticker b { color: var(--brand); font-weight: 700; letter-spacing: 0.02em; }
.lore__meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 13px;
  opacity: 0.55;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
  margin-top: 6px;
}
.lore__meta b { color: #fff; font-weight: 600; }

.lore__lead {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 22px;
}
.lore__gloss p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-mute);
  margin: 0 0 18px;
}
.lore__small { font-size: 13px !important; opacity: 0.6; }

/* =========================
   TOKENOMICS STRIP
   ========================= */
.tokenomics {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 700px) { .tokenomics { grid-template-columns: repeat(2, 1fr); } }
.tokenomics__cell {
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.12);
  text-align: center;
}
.tokenomics__cell:last-child { border-right: none; }
@media (max-width: 700px) {
  .tokenomics__cell:nth-child(2) { border-right: none; }
  .tokenomics__cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
}
.tokenomics__v {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.tokenomics__l {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 12px;
}

/* =========================
   STEPS
   ========================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  border: 1.5px solid var(--ink);
  border-radius: 14px;
  padding: 28px;
  background: var(--paper-2);
  transition: transform .15s, background .15s;
}
.step:hover { transform: translateY(-4px); background: var(--brand); }
.step__n {
  font-family: "Archivo Black", sans-serif;
  font-size: 56px;
  line-height: 1;
  color: var(--brand);
  -webkit-text-stroke: 1.5px var(--ink);
  transition: color .15s;
}
.step:hover .step__n { color: var(--paper); }
@media (max-width: 720px) { .step { padding: 22px; } .step__n { font-size: 46px; } }
.step h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  margin: 20px 0 8px;
  letter-spacing: -0.02em;
}
.step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-mute);
}
.step:hover p { color: var(--ink); }

/* =========================
   FOOTER
   ========================= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 32px 48px;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 720px) { .footer { padding: 64px 20px 40px; } }
.footer__big {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(64px, 15vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--brand);
  margin: 0 auto 40px;
  text-wrap: balance;
}
.footer__btc { color: var(--paper); margin-left: 10px; }
.footer__links {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 28px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.footer__links a { color: var(--paper); text-decoration: none; opacity: 0.85; }
.footer__links a:hover { color: var(--brand); opacity: 1; }
.footer__links span { opacity: 0.3; }
.footer__fine {
  max-width: 620px;
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.5;
}

/* =========================
   TWEAKS
   ========================= */
.tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 280px;
  max-width: calc(100vw - 32px);
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  box-shadow: 8px 8px 0 var(--ink);
  z-index: 1000;
  font-family: "Inter", sans-serif;
}
.tweaks__head {
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  border-bottom: 1.5px solid var(--ink);
  background: var(--brand);
  border-radius: 10px 10px 0 0;
}
.tweaks__body { padding: 14px 16px; display: grid; gap: 12px; }
.tweaks__row {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}
.tweaks__row--check { grid-template-columns: 1fr auto; }
.tweaks__row span { font-weight: 600; }
.tweaks__row input[type="range"] { width: 100%; }
.tweaks__row output { font-family: "JetBrains Mono", monospace; font-size: 11px; text-align: right; }
.tweaks__row select {
  font: inherit;
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid var(--line-2);
  background: var(--paper);
  font-size: 12px;
}
