:root {
  --bg: #0b0f1a;
  --bg-2: #120915;
  --bg-3: #1a0f1f;
  --ink: #f5f7ff;
  --muted: #d0d6e4;
  --teal: #ff8a2a;
  --cyan: #ff4d2d;
  --blue: #1f2b4d;
  --line: rgba(255, 138, 42, 0.28);
  --glow: 0 0 30px rgba(255, 138, 42, 0.35);
  --radius: 20px;
  --shadow: 0 20px 50px rgba(6, 10, 20, 0.6);
  --neon-orange: rgba(255, 138, 42, 0.55);
  --neon-cyan: rgba(22, 167, 255, 0.5);
  --neon-hot: rgba(255, 77, 45, 0.5);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Space Grotesk", "Sora", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 10%, rgba(22, 167, 255, 0.16), transparent 45%),
              radial-gradient(circle at 85% 10%, rgba(255, 77, 45, 0.2), transparent 45%),
              radial-gradient(circle at 50% 90%, rgba(255, 138, 42, 0.18), transparent 55%),
              radial-gradient(circle at 50% 50%, rgba(255, 115, 50, 0.05), transparent 65%),
              url("../img/tech-vibe-bg.png") center/cover fixed no-repeat,
              linear-gradient(160deg, rgba(11, 15, 26, 0.74), rgba(16, 13, 22, 0.7) 55%, rgba(5, 11, 20, 0.76) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 28%, rgba(255, 110, 46, 0.18) 42%, transparent 58%),
    radial-gradient(circle at 16% 18%, rgba(255, 74, 34, 0.24), transparent 38%),
    radial-gradient(circle at 82% 20%, rgba(255, 74, 34, 0.18), transparent 34%),
    radial-gradient(circle at 70% 76%, rgba(12, 28, 95, 0.22), transparent 45%);
  opacity: 0.2;
  filter: saturate(1.2) contrast(1.18) brightness(1.16);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity, filter;
  transform: translateZ(0);
  animation: techBgPulse 12s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(255, 80, 35, 0.28) 44%, transparent 56%),
    linear-gradient(108deg, transparent 0 38%, rgba(22, 167, 255, 0.24) 50%, transparent 62%);
  background-size: auto, auto;
  opacity: 0.14;
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity, filter;
  transform: translateZ(0);
  animation: techBgDrift 20s linear infinite, neonShimmer 8s ease-in-out infinite;
}

body > * {
  position: relative;
  z-index: 1;
}

img { max-width: 100%; display: block; }
.portfolio-preview,
.brand img {
  image-rendering: auto;
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(7, 20, 40, 0.7);
  border-bottom: 1px solid rgba(89, 242, 199, 0.08);
  overflow: visible;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
}

.brand img {
  width: 320px;
  height: 180px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.site-nav {
  display: block;
}

.menu-overlay {
  display: none;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 138, 42, 0.45);
  background: rgba(10, 16, 28, 0.85);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  padding: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #ffd6a8;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hero-graphic.svg") center/cover no-repeat;
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: float 8s ease-in-out infinite;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  border: 1px solid var(--line);
  color: var(--teal);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.4px;
  background: rgba(11, 27, 58, 0.6);
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
  border: none;
  border-radius: 999px;
  padding: 12px 26px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(120deg, var(--teal), var(--cyan));
  color: #041321;
  box-shadow: var(--glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.28) 48%, transparent 78%);
  transform: translateX(-130%);
  animation: shineSweep 3.2s ease-in-out infinite;
}

.btn-secondary {
  background: rgba(11, 27, 58, 0.7);
  color: var(--ink);
  border: 1px solid rgba(22, 167, 255, 0.4);
}

.section {
  padding: 80px 0;
  content-visibility: auto;
  contain-intrinsic-size: 1px 800px;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section p.lead {
  color: var(--muted);
  margin-bottom: 36px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.card {
  padding: 24px;
  background: rgba(8, 22, 45, 0.85);
  border: 1px solid rgba(89, 242, 199, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow), 0 0 22px rgba(255, 138, 42, 0.14), 0 0 20px rgba(22, 167, 255, 0.12);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
}

.card::after {
  content: "";
  position: absolute;
  inset: -50% 60% auto -60%;
  height: 140%;
  background: radial-gradient(circle, rgba(89, 242, 199, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover::after { opacity: 1; }

.card:hover {
  box-shadow: 0 0 28px rgba(255, 138, 42, 0.3), 0 0 26px rgba(22, 167, 255, 0.2), var(--shadow);
}

.card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.card p { color: var(--muted); }

.pricing-highlight {
  border: 1px solid rgba(255, 138, 42, 0.55);
  background: linear-gradient(140deg, rgba(255, 138, 42, 0.16), rgba(22, 167, 255, 0.12));
  box-shadow: 0 0 24px rgba(255, 138, 42, 0.24), var(--shadow);
}

.pricing-highlight h3 {
  color: #ffd595;
}

.pricing-highlight p {
  color: #ffe7c1;
  font-weight: 700;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal);
  margin: 12px 0 8px;
}

.tagline {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.list {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 138, 42, 0.38);
  background: rgba(12, 22, 38, 0.8);
  color: #ffd9ab;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  animation: pulseGlow 3.4s ease-in-out infinite;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.highlight {
  border-left: 4px solid var(--teal);
  padding-left: 16px;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.stat {
  padding: 18px;
  border-radius: 16px;
  background: rgba(9, 30, 58, 0.6);
  border: 1px solid rgba(22, 167, 255, 0.25);
}

.stat strong { font-size: 1.6rem; display: block; }

.diag-section {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 32px 26px;
  background: linear-gradient(135deg, rgba(255, 138, 42, 0.18), rgba(22, 167, 255, 0.18));
  border: 1px solid rgba(255, 138, 42, 0.35);
  box-shadow: 0 20px 40px rgba(6, 10, 20, 0.6), 0 0 30px rgba(255, 138, 42, 0.2);
}

.diag-section::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 70%;
  height: 120%;
  background: linear-gradient(140deg, rgba(255, 77, 45, 0.35), transparent 60%);
  transform: rotate(-12deg);
  opacity: 0.7;
}

.diag-section::after {
  content: "";
  position: absolute;
  inset: auto -30% -40% auto;
  width: 80%;
  height: 120%;
  background: linear-gradient(140deg, rgba(22, 167, 255, 0.35), transparent 60%);
  transform: rotate(8deg);
  opacity: 0.7;
}

.diag-content {
  position: relative;
  z-index: 1;
}

.diag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.diag-card {
  background: rgba(10, 16, 28, 0.8);
  border: 1px solid rgba(255, 138, 42, 0.35);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 20px 40px rgba(6, 10, 20, 0.55), 0 0 20px rgba(255, 77, 45, 0.2);
}

.diag-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.diag-card p { color: var(--muted); }

.feature-pop {
  animation: featureFloat 5.5s ease-in-out infinite;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.portfolio-card {
  background: rgba(10, 26, 50, 0.85);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(89, 242, 199, 0.16);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(255, 138, 42, 0.35), 0 0 24px rgba(22, 167, 255, 0.24);
  border-color: rgba(255, 138, 42, 0.5);
}

.portfolio-card a {
  color: var(--teal);
  text-decoration: none;
  word-break: break-word;
}

.portfolio-preview {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 138, 42, 0.35);
  margin-bottom: 14px;
  box-shadow: 0 12px 28px rgba(6, 10, 20, 0.45);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(89, 242, 199, 0.2);
  background: rgba(6, 18, 36, 0.8);
  color: var(--ink);
  font-family: inherit;
}

.contact-form button { justify-self: start; }

.form-status {
  display: none;
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.35;
}

.form-status.show {
  display: block;
}

.form-status.success {
  border: 1px solid rgba(100, 255, 180, 0.35);
  background: rgba(60, 180, 120, 0.18);
  color: #d5ffe8;
}

.form-status.warn {
  border: 1px solid rgba(255, 190, 100, 0.4);
  background: rgba(255, 145, 30, 0.18);
  color: #ffe7c5;
}

.form-status.error {
  border: 1px solid rgba(255, 110, 110, 0.45);
  background: rgba(255, 70, 70, 0.15);
  color: #ffd7d7;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(89, 242, 199, 0.12);
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.glow-line {
  height: 2px;
  width: 120px;
  background: linear-gradient(90deg, var(--teal), var(--cyan));
  box-shadow: var(--glow);
  margin: 18px 0 26px;
}

.chatbot {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: grid;
  gap: 10px;
  justify-items: end;
}

body.menu-open .chatbot {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.chatbot-toggle {
  border: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--teal), var(--cyan));
  color: #1b0d06;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(255, 138, 42, 0.45);
  animation: pulseBtn 2.8s ease-in-out infinite;
}

.chatbot-panel {
  width: min(360px, 92vw);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 42, 0.4);
  background: rgba(10, 16, 28, 0.92);
  box-shadow: 0 24px 44px rgba(6, 10, 20, 0.65);
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.chatbot-panel.open {
  transform: translateX(0);
  opacity: 1;
}

.chatbot-head {
  padding: 14px 14px 10px;
  background: linear-gradient(135deg, rgba(255, 138, 42, 0.2), rgba(22, 167, 255, 0.2));
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-head strong {
  font-size: 0.98rem;
}

.chatbot-head span {
  color: #ffd9ab;
  font-size: 0.8rem;
}

.chatbot-body {
  padding: 12px;
  display: grid;
  gap: 8px;
  max-height: 250px;
  overflow-y: auto;
}

.bot-msg,
.user-msg {
  padding: 10px 11px;
  border-radius: 12px;
  max-width: 92%;
  font-size: 0.9rem;
  white-space: pre-line;
}

.bot-msg {
  background: rgba(255, 138, 42, 0.13);
  border: 1px solid rgba(255, 138, 42, 0.3);
}

.user-msg {
  margin-left: auto;
  background: rgba(22, 167, 255, 0.2);
  border: 1px solid rgba(22, 167, 255, 0.32);
}

.chatbot-actions {
  padding: 10px 12px 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid rgba(255, 138, 42, 0.4);
  background: rgba(12, 20, 34, 0.9);
  color: #ffe0b8;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
  cursor: pointer;
}

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 12px 14px;
}

.chatbot-form input {
  border: 1px solid rgba(255, 138, 42, 0.35);
  background: rgba(10, 16, 28, 0.9);
  color: #f5f7ff;
  border-radius: 10px;
  padding: 9px 10px;
  font-family: inherit;
}

.chatbot-form button {
  border: 0;
  border-radius: 10px;
  padding: 9px 12px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--teal), var(--cyan));
  color: #1a0f0a;
  cursor: pointer;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}


@keyframes featureFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 138, 42, 0); }
  50% { box-shadow: 0 0 18px rgba(255, 138, 42, 0.25); }
}

@keyframes pulseBtn {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes shineSweep {
  0% { transform: translateX(-130%); }
  50% { transform: translateX(130%); }
  100% { transform: translateX(130%); }
}

@keyframes techBgPulse {
  0% { opacity: 0.18; transform: scale(1); }
  100% { opacity: 0.25; transform: scale(1.02); }
}

@keyframes techBgDrift {
  0% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-12px) translateY(8px); }
  100% { transform: translateX(0) translateY(0); }
}

@keyframes neonShimmer {
  0%, 100% { filter: blur(0px) brightness(1); }
  50% { filter: blur(0.55px) brightness(1.22); }
}

@keyframes pageFadeUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes diagSweep {
  0% { transform: translateX(-115%) rotate(-14deg); opacity: 0; }
  30% { opacity: 0.45; }
  100% { transform: translateX(135%) rotate(-14deg); opacity: 0; }
}

@keyframes softFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.subpage main {
  animation: pageFadeUp 0.7s ease both;
}

.subpage .diag-section {
  position: relative;
}

.subpage .diag-section .diag-content {
  position: relative;
  z-index: 2;
}

.subpage .diag-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -20%;
  width: 40%;
  height: 160%;
  background: linear-gradient(120deg, transparent, rgba(255, 138, 42, 0.25), transparent);
  pointer-events: none;
  animation: diagSweep 4.8s ease-in-out infinite;
}

.subpage .diag-card,
.subpage .portfolio-card,
.subpage .card {
  animation: softFloat 5.6s ease-in-out infinite;
}

.subpage .diag-card:nth-child(2),
.subpage .portfolio-card:nth-child(2),
.subpage .card:nth-child(2) {
  animation-delay: 0.35s;
}

.subpage .diag-card:nth-child(3),
.subpage .portfolio-card:nth-child(3),
.subpage .card:nth-child(3) {
  animation-delay: 0.7s;
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .subpage main,
  .subpage .diag-section::before,
  .subpage .diag-card,
  .subpage .portfolio-card,
  .subpage .card {
    animation: none !important;
  }
}

@media (max-width: 820px) {
  body {
    background: radial-gradient(circle at 15% 10%, rgba(22, 167, 255, 0.16), transparent 45%),
                radial-gradient(circle at 85% 10%, rgba(255, 77, 45, 0.2), transparent 45%),
                radial-gradient(circle at 50% 90%, rgba(255, 138, 42, 0.18), transparent 55%),
                radial-gradient(circle at 50% 50%, rgba(255, 115, 50, 0.05), transparent 65%),
                url("../img/tech-vibe-bg.png") center/cover no-repeat,
                linear-gradient(160deg, rgba(11, 15, 26, 0.74), rgba(16, 13, 22, 0.7) 55%, rgba(5, 11, 20, 0.76) 100%);
  }
  .navbar {
    padding: 10px 0;
    flex-direction: row;
    gap: 10px;
  }
  .brand img {
    width: 240px;
    height: 130px;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(78vw, 280px);
    height: 100vh;
    background: rgba(8, 14, 24, 0.97);
    border-left: 1px solid rgba(255, 138, 42, 0.3);
    backdrop-filter: blur(14px);
    padding: 88px 18px 24px;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 240;
  }
  .site-nav.open {
    display: block;
    transform: translateX(0);
  }
  .menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(5, 10, 18, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.26s ease;
    z-index: 230;
  }
  body.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .nav-links a {
    font-size: 1rem;
  }
  .hero { padding: 70px 0 50px; }
  .section {
    padding: 62px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1180px, 94vw);
  }
  .brand img {
    width: 200px;
    height: 110px;
  }
  .site-nav {
    width: min(84vw, 260px);
    padding-top: 82px;
  }
  .hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }
  .btn-row {
    width: 100%;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .card,
  .portfolio-card,
  .diag-card {
    padding: 18px;
  }
  .portfolio-preview {
    height: 150px;
  }
  .section {
    padding: 52px 0;
  }
  .chatbot {
    right: 12px;
    bottom: 12px;
  }
  .chatbot-toggle {
    padding: 10px 14px;
    font-size: 0.9rem;
  }
  body::before {
    opacity: 0.18;
  }
  body::after {
    opacity: 0.12;
  }
}
