:root {
  --bg: #06111f;
  --bg-2: #09182a;
  --surface: #0c2038;
  --surface-2: #102a48;
  --line: rgba(156, 196, 255, 0.18);
  --text: #f5f8ff;
  --muted: #a7b9d4;
  --soft: #d8e6ff;
  --accent: #1677ff;
  --accent-2: #51a8ff;
  --radius: 18px;
  --shadow: 0 22px 80px rgba(0, 37, 92, 0.34);
  color-scheme: dark;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 3%, rgba(22, 119, 255, 0.25), transparent 30rem),
    linear-gradient(180deg, #06111f 0%, #071527 48%, #08101b 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(115deg, transparent 0 19%, rgba(81,168,255,0.1) 19.2%, transparent 19.6% 58%, rgba(81,168,255,0.08) 58.2%, transparent 58.6%),
    linear-gradient(68deg, transparent 0 42%, rgba(255,255,255,0.05) 42.2%, transparent 42.7%);
  background-size: 980px 520px, 760px 460px;
  animation: techDrift 18s linear infinite;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 14, 28, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 10, 24, 0.2);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(81,168,255,0.76), transparent);
  transform: translateX(-100%);
  animation: navScan 4.8s ease-in-out infinite;
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 174px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, transparent 0 34%, rgba(255,255,255,0.96) 35% 47%, transparent 48%),
    linear-gradient(45deg, var(--accent), #7ec6ff);
  box-shadow: 0 12px 36px rgba(22, 119, 255, 0.34);
  animation: markPulse 3.8s ease-in-out infinite;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  color: #dbe9ff;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a {
  opacity: 0.84;
  transition: color 220ms ease, opacity 220ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: #fff;
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #eaf3ff;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, border-color 220ms ease;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0 22px;
  color: #eaf3ff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255,255,255,0.22) 45%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 620ms cubic-bezier(.16,1,.3,1);
}

.button:hover::after {
  transform: translateX(120%);
}

.button:hover,
.icon-button:hover {
  transform: translateY(-2px);
}

.button:active,
.icon-button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #0f63dc);
  box-shadow: 0 16px 42px rgba(22, 119, 255, 0.34);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
}

.subpage-hero {
  position: relative;
  min-height: 72dvh;
  padding: 140px 0 86px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(81,168,255,0.14), transparent) 50% 20% / 72% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(81,168,255,0.1), transparent) 66% 0 / 1px 78% no-repeat,
    repeating-linear-gradient(90deg, rgba(126,198,255,0.08) 0 1px, transparent 1px 120px);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 76%, transparent);
  animation: heroCircuit 9s ease-in-out infinite alternate;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(6, 17, 31, 0.95));
  pointer-events: none;
}

.subpage-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #9dccff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--accent-2);
}

.subpage-copy h1 {
  max-width: 720px;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
  animation: copyRise 820ms cubic-bezier(.16,1,.3,1) both;
}

.subpage-copy p {
  max-width: 600px;
  margin-top: 24px;
  color: #c6d8f2;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.8;
  animation: copyRise 820ms 120ms cubic-bezier(.16,1,.3,1) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.poster-stack {
  position: relative;
  min-height: 510px;
  transform: perspective(1100px) rotateY(-6deg);
  transform-style: preserve-3d;
  animation: heroFloat 7s ease-in-out infinite;
}

.poster-stack::before {
  content: "";
  position: absolute;
  inset: 8% 10% 10%;
  border: 1px solid rgba(81, 168, 255, 0.26);
  border-radius: 32px;
  transform: translate3d(0, 0, -60px) rotate(-3deg);
  box-shadow: inset 0 0 42px rgba(22,119,255,0.12);
  animation: frameBreathe 5.4s ease-in-out infinite;
  z-index: 0;
}

.poster-stack::after {
  content: "";
  position: absolute;
  inset: 2% 0 auto 10%;
  height: 2px;
  width: 68%;
  background: linear-gradient(90deg, transparent, rgba(126,198,255,0.9), transparent);
  filter: blur(0.2px);
  animation: mediaScan 3.6s ease-in-out infinite;
  z-index: 0;
}

.poster {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(148, 198, 255, 0.28);
  background: var(--surface);
  box-shadow: var(--shadow);
  will-change: transform;
  animation: posterIn 880ms cubic-bezier(.16,1,.3,1) both, posterFloat 6.4s ease-in-out infinite;
  z-index: 1;
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}

.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 18, 36, 0.04), rgba(5, 18, 36, 0.56));
}

.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,0.18) 50%, transparent 62%);
  transform: translateX(-130%);
  animation: glassSweep 5.8s ease-in-out infinite;
}

.poster-a {
  left: 0;
  top: 8%;
  width: 58%;
  height: 76%;
}

.poster-b {
  right: 0;
  top: 0;
  width: 58%;
  height: 68%;
  animation-delay: 120ms, 420ms;
}

.poster-c {
  left: 22%;
  bottom: 0;
  width: 62%;
  height: 44%;
  background: rgba(5, 18, 36, 0.72);
  backdrop-filter: blur(14px);
  padding: 26px;
  display: grid;
  align-content: end;
  animation-delay: 260ms, 700ms;
  z-index: 4;
}

.poster-c::before,
.poster-c::after {
  display: none;
}

.poster-d {
  right: 8%;
  bottom: 8%;
  width: 46%;
  height: 44%;
  animation-delay: 200ms, 540ms;
}

.poster-c strong {
  font-size: 46px;
  line-height: 1;
}

.poster-c span {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.7;
}

.section {
  padding: 102px 0;
  position: relative;
}

.section::before,
.section-tight::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(81,168,255,0.22), transparent);
}

.section-tight {
  padding: 72px 0;
}

.section-title {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: 0;
  position: relative;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 3px;
  margin-top: 18px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.section-title p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.feature-card,
.image-card,
.metric-card,
.article-card,
.form-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(15, 42, 72, 0.92), rgba(8, 24, 43, 0.82));
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.18);
}

.feature-card::before,
.image-card::before,
.metric-card::before,
.article-card::before,
.form-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(81,168,255,0.2), transparent 28%);
  transition: opacity 220ms ease;
}

.feature-card:hover::before,
.image-card:hover::before,
.metric-card:hover::before,
.article-card:hover::before,
.form-panel:hover::before {
  opacity: 1;
}

.feature-card {
  min-height: 230px;
  padding: 26px;
  transition: transform 240ms ease, border-color 240ms ease;
}

.feature-card .feature-thumb {
  width: 100%;
  height: 132px;
  margin-bottom: 18px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.feature-card:hover,
.image-card:hover,
.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(81, 168, 255, 0.56);
}

.feature-card b {
  display: block;
  font-size: 22px;
  line-height: 1.3;
}

.feature-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.feature-card strong {
  display: block;
  margin-bottom: 18px;
  color: #8fc7ff;
  font-size: 32px;
}

.image-card {
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease;
}

.image-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 700ms cubic-bezier(.16,1,.3,1), opacity 260ms ease;
}

.image-card:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.image-card .content {
  padding: 22px;
}

.image-card h3 {
  font-size: 21px;
}

.image-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.72;
}

.split-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 17, 32, 0.98), rgba(8, 29, 54, 0.84)),
    url("../a60b5ca9-82c0-471a-abec-e729916854aa.png") center / cover;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.large-visual {
  min-height: 430px;
  border-radius: 28px;
  border: 1px solid rgba(126, 198, 255, 0.24);
  background:
    radial-gradient(circle at 50% 45%, rgba(81,168,255,0.36), transparent 9rem),
    linear-gradient(135deg, rgba(22,119,255,0.16), rgba(255,255,255,0.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), var(--shadow);
  position: relative;
  overflow: hidden;
}

.large-visual::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 22px;
  border: 1px solid rgba(126, 198, 255, 0.44);
  background:
    linear-gradient(90deg, transparent 48%, rgba(126,198,255,0.26), transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(126,198,255,0.26), transparent 52%),
    rgba(6, 20, 38, 0.54);
  box-shadow: 0 0 50px rgba(22,119,255,0.28);
  animation: pulse 2400ms ease-in-out infinite;
}

.large-visual::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(126,198,255,0.3) 49%, transparent 51%),
    linear-gradient(0deg, transparent 0 48%, rgba(126,198,255,0.18) 49%, transparent 51%);
  animation: techRotate 10s linear infinite;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(12, 32, 56, 0.72);
  transition: transform 240ms ease, border-color 240ms ease;
}

.timeline-item:hover {
  transform: translateX(8px);
  border-color: rgba(81,168,255,0.5);
}

.timeline-item b {
  color: #8fc7ff;
}

.timeline-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.7;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric-card {
  padding: 28px;
  isolation: isolate;
}

.metric-card strong {
  display: block;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
}

.metric-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.article-card {
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease;
}

.article-card time {
  color: #8fc7ff;
  font-size: 13px;
  font-weight: 800;
}

.article-card .content {
  padding: 24px;
}

.article-card h3 {
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.45;
}

.article-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.72;
}

.form-panel {
  padding: 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #dbe9ff;
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(156, 196, 255, 0.28);
  border-radius: 14px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(2, 12, 26, 0.42);
  font: inherit;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(81, 168, 255, 0.16);
}

.site-footer {
  padding: 48px 0 40px;
  border-top: 1px solid var(--line);
  background: #04101e;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 34px;
  color: var(--muted);
}

.footer-layout h3,
.footer-layout h4 {
  margin: 0 0 14px;
  color: var(--text);
}

.footer-layout p,
.footer-layout a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 780ms cubic-bezier(.16,1,.3,1), transform 780ms cubic-bezier(.16,1,.3,1);
}

.js .reveal.is-visible,
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.button .ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  pointer-events: none;
  background: rgba(255,255,255,0.42);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 680ms ease-out forwards;
}

@keyframes techDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 980px 520px, -760px 460px;
  }
}

@keyframes navScan {
  0%, 35% {
    transform: translateX(-100%);
    opacity: 0;
  }
  45%, 65% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes markPulse {
  0%, 100% {
    box-shadow: 0 12px 36px rgba(22, 119, 255, 0.34);
  }
  50% {
    box-shadow: 0 12px 46px rgba(81, 168, 255, 0.58);
  }
}

@keyframes heroCircuit {
  from {
    opacity: 0.34;
    background-position: 50% 20%, 66% 0, 0 0;
  }
  to {
    opacity: 0.62;
    background-position: 46% 24%, 62% 0, 120px 0;
  }
}

@keyframes copyRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: perspective(1100px) rotateY(-6deg) translateY(0);
  }
  50% {
    transform: perspective(1100px) rotateY(-4deg) translateY(-12px);
  }
}

@keyframes frameBreathe {
  0%, 100% {
    opacity: 0.5;
    transform: translate3d(0, 0, -60px) rotate(-3deg) scale(0.98);
  }
  50% {
    opacity: 0.95;
    transform: translate3d(0, 0, -60px) rotate(-3deg) scale(1.02);
  }
}

@keyframes mediaScan {
  0%, 100% {
    transform: translateY(0);
    opacity: 0;
  }
  30%, 70% {
    opacity: 1;
  }
  50% {
    transform: translateY(430px);
  }
}

@keyframes posterIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes posterFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@keyframes glassSweep {
  0%, 42% {
    transform: translateX(-130%);
  }
  64%, 100% {
    transform: translateX(130%);
  }
}

@keyframes techRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(0.98);
    opacity: 0.76;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .subpage-layout,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .poster-stack {
    min-height: 430px;
    transform: none;
  }

  .card-grid,
  .card-grid.two,
  .metric-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header,
  .nav {
    height: 64px;
  }

  .brand {
    min-width: auto;
  }

  .brand small,
  .nav-actions .icon-button {
    display: none;
  }

  .button {
    min-height: 40px;
    padding: 0 16px;
  }

  .subpage-hero {
    min-height: auto;
    padding: 96px 0 58px;
  }

  .subpage-copy h1 {
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 1.12;
  }

  .subpage-copy p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .poster-stack {
    min-height: 360px;
  }

  .poster {
    border-radius: 18px;
  }

  .poster-c {
    left: 8%;
    width: 84%;
    padding: 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section-tight {
    padding: 56px 0;
  }

  .card-grid,
  .card-grid.two,
  .metric-row,
  .form-grid,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .image-card img {
    height: 210px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
