@tailwind base;
@tailwind components;
@tailwind utilities;

@layer utilities {
  .placeholder\:text-muted\/70::placeholder {
    color: var(--muted);
    opacity: 1;
  }
}

:root {
  --page: #eef6f1;
  --page-2: #f7fbff;
  --ink: #102018;
  --ink-soft: #405248;
  --muted: #5f6f67;
  --line: rgba(32, 96, 70, 0.16);
  --line-strong: rgba(23, 119, 210, 0.18);
  --green: #1fa84f;
  --green-deep: #08733a;
  --blue: #1677d2;
  --blue-deep: #0c4d9b;
  --glass: rgba(255, 255, 255, 0.54);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --glass-dark: rgba(13, 42, 30, 0.58);
  --shadow: 0 28px 70px -32px rgba(15, 60, 44, 0.42);
  --inner-glass: inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(10, 74, 54, 0.08);
  --radius: 28px;
  --surface: #ffffff;
  --surface-elevated: #f8faf9;
  --border: rgba(32, 96, 70, 0.12);
  /* Dashboard tokens (UI_UX_LIBRARY_PLAN §4) */
  --sidebar-bg: #004d40;
  --sidebar-bg-deep: #003328;
  --brand-green: #08733a;
  --success-green: #22c55e;
  --success-bg: #ecfdf5;
  --page-bg: #f5f7f2;
  --radius-card: 12px;
  --radius-pill: 9999px;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08);
  --warning-amber: #f59e0b;
}

.dark {
  --page: #0a1410;
  --page-2: #0d1a14;
  --ink: #e4ece8;
  --ink-soft: #a8b8ae;
  --muted: #7a8e82;
  --line: rgba(160, 210, 180, 0.16);
  --line-strong: rgba(80, 160, 220, 0.2);
  --green: #2ec462;
  --green-deep: #1fa84f;
  --blue: #4a9ae8;
  --blue-deep: #6bb3f0;
  --glass: rgba(16, 28, 22, 0.65);
  --glass-strong: rgba(16, 28, 22, 0.82);
  --glass-dark: rgba(200, 230, 210, 0.12);
  --shadow: 0 28px 70px -32px rgba(0, 0, 0, 0.6);
  --inner-glass: inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  --surface: #111e18;
  --surface-elevated: #162420;
  --border: rgba(160, 210, 180, 0.1);
  --sidebar-bg: #003328;
  --sidebar-bg-deep: #002820;
  --success-bg: rgba(34, 197, 94, 0.12);
  --page-bg: #0a1410;
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 4%, rgba(31, 168, 79, 0.18), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(22, 119, 210, 0.18), transparent 24rem),
    linear-gradient(180deg, var(--page-2), var(--page) 38%, var(--page));
  color: var(--ink);
  font-family: var(--font-display), sans-serif;
  letter-spacing: 0;
}

.dark body,
.dark & {
  background:
    radial-gradient(circle at 8% 4%, rgba(31, 168, 79, 0.08), transparent 26rem),
    radial-gradient(circle at 88% 10%, rgba(22, 119, 210, 0.08), transparent 24rem),
    linear-gradient(180deg, var(--page-2), var(--page) 38%, var(--page));
}

body::before {
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black 0%, transparent 74%);
  opacity: 0.5;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: rgba(31, 168, 79, 0.26);
}

.site-header {
  align-items: center;
  backdrop-filter: blur(26px) saturate(1.35);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: var(--shadow), var(--inner-glass);
  display: flex;
  gap: 28px;
  height: 70px;
  justify-content: space-between;
  left: clamp(16px, 4vw, 52px);
  padding: 9px 12px;
  position: fixed;
  right: clamp(16px, 4vw, 52px);
  top: 18px;
  z-index: 20;
}

.brand {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  box-shadow: var(--inner-glass);
  display: inline-flex;
  height: 52px;
  overflow: hidden;
  padding: 6px 14px 6px 8px;
}

.brand img {
  height: 42px;
  object-fit: contain;
  object-position: left center;
  width: 184px;
}

.site-header nav {
  align-items: center;
  display: flex;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.site-header nav a {
  border-radius: 999px;
  padding: 11px 14px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-header nav a:hover {
  background: rgba(31, 168, 79, 0.09);
  color: var(--green-deep);
  transform: translateY(-1px);
}

.nav-cta,
.secondary-action {
  align-items: center;
  border: 1px solid rgba(16, 32, 24, 0.11);
  border-radius: 999px;
  box-shadow: var(--inner-glass);
  color: var(--ink);
  display: inline-flex;
  font-weight: 750;
  padding: 13px 18px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.nav-cta,
.secondary-action {
  background: rgba(255, 255, 255, 0.6);
}

.nav-cta:hover,
.secondary-action:hover {
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(22, 119, 210, 0.2);
  transform: translateY(-2px);
}

.hero-section {
  min-height: 100dvh;
  overflow: hidden;
  padding: 128px clamp(20px, 5vw, 72px) 34px;
  position: relative;
}

.map-grid {
  background:
    radial-gradient(circle at 68% 48%, rgba(22, 119, 210, 0.12), transparent 22rem),
    radial-gradient(circle at 42% 58%, rgba(31, 168, 79, 0.15), transparent 24rem);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-scene {
  bottom: 16vh;
  height: min(50vw, 600px);
  pointer-events: auto;
  position: absolute;
  right: -2vw;
  width: min(60vw, 850px);
  z-index: 1;
}

.hero-canvas {
  cursor: crosshair;
}

.scene-loader,
.scene-fallback {
  align-items: center;
  backdrop-filter: blur(22px) saturate(1.35);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--inner-glass);
  color: var(--green-deep);
  display: flex;
  font-weight: 760;
  height: 100%;
  justify-content: center;
  min-height: 280px;
  text-transform: uppercase;
}

.scene-fallback {
  gap: 22px;
}

.scene-fallback span {
  animation: pulseNode 1.8s ease-in-out infinite;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(31, 168, 79, 0.1);
  height: 12px;
  width: 12px;
}

.scene-fallback span:nth-child(2),
.scene-fallback span:nth-child(4) {
  background: var(--blue);
  animation-delay: 260ms;
}

.hero-content {
  max-width: 780px;
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-kicker {
  align-items: center;
  color: var(--green-deep);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: var(--inner-glass);
  padding: 9px 13px;
}

.eyebrow span {
  animation: scanBlink 1.35s ease-in-out infinite;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(31, 168, 79, 0.13);
  height: 9px;
  width: 9px;
}

h1,
h2,
h3 {
  font-family: var(--font-display), sans-serif;
  letter-spacing: -0.055em;
  margin: 0;
}

h1 {
  color: #102018;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.9;
  margin-top: 24px;
  max-width: 920px;
}

.hero-content p {
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 520;
  line-height: 1.35;
  margin: 28px 0 0;
  max-width: 650px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action {
  align-items: center;
  background: linear-gradient(135deg, var(--green), #c8d75e);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow: 0 18px 44px -26px rgba(13, 116, 58, 0.58), var(--inner-glass);
  color: #07150d;
  display: inline-flex;
  font-weight: 820;
  gap: 10px;
  padding: 15px 22px;
  transition:
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms ease;
}

.primary-action:hover {
  box-shadow: 0 24px 56px -28px rgba(13, 116, 58, 0.66), var(--inner-glass);
  transform: translateY(-3px) scale(1.012);
}

.primary-action:active,
.secondary-action:active,
.nav-cta:active {
  transform: translateY(1px) scale(0.985);
}

.hero-console {
  backdrop-filter: blur(26px) saturate(1.45);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--inner-glass);
  max-width: 390px;
  padding: 18px;
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  top: 150px;
  z-index: 4;
}

.console-topline,
.console-row,
.ops-head,
.ops-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.console-topline {
  color: var(--muted);
  font-family: var(--font-mono), monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.console-topline strong {
  color: var(--blue-deep);
}

.workflow-mini {
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: var(--inner-glass);
  color: var(--ink);
  display: grid;
  font-size: 13px;
  font-weight: 760;
  gap: 8px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  margin-top: 14px;
  padding: 11px;
  text-align: center;
}

.workflow-mini svg {
  color: var(--green-deep);
}

.console-farm {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
}

.console-farm svg {
  color: var(--blue);
  flex: 0 0 auto;
}

.console-farm strong,
.console-farm span {
  display: block;
}

.console-farm span,
.console-row span {
  color: var(--muted);
}

.console-progress {
  background: rgba(16, 32, 24, 0.1);
  border-radius: 999px;
  height: 9px;
  margin: 16px 0;
  overflow: hidden;
}

.console-progress span {
  animation: breathingBar 2.4s ease-in-out infinite;
  background: linear-gradient(90deg, var(--blue), var(--green));
  display: block;
  height: 100%;
}

.console-row {
  border-top: 1px solid rgba(16, 32, 24, 0.1);
  font-size: 14px;
  padding: 12px 0 0;
}

.console-row + .console-row {
  margin-top: 12px;
}

.hero-metrics {
  backdrop-filter: blur(20px) saturate(1.35);
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow), var(--inner-glass);
  display: grid;
  gap: 1px;
  grid-template-columns: 1.1fr 0.95fr 1fr 0.78fr;
  margin-top: min(21vh, 170px);
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.hero-metrics div {
  background: rgba(255, 255, 255, 0.3);
  padding: 22px 24px;
}

.hero-metrics strong {
  display: block;
  font-family: var(--font-mono), monospace;
  font-size: clamp(28px, 3.8vw, 50px);
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.hero-metrics span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-top: 8px;
  text-transform: uppercase;
}

section {
  padding: 108px clamp(20px, 5vw, 72px);
}

.problem-section,
.institution-section {
  backdrop-filter: blur(28px) saturate(1.25);
  background: rgba(255, 255, 255, 0.48);
  border-block: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--inner-glass);
}

.problem-section {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.74fr);
}

.problem-section h2,
.section-heading h2,
.institution-copy h2,
.market-copy h2,
.cta-section h2 {
  color: var(--ink);
  font-size: clamp(38px, 5.2vw, 78px);
  line-height: 0.94;
  margin-top: 12px;
}

blockquote {
  border-left: 1px solid rgba(22, 119, 210, 0.38);
  color: var(--ink-soft);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 720;
  line-height: 1.08;
  margin: 0;
  padding-left: 26px;
}

cite {
  color: var(--muted);
  display: block;
  font-family: var(--font-mono), monospace;
  font-size: 13px;
  font-style: normal;
  margin-top: 22px;
}

.platform-section,
.finance-section,
.market-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.34));
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.82fr) minmax(260px, 0.58fr);
}

.section-heading p,
.institution-copy p,
.market-copy p,
.cta-section p {
  color: var(--ink-soft);
  font-size: 20px;
  font-weight: 520;
  line-height: 1.42;
  margin: 0;
}

.compact {
  display: block;
  max-width: 980px;
}

.module-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  margin-top: 54px;
}

.module-tile,
.flow-step,
.sla-strip div,
.ops-board,
.market-figure {
  backdrop-filter: blur(24px) saturate(1.36);
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow), var(--inner-glass);
}

.module-tile {
  border-radius: var(--radius);
  min-height: 250px;
  padding: 28px;
  position: relative;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.module-tile:nth-child(2),
.module-tile:nth-child(5) {
  transform: translateY(34px);
}

.module-tile::after {
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 28px;
  opacity: 0;
  position: absolute;
  right: 28px;
  top: 18px;
  transition: opacity 180ms ease;
}

.module-tile:hover {
  background: var(--glass-strong);
  border-color: rgba(22, 119, 210, 0.24);
  transform: translateY(-4px);
}

.module-tile:nth-child(2):hover,
.module-tile:nth-child(5):hover {
  transform: translateY(26px);
}

.module-tile:hover::after {
  opacity: 1;
}

.module-tile svg {
  color: var(--blue);
}

.module-tile h3 {
  font-size: 27px;
  margin-top: 28px;
}

.module-tile p {
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 520;
  line-height: 1.42;
  margin: 16px 0 0;
}

.flow-rail {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
}

.flow-step {
  border-radius: 24px;
  min-height: 146px;
  padding: 20px;
  position: relative;
}

.flow-step::before {
  background: linear-gradient(180deg, var(--green), transparent);
  border-radius: 999px;
  content: "";
  height: 54px;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 3px;
}

.flow-step span {
  color: var(--blue-deep);
  font-family: var(--font-mono), monospace;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.flow-step strong {
  display: block;
  font-size: 18px;
  margin-top: 30px;
}

.sla-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 12px;
}

.sla-strip div {
  align-items: center;
  border-radius: 20px;
  display: flex;
  gap: 12px;
  padding: 20px;
}

.sla-strip svg {
  color: var(--green-deep);
  flex: 0 0 auto;
}

.institution-section {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(300px, 0.76fr) minmax(320px, 0.64fr);
}

.ops-board {
  border-radius: var(--radius);
  padding: 18px;
  transform: rotate(-1.2deg);
}

.ops-head {
  border-bottom: 1px solid rgba(16, 32, 24, 0.1);
  color: var(--muted);
  font-family: var(--font-mono), monospace;
  font-size: 13px;
  padding-bottom: 16px;
  text-transform: uppercase;
}

.ops-head strong {
  color: var(--green-deep);
}

.ops-row {
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  margin-top: 10px;
  padding: 17px 16px;
}

.ops-row span {
  color: var(--ink-soft);
}

.ops-row strong {
  color: var(--blue-deep);
  font-family: var(--font-mono), monospace;
}

.market-section {
  align-items: center;
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 0.75fr);
}

.market-figure {
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  justify-items: center;
  padding: 20%;
  place-content: center;
  position: relative;
  text-align: center;
}

.market-figure::before,
.market-figure::after {
  border: 1px solid rgba(16, 32, 24, 0.1);
  border-radius: 50%;
  content: "";
  inset: 8%;
  position: absolute;
}

.market-figure::after {
  animation: orbit 9s linear infinite;
  border-color: transparent;
  border-top-color: var(--blue);
  inset: -3%;
}

.market-figure span,
.market-figure em {
  color: var(--muted);
  font-family: var(--font-mono), monospace;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.market-figure strong {
  font-family: var(--font-mono), monospace;
  font-size: clamp(66px, 9vw, 132px);
  letter-spacing: -0.09em;
  line-height: 0.86;
  margin: 12px 0;
}

.cta-section {
  align-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(31, 168, 79, 0.2), transparent 28rem),
    rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.62);
  display: flex;
  flex-direction: column;
  min-height: 70dvh;
  justify-content: center;
  text-align: center;
}

.cta-section svg {
  color: var(--green-deep);
  margin-bottom: 22px;
}

.cta-section h2 {
  max-width: 950px;
}

.cta-section p {
  margin-top: 22px;
  max-width: 650px;
}

.cta-section .primary-action {
  margin-top: 34px;
}

.brand-contact {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 650;
  gap: 8px;
  line-height: 1.35;
  margin-top: 42px;
  max-width: 720px;
}

.brand-contact strong {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-contact span:nth-child(2) {
  color: var(--green-deep);
}

@keyframes scanBlink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.58;
    transform: scale(1.35);
  }
}

@keyframes breathingBar {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.5);
  }
}

@keyframes pulseNode {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.25);
  }
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .site-header nav {
    display: none;
  }

  .hero-scene {
    bottom: 18vh;
    opacity: 0.72;
    right: -22vw;
    width: 88vw;
  }

  .hero-console {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 36px;
  }

  .hero-metrics,
  .module-grid,
  .flow-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .module-tile:nth-child(2),
  .module-tile:nth-child(5),
  .module-tile:nth-child(2):hover,
  .module-tile:nth-child(5):hover {
    transform: none;
  }

  .section-heading,
  .problem-section,
  .institution-section,
  .market-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    border-radius: 28px;
    height: 60px;
    left: 12px;
    padding: 7px;
    right: 12px;
    top: 10px;
  }

  .brand {
    height: 46px;
    max-width: 190px;
    padding: 5px 10px 5px 6px;
  }

  .brand img {
    height: 36px;
    width: 164px;
  }

  .nav-cta {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 96px 12px 24px;
  }

  .hero-scene {
    height: 320px;
    opacity: 0.42;
    pointer-events: none;
    position: absolute;
    right: -330px;
    top: 60px;
    width: 720px;
  }

  h1 {
    font-size: clamp(44px, 13.5vw, 66px);
  }

  .hero-content p,
  .section-heading p,
  .institution-copy p,
  .market-copy p,
  .cta-section p {
    font-size: 17px;
  }

  .hero-metrics,
  .module-grid,
  .flow-rail,
  .sla-strip {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    border-radius: 22px;
  }

  section {
    padding: 72px 12px;
  }

  .problem-section h2,
  .section-heading h2,
  .institution-copy h2,
  .market-copy h2,
  .cta-section h2 {
    font-size: clamp(34px, 10.5vw, 48px);
  }

  .module-tile,
  .flow-step {
    min-height: auto;
  }

  .ops-board {
    transform: none;
  }

  .market-figure {
    width: min(100%, 360px);
    margin-inline: auto;
  }
}
