/* Automation experience page */

.auto-page {
  overflow-x: hidden;
}

/* Digital Smart Assistant (automation consultancy brand) */
.auto-dsa {
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.35) 0%, var(--color-surface) 100%);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: clamp(2.5rem, 6vw, 3.75rem) 0;
}

.auto-dsa__grid {
  display: grid;
  grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

@media (max-width: 640px) {
  .auto-dsa__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .auto-dsa__mark {
    margin-inline: auto;
  }
}

.auto-dsa__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border-subtle);
  background: rgba(255, 255, 255, 0.04);
}

.auto-dsa__mark img {
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.auto-dsa__eyebrow {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #5eead4;
  margin: 0 0 0.5rem;
}

.auto-dsa__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  color: #f4f6fa;
  margin: 0 0 0.65rem;
  line-height: 1.2;
}

.auto-dsa__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #9aa3b2;
  max-width: 40rem;
}

.auto-dsa__text strong {
  color: #e2e8f0;
  font-weight: 600;
}

.auto-dsa__buddy {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(154, 163, 178, 0.95);
  max-width: 40rem;
}

.auto-hero {
  position: relative;
  padding: clamp(4rem, 12vw, 6.5rem) 0 clamp(3rem, 8vw, 4.5rem);
  background:
    radial-gradient(ellipse 65% 50% at 12% 25%, rgba(45, 212, 191, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 45% at 90% 75%, rgba(232, 163, 23, 0.09), transparent 45%),
    var(--color-bg);
  border-bottom: 1px solid var(--color-border-subtle);
}

.auto-hero__grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 400px);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (max-width: 900px) {
  .auto-hero__grid {
    grid-template-columns: 1fr;
  }
}

.auto-hero__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #5eead4;
  margin: 0 0 0.75rem;
}

.auto-hero__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #f4f6fa;
  margin: 0 0 1rem;
}

.auto-hero__lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #9aa3b2;
  max-width: 40rem;
}

.auto-hero__disclaimer {
  border-radius: var(--radius);
  border: 1px solid rgba(94, 234, 212, 0.25);
  background: rgba(45, 212, 191, 0.06);
  padding: 1.25rem 1.35rem;
}

.auto-hero__disclaimer p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.auto-hero__disclaimer strong {
  color: #e0fdfa;
  font-weight: 600;
}

.auto-flow {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.auto-flow__head {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}

.auto-flow__head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  color: #f4f6fa;
  margin: 0 0 0.65rem;
}

.auto-flow__head p {
  margin: 0;
  color: #8b95a5;
  font-size: 0.95rem;
  line-height: 1.55;
}

.auto-flow__shell {
  display: grid;
  grid-template-columns: minmax(0, 230px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

@media (max-width: 768px) {
  .auto-flow__shell {
    grid-template-columns: 1fr;
  }
}

.auto-steps {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

@media (max-width: 768px) {
  .auto-steps {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.auto-step {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #9aa3b2;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.auto-step:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #c5cbd6;
}

.auto-step.is-active {
  border-color: rgba(94, 234, 212, 0.4);
  background: rgba(45, 212, 191, 0.08);
  color: #f4f6fa;
}

.auto-step__num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #5eead4;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auto-step.is-active .auto-step__num {
  background: rgba(45, 212, 191, 0.22);
  color: #fff;
}

.auto-step__label {
  flex: 1;
  line-height: 1.35;
}

.auto-panel {
  border-radius: var(--radius);
  border: 1px solid var(--color-border-subtle);
  background: var(--color-bg);
  overflow: hidden;
}

.auto-stage {
  position: relative;
  min-height: min(52vw, 300px);
  max-height: 340px;
  background:
    linear-gradient(180deg, rgba(14, 16, 22, 0.92) 0%, rgba(6, 7, 8, 0.98) 100%),
    radial-gradient(circle at 50% 100%, rgba(45, 212, 191, 0.06), transparent 55%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.auto-vis {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease,
    visibility 0.45s;
}

.auto-vis.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.auto-vis__caption {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  max-width: 22rem;
}

/* Step 1: manual vs automated */
.auto-split {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 420px;
}

.auto-split__col {
  flex: 1;
  min-width: 130px;
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface-2);
}

.auto-split__title {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin: 0 0 0.65rem;
}

.auto-split__pile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auto-split__card {
  height: 10px;
  border-radius: 4px;
  background: rgba(248, 113, 113, 0.25);
  border: 1px solid rgba(248, 113, 113, 0.35);
  transform: translateX(0);
  opacity: 0.85;
}

.auto-split__card:nth-child(2) {
  width: 92%;
}
.auto-split__card:nth-child(3) {
  width: 78%;
}
.auto-split__card:nth-child(4) {
  width: 88%;
}

.auto-vis--1.is-visible .auto-split__card {
  animation: auto-stack 0.5s ease backwards;
}
.auto-vis--1.is-visible .auto-split__card:nth-child(1) {
  animation-delay: 0.05s;
}
.auto-vis--1.is-visible .auto-split__card:nth-child(2) {
  animation-delay: 0.12s;
}
.auto-vis--1.is-visible .auto-split__card:nth-child(3) {
  animation-delay: 0.19s;
}
.auto-vis--1.is-visible .auto-split__card:nth-child(4) {
  animation-delay: 0.26s;
}

@keyframes auto-stack {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
}

.auto-split__arrow {
  font-size: 1.25rem;
  color: rgba(94, 234, 212, 0.5);
}

.auto-split__flow {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.auto-split__lane {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 600;
  color: #9aa3b2;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  opacity: 0;
  transform: translateX(8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.auto-vis--1.is-visible .auto-split__lane {
  opacity: 1;
  transform: translateX(0);
}

.auto-vis--1.is-visible .auto-split__lane:nth-child(1) {
  transition-delay: 0.2s;
}
.auto-vis--1.is-visible .auto-split__lane:nth-child(2) {
  transition-delay: 0.32s;
}
.auto-vis--1.is-visible .auto-split__lane:nth-child(3) {
  transition-delay: 0.44s;
}

.auto-split__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

/* Step 2: appointments */
.auto-appt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: min(100%, 380px);
}

.auto-appt__desk {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  opacity: 0.4;
}

.auto-appt__pair {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
}

.auto-appt__person {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.auto-appt__avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(94, 234, 212, 0.2), rgba(20, 24, 32, 0.9));
  border: 1px solid rgba(94, 234, 212, 0.35);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auto-appt__cal {
  width: 88px;
  padding: 0.45rem 0.35rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.58rem;
  font-weight: 700;
  color: #c5cbd6;
  text-align: center;
  line-height: 1.25;
}

.auto-appt__cal--busy {
  border-color: rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.1);
  color: #fcd34d;
}

/* Step 3: ordering channels */
.auto-channels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 400px;
}

.auto-channels__src {
  display: flex;
  gap: 0.45rem;
}

.auto-channels__pill {
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.62rem;
  font-weight: 700;
  color: #9aa3b2;
}

.auto-channels__arrow {
  font-size: 1.2rem;
  color: rgba(94, 234, 212, 0.55);
}

.auto-channels__customer {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.15), rgba(20, 24, 32, 0.95));
  border: 1px solid rgba(45, 212, 191, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.35;
  transform: scale(0.9);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1),
    opacity 0.4s ease;
}

.auto-vis--3.is-visible .auto-channels__customer {
  transform: scale(1);
  opacity: 1;
}

/* Step 4: import chain */
.auto-chain {
  width: min(100%, 440px);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.auto-chain__row {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.auto-chain__node {
  flex: 1;
  min-width: 72px;
  padding: 0.45rem 0.35rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.58rem;
  font-weight: 700;
  color: #c5cbd6;
  text-align: center;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.auto-vis--4.is-visible .auto-chain__node {
  opacity: 1;
  transform: translateY(0);
}

.auto-vis--4.is-visible .auto-chain__row:nth-child(1) .auto-chain__node:nth-child(1) {
  transition-delay: 0.05s;
}
.auto-vis--4.is-visible .auto-chain__row:nth-child(1) .auto-chain__node:nth-child(3) {
  transition-delay: 0.12s;
}
.auto-vis--4.is-visible .auto-chain__row:nth-child(2) .auto-chain__node:nth-child(1) {
  transition-delay: 0.22s;
}
.auto-vis--4.is-visible .auto-chain__row:nth-child(2) .auto-chain__node:nth-child(3) {
  transition-delay: 0.3s;
}
.auto-vis--4.is-visible .auto-chain__row:nth-child(3) .auto-chain__node:nth-child(1) {
  transition-delay: 0.4s;
}
.auto-vis--4.is-visible .auto-chain__row:nth-child(3) .auto-chain__node:nth-child(3) {
  transition-delay: 0.48s;
}
.auto-vis--4.is-visible .auto-chain__row:nth-child(4) .auto-chain__node:nth-child(1) {
  transition-delay: 0.58s;
}
.auto-vis--4.is-visible .auto-chain__row:nth-child(4) .auto-chain__node:nth-child(3) {
  transition-delay: 0.66s;
}

.auto-chain__node--accent {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.1);
}

.auto-chain__chev {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Step 5: people / creativity */
.auto-people {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 420px;
}

.auto-people__tile {
  flex: 1;
  min-width: 140px;
  max-width: 190px;
  padding: 1rem 0.85rem;
  border-radius: 12px;
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface-2);
  text-align: center;
}

.auto-people__tile--robot {
  border-color: rgba(148, 163, 184, 0.3);
}

.auto-people__tile--human {
  border-color: rgba(94, 234, 212, 0.35);
  box-shadow: 0 0 20px rgba(45, 212, 191, 0.08);
}

.auto-people__icon {
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
}

.auto-people__tile h4 {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f4f6fa;
}

.auto-people__tile p {
  margin: 0;
  font-size: 0.68rem;
  line-height: 1.45;
  color: #8b95a5;
}

.auto-copy {
  padding: 1.35rem 1.5rem 1.5rem;
  border-top: 1px solid var(--color-border-subtle);
}

.auto-copy__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #f4f6fa;
  margin: 0 0 0.5rem;
}

.auto-copy__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: #9aa3b2;
}

.auto-copy__text + .auto-copy__text {
  margin-top: 0.65rem;
}

.auto-copy__note {
  margin: 0.85rem 0 0;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border-left: 3px solid rgba(94, 234, 212, 0.55);
  background: rgba(45, 212, 191, 0.06);
  font-size: 0.85rem;
  line-height: 1.55;
  color: #b8c0cc;
}

.auto-arrows {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem 1.25rem;
}

.auto-arrows button {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border-subtle);
  background: rgba(255, 255, 255, 0.04);
  color: #c5cbd6;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.auto-arrows button:hover:not(:disabled) {
  border-color: rgba(94, 234, 212, 0.45);
  color: #fff;
}

.auto-arrows button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Playground: desk load */
.auto-play {
  background: var(--color-bg);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.auto-play__head {
  max-width: 40rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.auto-play__head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: #f4f6fa;
  margin: 0 0 0.6rem;
}

.auto-play__head p {
  margin: 0;
  color: #8b95a5;
  font-size: 0.92rem;
  line-height: 1.55;
}

.auto-play__control {
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

.auto-play__control label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.auto-play__control input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  appearance: none;
}

.auto-play__control input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #5eead4;
  border: 2px solid #fff;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(45, 212, 191, 0.45);
}

.auto-play__control input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #5eead4;
  border: 2px solid #fff;
  cursor: pointer;
}

.auto-desk-demo {
  --shift: 0.2;
  max-width: 440px;
  margin: 0 auto;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border-subtle);
  background: var(--color-surface-2);
}

.auto-desk-demo__track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  min-height: 128px;
}

.auto-desk-demo__zone {
  border-radius: 10px;
  padding: 0.55rem 0.5rem;
  min-height: 118px;
}

.auto-desk-demo__zone--desk {
  border: 2px dashed rgba(248, 113, 113, 0.28);
  background: rgba(248, 113, 113, 0.04);
}

.auto-desk-demo__zone--sys {
  border: 2px dashed rgba(45, 212, 191, 0.32);
  background: rgba(45, 212, 191, 0.06);
}

.auto-desk-demo__label {
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.auto-desk-demo__chips {
  position: absolute;
  left: 0.65rem;
  top: 2.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  pointer-events: none;
  z-index: 1;
}

.auto-desk-demo__chip {
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #e5e7eb;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  width: fit-content;
  max-width: 10.5rem;
  --n: 0;
  transform: translateX(calc(var(--shift) * (168px + var(--n) * 10px)));
  opacity: calc(1 - var(--shift) * 0.1);
  transition:
    transform 0.12s ease-out,
    opacity 0.12s ease-out;
}

.auto-desk-demo__chip:nth-child(1) {
  --n: 0;
}
.auto-desk-demo__chip:nth-child(2) {
  --n: 1;
}
.auto-desk-demo__chip:nth-child(3) {
  --n: 2;
}
.auto-desk-demo__chip:nth-child(4) {
  --n: 3;
}

.auto-cta {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0 clamp(4rem, 10vw, 5rem);
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-bg) 100%);
  border-top: 1px solid var(--color-border-subtle);
}

.auto-cta p {
  margin: 0 0 1.25rem;
  color: #9aa3b2;
  font-size: 0.95rem;
  max-width: 36rem;
  margin-inline: auto;
}

@media (prefers-reduced-motion: reduce) {
  .auto-vis,
  .auto-split__lane,
  .auto-channels__customer,
  .auto-chain__node,
  .auto-split__card {
    transition: none !important;
    animation: none !important;
  }
  .auto-vis.is-visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .auto-vis:not(.is-visible) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
  }
  .auto-vis--3.is-visible .auto-channels__customer {
    transform: scale(1);
    opacity: 1;
  }
  .auto-vis--1.is-visible .auto-split__lane {
    opacity: 1;
    transform: none;
  }
  .auto-vis--4.is-visible .auto-chain__node {
    opacity: 1;
    transform: none;
  }
}
