:root {
  --bg: #ffffff;
  --text: #0a0a0a;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --border: #e5e5e5;
  --accent: #1d4ed8;
  --dark: #0a0a0a;
  --dark-surface: #0f0f0f;
  --dark-border: #333333;
  --success: #0f6b3a;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01" 1, "cv11" 1;
  overflow-x: hidden;
}

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

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

button,
a,
input,
textarea,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.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;
}

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

.section {
  padding: 120px 0;
}

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

.section--dark {
  background: var(--dark);
  color: #ffffff;
}

.section--cta {
  padding: 140px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mark,
.footer-mark {
  width: 10px;
  height: 10px;
  background: var(--text);
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a,
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  transition: color 180ms ease;
}

.nav-links a:hover,
.mobile-menu a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--text);
  margin: 3px auto;
}

.mobile-menu {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.mobile-menu__inner {
  display: grid;
  gap: 16px;
  padding: 20px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 16px 24px;
  border: 1px solid var(--text);
  border-radius: 2px;
  font-size: 16px;
  font-weight: 500;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button--small {
  min-height: 40px;
  padding: 12px 20px;
  font-size: 14px;
}

.button--primary {
  background: var(--text);
  color: #ffffff;
  border-color: var(--text);
}

.button--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.button--secondary {
  background: transparent;
  color: var(--text);
}

.button--secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.button--light {
  background: #ffffff;
  color: var(--text);
  border-color: #ffffff;
}

.button--light:hover {
  color: var(--accent);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--text-tertiary);
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.eyebrow--dark {
  color: #666666;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(36px, 7vw, 54px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(30px, 5vw, 40px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
}

.hero {
  padding: 72px 0 88px;
}

.hero-grid,
.dark-grid,
.leads-grid,
.about-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}

.hero-grid > *,
.dark-grid > *,
.leads-grid > *,
.about-grid > * {
  min-width: 0;
}

.hero-grid {
  grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  align-items: center;
}

.hero-accent {
  color: var(--accent);
  font-style: italic;
}

.hero-subhead {
  max-width: 540px;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: clamp(17px, 3vw, 20px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.micro-trust {
  margin-top: 24px;
  color: var(--text-tertiary);
  font-size: 13px;
}

.micro-trust span {
  padding: 0 8px;
}

.mock-window {
  border: 1px solid var(--border);
  border-top: 1px solid var(--text);
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
  min-width: 0;
}

.mock-window__header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
}

.mock-label {
  justify-self: center;
  color: var(--text-tertiary);
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}

.filter-row span {
  border: 1px solid var(--border);
  padding: 8px 10px;
  font-size: 13px;
  color: var(--text-secondary);
}

.table-wrap {
  overflow-x: auto;
}

.leads-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.leads-table th {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-tertiary);
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: left;
}

.leads-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.leads-table td.mono {
  white-space: nowrap;
}

.lead-row {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.lead-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.trust-strip__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.trust-strip p {
  font-size: 15px;
  font-weight: 500;
}

.trust-strip span {
  color: var(--text-tertiary);
}

.narrow-column {
  max-width: 720px;
}

.problem-copy {
  margin-top: 28px;
  font-size: clamp(17px, 2.5vw, 19px);
  line-height: 1.6;
}

.problem-close {
  margin-top: 24px;
  font-size: 19px;
  font-weight: 600;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
  align-items: start;
}

.step-card {
  display: grid;
  gap: 20px;
  align-content: start;
}

.step-number {
  color: var(--accent);
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 48px;
  line-height: 1;
}

.step-rule {
  height: 1px;
  background: var(--border);
}

.step-card p:last-child,
.section-intro,
.service-row p,
.leads-copy p:last-child {
  color: var(--text-secondary);
}

.section-intro {
  max-width: 600px;
  margin-top: 16px;
}

.pillar-label,
.dashboard-title,
.voice-card__eyebrow {
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.pillar-label {
  color: var(--accent);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
  gap: 36px;
  margin-top: 40px;
  align-items: start;
}

.service-panels {
  display: grid;
  gap: 18px;
}

.service-panel {
  border: 1px solid var(--border);
  padding: 24px;
}

.service-panel__head {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.pillar-summary {
  font-size: 17px;
  font-weight: 500;
}

.service-panel__items {
  display: grid;
  gap: 0;
}

.service-point {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.service-point:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-point:first-child {
  padding-top: 20px;
}

.service-point h3 {
  font-size: 16px;
}

.service-point p {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 15px;
}

.services-visuals {
  position: sticky;
  top: 96px;
}

.stat-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--border);
}

.stat-tile {
  padding: 20px;
  border-right: 1px solid var(--border);
}

.stat-tile:last-child {
  border-right: 0;
}

.stat-tile p,
.dashboard-title,
.progress-copy,
.sector-copy,
.timeline-meta span,
.voice-card__eyebrow {
  color: var(--text-tertiary);
}

.stat-tile p,
.dashboard-title,
.progress-copy span,
.sector-copy span,
.timeline-meta span {
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.stat-tile strong {
  display: block;
  margin-top: 10px;
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
}

.accent-blue {
  color: var(--accent) !important;
}

.accent-green {
  color: var(--success) !important;
}

.dashboard-block {
  padding: 24px 20px;
  border-bottom: 1px solid var(--border);
}

.dashboard-block:last-child {
  border-bottom: 0;
}

.progress-stack,
.sector-bars {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.progress-copy,
.sector-copy,
.timeline-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.progress-track,
.sector-track {
  height: 8px;
  margin-top: 8px;
  background: #f5f5f5;
}

.progress-track span,
.sector-track span {
  display: block;
  height: 100%;
}

.progress-track span {
  background: var(--accent);
}

.sector-track span {
  background: var(--text);
}

.voice-card__eyebrow {
  color: #666666;
}

.voice-card h3 {
  margin-top: 12px;
  color: #ffffff;
}

.waveform {
  display: flex;
  align-items: end;
  gap: 2px;
  height: 72px;
  margin-top: 28px;
}

.waveform span {
  width: 4px;
  height: var(--wave-height);
  background: #666666;
}

.player-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.play-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.play-button span {
  width: 0;
  height: 0;
  border-left: 10px solid var(--text);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 3px;
}

.timeline {
  width: 100%;
}

.timeline-track {
  position: relative;
  margin-top: 8px;
  height: 1px;
  background: var(--dark-border);
}

.timeline-progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 25%;
  height: 1px;
  background: #ffffff;
}

.timeline-dot {
  position: absolute;
  left: 25%;
  top: 50%;
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.leads-grid {
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
}

.leads-copy h2 {
  max-width: 360px;
}

.leads-copy p:last-child {
  max-width: 420px;
  margin-top: 24px;
}

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

.stats-cell {
  padding: 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-cell:nth-child(2n) {
  border-right: 0;
}

.stats-cell:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.stats-value {
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: clamp(44px, 7vw, 64px);
  line-height: 1;
}

.stats-value--price {
  font-size: clamp(28px, 4vw, 44px);
}

.stats-value--price span {
  color: var(--accent);
}

.stats-label {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

.about-grid {
  grid-template-columns: minmax(0, 40fr) minmax(0, 60fr);
  align-items: center;
}

.about-image-wrap {
  max-width: 420px;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 2px;
}

.about-title {
  margin-top: 4px;
  font-size: 15px;
  color: var(--text-secondary);
}

.about-copy p {
  max-width: 540px;
  margin-top: 28px;
}

.about-copy p:not(.about-title) {
  color: var(--text);
}

.about-copy p:last-child {
  margin-top: 24px;
}

.cta-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-block h2 {
  font-size: clamp(36px, 6vw, 52px);
}

.cta-block p {
  max-width: 560px;
  margin: 24px auto 0;
  color: #999999;
  font-size: clamp(17px, 3vw, 20px);
}

.cta-block .button {
  margin-top: 40px;
}

.site-footer {
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
}

.footer-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.footer-row p,
.footer-row a {
  font-size: 13px;
}

.footer-row p {
  color: var(--text-secondary);
}

.footer-row a {
  justify-self: end;
}

.footer-copy {
  margin-top: 20px;
  color: var(--text-tertiary);
  font-size: 12px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 600ms ease-out,
    transform 600ms ease-out;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .shell {
    width: min(1200px, calc(100% - 64px));
  }

  .section,
  .section--cta {
    padding: 80px 0;
  }

  .hero-grid,
  .dark-grid,
  .leads-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero-visual {
    order: 2;
  }

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

  .services-layout {
    grid-template-columns: 1fr;
  }

  .services-visuals {
    position: static;
  }

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

  .stat-tile:nth-child(2n) {
    border-right: 0;
  }

  .stat-tile:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .about-image-wrap {
    max-width: 420px;
  }
}

@media (max-width: 639px) {
  body {
    font-size: 16px;
  }

  html {
    scroll-behavior: auto;
  }

  .shell {
    width: min(1200px, calc(100% - 48px));
  }

  .nav {
    gap: 12px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-cta {
    padding: 12px 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .trust-strip__inner {
    flex-direction: column;
    gap: 12px;
  }

  .trust-strip__inner span {
    display: none;
  }

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

  .hero-actions .button {
    width: 100%;
  }

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

  .filter-row span {
    font-size: 12px;
  }

  .leads-table {
    min-width: 0;
    table-layout: fixed;
  }

  .leads-table th,
  .leads-table td {
    padding: 10px 8px;
  }

  .leads-table th {
    font-size: 10px;
  }

  .leads-table td {
    font-size: 12px;
    vertical-align: top;
    word-break: break-word;
  }

  .leads-table td.mono {
    font-size: 11px;
    white-space: normal;
  }

  .pillar-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .player-row {
    align-items: flex-start;
  }

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

  .stats-cell {
    border-right: 0;
  }

  .stats-cell:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .stats-cell:last-child {
    border-bottom: 0;
  }

  .footer-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-row a {
    justify-self: start;
  }

  .footer-mark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.dark-grid--centered {
  align-items: center;
}

.dark-copy {
  max-width: 560px;
  margin-top: 24px;
  color: #999999;
  font-size: clamp(17px, 3vw, 20px);
}

.options-card {
  border: 1px solid var(--dark-border);
  background: var(--dark-surface);
}

.options-row {
  padding: 28px;
  border-bottom: 1px solid var(--dark-border);
}

.options-row:last-child {
  border-bottom: 0;
}

.options-label {
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #666666;
}

.options-row p:last-child {
  margin-top: 12px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
}

.stats-value--money {
  font-size: clamp(34px, 6vw, 56px);
}

.stats-value--money span {
  color: var(--accent);
}


.scroll-cue {
  display: inline-grid;
  gap: 8px;
  margin-top: 32px;
  color: var(--text-tertiary);
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.scroll-cue span:last-child {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 24px;
  line-height: 1;
  color: var(--accent);
}

.scroll-cue:hover {
  color: var(--accent);
  transform: translateY(2px);
}

.stage-badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.stage-badge--second-meeting,
.stage-badge--third-meeting {
  border-color: #c8d4df;
  background: #f4f7f9;
  color: #314858;
}

.stage-badge--proposal-sent,
.stage-badge--quoted {
  border-color: #d7c9ad;
  background: #fbf7ef;
  color: #59472b;
}

.stage-badge--negotiating {
  border-color: #cec7d8;
  background: #f7f5f9;
  color: #46394f;
}

.stage-badge--converted {
  border-color: #b8cdbb;
  background: #f2f7f3;
  color: #2e4e35;
}

.status-pill {
  color: var(--text-secondary);
  background: #fafafa;
}

.status-pill--warm {
  color: #314858;
  background: #f4f7f9;
  border-color: #c8d4df;
}

.status-pill--in-play {
  color: #59472b;
  background: #fbf7ef;
  border-color: #d7c9ad;
}

.status-pill--bound {
  color: #2e4e35;
  background: #f2f7f3;
  border-color: #b8cdbb;
}



.admin-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 380px;
  padding: 34px 28px;
}

.admin-stack {
  min-width: 0;
}

.admin-visual__label {
  color: var(--text-tertiary);
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.paper-stack,
.brief-card {
  margin-top: 16px;
}

.paper-stack {
  position: relative;
  min-height: 220px;
}

.paper-stack span {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  padding: 16px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text-secondary);
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(10, 10, 10, 0.04);
}

.paper-stack span:nth-child(1) {
  top: 0;
  transform: rotate(-3deg);
}

.paper-stack span:nth-child(2) {
  top: 46px;
  transform: rotate(2deg);
}

.paper-stack span:nth-child(3) {
  top: 92px;
  transform: rotate(-1deg);
}

.paper-stack span:nth-child(4) {
  top: 138px;
  transform: rotate(3deg);
}

.admin-arrow {
  color: var(--accent);
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 28px;
}

.brief-card {
  padding: 18px;
  border: 1px solid var(--text);
  background: #ffffff;
}

.brief-card + .brief-card {
  margin-top: 12px;
}

.brief-card span {
  display: block;
  color: var(--text-tertiary);
  font-family: "JetBrains Mono", "Geist Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brief-card strong {
  display: block;
  margin-top: 18px;
  font-size: 28px;
  font-weight: 500;
  color: var(--text);
}

.brief-card--muted {
  border-color: var(--border);
  background: #fafafa;
}

.brief-card--muted strong {
  color: var(--accent);
}

.admin-caption {
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 15px;
}

@media (max-width: 639px) {
  .admin-visual {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
  }

  .admin-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}
