/* =========================================================
   InovaCode Inc. — marketing site
   Dark tech theme. Hand-rolled, no framework.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg:            #07080b;
  --bg-elev:       #0b0d13;
  --panel:         rgba(255, 255, 255, .028);
  --panel-strong:  rgba(255, 255, 255, .05);
  --line:          rgba(255, 255, 255, .08);
  --line-strong:   rgba(255, 255, 255, .14);

  --text:          #e9ebf1;
  --text-dim:      #a2abbf;
  --text-faint:    #7d8698;   /* >=4.5:1 on --bg */

  --accent:        #7b93ff;
  --accent-hi:     #9dadff;
  --accent-dim:    rgba(123, 147, 255, .12);
  --mint:          #43ddbd;

  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  22px;

  --shadow:     0 1px 0 rgba(255,255,255,.04) inset, 0 24px 60px -30px rgba(0,0,0,.9);
  --container:  1160px;
  --ease:       cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'ss01';
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 200;
  background: var(--accent);
  color: #07080b;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus { left: 16px; }

/* ---------- Background FX ---------- */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 130vh;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 72%);
          mask-image: radial-gradient(120% 80% at 50% 0%, #000 0%, transparent 72%);
}

.bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .5;
}
.bg-glow--1 {
  width: 900px; height: 560px;
  top: -280px; left: 50%;
  transform: translateX(-58%);
  background: radial-gradient(circle, rgba(88,110,240,.42), transparent 68%);
}
.bg-glow--2 {
  width: 620px; height: 460px;
  top: 520px; right: -180px;
  background: radial-gradient(circle, rgba(45,190,165,.20), transparent 70%);
}

.bg-noise {
  position: absolute;
  inset: 0;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(72px, 10vw, 128px) 0; }

.section-head {
  max-width: 660px;
  margin: 0 auto clamp(40px, 5vw, 64px);
  text-align: center;
}

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  line-height: 1.14;
  letter-spacing: -.028em;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.03rem;
  max-width: 58ch;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
}

.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(67, 221, 189, .6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(67,221,189,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(67,221,189,0); }
  100% { box-shadow: 0 0 0 0 rgba(67,221,189,0); }
}

.grad-text {
  background: linear-gradient(100deg, var(--accent-hi) 10%, var(--mint) 90%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: .93rem;
  font-weight: 500;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease),
              border-color .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(180deg, var(--accent-hi), var(--accent));
  color: #06070a;
  font-weight: 600;
  box-shadow: 0 8px 26px -10px rgba(123,147,255,.65);
}
.btn-primary:hover { box-shadow: 0 12px 32px -10px rgba(123,147,255,.8); }

.btn-ghost {
  background: var(--panel);
  border-color: var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover { background: var(--panel-strong); border-color: rgba(255,255,255,.24); }

.btn-sm { padding: 9px 15px; font-size: .87rem; }
.btn-lg { padding: 14px 26px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: rgba(7, 8, 11, .72);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
          backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { border-radius: 9px; flex: none; }
.brand-name {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.025em;
}
.brand-name-accent { color: var(--text-dim); font-weight: 500; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a:not(.nav-cta) {
  padding: 8px 13px;
  font-size: .92rem;
  color: var(--text-dim);
  border-radius: 8px;
  transition: color .18s, background .18s;
}
.nav > a:not(.nav-cta):hover { color: var(--text); background: var(--panel); }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--panel);
  padding: 11px 10px;
}
.nav-toggle span {
  display: block;
  height: 1.6px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.3px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(56px, 9vw, 108px) 0 clamp(56px, 8vw, 96px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .95fr);
  gap: clamp(36px, 4.5vw, 64px);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.25rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -.038em;
  font-weight: 600;
  margin-bottom: 22px;
  text-wrap: balance;
}

.hero-sub {
  color: var(--text-dim);
  font-size: clamp(1rem, 1.35vw, 1.09rem);
  max-width: 54ch;
  margin-bottom: 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: .88rem;
  color: var(--text-faint);
}
.hero-points li { display: inline-flex; align-items: center; gap: 7px; }
.hero-points svg { color: var(--mint); flex: none; }

/* Hero visual */
.hero-visual { position: relative; }

.panel {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.code-panel { overflow: hidden; }

.panel-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.panel-bar .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
}
.panel-title {
  margin-left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: .74rem;
  color: var(--text-faint);
}

.code {
  padding: 20px 20px 24px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: .805rem;
  line-height: 1.72;
  color: #c6ccdd;
  overflow-x: auto;
}
.code .cl {
  display: block;
  opacity: 0;
  transform: translateY(4px);
  animation: lineIn .5s var(--ease) forwards;
  animation-delay: calc(.5s + var(--i) * .09s);
}
.code .cl--gap { height: .85em; }
@keyframes lineIn { to { opacity: 1; transform: none; } }

.code .c  { color: #5d6577; font-style: italic; }
.code .k  { color: #8ea3ff; }
.code .s  { color: var(--mint); }
.code .f  { color: #e0e4ee; }
.code .fn { color: #f0c98a; }
.code .v  { color: #cfd5e6; }

.caret {
  display: inline-block;
  width: 7px; height: 14px;
  margin-left: 3px;
  vertical-align: -2px;
  background: var(--accent);
  opacity: 0;
  animation: blink 1.15s steps(1) infinite 1.5s;
}
@keyframes blink { 0%, 50% { opacity: .9; } 51%, 100% { opacity: 0; } }

.status-panel {
  margin-top: 16px;
  padding: 16px 18px 18px;
  display: grid;
  gap: 11px;
}
.status-row {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: .86rem;
  color: var(--text-dim);
  opacity: 0;
  animation: lineIn .5s var(--ease) forwards;
  animation-delay: calc(1.15s + var(--i) * .18s);
}
.tick {
  display: grid;
  place-items: center;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: rgba(67,221,189,.12);
  color: var(--mint);
  font-size: .68rem;
}
.tick--live {
  background: rgba(123,147,255,.14);
  position: relative;
}
.tick--live::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-out infinite;
  box-shadow: 0 0 0 0 rgba(123,147,255,.6);
}
.status-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-faint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px 8px;
}
.status-tag--live { color: var(--accent-hi); border-color: rgba(123,147,255,.32); }

.progress {
  margin-top: 6px;
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}
.progress-bar {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), var(--mint));
  transform-origin: left;
  animation: fill 1.6s var(--ease) forwards 1.4s;
  scale: 0 1;
}
@keyframes fill { to { scale: 1 1; } }

/* ---------- Cards ---------- */
.card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.card:hover {
  border-color: var(--line-strong);
  background: var(--panel-strong);
  transform: translateY(-3px);
}

/* ---------- Testimonials ---------- */
.section--testimonials {
  position: relative;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(80% 100% at 50% 0%, rgba(123,147,255,.055), transparent 70%),
    rgba(255,255,255,.012);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 28px 26px;
  overflow: hidden;
}
.testimonial::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,147,255,.5), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.testimonial:hover::before { opacity: 1; }

.quote-mark {
  position: absolute;
  top: 6px; right: 20px;
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: rgba(255,255,255,.045);
  pointer-events: none;
}

.stars { display: flex; gap: 3px; color: var(--mint); font-size: .8rem; }

.testimonial blockquote {
  font-size: 1.01rem;
  line-height: 1.66;
  letter-spacing: -.011em;
  color: #dfe3ec;
  flex: 1;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.person img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  border: 1px solid var(--line-strong);
  transition: filter .3s;
}
.testimonial:hover .person img { filter: grayscale(0); }
.person span { display: flex; flex-direction: column; line-height: 1.35; }
.person strong { font-size: .93rem; font-weight: 600; }
.person small { font-size: .81rem; color: var(--text-faint); }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 22px;
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.proof { display: flex; flex-direction: column; gap: 2px; }
.proof strong { font-size: .97rem; font-weight: 600; }
.proof span { font-size: .86rem; color: var(--text-faint); }

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service h3 {
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -.018em;
  margin: 18px 0 8px;
}
.service p { color: var(--text-dim); font-size: .93rem; }

.icon {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 11px;
  color: var(--accent-hi);
  background: var(--accent-dim);
  border: 1px solid rgba(123,147,255,.2);
  transition: color .25s, background .25s;
}
.card:hover .icon { background: rgba(123,147,255,.18); color: #b9c5ff; }

/* ---------- Process ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 26px 22px 24px;
  border-top: 1px solid var(--line);
}
.step::after {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: .74rem;
  letter-spacing: .1em;
  color: var(--accent);
}
.step h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.018em;
  margin: 10px 0 8px;
}
.step p { color: var(--text-dim); font-size: .92rem; }

/* ---------- Stack marquee ---------- */
.marquee {
  position: relative;
  margin-top: 8px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }

.chip {
  flex: none;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text-dim);
  font-size: .88rem;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- CTA ---------- */
.section--cta { padding-bottom: clamp(80px, 10vw, 130px); }

.cta-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(44px, 6vw, 72px) 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012)),
    var(--bg-elev);
  box-shadow: var(--shadow);
}
.cta-glow {
  position: absolute;
  top: -180px; left: 50%;
  width: 620px; height: 340px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(123,147,255,.28), transparent 68%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-card > *:not(.cta-glow) { position: relative; z-index: 1; }
.cta-card .section-sub { margin-bottom: 30px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta-note { margin-top: 18px; font-size: .87rem; color: var(--text-faint); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: 52px;
  background: rgba(255,255,255,.012);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 36px;
  align-items: start;
  padding-bottom: 40px;
}
.footer-brand p {
  margin-top: 14px;
  max-width: 34ch;
  color: var(--text-faint);
  font-size: .9rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: .9rem;
  color: var(--text-dim);
}
.footer-links a { transition: color .18s; width: fit-content; }
.footer-links a:hover { color: var(--text); }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text-dim);
  background: var(--panel);
  transition: color .2s, border-color .2s, background .2s, transform .2s var(--ease);
}
.footer-social a:hover {
  color: var(--text);
  border-color: var(--line-strong);
  background: var(--panel-strong);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-block: 20px 26px;
  border-top: 1px solid var(--line);
  font-size: .83rem;
  color: var(--text-faint);
}

/* ---------- Reveal on scroll ----------
   Only hidden when JS is running (html.js), so a script failure
   can never leave the page blank. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--d, 0) * 80ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 620px; }
  .hero-sub { max-width: none; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-social { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: #0c0e15;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px -20px rgba(0,0,0,.85);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav > a:not(.nav-cta) { padding: 11px 14px; }
  .nav-cta { margin: 8px 0 2px; }
  .nav-toggle { display: block; }
  .site-header { background: rgba(7,8,11,.82); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
}

@media (max-width: 620px) {
  .service-grid, .steps, .proof-strip { grid-template-columns: 1fr; }
  .proof-strip { padding: 22px; gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 100%; }
  .card { padding: 24px 22px; }
  .code { font-size: .74rem; }
  /* let the headline reflow naturally instead of honouring the desktop break */
  .hero-title { font-size: 2.1rem; }
  .hero-title br { display: none; }
}

/* ---------- Motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .code .cl, .status-row { opacity: 1; }
  .progress-bar { scale: 1 1; }
}

/* ---------- Print ---------- */
@media print {
  .bg-fx, .site-header, .marquee { display: none; }
  body { background: #fff; color: #000; }
}
