/* ============================================
   Dockit — Immersive Landing Page Styles
   ============================================ */

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #08080f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --surface: rgba(255, 255, 255, 0.06);
  --text: #e8e8f0;
  --text-dim: #8888a0;
  --accent: #6c5ce7;
  --accent2: #00cec9;
  --gradient: linear-gradient(135deg, #6c5ce7, #00cec9);
  --gradient-text: linear-gradient(135deg, #a29bfe, #00cec9, #6c5ce7);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--accent);
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- LOADER ---------- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--accent);
  border-right-color: var(--accent2);
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-size: 0.9rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  animation: pulse-text 1.5s ease-in-out infinite;
}
@keyframes pulse-text {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ---------- NAV ---------- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
#navbar.scrolled {
  background: rgba(8, 8, 15, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}
.logo-svg {
  height: 30px;
  width: auto;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: var(--text);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-version {
  font-size: 0.75rem;
  color: var(--text-dim);
  background: var(--surface);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s ease;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(0, 206, 201, 0.08);
  border: 1px solid rgba(0, 206, 201, 0.2);
  padding: 8px 20px;
  border-radius: 100px;
}

.hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: grad-shift 4s ease-in-out infinite;
}
@keyframes grad-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  max-width: 600px;
  font-size: 1.15rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 0 30px rgba(108, 92, 231, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px rgba(108, 92, 231, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.8rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-small:hover {
  background: var(--accent);
  color: #fff;
}

/* ---------- PHONE MOCKUP ---------- */
.hero-mockup {
  perspective: 800px;
  margin-top: 20px;
}

.phone-frame {
  width: 240px;
  height: 490px;
  border-radius: 36px;
  background: linear-gradient(145deg, #1a1a2e, #16213e);
  padding: 10px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  background: #0f0f1a;
  overflow: hidden;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ps-status {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-dim);
  text-align: center;
  padding: 2px 0;
}

.ps-app {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px;
}

.ps-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}
.ps-header svg {
  height: 16px;
  width: auto;
}

.ps-tabs {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  padding: 3px;
}
.ps-tab {
  flex: 1;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-dim);
  padding: 5px 0;
  border-radius: 6px;
  transition: 0.3s ease;
}
.ps-tab.active {
  background: rgba(139, 92, 246, 0.2);
  color: #a78bfa;
}

.ps-scan-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(139, 92, 246, 0.03);
  border: 1px dashed rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.ps-scan-icon {
  opacity: 0.6;
}
.ps-scan-line {
  width: 60%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #a78bfa, transparent);
  border-radius: 1px;
  animation: psScan 2s ease-in-out infinite;
}
@keyframes psScan {
  0% { opacity: 0; transform: translateY(-12px); }
  50% { opacity: 0.8; transform: translateY(12px); }
  100% { opacity: 0; transform: translateY(-12px); }
}
.ps-scan-text {
  font-size: 0.6rem;
  color: var(--text-dim);
  opacity: 0.6;
}

.ps-thumbs {
  display: flex;
  gap: 6px;
}
.ps-thumb {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 6px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
}
.ps-thumb span:first-child {
  height: 6px;
  width: 70%;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}
.ps-thumb span:last-child {
  height: 4px;
  width: 40%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2px;
}

/* ---------- SCROLL INDICATOR ---------- */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.5;
  animation: float-y 2.5s ease-in-out infinite;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-dim);
  border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg);
  animation: scroll-bob 2s ease-in-out infinite;
}
@keyframes float-y {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}
@keyframes scroll-bob {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ---------- SECTION COMMON ---------- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}
.section-label.light {
  color: var(--accent2);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}
.section-title.light {
  color: #fff;
}

/* ---------- SCREENSHOTS ---------- */
.screenshots {
  text-align: center;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.screenshot-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.4s ease;
}

.screenshot-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.screenshot-placeholder {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.screenshot-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 8px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.placeholder-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 20px;
  min-height: 200px;
}

.placeholder-preview p {
  font-size: 0.8rem;
  color: var(--text-dim);
  opacity: 0.5;
}

.screenshot-caption {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
}

/* ---------- TRUST ---------- */
.trust {
  position: relative;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.trust-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.trust-card:hover::before {
  opacity: 1;
}
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 92, 231, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.trust-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.trust-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.trust-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.trust-manifesto {
  max-width: 640px;
  margin: 40px auto 0;
  text-align: left;
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(108,92,231,0.04), rgba(0,206,201,0.04));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
}

.tm-mark {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 0.5;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.2;
  margin-bottom: 4px;
}

.trust-manifesto p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 14px;
}

.trust-manifesto p:last-child {
  margin-bottom: 0;
}

.tm-name {
  font-weight: 700;
  color: var(--text);
}

/* ---------- FEATURES ---------- */
.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s ease;
}
.feature-item:hover {
  border-color: rgba(108, 92, 231, 0.15);
  transform: translateX(6px);
}

.feature-icon {
  font-size: 2.2rem;
  line-height: 1;
  min-width: 56px;
  text-align: center;
}

.feature-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.feature-content p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ---------- STATS ---------- */
.stats {
  position: relative;
  padding: 120px 24px;
  max-width: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(108, 92, 231, 0.08), transparent 60%),
              radial-gradient(ellipse at 50% 100%, rgba(0, 206, 201, 0.06), transparent 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.stats .section-title,
.stats .section-label {
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-num {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.integrity-bar {
  max-width: 600px;
  margin: 0 auto;
}

.integrity-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}
.integrity-fill {
  height: 100%;
  background: var(--gradient);
  border-radius: 3px;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.integrity-bar p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ---------- DOWNLOAD ---------- */
.download {
  text-align: center;
}

.download-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 48px;
}

.download-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  text-align: center;
}
.download-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 30px 80px rgba(108, 92, 231, 0.15);
}
.download-card.primary {
  background: rgba(108, 92, 231, 0.08);
  border-color: rgba(108, 92, 231, 0.25);
  position: relative;
}
.download-card.primary::after {
  content: 'Recommended';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gradient);
  color: #fff;
  padding: 3px 10px;
  border-radius: 100px;
}

.dl-icon {
  font-size: 2.4rem;
}
.dl-title {
  font-size: 1.15rem;
  font-weight: 700;
}
.dl-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
}
.dl-hash {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-family: monospace;
  opacity: 0.6;
  margin-top: 4px;
  word-break: break-all;
  max-width: 100%;
}

.checksum-box {
  max-width: 580px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 24px;
}
.checksum-box p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.checksum-box code {
  display: block;
  font-size: 0.7rem;
  color: var(--text-dim);
  background: rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
  border-radius: 8px;
  word-break: break-all;
  margin-bottom: 12px;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

/* ---------- FAQ ---------- */
.faq {
  text-align: center;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-arrow {
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 48px 24px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-dim);
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  #navbar {
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 15, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }
  .nav-links.open {
    display: flex;
  }

  .nav-version {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .hero-sub {
    font-size: 0.95rem;
  }

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

  .phone-frame {
    width: 190px;
    height: 390px;
  }

  .feature-item {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .feature-icon {
    font-size: 1.8rem;
    min-width: 44px;
  }

  section {
    padding: 60px 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .download-cards {
    grid-template-columns: 1fr;
  }

  .download-card {
    padding: 28px 16px;
  }

  .dl-hash {
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
  .phone-frame {
    width: 160px;
    height: 330px;
  }
}
