/* BNC Digital — tokens (verde institucional de BNC) */
:root {
  --ink: #16231b;
  --ink-soft: #1f2e24;
  --paper: #eae7d4;
  --paper-soft: #f5f3e6;
  --verde: #1f7a4c;
  --verde-deep: #14512f;
  --oro: #d9a441;
  --line: #d7d0b2;
  --line-on-ink: rgba(255, 255, 255, 0.14);
  --muted: #675c48;
  --muted-on-ink: #a8b6ac;
  --white: #ffffff;
  --shadow: 0 30px 60px rgba(22, 35, 27, 0.18);
  --font-display: "Fraunces", serif;
  --font-body: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 241, 228, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(22, 35, 27, 0.06);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  gap: 36px;
  transition: height 0.3s ease;
}
.site-header.is-scrolled .header-inner {
  height: 66px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  margin-right: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  flex: none;
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1.15;
}
.brand-text strong {
  font: 700 15px var(--font-display);
}
.brand-text small {
  color: var(--verde);
  font-size: 10.5px;
  font-family: var(--font-body);
}

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}
.main-nav a {
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -4px;
  height: 1px;
  background: var(--verde);
  transition: right 0.25s ease;
}
.main-nav a:hover {
  color: var(--verde);
}
.main-nav a:hover::after {
  right: 0;
}

.header-cta {
  text-decoration: none;
  background: var(--ink);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header-cta:hover {
  background: var(--verde-deep);
  transform: translateY(-1px);
}
.header-cta:active {
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: none;
  padding: 8px;
  margin-left: 6px;
}
.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 70px 0 100px;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: -6%;
  width: 640px;
  max-width: none;
  transform: translateY(-50%);
  opacity: 0.05;
  pointer-events: none;
  filter: blur(0.5px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.hero-kicker {
  color: var(--oro);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.04;
}

.hero-lede {
  max-width: 46ch;
  color: var(--muted-on-ink);
  font-size: 17px;
  margin: 24px 0 32px;
}

.store-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 168px;
  padding: 11px 16px;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.store-badge:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}
.store-badge:active {
  transform: translateY(0);
}
.store-badge small {
  display: block;
  font-size: 9.5px;
  color: var(--muted);
}
.store-badge strong {
  display: block;
  font: 700 15px var(--font-display);
}
.store-badge-icon {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--ink);
}

.hero-microcopy {
  color: #8e8271;
  font-size: 12px;
  margin-top: 18px;
  max-width: 40ch;
}

.hero-visual {
  position: relative;
  justify-self: center;
}

.hero-photo {
  width: 340px;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line-on-ink);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-chip {
  position: absolute;
  background: var(--paper-soft);
  color: var(--ink);
  border-radius: 5px;
  padding: 12px 15px;
  box-shadow: var(--shadow);
  animation: chip-float 5s ease-in-out infinite;
}
.chip-payment {
  display: flex;
  align-items: center;
  gap: 10px;
  top: 24px;
  left: -34px;
}
.chip-dot {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dcefe1;
  color: var(--verde);
  flex: none;
}
.chip-payment strong {
  display: block;
  font: 600 12px var(--font-display);
}
.chip-payment small {
  color: var(--muted);
  font-size: 10.5px;
}
.chip-balance {
  bottom: 30px;
  right: -22px;
  text-align: left;
  animation-delay: -2.4s;
}
.chip-balance small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}
.chip-balance strong {
  display: block;
  font: 700 15px var(--font-display);
  color: var(--verde);
  margin-top: 2px;
}
.chip-balance em {
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}

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

/* ---------- Value strip ---------- */
.value-strip {
  background: var(--paper-soft);
  border-bottom: 1px solid var(--line);
}
.value-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 40px 0;
}
.value-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #dcefe1;
  color: var(--verde);
  margin-bottom: 12px;
}
.value-icon svg {
  width: 17px;
  height: 17px;
}
.value-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.value-item p {
  color: var(--muted);
  font-size: 13.5px;
}

/* ---------- Sections ---------- */
.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 640px;
  margin: 0 0 50px;
}
.section-heading h2 {
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.08;
}
.section-heading p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 16px;
  max-width: 52ch;
}

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature-card {
  position: relative;
  background: var(--paper-soft);
  padding: 28px 24px;
  min-height: 168px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(22, 35, 27, 0.1);
  z-index: 1;
}
.feature-card--lead:hover {
  background: var(--verde-deep);
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: #dcefe1;
  color: var(--verde);
  margin-bottom: 16px;
}
.feature-icon svg {
  width: 19px;
  height: 19px;
}
.feature-card--lead .feature-icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.feature-card p {
  color: var(--muted);
  font-size: 13.5px;
  max-width: 26ch;
}
.feature-card--lead {
  background: var(--verde);
  color: var(--white);
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.feature-card--lead p {
  color: #cfe6d7;
  max-width: 32ch;
}

/* ---------- Tienda ---------- */
.store-section {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0;
}
.store-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.store-intro h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
}
.store-intro p {
  color: var(--muted-on-ink);
  max-width: 38ch;
  margin: 18px 0 22px;
  font-size: 14.5px;
}
.store-link {
  display: inline-block;
  color: var(--oro);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid var(--oro);
  padding-bottom: 2px;
}
.store-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-on-ink);
  border: 1px solid var(--line-on-ink);
}
.store-categories li {
  background: var(--ink-soft);
  padding: 26px 24px;
  transition: background 0.25s ease;
}
.store-categories li:hover {
  background: #263b2d;
}
.store-cat-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(217, 164, 65, 0.16);
  color: var(--oro);
  margin-bottom: 14px;
}
.store-cat-icon svg {
  width: 18px;
  height: 18px;
}
.store-categories strong {
  display: block;
  font: 600 16px var(--font-display);
  margin-bottom: 6px;
}
.store-categories span {
  display: block;
  color: var(--muted-on-ink);
  font-size: 13px;
}

/* ---------- Process ---------- */
.process-section {
  background: var(--ink);
  color: var(--white);
  padding: 110px 0;
}
.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.process-intro h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.1;
}
.process-intro p {
  color: var(--muted-on-ink);
  max-width: 30ch;
  margin-top: 18px;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  display: flex;
  gap: 22px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line-on-ink);
}
.steps li:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.steps li > span {
  font: 600 15px var(--font-display);
  color: var(--oro);
  padding-top: 3px;
}
.steps strong {
  font: 600 19px var(--font-display);
  display: block;
}
.steps p {
  color: var(--muted-on-ink);
  font-size: 13.5px;
  margin-top: 5px;
}

/* ---------- Security ---------- */
.security-section {
  padding: 100px 0;
}
.security-panel {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.security-copy h2 {
  font-size: clamp(28px, 3vw, 38px);
}
.security-copy p {
  color: var(--muted);
  max-width: 54ch;
  font-size: 14.5px;
  margin-top: 16px;
}
.security-links {
  display: flex;
  gap: 22px;
  margin-top: 24px;
}
.security-links a {
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}
.security-stamp {
  position: relative;
  text-align: center;
  color: var(--muted);
  font-size: 11px;
  flex: none;
}
.stamp-ring-svg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 118px;
  height: 118px;
  transform: translateX(-50%) rotate(-90deg);
}
.stamp-ring-track {
  fill: none;
  stroke: rgba(31, 122, 76, 0.16);
  stroke-width: 1.5;
}
.stamp-ring-draw {
  fill: none;
  stroke: var(--verde);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 339;
  stroke-dashoffset: 339;
  transition: stroke-dashoffset 1.4s ease;
}
.security-panel.is-visible .stamp-ring-draw {
  stroke-dashoffset: 34;
}
.stamp-ring {
  display: grid;
  place-content: center;
  width: 118px;
  height: 118px;
  font: 700 11px var(--font-body);
  color: var(--verde);
  line-height: 1.15;
  margin: 0 auto 12px;
}
.stamp-ring strong {
  font-size: 24px;
}

/* ---------- FAQ ---------- */
.faq-section {
  padding-top: 60px;
}
.faq-list {
  max-width: 780px;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-trigger {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  border: 0;
  background: none;
  padding: 20px 0;
  margin: 0;
  text-align: left;
  color: inherit;
  font: 600 17px var(--font-display);
}
.faq-icon {
  position: relative;
  flex: none;
  width: 20px;
  height: 20px;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--verde);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.faq-icon::before {
  width: 14px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 14px;
}
.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}
.faq-panel-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-panel p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  padding-bottom: 20px;
}

/* ---------- Support / contact ---------- */
.support-section {
  background: var(--ink-soft);
  color: var(--white);
  padding: 100px 0;
}
.support-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}
.support-intro h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}
.support-intro > p {
  color: var(--muted-on-ink);
  max-width: 34ch;
  margin-top: 16px;
  font-size: 14.5px;
}
.support-contact {
  margin-top: 24px;
}
.support-contact small {
  display: block;
  color: var(--muted-on-ink);
  font-size: 10.5px;
}
.support-contact strong {
  font-size: 13.5px;
}
.pending {
  color: var(--oro);
  font-style: italic;
  font-weight: 500;
}

.contact-form {
  background: var(--paper-soft);
  color: var(--ink);
  padding: 36px;
  border-radius: 6px;
}
.contact-form label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 18px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: 14px var(--font-body);
  padding: 10px 0;
  margin-top: 6px;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--verde);
}
.contact-form textarea {
  resize: vertical;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 11.5px;
}
.consent input {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  accent-color: var(--verde);
}
.consent a {
  color: var(--ink);
  text-decoration: underline;
}
.submit-button {
  border: 0;
  background: var(--verde);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 3px;
  font: 700 13px var(--font-body);
  cursor: pointer;
}
.submit-button:hover {
  background: var(--verde-deep);
}
.form-success {
  color: var(--verde-deep);
  font: 700 15px var(--font-display);
  margin: 18px 0 0;
}
.form-error {
  color: #b3261e;
  font-size: 13px;
  margin: 16px 0 0;
}
.submit-button:disabled {
  opacity: 0.7;
  cursor: default;
}

/* ---------- Confetti ---------- */
.confetti-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 300;
}
.confetti-piece {
  position: absolute;
  top: -12px;
  will-change: transform, opacity;
  animation-name: confetti-fall;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}
@keyframes confetti-fall {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
  }
  25% {
    transform: translate3d(22px, 25vh, 0) rotate(180deg);
  }
  50% {
    transform: translate3d(-22px, 50vh, 0) rotate(360deg);
  }
  75% {
    transform: translate3d(18px, 75vh, 0) rotate(540deg);
  }
  100% {
    transform: translate3d(-14px, 105vh, 0) rotate(720deg);
    opacity: 0.9;
  }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 40px 0 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.footer-top > p {
  color: var(--muted-on-ink);
  font-size: 12.5px;
  margin-right: auto;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  text-decoration: none;
  color: #d8ccb8;
  font-size: 12px;
}
.footer-links a:hover {
  color: var(--oro);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-on-ink);
  margin-top: 34px;
  padding-top: 18px;
  color: #8e8271;
  font-size: 11px;
}
.footer-bottom .pending {
  color: #a99b83;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}
.feature-grid .feature-card {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.feature-grid .feature-card.is-visible {
  opacity: 1;
  transform: none;
}
.feature-grid .feature-card:nth-child(1) { transition-delay: 0s; }
.feature-grid .feature-card:nth-child(2) { transition-delay: 0.06s; }
.feature-grid .feature-card:nth-child(3) { transition-delay: 0.12s; }
.feature-grid .feature-card:nth-child(4) { transition-delay: 0.18s; }
.feature-grid .feature-card:nth-child(5) { transition-delay: 0.24s; }
.feature-grid .feature-card:nth-child(6) { transition-delay: 0.3s; }
.feature-grid .feature-card:nth-child(7) { transition-delay: 0.36s; }
.feature-grid .feature-card:nth-child(8) { transition-delay: 0.42s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    background: var(--paper-soft);
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    gap: 14px;
    border-radius: 6px;
  }
  .main-nav.is-open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    margin-top: 30px;
  }
  .value-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .section {
    padding: 76px 0;
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card--lead {
    grid-column: span 2;
    grid-row: span 1;
  }
  .process-layout,
  .support-layout,
  .store-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .security-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 28px;
  }
  .security-stamp {
    align-self: center;
  }
}

@media (max-width: 560px) {
  .page-width,
  .header-inner {
    width: calc(100% - 32px);
  }
  .hero {
    padding: 50px 0 70px;
  }
  .hero-photo {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .chip-payment {
    left: 0;
  }
  .chip-balance {
    right: 0;
  }
  .store-actions {
    flex-direction: column;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-card--lead {
    grid-column: span 1;
  }
  .store-categories {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  [data-reveal],
  .feature-grid .feature-card,
  .hero-chip,
  .stamp-ring-draw,
  .faq-panel {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .stamp-ring-draw {
    stroke-dashoffset: 34 !important;
  }
  .confetti-layer {
    display: none !important;
  }
}
