/* Jobs Usher — dark aurora identity.
   Near-black canvas, iridescent ombre glows + gradient wave ribbons,
   generated chrome/aurora assets, glass cards, gradient pill CTA.
   Mobile-first: built at 375px, widened by media queries. */

:root {
  --bg: #060609;
  --bg-raise: #0b0b12;
  --text: #f4f4f6;
  --text-muted: #9b9ba7;
  --line: rgba(255, 255, 255, 0.09);
  --glass: rgba(255, 255, 255, 0.04);
  --violet: #7c3aed;
  --purple: #a855f7;
  --magenta: #e879f9;
  --cyan: #22d3ee;
  --grad: linear-gradient(100deg, var(--violet), var(--purple) 45%, var(--magenta));
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img,
video,
iframe,
svg {
  max-width: 100%;
}

.container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.gradient-text {
  background: linear-gradient(95deg, var(--cyan), var(--purple) 55%, var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-heading {
  font-size: clamp(1.8rem, 7vw, 2.7rem);
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 2.25rem;
}

/* ---------- Aurora background layer (decorative, clipped by design) ---------- */

.aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: clip;
  background:
    radial-gradient(60rem 40rem at 85% -10%, rgba(124, 58, 237, 0.16), transparent 60%),
    radial-gradient(50rem 36rem at -15% 110%, rgba(34, 211, 238, 0.10), transparent 60%),
    var(--bg);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
}

.aurora-blob-1 {
  width: 34rem;
  height: 34rem;
  top: -14rem;
  right: -12rem;
  background: radial-gradient(circle at 30% 30%, var(--magenta), var(--violet) 60%, transparent 75%);
}

.aurora-blob-2 {
  width: 30rem;
  height: 30rem;
  bottom: -14rem;
  left: -12rem;
  background: radial-gradient(circle at 70% 40%, var(--cyan), var(--violet) 65%, transparent 78%);
  opacity: 0.35;
}

.aurora-blob-3 {
  width: 22rem;
  height: 22rem;
  top: 38%;
  left: 55%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.6), transparent 70%);
  opacity: 0.22;
}

.aurora-waves {
  position: absolute;
  width: 68rem;
  filter: blur(26px) saturate(1.3);
  mix-blend-mode: screen;
}

.aurora-waves-top {
  top: -16rem;
  right: -22rem;
  transform: rotate(-8deg);
  opacity: 0.55;
}

.aurora-waves-bottom {
  bottom: -18rem;
  left: -24rem;
  transform: rotate(6deg);
  opacity: 0.4;
}

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--purple);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

/* ---------- Header (sticky glass: keeps the one CTA on every screenful) ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 6, 9, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.55rem 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  padding: 0.4rem 0;
  min-height: 44px;
}

.brand-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 8px;
  flex: none;
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: var(--glass);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  min-height: 44px;
  letter-spacing: 0.01em;
}

.btn-cta {
  background: var(--grad);
  color: #fff;
  padding: 0.6rem 1.25rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 8px 28px rgba(168, 85, 247, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-cta:hover,
.btn-cta:focus-visible {
  filter: brightness(1.12);
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 10px 34px rgba(168, 85, 247, 0.5);
}

.btn-nav {
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-lg {
  font-size: 1.05rem;
  padding: 0.85rem 2rem;
}

/* ---------- Chips (eyebrow labels) ---------- */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--glass);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.chip::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--grad);
}

/* ---------- Cards (glass) ---------- */

.card {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

/* If JS is unavailable or reduced motion is set, content must never hide. */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.no-js .reveal,
.no-observer .reveal {
  opacity: 1;
  transform: none;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  text-align: center;
  padding: 5rem 0 4.5rem;
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.85;
  -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent);
  mask-image: linear-gradient(180deg, #000 55%, transparent);
}

.hero h1 {
  font-size: clamp(2.4rem, 11vw, 4.4rem);
  margin: 0 auto 1.25rem;
  max-width: 18ch;
}

.subhead {
  font-size: 1.1rem;
  color: #c9c9d4;
  margin: 0 auto 2.25rem;
  max-width: 34rem;
}

.hero-note {
  margin: 1.1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* ---------- Ticker ---------- */

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  overflow: clip;
  padding: 0.8rem 0;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: ticker-scroll 36s linear infinite;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  will-change: transform;
}

.tick-dot {
  color: var(--purple);
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

/* ---------- Statement ---------- */

.statement {
  padding: 4.5rem 0 3rem;
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.statement-visual {
  display: flex;
  justify-content: center;
}

.statement-visual img {
  width: min(19rem, 78vw);
  height: auto;
  /* screen-blend removes the render's black background against the dark page */
  mix-blend-mode: screen;
}

.statement-line {
  font-size: clamp(1.7rem, 6.8vw, 2.5rem);
}

.statement-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 2rem;
}

.statement-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.statement-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
}

.statement-features h3 {
  font-size: 1rem;
  margin: 0.45rem 0 0.25rem;
}

.statement-features p {
  grid-column: 2;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.feature-icon,
.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(124, 58, 237, 0.25), rgba(34, 211, 238, 0.12));
  color: var(--magenta);
}

.feature-icon {
  width: 2.6rem;
  height: 2.6rem;
  grid-row: 1 / 3;
}

.feature-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ---------- Benefits ---------- */

.benefits {
  padding: 3.5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.benefit {
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.benefit:hover {
  border-color: rgba(168, 85, 247, 0.45);
  background: rgba(255, 255, 255, 0.055);
}

.benefit-icon {
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 1.1rem;
}

.benefit-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.benefit h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
}

.benefit p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
}

.micro-proof {
  font-weight: 600;
  color: var(--text) !important;
  border-left: 3px solid;
  border-image: linear-gradient(180deg, var(--cyan), var(--magenta)) 1;
  padding-left: 0.8rem;
  font-size: 0.95rem;
}

/* ---------- Verticals ---------- */

.verticals {
  padding: 3.5rem 0;
}

.verticals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.vertical {
  padding: 1.6rem 1.5rem;
  transition: border-color 0.2s ease;
}

.vertical:hover {
  border-color: rgba(34, 211, 238, 0.4);
}

.vertical h3 {
  font-size: 1.05rem;
}

.vertical p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.97rem;
}

.vertical-cta {
  background:
    radial-gradient(24rem 14rem at 80% -20%, rgba(124, 58, 237, 0.3), transparent 70%),
    var(--glass);
}

.vertical-cta .btn {
  margin-top: 1.1rem;
}

/* ---------- How it works ---------- */

.how {
  padding: 3.5rem 0;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  counter-reset: step;
}

.step {
  padding: 1.6rem 1.5rem;
}

.step-day {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  margin-bottom: 0.9rem;
}

.step h3 {
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ---------- Demo ---------- */

.demo {
  padding: 3.5rem 0;
}

.demo-panel {
  position: relative;
  overflow: clip;
  text-align: center;
  padding: 3rem 1.5rem 3.25rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(38rem 22rem at 50% -30%, rgba(124, 58, 237, 0.28), transparent 70%),
    radial-gradient(30rem 18rem at 100% 130%, rgba(34, 211, 238, 0.12), transparent 70%),
    var(--bg-raise);
}

.demo-wave {
  display: block;
  width: min(26rem, 85%);
  margin: 0 auto 1.75rem;
  /* screen-blend removes the render's black background against the panel */
  mix-blend-mode: screen;
}

.demo-panel h2 {
  font-size: clamp(1.7rem, 6.5vw, 2.4rem);
}

.demo-lede {
  color: var(--text-muted);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
}

.demo-fallback {
  font-weight: 600;
  color: var(--text);
  max-width: 30rem;
  margin: 1rem auto 0;
}

/* ---------- Phone Demo By Niche ---------- */

.phone-demo {
  padding: 3.5rem 0;
}

.phone-demo-panel {
  position: relative;
  overflow: clip;
  text-align: center;
  padding: 3rem 1.5rem 3.25rem;
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(38rem 22rem at 50% -20%, rgba(56, 189, 248, 0.18), transparent 70%),
    radial-gradient(30rem 18rem at 0% 120%, rgba(168, 85, 247, 0.14), transparent 70%),
    var(--bg-raise);
}

.phone-demo-panel h2 {
  font-size: clamp(1.7rem, 6.5vw, 2.4rem);
  max-width: 32ch;
  margin: 0 auto 1rem;
}

.phone-demo-sub {
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 auto 1.75rem;
  font-size: 1.025rem;
  line-height: 1.6;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.niche-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.niche-tag:hover {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(56, 189, 248, 0.1);
  transform: translateY(-1px);
}

.phone-demo-note {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ---------- Offer ---------- */

.offer {
  padding: 3.5rem 0;
}

.offer-panel {
  position: relative;
  overflow: clip;
  padding: 2.75rem 1.5rem 3rem;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(36rem 20rem at 0% -20%, rgba(232, 121, 249, 0.16), transparent 70%),
    radial-gradient(30rem 18rem at 100% 120%, rgba(34, 211, 238, 0.12), transparent 70%),
    var(--bg-raise);
}

.offer-panel h2 {
  font-size: clamp(1.7rem, 6.5vw, 2.4rem);
  max-width: 26ch;
}

.offer-points {
  list-style: none;
  margin: 2rem 0 2.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.offer-points h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.offer-points h3::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 0.8rem;
}

.offer-points p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.97rem;
}

/* ---------- Proof / testimonials ---------- */

.proof {
  padding: 3.5rem 0;
}

.testimonials {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.75rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 85, 247, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.85rem;
}

.testimonial-quote {
  margin: 0 0 1.25rem;
  padding: 0;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.6;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 1rem;
}

.author-name {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
}

.author-title {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.testimonial-metric {
  display: inline-block;
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- FAQ ---------- */

.faq {
  padding: 3.5rem 0;
}

.faq-inner {
  max-width: 48rem;
}

.faq details {
  margin-bottom: 0.8rem;
  padding: 0 1.4rem;
  transition: border-color 0.2s ease;
}

.faq details[open] {
  border-color: rgba(168, 85, 247, 0.45);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1.1rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "+";
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--magenta);
  font-weight: 600;
  transition: transform 0.2s ease;
}

.faq details[open] summary::before {
  transform: rotate(45deg);
}

.faq details p {
  margin: 0 0 1.3rem;
  color: var(--text-muted);
}

/* ---------- Closing CTA ---------- */

.closing-cta {
  padding: 3rem 0 4.5rem;
}

.closing-panel {
  position: relative;
  overflow: clip;
  text-align: center;
  padding: 3.5rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(40rem 24rem at 50% 140%, rgba(232, 121, 249, 0.22), transparent 70%),
    radial-gradient(26rem 16rem at 0% -20%, rgba(34, 211, 238, 0.14), transparent 70%),
    var(--bg-raise);
}

.closing-panel h2 {
  font-size: clamp(2rem, 8.5vw, 3rem);
}

.closing-panel p {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--text-muted);
  padding: 2rem 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

/* ---------- Motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-cta,
  .faq summary::before {
    transition: none;
  }
}

/* ---------- Wider screens ---------- */

@media (min-width: 640px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }

  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-panel,
  .phone-demo-panel {
    padding: 3.5rem 2.5rem 4rem;
  }

  .offer-panel {
    padding: 3.25rem 2.5rem 3.5rem;
  }

  .statement-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .hero {
    padding: 7rem 0 6.5rem;
  }

  .nav-links {
    display: flex;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }

  .benefit {
    padding: 2.1rem 1.9rem;
  }

  .verticals-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(5, 1fr);
  }

  .statement-grid {
    grid-template-columns: 5fr 7fr;
    gap: 3.5rem;
  }

  .statement-visual img {
    width: min(24rem, 100%);
  }

  .closing-panel {
    padding: 4.5rem 2rem;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
