/* Modern 2025 Design System */
:root {
  /* Core Colors - Enhanced contrast and depth */
  --bg: #0a0b0d;
  --bg-gradient: linear-gradient(135deg, #0a0b0d 0%, #0f1113 50%, #14171a 100%);
  --panel: #111518;
  --panel-gradient: linear-gradient(135deg, #111518 0%, #16191d 100%);
  --elev: #1a1e23;
  --elev-gradient: linear-gradient(135deg, #1a1e23 0%, #1f2329 100%);
  --text: #f8fafc;
  --text-secondary: #e2e8f0;
  --muted: #94a3b8;
  --muted-dark: #64748b;
  --line: #334155;
  --line-subtle: #1e293b;

  /* Brand Colors - Modern blue palette */
  --accent: #0ea5e9;
  --accent-dark: #0284c7;
  --accent-light: #38bdf8;
  --accent-ghost: rgba(14, 165, 233, 0.1);
  --accent-glow: rgba(14, 165, 233, 0.25);
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Shadows - Layered depth */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(14, 165, 233, 0.3);

  /* Typography Scale */
  --font-sans:
    'Inter', ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI',
    Roboto, sans-serif;
  --font-mono:
    'JetBrains Mono', ui-monospace, 'Cascadia Code', 'Fira Code', Consolas,
    monospace;

  /* Spacing & Layout */
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Animation */
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Typography Improvements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin: 0 0 1rem 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--text) 0%,
    var(--text-secondary) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
}

p {
  margin: 0 0 1rem 0;
}

a {
  transition: var(--transition);
}

strong {
  font-weight: 600;
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 2rem);
}

/* Header - Modern glassmorphism */
.site-header {
  border-bottom: 1px solid var(--line-subtle);
  position: sticky;
  top: 0;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 8px 32px rgba(0, 0, 0, 0.3);
  z-index: 100;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 11, 13, 0.95);
  border-bottom-color: var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--accent) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--spring);
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav .nav-cta {
  color: var(--text);
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--elev-gradient);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
  transition: var(--transition);
}

.site-nav .nav-cta:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.site-nav .nav-cta::after {
  display: none;
}

/* Hero - Enhanced visual hierarchy */
.hero {
  padding: clamp(4rem, 8vh, 6rem) 0 clamp(2rem, 4vh, 3rem);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 120%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(14, 165, 233, 0.03) 0%,
    transparent 70%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}

.hero-copy {
  z-index: 2;
}

.hero h1 {
  margin: 0 0 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 0.8s var(--spring);
}

.lead {
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 2rem;
  animation: fadeInUp 0.8s var(--spring) 0.1s both;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  animation: fadeInUp 0.8s var(--spring) 0.2s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  color: white;
  box-shadow:
    var(--shadow),
    0 0 0 rgba(14, 165, 233, 0.5);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--panel-gradient);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--elev-gradient);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.note {
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--panel);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-sm);
  animation: fadeInUp 0.8s var(--spring) 0.3s both;
}

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

.hero-visual {
  position: relative;
  z-index: 1;
  animation: fadeInScale 1s var(--spring) 0.4s both;
}

.hero-visual .mockup {
  background: var(--panel-gradient);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero-visual .mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.mockup-caption {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.plate {
  position: relative;
  background: linear-gradient(135deg, #0a0b0d 0%, #0f1215 100%);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--line);
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.plate:hover {
  box-shadow:
    var(--shadow-lg),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.plate-header {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.plate-row {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
}

.plate-ch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 44px;
  background: linear-gradient(135deg, #111518 0%, #1a1f24 100%);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    var(--shadow-sm);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  transition: var(--transition);
}

.plate-ch:hover {
  background: linear-gradient(135deg, #1a1f24 0%, #1f2429 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    var(--shadow);
}

.plate-neutral .plate-ch {
  width: 30px;
  height: 40px;
}

.bbox {
  position: absolute;
  inset: 12px;
  border: 2px dashed var(--accent);
  border-radius: var(--radius-sm);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.legend-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.sw-bbox {
  background: var(--accent);
  opacity: 0.7;
}

.sw-text {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}

/* Print Styles */
@media print {
  .site-header,
  .hero-visual,
  .download,
  .site-footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .container {
    max-width: none;
    padding: 0;
  }
}

/* Licensed Section - Enhanced readability */
.licensed {
  padding: clamp(3rem, 6vh, 5rem) 0;
  background: var(--panel-gradient);
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
  position: relative;
  overflow: hidden;
}

.licensed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.bullet-list {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.bullet-list li {
  margin: 1rem 0;
  padding-left: 2rem;
  position: relative;
  font-weight: 500;
  line-height: 1.6;
}

.bullet-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
  width: 1.25rem;
}

.small {
  color: var(--muted-dark);
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 1rem;
  background: var(--elev);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-sm);
  margin-top: 1.5rem;
}

/* Modes Section - Interactive tabs */
.modes {
  padding: clamp(3rem, 6vh, 5rem) 0;
  background: var(--bg);
}

.modes p.muted {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.tabs {
  display: inline-flex;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}

.tab {
  background: transparent;
  color: var(--muted);
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s var(--spring);
}

.tab.is-active {
  background: var(--elev-gradient);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tab.is-active::after {
  transform: scaleX(1);
}

.tab + .tab {
  border-left: 1px solid var(--line-subtle);
}

.tab:hover:not(.is-active) {
  background: var(--panel-gradient);
  color: var(--text-secondary);
}

.tab-panels {
  margin-top: 2rem;
}

.tab-panel {
  animation: fadeIn 0.5s var(--spring);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.panel-copy h3 {
  margin-top: 0;
  color: var(--accent);
  font-weight: 700;
}

.check-list {
  margin: 1.5rem 0;
  padding-left: 0;
  list-style: none;
}

.check-list li {
  margin: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
  font-weight: 500;
}

.check-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

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

/* Benefits Section - Card-based layout */
.benefits {
  padding: clamp(3rem, 6vh, 5rem) 0;
  background: var(--panel-gradient);
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
  position: relative;
}

.benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit {
  background: var(--elev-gradient);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.benefit:hover::before {
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.benefit h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
}

.benefit p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Compliance Section - Professional layout */
.compliance {
  padding: clamp(3rem, 6vh, 5rem) 0;
  background: var(--bg);
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.compliance-block {
  background: var(--panel-gradient);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

.compliance-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
}

.compliance-block:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.compliance-block h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.compliance-block p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.disclaimer {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--elev-gradient);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}

/* Download Section - Call-to-action focus */
.download {
  padding: clamp(3rem, 6vh, 5rem) 0;
  background: var(--panel-gradient);
  border-top: 1px solid var(--line-subtle);
  position: relative;
  text-align: center;
}

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.download h2 {
  margin-bottom: 1rem;
}

.download p.muted {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.store-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius);
  background: var(--elev-gradient);
  border: 1px solid var(--line);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  min-width: 160px;
}

.store-btn:hover {
  background: var(--accent-ghost);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.store-btn:active {
  transform: translateY(0);
}

.link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.link:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

/* Footer - Clean and minimal */
.site-footer {
  padding: clamp(2rem, 4vh, 3rem) 0;
  border-top: 1px solid var(--line-subtle);
  background: var(--bg);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.foot-note {
  color: var(--muted);
  margin: 0 0 1rem;
  font-weight: 600;
  text-align: center;
}

.foot-disclaimer {
  color: var(--muted-dark);
  font-size: 0.875rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive Design - Mobile-first approach */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .panel-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .site-header .container {
    height: 64px;
  }

  .site-nav {
    gap: 1rem;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero {
    padding: 3rem 0 2rem;
  }

  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    min-width: 200px;
  }

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

  .store-ctas {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .site-nav {
    gap: 0.5rem;
  }

  .site-nav .nav-cta {
    padding: 6px 12px;
    font-size: 0.85rem;
  }

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

  .tabs {
    width: 100%;
  }

  .tab {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}
.mb-0 {
  margin-bottom: 0;
}

/* Focus states for accessibility */
.btn:focus-visible,
.tab:focus-visible,
.store-btn:focus-visible,
.nav-cta:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

  .btn:hover,
  .benefit:hover,
  .compliance-block:hover {
    transform: none;
  }
}
