/* ============================================================
   Elevate Agents — Landing Page Styles
   Forest-dark premium landing. Complements colors_and_type.css.
   ============================================================ */

:root {
  --forest:       var(--green-deep);
  --forest-deep:  #082722;
  --cream:        var(--mint-ice);
  --cream-muted:  rgba(237, 249, 244, 0.7);
  --cream-dim:    rgba(237, 249, 244, 0.5);
  --cream-faint:  rgba(237, 249, 244, 0.2);
  --mint:         var(--mint-bright);
  --mint-soft-a:  var(--mint-soft);
  --gold:         var(--gold-accent);

  --luciano:  var(--mint);
  --patrona:  var(--gold);
  --lucho:    var(--mint-soft-a);

  /* Typography paired-heading rhythm — single source of truth */
  --pair-gap-sm: 22px;
  --pair-gap-md: 28px;
  --pair-gap-lg: 36px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  background: var(--forest);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.topo-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background-image: url("assets/pattern-topo.svg");
  background-size: cover;
  background-repeat: no-repeat;
  mix-blend-mode: lighten;
  opacity: 0.08;
}

.liquid-glass {
  background: rgba(255, 255, 255, 0.02);
  background-blend-mode: luminosity;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.liquid-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(140, 218, 179, 0.45) 0%,
    rgba(140, 218, 179, 0.15) 20%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 60%,
    rgba(140, 218, 179, 0.15) 80%,
    rgba(140, 218, 179, 0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* Typography */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--cream);
}
.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--mint);
  line-height: 1.0;
}
.mono-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* === GLOBAL HEADING-PAIR RHYTHM ===
   Wrap any display + script combo with [data-heading-pair="stack"|"inline"]. */
[data-heading-pair="stack"] > .display { display: block; }
[data-heading-pair="stack"] > .script {
  display: inline-block;
  margin-top: var(--pair-gap-md);
  margin-left: 4px;
  padding-bottom: 0.18em;
}
@media (min-width: 768px) {
  [data-heading-pair="stack"] > .script { margin-top: var(--pair-gap-lg); }
}
[data-heading-pair="inline"] > .script {
  display: inline-block;
  margin-left: var(--pair-gap-sm);
  vertical-align: baseline;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 48px; } }

section { position: relative; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--mint);
  color: var(--forest);
  border: none;
  border-radius: 999px;
  padding: 16px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary:hover {
  background: var(--mint-soft-a);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(140, 218, 179, 0.25);
}
.btn-primary .arrow,
.btn-glass .arrow { display: inline-block; transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1); }
.btn-primary:hover .arrow,
.btn-glass:hover .arrow { transform: translateX(4px); }

.btn-pulse { animation: cta-pulse 6s ease-in-out infinite; }
@keyframes cta-pulse {
  0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(140, 218, 179, 0); }
  76%           { box-shadow: 0 0 0 0 rgba(140, 218, 179, 0.55); }
  82%           { box-shadow: 0 0 0 16px rgba(140, 218, 179, 0); }
}

.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--cream);
  border-radius: 999px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-glass:hover { color: var(--mint); transform: translateY(-1px); }

.cta-sub {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 12px;
  display: block;
}

/* === KEYFRAMES === */
@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 600ms cubic-bezier(0.22, 1, 0.36, 1) backwards; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.gold-shimmer {
  background: linear-gradient(90deg,
    var(--gold) 0%, #f0d57a 25%, var(--gold) 50%, var(--gold) 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

/* === SCROLL REVEALS === */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 80ms; }
[data-reveal-delay="2"] { transition-delay: 160ms; }
[data-reveal-delay="3"] { transition-delay: 240ms; }
[data-reveal-delay="4"] { transition-delay: 320ms; }
[data-reveal-delay="5"] { transition-delay: 400ms; }
[data-reveal-delay="6"] { transition-delay: 480ms; }

/* === MARQUEE === */
.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
  gap: 14px;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-tile {
  width: 130px;
  height: 130px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 200ms;
}
.marquee-tile:hover { background: rgba(140, 218, 179, 0.1); }

/* === STAT TILES === */
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 78px);
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
}
.stat-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--mint) 70%, transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  margin-top: 28px;
}
.stat-line.is-active { transform: scaleX(1); }

/* === FORMS === */
.input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(140, 218, 179, 0.15);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 160ms;
}
.input:focus { border-color: var(--mint); }
.input::placeholder { color: var(--cream-dim); }
textarea.input { resize: vertical; min-height: 80px; }
select.input { appearance: none; cursor: pointer; }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 16px;
  display: block;
}

/* === CHATBOT === */
.chatbot-bubble {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 200;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--mint-soft-a));
  color: var(--forest);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(140, 218, 179, 0.45),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}
.chatbot-bubble:hover { transform: scale(1.10); }
.chatbot-bubble.is-open {
  transform: scale(0.92) rotate(180deg);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

/* Continuous halo ring expanding outward — much more attention-grabbing than just glow */
.chatbot-bubble::before,
.chatbot-bubble::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--mint);
  opacity: 0;
  pointer-events: none;
  animation: halo-expand 3s ease-out infinite;
}
.chatbot-bubble::after { animation-delay: 1.5s; }
.chatbot-bubble.is-open::before,
.chatbot-bubble.is-open::after { animation: none; }

@keyframes halo-expand {
  0%   { transform: scale(1);   opacity: 0.7; border-width: 2px; }
  80%  { transform: scale(1.6); opacity: 0;   border-width: 0.5px; }
  100% { transform: scale(1.6); opacity: 0;   border-width: 0; }
}

/* Auto-popup tooltip — appears once 4s after page load until dismissed/clicked */
.chatbot-tooltip {
  position: fixed;
  bottom: 38px;
  left: 104px;
  z-index: 201;
  background: var(--cream);
  color: var(--forest);
  padding: 10px 16px 10px 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-8px) scale(0.92);
  pointer-events: none;
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1), transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.chatbot-tooltip.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}
.chatbot-tooltip::after {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--cream);
}
.chatbot-tooltip-close {
  margin-left: 10px;
  width: 18px; height: 18px;
  border: none;
  background: rgba(15, 63, 54, 0.08);
  color: var(--forest);
  border-radius: 50%;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  line-height: 1;
}
.chatbot-tooltip-close:hover { background: rgba(15, 63, 54, 0.16); }

.chatbot-panel {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 199;
  width: min(380px, calc(100vw - 32px));
  height: min(580px, calc(100vh - 140px));
  border-radius: 24px;
  background: rgba(8, 39, 34, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5),
              inset 0 0 0 1px rgba(140, 218, 179, 0.18);
  transform-origin: bottom left;
  transform: scale(0.85) translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms;
}
.chatbot-panel.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.chatbot-header {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(140, 218, 179, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chatbot-msg {
  max-width: 85%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  animation: fadeUp 360ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.chatbot-msg.bot {
  align-self: flex-start;
  background: rgba(140, 218, 179, 0.08);
  border: 1px solid rgba(140, 218, 179, 0.18);
  color: var(--cream);
  border-bottom-left-radius: 4px;
}
.chatbot-msg.user {
  align-self: flex-end;
  background: var(--mint);
  color: var(--forest);
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chatbot-typing {
  display: inline-flex;
  gap: 4px;
  padding: 6px 0;
}
.chatbot-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  animation: typing-dot 1.2s ease-in-out infinite;
}
.chatbot-typing span:nth-child(2) { animation-delay: 0.15s; }
.chatbot-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.chatbot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 18px 10px;
  flex-shrink: 0;
}
.chatbot-chip {
  background: rgba(140, 218, 179, 0.08);
  border: 1px solid rgba(140, 218, 179, 0.22);
  color: var(--cream);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 11.5px;
  cursor: pointer;
  transition: background 160ms;
  font-family: var(--font-sans);
}
.chatbot-chip:hover { background: rgba(140, 218, 179, 0.18); }
.chatbot-input-row {
  padding: 12px 14px;
  border-top: 1px solid rgba(140, 218, 179, 0.12);
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.chatbot-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(140, 218, 179, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 13.5px;
  outline: none;
}
.chatbot-input:focus { border-color: var(--mint); }
.chatbot-send {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--mint); color: var(--forest);
  border: none; cursor: pointer;
  display: grid; place-items: center;
  transition: background 160ms;
}
.chatbot-send:hover { background: var(--mint-soft-a); }
.chatbot-send:disabled { opacity: 0.4; cursor: not-allowed; }

/* === SEO SCANNER === */
.seo-terminal {
  background: rgba(8, 22, 19, 0.85);
  border-radius: 20px;
  padding: 36px 20px 20px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--mint);
  min-height: 280px;
  max-height: 280px;
  overflow-y: auto;
  position: relative;
}
.seo-terminal::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 16px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 14px 0 0 #d4af37, 28px 0 0 rgba(255, 107, 107, 0.7);
}
.seo-line {
  opacity: 0;
  animation: seo-line-in 220ms ease-out forwards;
  white-space: pre-wrap;
  word-break: break-word;
  margin-bottom: 4px;
}
@keyframes seo-line-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 0.85; transform: translateY(0); }
}
.seo-line.ok       { color: var(--mint); }
.seo-line.warn     { color: var(--gold); }
.seo-line.err      { color: #ff8a8a; }
.seo-line.dim      { color: rgba(140, 218, 179, 0.5); }

.seo-score-ring {
  position: relative;
  width: 180px;
  height: 180px;
  flex-shrink: 0;
}

/* Scrollbars */
*::-webkit-scrollbar { width: 10px; }
*::-webkit-scrollbar-track { background: var(--forest-deep); }
*::-webkit-scrollbar-thumb { background: rgba(140,218,179,0.18); border-radius: 8px; }

/* === LIVE STATUS BAR === */
.live-status {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: linear-gradient(180deg, rgba(8, 22, 19, 0.92), rgba(8, 22, 19, 0.78));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(140, 218, 179, 0.15);
  font-family: var(--font-mono);
}
.live-status-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11.5px;
}
@media (min-width: 1024px) {
  .live-status-inner { padding: 8px 48px; }
}
.live-status-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.live-status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(140, 218, 179, 0.25);
  display: inline-block;
}
.live-status-dot-inner {
  position: absolute;
  inset: 1px;
  border-radius: 50%;
  background: var(--mint);
  animation: live-status-pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 6px var(--mint);
}
@keyframes live-status-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.7); opacity: 0.6; }
}
.live-status-center {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}
.live-status-msg {
  display: inline-block;
  animation: live-status-in 480ms cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--font-mono);
  font-size: 11.5px;
}
@keyframes live-status-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.live-status-right {
  flex-shrink: 0;
  display: none;
}
@media (min-width: 768px) {
  .live-status-right { display: block; }
}

/* When the live status sits at the top, the hero's nav top-padding is now
   shifted down by ~32px. Compensate so the hero content doesn't get squeezed. */
.live-status + section { /* nothing — hero is min-height: 100vh, will absorb naturally */ }

/* Mobile: hide center label or shrink */
@media (max-width: 600px) {
  .live-status-msg { font-size: 10.5px; }
  .live-status-left .mono-label { font-size: 10px; }
}



/* === STACK PILL — floating bottom-left, shows live total === */
.stack-pill {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 198;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 14px;
  border-radius: 999px;
  background: rgba(8, 39, 34, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(140, 218, 179, 0.32);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(140, 218, 179, 0.18);
  color: var(--cream);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms;
  animation: stack-pill-in 360ms cubic-bezier(0.22, 1, 0.36, 1);
  text-align: left;
  max-width: calc(100vw - 48px);
}
.stack-pill:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(140, 218, 179, 0.32);
}
@keyframes stack-pill-in {
  from { opacity: 0; transform: translateY(8px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.stack-pill-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.stack-pill-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.stack-pill-count {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-muted);
}
.stack-pill-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
}
.stack-pill-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stack-pill-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--gold);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stack-pill-unit {
  font-size: 11px;
  color: var(--cream-muted);
  font-weight: 500;
  margin-left: 2px;
}
.stack-pill-savings {
  font-size: 10px;
  color: var(--mint);
  font-weight: 600;
  margin-left: 4px;
  letter-spacing: 0.04em;
}
.stack-pill-cta {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  color: var(--mint);
  flex-shrink: 0;
}

/* On mobile, stack pill stays right-aligned, sized to leave room for chatbot bubble on left */
@media (max-width: 600px) {
  .stack-pill {
    right: 12px;
    left: auto;
    bottom: 12px;
    max-width: calc(100vw - 100px);
  }
}



/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-reveal], [data-reveal].is-in,
  .marquee-track, .btn-pulse, .chatbot-bubble,
  .live-status-dot-inner, .stack-pill {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
