/* ============================================
   AGENTIA — Experience layer (interactive)
   ============================================ */

/* hide default cursor on desktop, custom one takes over */
@media (hover: hover) and (pointer: fine) {
  html, body { cursor: none; }
  a, button, .chip, [data-cursor], textarea, input { cursor: none; }
}

/* hero corner overrides — moved into flex flow */
.hero__corner {
  position: static !important;
  bottom: auto;
  left: auto;
  right: auto;
}

/* ============================================
   BOOT
   ============================================ */
.boot {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 600ms ease, visibility 600ms;
}
.boot.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.boot__inner {
  width: min(560px, 86vw);
  text-align: left;
  position: relative;
}
.boot__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.boot__logo img {
  width: 96px;
  height: auto;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 500ms ease, transform 700ms cubic-bezier(0.2,0.7,0.2,1);
}
.boot.is-logo-in .boot__logo img {
  opacity: 1;
  transform: scale(1);
}
.boot__terminal {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--steel);
  line-height: 2;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  background: rgba(0,0,0,0.4);
  border-radius: 6px;
  min-height: 200px;
}
.boot__line {
  opacity: 0;
  white-space: pre;
  overflow: hidden;
}
.boot__line.is-typed {
  opacity: 1;
}
.boot__line.is-typed::after {
  content: "█";
  color: var(--blue);
  margin-left: 2px;
  animation: blink 800ms steps(2) infinite;
}
.boot__line.is-done::after { content: ""; }
.boot__line--ok.is-done { color: var(--blue); }
@keyframes blink { 50% { opacity: 0; } }

.boot__skip {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
}

/* ============================================
   CURSOR
   ============================================ */
.cur {
  position: fixed;
  pointer-events: none;
  z-index: 150;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  mix-blend-mode: difference;
}
@media (hover: none) {
  .cur { display: none; }
}
.cur__dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform 100ms linear, opacity 200ms, background 200ms;
}
.cur__ring {
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 240ms cubic-bezier(0.2,0.8,0.2,1),
              height 240ms cubic-bezier(0.2,0.8,0.2,1),
              border-color 200ms,
              opacity 200ms;
}
.cur__label {
  position: absolute;
  transform: translate(20px, 20px);
  background: var(--blue);
  color: white;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 180ms;
  mix-blend-mode: normal;
}
.cur.has-label .cur__label { opacity: 1; }
.cur.is-hover .cur__ring {
  width: 56px; height: 56px;
  border-color: var(--blue);
}
.cur.is-hover .cur__dot {
  background: var(--blue);
  transform: translate(-50%, -50%) scale(1.4);
}
.cur.is-cta .cur__ring {
  width: 88px; height: 88px;
  border-color: rgba(37,78,229,0.9);
  background: rgba(37,78,229,0.18);
}
.cur.is-cta .cur__dot { opacity: 0; }

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.prog {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: 2px;
  background: transparent;
}
.prog__bar {
  height: 100%;
  width: 0%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  transition: width 80ms linear;
}

/* ============================================
   HERO override
   ============================================ */
.hero__net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.55;
}
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding-block: 32px;
}
.hero__center {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding-block: clamp(20px, 4vw, 60px);
}
@media (max-width: 980px) {
  .hero__center {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  perspective: 800px;
  position: relative;
}
.hero__symbol-wrap {
  position: relative;
  width: min(40vh, 36vw, 460px);
  aspect-ratio: 1024 / 747;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 200ms cubic-bezier(0.2,0.7,0.2,1);
}
.hero__symbol {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 60px rgba(37, 78, 229, 0.45));
}
.hero__symbol-glow {
  position: absolute;
  inset: 12%;
  background: radial-gradient(closest-side, rgba(37,78,229,0.6), transparent 70%);
  z-index: 1;
  filter: blur(28px);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.92); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.hero__brand-text {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 24px);
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__brand-name {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 125, "wght" 700;
  letter-spacing: 0.08em;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1;
  color: var(--bone);
  text-transform: uppercase;
}
.hero__brand-name.glitch {
  animation: glitch 280ms ease-in-out;
}
@keyframes glitch {
  0%, 100% { text-shadow: none; transform: translate(0, 0); }
  20% { text-shadow: -2px 0 var(--blue), 2px 0 #ff3366; transform: translate(1px, -1px); }
  40% { text-shadow: 2px 0 var(--blue), -2px 0 #ff3366; transform: translate(-1px, 1px); }
  60% { text-shadow: -2px 0 var(--blue), 2px 0 #ff3366; transform: translate(0.5px, 0); }
  80% { text-shadow: 1px 0 var(--blue), -1px 0 #ff3366; transform: translate(0, 0.5px); }
}
.hero__brand-tag {
  color: var(--blue);
  font-size: clamp(11px, 1.05vw, 14px);
  letter-spacing: 0.32em;
  font-weight: 500;
  padding: 6px 12px;
  border: 1px solid var(--blue);
  border-radius: 4px;
}

.hero__tagline-block {
  max-width: 540px;
}
@media (max-width: 980px) {
  .hero__tagline-block { max-width: 100%; }
}
.hero__tagline-prefix {
  color: var(--blue);
  margin-bottom: 16px;
}
.hero__line {
  font-size: clamp(28px, 4.4vw, 56px);
  color: var(--bone);
  font-variation-settings: "wdth" 105, "wght" 500;
  margin-bottom: 24px;
  text-wrap: balance;
}
.hero__sub {
  color: var(--steel);
  font-size: clamp(15px, 1.1vw, 17px);
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.hero__sub em { color: var(--bone); font-style: italic; }

.hero__ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--steel);
}
.hero__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bone);
}
.hero__live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(37,78,229,0.6);
  animation: pulse 1800ms ease-in-out infinite;
}

/* ============================================
   MANIFESTO — sticky scrollytelling
   ============================================ */
.manifesto {
  background: var(--bone-warm);
  color: var(--ink);
  position: relative;
  height: 500vh; /* tall to allow scroll-driven progress */
  padding: 0;
}
.manifesto__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.manifesto__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-block: clamp(80px, 10vh, 120px);
}
.section-head__counter {
  margin-left: auto;
  color: var(--blue);
}
.manifesto__stage {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.manifesto__line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font-size: clamp(32px, 5.4vw, 84px);
  font-variation-settings: "wdth" 115, "wght" 500;
  color: var(--ink);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms cubic-bezier(0.2,0.7,0.2,1),
              transform 600ms cubic-bezier(0.2,0.7,0.2,1);
  text-wrap: balance;
  pointer-events: none;
  line-height: 1.05;
}
.manifesto__line.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.manifesto__line.is-past {
  opacity: 0;
  transform: translateY(-20px);
}
.manifesto__line em {
  font-style: italic;
  font-variation-settings: "wdth" 105, "wght" 500;
  color: var(--blue);
}
.manifesto__line s {
  text-decoration: line-through;
  text-decoration-thickness: 4px;
  text-decoration-color: var(--blue);
  opacity: 0.6;
}
.manifesto__line.is-quote {
  font-style: italic;
}
.manifesto__line--hero {
  font-size: clamp(40px, 7vw, 120px);
  font-variation-settings: "wdth" 125, "wght" 700;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1em;
}
.manifesto__line--hero span { display: block; }
.hl-red { color: #B43030; }
.hl-blue { color: var(--blue); }

.manifesto__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}
.manifesto__dots .dot {
  width: 8px; height: 8px;
  background: rgba(9,29,58,0.2);
  border-radius: 0;
  transition: background 200ms, transform 200ms;
}
.manifesto__dots .dot.is-on {
  background: var(--blue);
  transform: scale(1.4);
}

/* ============================================
   HUB DIAGRAM
   ============================================ */
.hub__diagram {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-top: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .hub__diagram { grid-template-columns: 1fr; }
}
.hub__svg {
  width: 100%;
  height: auto;
  max-height: 540px;
}
.node {
  cursor: pointer;
  transition: opacity 200ms;
}
.node__bg {
  fill: var(--navy);
  stroke: var(--blue);
  stroke-width: 1.5;
  transition: fill 220ms, transform 220ms, stroke-width 220ms;
  transform-origin: center;
  transform-box: fill-box;
}
.node:hover .node__bg,
.node.is-active .node__bg {
  fill: var(--blue);
  stroke-width: 2;
  transform: scale(1.12);
  filter: drop-shadow(0 0 16px rgba(37,78,229,0.6));
}
.node--center .node__bg {
  fill: var(--blue);
  stroke: var(--blue);
}
.node__lbl, .node__center-lbl {
  fill: var(--ink);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 600;
}
.node__center-lbl {
  fill: white;
  font-family: var(--f-display);
  font-size: 14px;
  font-variation-settings: "wdth" 125, "wght" 700;
  letter-spacing: 0.08em;
}
.hub__edges line {
  transition: stroke 220ms, stroke-width 220ms;
}
.hub__edges line.is-on {
  stroke: var(--blue);
  stroke-width: 2;
}
.edge--pulse {
  stroke-dasharray: 4 6;
  animation: edgeDash 1.4s linear infinite;
}
@keyframes edgeDash {
  to { stroke-dashoffset: -20; }
}

.hub__detail {
  background: var(--navy);
  border: 1px solid rgba(37,78,229,0.4);
  border-radius: 6px;
  padding: 32px;
  color: var(--bone);
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.hub__detail::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(37,78,229,0.25), transparent 60%);
  pointer-events: none;
}
.hub__detail-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hub__detail-num {
  color: var(--blue);
  letter-spacing: 0.18em;
}
.hub__detail-title {
  font-size: clamp(28px, 3vw, 40px);
  font-variation-settings: "wdth" 125, "wght" 700;
  line-height: 1;
  min-height: 1em;
}
.hub__detail-body {
  color: var(--steel);
  font-size: 16px;
  line-height: 1.6;
}
.hub__detail-meta {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
  margin-top: 12px;
}
.hub__detail-meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 0 12px;
}
.hub__detail-meta li:first-child { padding-left: 0; }
.hub__detail-meta li:last-child { border-right: none; }
.hub__detail-meta li span { color: var(--ink-mute); font-size: 10px; }
.hub__detail-meta li b {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 115, "wght" 600;
  font-size: 14px;
  color: var(--bone);
}
.hub__tip {
  margin-top: 24px;
  color: var(--ink-mute);
  text-align: center;
}

/* ============================================
   DEMO
   ============================================ */
.demo {
  background: var(--bone-warm);
  padding-block: var(--section);
}
.demo__lede {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 72px);
}
@media (max-width: 880px) { .demo__lede { grid-template-columns: 1fr; } }
.demo__heading {
  font-size: clamp(40px, 6vw, 96px);
  font-variation-settings: "wdth" 125, "wght" 700;
  line-height: 0.95;
}
.demo__heading em {
  font-style: italic;
  color: var(--blue);
  font-variation-settings: "wdth" 110, "wght" 500;
}
.demo__copy {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.demo__copy strong { color: var(--ink); font-weight: 600; }

.demo__app {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(9,29,58,0.18);
  border-radius: 6px;
  overflow: hidden;
  background: white;
}
@media (max-width: 980px) { .demo__app { grid-template-columns: 1fr; } }

.demo__panel {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid rgba(9,29,58,0.1);
}
@media (max-width: 980px) {
  .demo__panel { border-right: none; }
  .demo__panel--input { border-bottom: 1px solid rgba(9,29,58,0.1); }
}
.demo__panel--output {
  background: var(--navy);
  color: var(--bone);
  border-right: none;
  position: relative;
}
.demo__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink-mute);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(9,29,58,0.08);
}
.demo__panel--output .demo__head {
  color: var(--steel);
  border-bottom-color: rgba(255,255,255,0.1);
}
.demo__dots {
  display: flex;
  gap: 6px;
}
.demo__dots i {
  width: 8px; height: 8px;
  background: rgba(9,29,58,0.2);
}
.demo__status {
  color: var(--blue);
}
.demo__status.is-loading::before {
  content: "● ";
  animation: blink 700ms steps(2) infinite;
}

.demo__field { display: flex; flex-direction: column; gap: 10px; }
.demo__field label {
  color: var(--ink-mute);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.demo__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.chip {
  padding: 6px 14px;
  border: 1px solid rgba(9,29,58,0.2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink-soft);
  transition: border-color 180ms, background 180ms, color 180ms;
}
.chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.chip.is-on {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

#demoTask {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(9,29,58,0.2);
  border-radius: 4px;
  font: inherit;
  font-size: 15px;
  line-height: 1.5;
  resize: vertical;
  min-height: 90px;
  outline: none;
  transition: border-color 180ms;
  background: var(--bone-warm);
}
#demoTask:focus { border-color: var(--blue); }

.demo__hints {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.demo__hint {
  padding: 5px 10px;
  border: 1px dashed rgba(9,29,58,0.2);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink-mute);
  transition: color 160ms, border-color 160ms;
}
.demo__hint:hover { color: var(--blue); border-color: var(--blue); border-style: solid; }

.demo__build {
  margin-top: 8px;
  align-self: flex-start;
}
.demo__build.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.demo__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 32px;
  gap: 16px;
  min-height: 280px;
  color: var(--steel);
}
.demo__empty-icon {
  width: 48px; height: 48px;
  color: var(--blue);
  opacity: 0.5;
}

.demo__result {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeUp 600ms cubic-bezier(0.2,0.7,0.2,1) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.demo__result-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-variation-settings: "wdth" 125, "wght" 700;
  line-height: 1.05;
  color: var(--bone);
}
.demo__result-sub {
  color: var(--steel);
  font-size: 14px;
  line-height: 1.55;
}
.demo__result-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.1);
}
.demo__result-block > span:first-child {
  color: var(--blue);
}
.demo__flow {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: flow;
}
.demo__flow li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 6px 0;
  font-size: 14px;
  color: var(--bone);
  line-height: 1.4;
  counter-increment: flow;
}
.demo__flow li::before {
  content: counter(flow, decimal-leading-zero);
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--blue);
}
.demo__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.demo__tools .tool {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  color: var(--bone);
}
.demo__result-impact {
  color: var(--bone);
  font-size: 14px;
  line-height: 1.5;
}
.demo__result-impact strong {
  color: var(--blue);
  font-weight: 700;
}
.demo__result-cta {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.demo__result-cta p {
  color: var(--steel);
  font-size: 11px;
  max-width: 260px;
}
.btn--light { color: var(--bone); border-color: rgba(255,255,255,0.4); }
.btn--light:hover { background: var(--bone); color: var(--navy); }
.btn--light:hover span:not(.arrow) { color: var(--navy); }
.btn--light .arrow { background: var(--bone); color: var(--navy); }

/* loading dots in output panel */
.demo__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 32px;
  gap: 18px;
  min-height: 280px;
}
.demo__loader-spin {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255,255,255,0.1);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.demo__loader-step {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.08em;
}
.demo__loader-step b {
  color: var(--blue);
  font-weight: 500;
}

/* ============================================
   HELP
   ============================================ */
.help {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(5, 15, 34, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  animation: fadeUp 240ms ease;
}
.help[hidden] { display: none; }
.help__inner {
  text-align: left;
  max-width: 480px;
}
.help__inner h3 {
  font-size: 32px;
  margin-bottom: 20px;
  font-variation-settings: "wdth" 125, "wght" 700;
}
.help ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
  color: var(--steel);
}
.help kbd {
  display: inline-block;
  padding: 3px 8px;
  margin: 0 2px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--bone);
}

/* ============================================
   PROOF counters
   ============================================ */
.proof__num { display: inline-flex; align-items: baseline; }
.proof__plus {
  font-family: var(--f-display);
  font-variation-settings: "wdth" 125, "wght" 600;
  font-size: 0.55em;
  color: var(--blue);
  margin-left: 4px;
}

/* magnetic button enhancement */
[data-magnetic] { transition: transform 200ms cubic-bezier(0.2,0.7,0.2,1); }
