:root {
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --quiet: #8e8e93;
  --paper: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-2: #ececf1;
  --line: rgba(29, 29, 31, 0.08);
  --line-strong: rgba(29, 29, 31, 0.12);
  --green: #0071e3;
  --green-dark: #0057b8;
  --blue: #56a8ff;
  --yellow: #ffd88c;
  --red: #ff6961;
  --glow: rgba(0, 113, 227, 0.14);
  --mono: "SF Mono", "JetBrains Mono", ui-monospace, monospace;
  --sans: "Avenir Next", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --serif: "Iowan Old Style", "Baskerville", "Songti SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(86, 168, 255, 0.18), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(255, 216, 140, 0.22), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(201, 228, 255, 0.24), transparent 28%),
    var(--paper);
  font-family: var(--sans);
  letter-spacing: 0;
}

body::before {
  content: none;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.app-shell {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 16px;
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
  backdrop-filter: blur(28px) saturate(160%);
  animation: rise-in 620ms ease both;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(135deg, #2b2b2f, #0b73e8);
  font-family: var(--mono);
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(0, 113, 227, 0.22);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.topnav a {
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.topnav a:hover {
  color: var(--ink);
  border-color: rgba(0, 113, 227, 0.12);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  min-height: calc(100dvh - 120px);
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(22px, 4vw, 48px) 0 24px;
}

.hero-copy {
  max-width: 620px;
  animation: rise-in 700ms ease both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 16px;
  max-width: 700px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3.3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.26;
  letter-spacing: -0.01em;
}

.hero-text,
.wechat-section p,
.operator-hero p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.prompt-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 18px;
}

.prompt-ribbon span {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #245ba8;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(18px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero-metrics div,
.operator-stats div {
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.05);
}

.hero-metrics strong,
.operator-stats strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: 14px;
  color: #245ba8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-metrics span,
.operator-stats span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.hero-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 12px;
  margin-top: 14px;
}

.hero-editorial-card {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.05);
}

.hero-editorial-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: #3d74be;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-editorial-card p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.6;
}

.hero-editorial-card.muted {
  background:
    linear-gradient(135deg, rgba(0, 113, 227, 0.08), rgba(255, 216, 140, 0.08)),
    rgba(255, 255, 255, 0.32);
}

.generator-panel,
.progress-card,
.result-preview,
.result-actions,
.task-list-panel,
.task-detail-panel,
.wechat-card,
.modal-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 250, 252, 0.82));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.generator-panel {
  position: relative;
  padding: clamp(18px, 2vw, 24px);
  overflow: hidden;
  animation: rise-in 800ms ease both;
}

.generator-panel::before {
  position: absolute;
  inset: auto -20% 78% auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(86, 168, 255, 0.14), transparent 68%);
  content: "";
  pointer-events: none;
}

.panel-intro {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-label {
  margin-bottom: 8px;
  color: #3d74be;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-intro h2 {
  margin-bottom: 0;
  font-size: clamp(20px, 2vw, 28px);
}

.panel-badge {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 113, 227, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #245ba8;
  font-size: 12px;
  font-weight: 700;
}

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

.upload-zone {
  position: relative;
  display: grid;
  min-height: 236px;
  place-items: center;
  overflow: hidden;
  border: 1px dashed rgba(0, 113, 227, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(86, 168, 255, 0.14), transparent 24%),
    radial-gradient(circle at bottom right, rgba(255, 216, 140, 0.14), transparent 20%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(243, 244, 248, 0.72));
}

.upload-zone.is-dragover {
  border-color: var(--green);
  background:
    radial-gradient(circle at top left, rgba(0, 113, 227, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(234, 241, 251, 0.66));
}

.upload-aura {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(86, 168, 255, 0.18), transparent 65%);
  filter: blur(4px);
  pointer-events: none;
  animation: float-slow 9s ease-in-out infinite;
}

.upload-zone input {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
}

.upload-empty {
  display: grid;
  max-width: 330px;
  justify-items: center;
  gap: 8px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
  z-index: 1;
}

.upload-empty strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -0.02em;
}

.upload-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, #0a66d0, #56a8ff);
  box-shadow: 0 16px 30px rgba(0, 113, 227, 0.22);
  font-size: 30px;
  line-height: 1;
  animation: pulse-soft 3s ease-in-out infinite;
}

#uploadPreview {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  background: #fff;
  z-index: 1;
}

.type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.type-grid legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.type-grid label {
  display: block;
}

.type-grid input {
  position: absolute;
  opacity: 0;
}

.type-grid span {
  display: block;
  min-height: 74px;
  padding: 12px 13px;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.type-grid strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.type-grid small,
.form-note,
.operator-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.type-grid input:checked + span {
  border-color: rgba(0, 113, 227, 0.28);
  background: linear-gradient(180deg, rgba(239, 247, 255, 0.96), rgba(255, 255, 255, 0.78));
  box-shadow: 0 12px 22px rgba(0, 113, 227, 0.08);
}

.type-grid label:hover span {
  transform: translateY(-1px);
}

.context-field,
.prompt-box {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid rgba(29, 29, 31, 0.08);
  border-radius: 18px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.58;
}

textarea:focus {
  outline: 2px solid rgba(0, 113, 227, 0.18);
  border-color: var(--green);
}

.generate-button,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 16px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.generate-button,
.button.primary {
  border: 1px solid rgba(0, 113, 227, 0.26);
  color: #fff;
  background: linear-gradient(135deg, #0071e3, #3f9bff);
  box-shadow: 0 16px 30px rgba(0, 113, 227, 0.2);
}

.button.secondary {
  border: 1px solid rgba(29, 29, 31, 0.08);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.button.ghost {
  border: 1px solid transparent;
  color: #245ba8;
  background: rgba(0, 113, 227, 0.08);
}

.button.danger {
  color: var(--red);
  background: rgba(154, 65, 61, 0.08);
}

.generate-button:hover,
.button.primary:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #0062c7, #2c8ef5);
}

.generate-button:active,
.button:active {
  transform: scale(0.98);
}

.progress-section,
.result-section,
.wechat-section,
.operator-grid,
.playbook {
  padding: 38px 0;
}

.progress-card {
  padding: clamp(24px, 4vw, 46px);
}

.progress-meter {
  overflow: hidden;
  height: 16px;
  margin: 28px 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ece7dc;
}

.progress-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transition: width 420ms ease;
}

.progress-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.progress-steps li {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fffdf8;
  font-size: 14px;
}

.progress-steps li.active {
  color: var(--green-dark);
  border-color: var(--green);
  background: rgba(40, 107, 84, 0.1);
}

.result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 18px;
  align-items: start;
}

.result-preview {
  overflow: hidden;
  padding: 14px;
}

#resultCanvas {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  background: #f3efe6;
}

.result-actions {
  padding: clamp(20px, 3vw, 32px);
}

.action-stack {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.conversion-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.conversion-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.conversion-list dt {
  font-weight: 800;
}

.conversion-list dd {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(220px, 0.18fr);
  gap: 18px;
  margin-bottom: 18px;
}

.usage-section {
  padding: 40px 0;
}

.usage-head {
  margin-bottom: 26px;
}

.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.usage-card {
  min-height: 208px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.84), rgba(255, 253, 248, 0.64));
  box-shadow: 0 18px 40px rgba(36, 49, 46, 0.07);
}

.usage-card.wide {
  grid-column: 1 / -1;
}

.example-list,
.benefit-list,
.warning-list,
.example-grid {
  display: grid;
  gap: 10px;
}

.example-list p,
.benefit-list p,
.warning-list p,
.example-grid p,
.formula-example p,
.emphasis-note,
.compare-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.formula-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 700;
}

.formula-example,
.warning-list,
.emphasis-card {
  margin-top: 16px;
}

.formula-example span,
.compare-grid span,
.warning-list strong {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compare-grid div {
  min-height: 110px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.emphasis-note {
  margin-top: 14px;
  color: var(--ink);
  font-weight: 700;
}

.wechat-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) 260px;
  gap: 20px;
  align-items: center;
}

.wechat-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}

.qr-placeholder {
  display: grid;
  width: 168px;
  height: 168px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(21, 24, 21, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 24, 21, 0.08) 1px, transparent 1px),
    #fff;
  background-size: 18px 18px;
  font-weight: 800;
}

.qr-image {
  display: block;
  width: 168px;
  aspect-ratio: 785 / 826;
  max-height: 210px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: #fff;
  object-fit: contain;
  padding: 8px;
}

.qr-image-large {
  width: 220px;
  max-height: 280px;
  margin: 12px auto 18px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(21, 24, 21, 0.48);
}

.modal[hidden] {
  display: none;
}

.modal-card {
  position: relative;
  width: min(100%, 460px);
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  font-size: 22px;
}

.operator-shell h1 {
  max-width: 980px;
  font-size: clamp(38px, 4.8vw, 68px);
}

.operator-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.22fr);
  gap: 24px;
  padding: clamp(42px, 7vw, 86px) 0 36px;
}

.operator-stats {
  display: grid;
  gap: 12px;
}

.operator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.58fr);
  gap: 18px;
}

.task-list-panel,
.task-detail-panel {
  padding: 20px;
}

.panel-headline {
  display: flex;
  gap: 16px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.task-list {
  display: grid;
  gap: 10px;
}

.task-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.task-card img {
  width: 86px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--surface-2);
}

.task-card button {
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff;
  font-weight: 800;
}

.task-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--green-dark);
  background: rgba(40, 107, 84, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.detail-image {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-meta {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  color: var(--muted);
  line-height: 1.5;
}

.prompt-box textarea {
  min-height: 280px;
  font-family: var(--mono);
  font-size: 13px;
}

.playbook-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.playbook-list li {
  min-height: 144px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--muted);
  line-height: 1.58;
  counter-increment: step;
}

.playbook-list li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-family: var(--mono);
  font-weight: 800;
}

@media (max-width: 980px) {
  .topbar,
  .hero,
  .result-layout,
  .section-head,
  .wechat-section,
  .operator-hero,
  .operator-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-editorial {
    grid-template-columns: 1fr;
  }

  .playbook-list,
  .usage-grid,
  .example-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .app-shell {
    padding: 12px;
  }

  .topbar {
    border-radius: 14px;
  }

  .topnav {
    gap: 8px;
    font-size: 12px;
  }

  h1 {
    font-size: 34px;
  }

  .hero-metrics,
  .type-grid,
  .progress-steps,
  .playbook-list,
  .usage-grid,
  .example-grid,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .task-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .task-card button {
    grid-column: 1 / -1;
  }
}

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

@keyframes float-slow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-10px, -14px, 0);
  }
}

@keyframes pulse-soft {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 16px 30px rgba(36, 95, 88, 0.24);
  }
  50% {
    transform: scale(1.04);
    box-shadow: 0 20px 38px rgba(36, 95, 88, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
